/* Built from style.css + overrides.css + visitor.css + frontend.css + cookie-banner.css */
/* Regenerate: ./scripts/build_public_css.sh */

/* TouristRank.com Dark Theme Styles */

/* Global styles */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Override Bootstrap primary color to black */
.bg-primary {
    background-color: #000000 !important;
}

.text-primary {
    color: rgb(237, 237, 237) !important;
}

/* Force navbar to be black */
.navbar.navbar-dark.bg-primary {
    background-color: #000000 !important;
}

/* Force hero section to be black */
.hero-section.bg-primary {
    background-color: #000000 !important;
}

/* Additional overrides for maximum specificity */
body .navbar.bg-primary {
    background-color: #000000 !important;
}

body .hero-section.bg-primary {
    background-color: #000000 !important;
}

body {
    background: #000000;
    color: rgb(237, 237, 237);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Secondary text with 60% opacity */
.text-secondary, .text-secondary, .form-text, .small {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Navbar dark theme */
.navbar, .navbar.navbar-dark, .navbar.navbar-expand-lg {
    background: #000000 !important;
    background-color: #000000 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-weight: 300;
    font-size: 1.2rem;
    color: rgb(237, 237, 237) !important;
}

.navbar-nav .nav-link {
    color: rgb(237, 237, 237) !important;
    font-weight: 400;
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Cards dark theme */
.card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease-in-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.card-header {
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgb(237, 237, 237);
}

.card-body {
    color: rgb(237, 237, 237);
}

/* Buttons dark theme */
.btn {
    border-radius: 0.375rem;
    font-weight: 500;
}

.btn-primary {
    background: #0066cc;
    border-color: #0066cc;
}

.btn-primary:hover {
    background: #0052a3;
    border-color: #0052a3;
}

.btn-secondary {
    background: #333333;
    border-color: #333333;
    color: rgb(237, 237, 237);
}

.btn-secondary:hover {
    background: #444444;
    border-color: #444444;
    color: rgb(237, 237, 237);
}

.btn-outline-primary {
    color: #0066cc;
    border-color: #0066cc;
}

.btn-outline-primary:hover {
    background: #0066cc;
    border-color: #0066cc;
    color: rgb(237, 237, 237);
}

/* Forms dark theme */
.form-control {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgb(237, 237, 237);
}

.form-control:focus {
    background: #111111;
    border-color: #0066cc;
    color: rgb(237, 237, 237);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-label {
    color: rgb(237, 237, 237);
    font-weight: 500;
}

/* Alerts dark theme */
.alert {
    border-radius: 0.375rem;
    border: none;
}

.alert-success {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border-left: 4px solid #ffc107;
}

.alert-info {
    background: rgba(23, 162, 184, 0.2);
    color: #17a2b8;
    border-left: 4px solid #17a2b8;
}

/* Tables dark theme */
.table {
    color: rgb(237, 237, 237);
}

.table th {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.1);
    color: rgb(237, 237, 237);
    font-weight: 600;
}

.table td {
    border-color: rgba(255, 255, 255, 0.1);
}

.table-striped tbody tr:nth-of-type(odd) {
    background: rgba(255, 255, 255, 0.05);
}

/* Hero section */
.hero-section, .hero-section.text-white {
    background: #000000 !important;
    background-color: #000000 !important;
    color: rgb(237, 237, 237) !important;
}

/* Icons */
.fa-star {
    color: #ffc107;
}

/* Footer */
footer {
    margin-top: auto;
    background: #111111;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

main {
    flex: 1;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .fa-hotel {
        font-size: 5rem !important;
    }
}

/* CRITICAL: Override Bootstrap with maximum specificity */
html body .navbar.bg-primary {
    background-color: #000000 !important;
    background: #000000 !important;
}

html body .hero-section.bg-primary {
    background-color: #000000 !important;
    background: #000000 !important;
}

/* Force override for any Bootstrap primary classes */
.bg-primary {
    background-color: #000000 !important;
    background: #000000 !important;
}

/* Additional specificity for navbar */
.navbar.navbar-expand-lg.navbar-dark.bg-primary {
    background-color: #000000 !important;
    background: #000000 !important;
}

/* Bootstrap Overrides - This file loads after Bootstrap to ensure our styles take precedence */

/* Override Bootstrap's primary color completely */
:root {
    --bs-primary: #000000 !important;
    --bs-primary-rgb: 0, 0, 0 !important;
}

/* Force Inter font on all elements */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Force all primary backgrounds to be black with maximum specificity */
.bg-primary,
.bg-primary.bg-primary,
html body .bg-primary,
html body .navbar.bg-primary,
html body .hero-section.bg-primary {
    background-color: #000000 !important;
    background: #000000 !important;
}

/* Navbar specific overrides with maximum specificity */
.navbar.bg-primary,
.navbar.navbar-dark.bg-primary,
.navbar.navbar-expand-lg.navbar-dark.bg-primary,
html body .navbar.bg-primary,
html body .navbar.navbar-dark.bg-primary,
html body .navbar.navbar-expand-lg.navbar-dark.bg-primary {
    background-color: #000000 !important;
    background: #000000 !important;
    margin: 0 !important;
    padding-left: 32px !important;
    padding-right: 32px !important;
    height: 64px !important;
    min-height: 64px !important;
    width: 100% !important;
    position: relative !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Remove any default body margins that might affect navbar */
body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Navbar container full width */
.navbar .container,
.navbar .navbar-content {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* Center the main navigation */
.navbar-nav.mx-auto {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

/* Right align the login/signup buttons */
.navbar-nav:last-child {
    margin-left: auto !important;
}

/* Navbar brand and nav items alignment */
.navbar-brand {
    height: 64px !important;
    line-height: 64px !important;
    display: flex !important;
    align-items: center !important;
}

.navbar-nav .nav-link {
    height: 40px !important;
    line-height: 40px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 16px !important;
}

/* Hero section overrides with maximum specificity */
.hero-section.bg-primary,
html body .hero-section.bg-primary {
    background-color: #000000 !important;
    background: #000000 !important;
}

/* Override Bootstrap's CSS variables */
.bg-primary {
    --bs-bg-opacity: 1 !important;
    background-color: #000000 !important;
    background: #000000 !important;
}

/* Remove navbar borders globally */
.navbar {
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Global button pill styling */
.btn {
    border-radius: 50px !important;
    padding: 0.5rem 1.5rem !important;
    border: none !important;
    transition: all 0.3s ease !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.btn-primary,
.btn-secondary,
.btn-light {
    background: rgba(0, 0, 0, 0.12) !important;
    color: rgb(237, 237, 237) !important;
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.12) !important;
    color: rgb(237, 237, 237) !important;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-light:hover {
    background: transparent !important;
    color: rgb(237, 237, 237) !important;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.30) !important;
    color: rgb(237, 237, 237) !important;
}

/* Visitor Website Styles - Complete Dark Theme with Inter font-weight 100 */

/* Global visitor styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 300 !important;
    background: #000000 !important;
    color: rgb(237, 237, 237) !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Typography with Inter font-weight 100 */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 300 !important;
    color: rgb(237, 237, 237) !important;
}

/* Override Bootstrap's fw-bold class */
.fw-bold {
    font-weight: 400 !important;
}

/* Specific heading weights and sizes */
h1 {
    font-size: 1.8rem !important;
    font-weight: 400 !important;
    line-height: 1.1 !important;
    margin-bottom: 1.8rem !important;
    letter-spacing: 0.3px !important;
}

h2 {
    font-size: 2.5rem !important;
    font-weight: 300 !important;
    line-height: 1.2 !important;
    margin-bottom: 1.25rem !important;
}

h3 {
    font-size: 2rem !important;
    font-weight: 300 !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
}

h4 {
    font-size: 1.5rem !important;
    font-weight: 300 !important;
    line-height: 1.4 !important;
    margin-bottom: 0.75rem !important;
}

h5 {
    font-size: 1.25rem !important;
    font-weight: 300 !important;
    line-height: 1.4 !important;
    margin-bottom: 0.5rem !important;
}

h6 {
    font-size: 1rem !important;
    font-weight: 300 !important;
    line-height: 1.5 !important;
    margin-bottom: 0.5rem !important;
}

/* Paragraph and text styles */
p, .lead {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 300 !important;
    color: rgb(237, 237, 237) !important;
    line-height: 1.6 !important;
    font-size: 0.875rem !important;
}

.lead {
    font-size: 1.25rem !important;
    font-weight: 300 !important;
}

/* Secondary text with 60% opacity */
.text-secondary, .text-secondary, .form-text, .small {
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 300 !important;
}

/* Navbar visitor styles */
.navbar {
    background: #000000 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    height: 64px !important;
    min-height: 64px !important;
}

.navbar-brand {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 300 !important;
    font-size: 1.1rem !important;
    color: rgb(237, 237, 237) !important;
}

.navbar-nav .nav-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 300 !important;
    color: rgb(237, 237, 237) !important;
    font-size: 0.875rem !important;
    height: 40px !important;
    line-height: 40px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 16px !important;
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Buttons with Inter font-weight 200 */
.btn {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 200 !important;
    border-radius: 50px !important;
    padding: 0.5rem 1.5rem !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.btn-primary {
    background: rgba(0, 0, 0, 0.12) !important;
    color: rgb(237, 237, 237) !important;
}

.btn-primary:hover {
    background: transparent !important;
    color: rgb(237, 237, 237) !important;
}

.btn-outline-light {
    color: rgb(237, 237, 237) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    font-weight: 200 !important;
    border: none !important;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.30) !important;
    color: rgb(237, 237, 237) !important;
}

.btn-light {
    background: rgba(0, 0, 0, 0.12) !important;
    color: rgb(237, 237, 237) !important;
    border: none !important;
}

.btn-light:hover {
    background: transparent !important;
    color: rgb(237, 237, 237) !important;
}

/* Cards with dark theme */
.card {
    background: #111111 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgb(237, 237, 237) !important;
}

.card-header {
    background: #1a1a1a !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgb(237, 237, 237) !important;
}

.card-body {
    color: rgb(237, 237, 237) !important;
}

/* Hero section */
.hero-section {
    background: #000000 !important;
    color: rgb(237, 237, 237) !important;
    height: 85vh !important;
    min-height: 85vh !important;
    padding: 0 !important;
}

/* Search input styling */
.search-container .input-group {
    border: none !important;
    box-shadow: none !important;
}

.search-container .form-control {
    background: rgba(255, 255, 255, 0.1) !important;
    border: none !important;
    color: rgb(237, 237, 237) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 300 !important;
    font-size: 1.125rem !important;
    padding: 1rem 1.5rem !important;
    border-radius: 50px 0 0 50px !important;
    box-shadow: none !important;
    outline: none !important;
}

.search-container .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 300 !important;
}

.search-container .form-control:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border: none !important;
    color: rgb(237, 237, 237) !important;
    box-shadow: none !important;
    outline: none !important;
}

.search-container .btn {
    border-radius: 0 50px 50px 0 !important;
    padding: 1rem 1.5rem !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.search-container .btn:focus {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Footer */
footer {
    background: #111111 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-top: auto !important;
}

footer h5, footer h6 {
    color: rgb(237, 237, 237) !important;
    font-weight: 300 !important;
}

footer a {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
    font-weight: 300 !important;
}

footer a:hover {
    color: rgb(237, 237, 237) !important;
}

/* Forms */
.form-control {
    background: #111111 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: rgb(237, 237, 237) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 300 !important;
}

.form-control:focus {
    background: #111111 !important;
    border-color: #0066cc !important;
    color: rgb(237, 237, 237) !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25) !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 300 !important;
}

.form-label {
    color: rgb(237, 237, 237) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 300 !important;
}

/* Material Symbols styling */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
    font-weight: 300 !important;
    font-style: normal !important;
    font-size: 1.5rem !important;
    line-height: 1 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    display: inline-block !important;
    white-space: nowrap !important;
    word-wrap: normal !important;
    direction: ltr !important;
    color: rgb(237, 237, 237) !important;
    vertical-align: middle !important;
}

/* Material Icons styling */
.material-icons {
    font-family: 'Material Icons' !important;
    font-weight: 300 !important;
    font-style: normal !important;
    font-size: 1.5rem !important;
    line-height: 1 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    display: inline-block !important;
    white-space: nowrap !important;
    word-wrap: normal !important;
    direction: ltr !important;
    color: rgb(237, 237, 237) !important;
    vertical-align: middle !important;
}

/* Material Symbols size variants */
.material-symbols-outlined.small {
    font-size: 1rem !important;
}

.material-symbols-outlined.large {
    font-size: 2rem !important;
}

.material-symbols-outlined.xl {
    font-size: 3rem !important;
}

/* Pricing page styling - base styles */
.pricing-title {
    font-size: 4rem !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .hero-section {
        padding: 3rem 0 !important;
    }
    
    .pricing-title {
        font-size: 2rem !important;
    }
    
    /* Mobile navbar fixes */
    body.menu-open {
        overflow: hidden !important;
    }
    
    body.menu-open::before {
        content: '' !important;
        position: fixed !important;
        top: 64px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background-color: rgba(0, 0, 0, 0.9) !important;
        z-index: 1045 !important;
        pointer-events: none !important;
    }
    
    .navbar {
        height: auto !important;
        min-height: 64px !important;
    }
    
    .navbar .navbar-content {
        flex-wrap: wrap !important;
        padding: 0 1rem !important;
        position: relative !important;
    }
    
    .navbar-brand {
        order: 1 !important;
        flex: 0 0 auto !important;
        margin-right: auto !important;
    }
    
    .navbar-toggler {
        order: 2 !important;
        margin-left: auto !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 8px !important;
        padding: 0.5rem !important;
    }
    
    .navbar-toggler:focus {
        box-shadow: none !important;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28237, 237, 237, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
    
    .navbar-collapse {
        order: 3 !important;
        width: 100% !important;
        margin-top: 10px !important;
        padding: 1.5rem 1rem !important;
        background-color: rgba(0, 0, 0, 0.12) !important;
        position: fixed !important;
        top: 64px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 1050 !important;
        max-height: calc(100vh - 64px) !important;
        overflow-y: auto !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3) !important;
    }
    
    .navbar-collapse.show {
        display: block !important;
    }
    
    .navbar-nav {
        flex-direction: column !important;
        width: 100% !important;
        margin: 0 !important;
        align-items: flex-end !important;
    }
    
    .navbar-nav.mx-auto {
        position: static !important;
        transform: none !important;
        left: auto !important;
        align-items: flex-end !important;
    }
    
    .navbar-nav .nav-item {
        width: auto !important;
        margin-bottom: 0.75rem !important;
        text-align: right !important;
    }
    
    .navbar-nav .nav-link {
        width: auto !important;
        text-align: right !important;
        margin: 0 !important;
        display: inline-block !important;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
    }
    
    .navbar-nav:last-child {
        margin-left: 0 !important;
        margin-top: 0.5rem !important;
        align-items: flex-end !important;
    }
    
    .navbar-nav:last-child .nav-item {
        width: auto !important;
        text-align: right !important;
    }
    
    .navbar-nav:last-child .nav-link.btn {
        width: auto !important;
        margin: 0 !important;
        text-align: center !important;
        display: inline-block !important;
    }
}

/* Card styling overrides */
.card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* CTA section styling */
.cta-inner-container {
    margin: 0 1% !important;
    border-radius: 15px !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    margin-bottom: 3rem !important;
    min-height: 20rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Search results styling */
.search-results {
    margin-top: 2rem;
}

.search-results .alert {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: rgb(237, 237, 237) !important;
    border-radius: 15px !important;
    padding: 2rem !important;
    text-align: center !important;
}

.search-results .alert-success {
    background-color: rgba(40, 167, 69, 0.2) !important;
    border-color: rgba(40, 167, 69, 0.3) !important;
}

.search-results .alert-warning {
    background-color: rgba(255, 193, 7, 0.2) !important;
    border-color: rgba(255, 193, 7, 0.3) !important;
}

.search-results .alert-danger {
    background-color: rgba(220, 53, 69, 0.2) !important;
    border-color: rgba(220, 53, 69, 0.3) !important;
}

/* Pricing page styling */
.pricing-hero {
    padding-top: 6rem !important;
}

/* Pricing cards styling */
.pricing-card {
    border: 1px solid rgb(237, 237, 237) !important;
    background: transparent !important;
}

.pricing-card .card-body {
    background: transparent !important;
    color: rgb(237, 237, 237) !important;
}

.pricing-card .card-header {
    background: rgba(255, 255, 255, 0.1) !important;
    border-bottom: 1px solid rgb(237, 237, 237) !important;
    color: rgb(237, 237, 237) !important;
}

/* Pricing page buttons */
.pricing-card .btn {
    border-radius: 50px !important;
    color: rgb(237, 237, 237) !important;
    background-color: rgba(0, 0, 0, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 400 !important;
    transition: all 0.3s ease !important;
}

.pricing-card .btn:hover {
    background-color: transparent !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: rgb(237, 237, 237) !important;
}

.pricing-card .btn-outline-primary {
    background-color: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: rgb(237, 237, 237) !important;
}

.pricing-card .btn-outline-primary:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: rgb(237, 237, 237) !important;
}

/* Material Symbols styling for pricing page */
.pricing-card .material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
    font-weight: 300 !important;
    font-style: normal !important;
    font-size: 1.2rem !important;
    line-height: 1 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    display: inline-block !important;
    white-space: nowrap !important;
    word-wrap: normal !important;
    direction: ltr !important;
    vertical-align: middle !important;
}

/* Pricing card body alignment */
.pricing-card {
    display: flex !important;
    flex-direction: column !important;
}

.pricing-card-body {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    padding-top: 0 !important;
}

/* All cards now have headers, so consistent spacing */
.pricing-card-body h3 {
    margin-top: 1rem !important; /* Consistent top margin for all titles */
}

/* Make empty headers invisible */
.pricing-card .card-header {
    background-color: #000000 !important;
    border-bottom: 1px solid #000000 !important;
    padding: 0.75rem 1.25rem !important;
}

/* Ensure the empty div in headers is invisible */
.pricing-card .card-header div {
    background-color: transparent !important;
}

/* Material Symbols styling for contact page */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
    font-weight: 300 !important;
    font-style: normal !important;
    font-size: 1.2rem !important;
    line-height: 1 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    display: inline-block !important;
    white-space: nowrap !important;
    word-wrap: normal !important;
    direction: ltr !important;
    vertical-align: middle !important;
}

/* Contact form styling */
.form-control, .form-select {
    background-color: rgba(0, 0, 0, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: rgb(237, 237, 237) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 300 !important;
}

.form-control:focus, .form-select:focus {
    background-color: rgba(0, 0, 0, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: rgb(237, 237, 237) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1) !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 300 !important;
}

.form-label {
    color: rgb(237, 237, 237) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 300 !important;
}

/* Select dropdown options styling */
.form-select option {
    background-color: #000000 !important;
    color: rgb(237, 237, 237) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 300 !important;
}

/* Alert messages styling */
.alert {
    background-color: rgba(0, 0, 0, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: rgb(237, 237, 237) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 300 !important;
    border-radius: 15px !important;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.2) !important;
    border-color: rgba(40, 167, 69, 0.3) !important;
    color: rgb(237, 237, 237) !important;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.2) !important;
    border-color: rgba(220, 53, 69, 0.3) !important;
    color: rgb(237, 237, 237) !important;
}

.alert .btn-close {
    filter: invert(1) !important;
}

/* Frontend Pages Styling - Dark Theme */

/* Global frontend styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 100 !important;
    background: #000000 !important;
    color: rgb(237, 237, 237) !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Typography with Inter font-weight 100 */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 100 !important;
    color: rgb(237, 237, 237) !important;
}

/* Override Bootstrap's fw-bold class */
.fw-bold {
    font-weight: 400 !important;
}

/* Specific heading weights and sizes */
h1 {
    font-size: 2.2rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    margin-bottom: 1.8rem !important;
    letter-spacing: 0.3px !important;
}

h2 {
    font-size: 2.5rem !important;
    font-weight: 100 !important;
    line-height: 1.2 !important;
    margin-bottom: 1.25rem !important;
}

h3 {
    font-size: 2rem !important;
    font-weight: 100 !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
}

h4 {
    font-size: 1.5rem !important;
    font-weight: 100 !important;
    line-height: 1.4 !important;
    margin-bottom: 0.75rem !important;
}

h5 {
    font-size: 1.25rem !important;
    font-weight: 300 !important;
    line-height: 1.5 !important;
    margin-bottom: 0.5rem !important;
}

h6 {
    font-size: 1rem !important;
    font-weight: 100 !important;
    line-height: 1.6 !important;
    margin-bottom: 0.5rem !important;
}

/* Secondary text with 60% opacity */
.text-secondary, .form-text, .small {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Card styling */
.frontend-card {
    background-color: #1a1a1a !important;
    border: 1px solid #333 !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.frontend-card-header {
    background: #000000 !important;
    border-bottom: 1px solid #333 !important;
}

.frontend-card-header h3 {
    color: rgb(237, 237, 237) !important;
    font-weight: 100 !important;
}

.frontend-card-header p {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Info cards */
.frontend-info-card {
    background-color: #1a1a1a !important;
    border: 1px solid #333 !important;
}

.frontend-info-card h5 {
    color: rgb(237, 237, 237) !important;
    font-weight: 100 !important;
}

.frontend-info-card p {
    color: rgba(255, 255, 255, 0.6) !important;
}

.frontend-info-card ul li {
    color: rgba(255, 255, 255, 0.6) !important;
    margin-bottom: 0.5rem !important;
}

/* Progress bar styling */
.frontend-progress {
    background-color: #2a2a2a !important;
}

.frontend-progress-bar {
    background: rgba(255, 255, 255, 0.12) !important;
}

/* Form styling */
.form-control {
    background-color: #333333 !important;
    border: 1px solid #555555 !important;
    color: rgb(237, 237, 237) !important;
    caret-color: rgba(255, 255, 255, 0.8) !important;
}

.form-control:focus {
    background-color: #333333 !important;
    border-color: #666666 !important;
    color: rgb(237, 237, 237) !important;
    box-shadow: 0 0 0 0.2rem rgba(102, 102, 102, 0.25) !important;
    outline: none !important;
    caret-color: rgba(255, 255, 255, 0.8) !important;
}

/* File input styling */
input[type="file"] {
    background-color: #333333 !important;
    border: 1px solid #555555 !important;
    color: rgb(237, 237, 237) !important;
}

input[type="file"]:focus {
    background-color: #333333 !important;
    border-color: #666666 !important;
    color: rgb(237, 237, 237) !important;
    box-shadow: 0 0 0 0.2rem rgba(102, 102, 102, 0.25) !important;
    outline: none !important;
}

/* File input button styling */
input[type="file"]::-webkit-file-upload-button {
    background-color: #555555 !important;
    color: rgb(237, 237, 237) !important;
    border: 1px solid #666666 !important;
    border-radius: 4px !important;
    padding: 6px 12px !important;
    margin-right: 8px !important;
    cursor: pointer !important;
}

input[type="file"]::-webkit-file-upload-button:hover {
    background-color: #666666 !important;
    border-color: #777777 !important;
}

input[type="file"]::-webkit-file-upload-button:focus {
    background-color: #666666 !important;
    border-color: #777777 !important;
    outline: none !important;
}

/* Firefox file input button styling */
input[type="file"]::-moz-file-upload-button {
    background-color: #555555 !important;
    color: rgb(237, 237, 237) !important;
    border: 1px solid #666666 !important;
    border-radius: 4px !important;
    padding: 6px 12px !important;
    margin-right: 8px !important;
    cursor: pointer !important;
}

input[type="file"]::-moz-file-upload-button:hover {
    background-color: #666666 !important;
    border-color: #777777 !important;
}

.frontend-form-control {
    background-color: #2a2a2a !important;
    border: 1px solid #444 !important;
    color: rgb(237, 237, 237) !important;
    caret-color: rgba(255, 255, 255, 0.8) !important;
}

.frontend-form-control:focus {
    background-color: #2a2a2a !important;
    border-color: #444 !important;
    color: rgb(237, 237, 237) !important;
    box-shadow: none !important;
    outline: none !important;
    caret-color: rgba(255, 255, 255, 0.8) !important;
}

.frontend-form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.frontend-form-label {
    color: rgb(237, 237, 237) !important;
}

.frontend-form-text {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Checkbox styling */
.form-check-input {
    background-color: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.form-check-input:checked {
    background-color: #000000 !important;
    border-color: #000000 !important;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25) !important;
}

.form-check-input:checked:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25) !important;
}

.frontend-form-check-input {
    background-color: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.frontend-form-check-input:checked {
    background-color: #000000 !important;
    border-color: #000000 !important;
}

.frontend-form-check-label {
    color: rgb(237, 237, 237) !important;
}

/* Button styling */
.frontend-btn-primary {
    color: rgb(237, 237, 237) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    font-weight: 100 !important;
    border: none !important;
}

.frontend-btn-primary:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: rgb(237, 237, 237) !important;
}

.frontend-btn-outline {
    border-color: rgb(237, 237, 237) !important;
    color: rgb(237, 237, 237) !important;
    font-weight: 100 !important;
}

.frontend-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.12) !important;
    color: rgb(237, 237, 237) !important;
}

/* Alert styling */
.frontend-alert {
    background-color: #2a2a2a !important;
    border: 1px solid #444 !important;
    color: rgb(237, 237, 237) !important;
}

/* Success alert - dark green */
.frontend-alert.alert-success,
.alert-success.frontend-alert {
    background-color: #155724 !important;
    border-color: #1e7e34 !important;
    color: #d4edda !important;
}

.frontend-alert h5,
.frontend-alert h6 {
    color: rgb(237, 237, 237) !important;
    font-weight: 100 !important;
}

.frontend-alert.alert-success h5,
.frontend-alert.alert-success h6 {
    color: #d4edda !important;
}

.frontend-alert ul {
    color: rgba(255, 255, 255, 0.6) !important;
}

.frontend-alert.alert-success ul {
    color: #d4edda !important;
}

.frontend-alert ul li {
    color: rgba(255, 255, 255, 0.6) !important;
    margin-bottom: 0.5rem !important;
}

.frontend-alert.alert-success ul li {
    color: #d4edda !important;
}

/* Icon styling */
.frontend-icon {
    vertical-align: middle !important;
}

.frontend-icon-large {
    font-size: 4rem !important;
}

.frontend-icon-medium {
    font-size: 2rem !important;
}

.frontend-icon-small {
    font-size: 1rem !important;
}

/* Icon colors */
.frontend-icon-primary {
    color: rgb(237, 237, 237) !important;
}

.frontend-icon-success {
    color: #28a745 !important;
}

.frontend-icon-info {
    color: #17a2b8 !important;
}

.frontend-icon-warning {
    color: #ffc107 !important;
}

.frontend-icon-secondary {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Divider styling */
.frontend-divider {
    border-color: #333 !important;
}

/* Text styling */
.frontend-text-primary {
    color: rgb(237, 237, 237) !important;
}

.frontend-text-secondary {
    color: rgba(255, 255, 255, 0.6) !important;
}

.frontend-text-center {
    text-align: center !important;
}

.frontend-text-start {
    text-align: start !important;
}

/* Link styling */
.frontend-link {
    color: rgb(237, 237, 237) !important;
}

.frontend-link:hover {
    color: #f8f9fa !important;
}

/* Small info cards */
.frontend-small-card {
    background-color: #2a2a2a !important;
    border: 1px solid #444 !important;
}

.frontend-small-card h6 {
    color: rgb(237, 237, 237) !important;
    font-weight: 100 !important;
}

.frontend-small-card p {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Autocomplete styling to match application font */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #2a2a2a inset !important;
    -webkit-text-fill-color: rgb(237, 237, 237) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Force Inter font on all input elements */
input {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Style autocomplete dropdown suggestions */
input[list]::-webkit-calendar-picker-indicator {
    display: none !important;
}

/* Style datalist dropdown options */
datalist {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

datalist option {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 100 !important;
    background-color: #000 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 8px 12px !important;
}

/* Browser autocomplete dropdown styling */
input:-webkit-autofill {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Target autocomplete dropdown specifically */
input[autocomplete] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Override browser default styling for autocomplete */
input::-webkit-input-placeholder {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

input::-moz-placeholder {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

input:-ms-input-placeholder {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

input::placeholder {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Ensure all form inputs use Inter font */
input[type="email"],
input[type="password"],
input[type="text"],
input[type="search"],
input[list] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Additional autocomplete styling for Firefox */
input:-moz-autofill {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Style autocomplete suggestions dropdown */
input[autocomplete] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Override browser default autocomplete styling */
input[list] + datalist {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Ensure consistent font rendering */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Additional autocomplete styling attempts */
input[type="email"]::-webkit-textfield-decoration-container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

input[type="email"]::-webkit-credentials-auto-fill-button {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Try to style autocomplete dropdown */
input[type="email"]:focus::-webkit-credentials-auto-fill-button {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Force font on autocomplete suggestions */
input[autocomplete="email"] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Additional specificity for email inputs */
input[type="email"][autocomplete] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Margin and padding utilities */
.frontend-mb-2 {
    margin-bottom: 0.5rem !important;
}

.frontend-mb-3 {
    margin-bottom: 1rem !important;
}

.frontend-mb-4 {
    margin-bottom: 1.5rem !important;
}

.frontend-mb-5 {
    margin-bottom: 3rem !important;
}

.frontend-mt-2 {
    margin-top: 0.5rem !important;
}

.frontend-mt-4 {
    margin-top: 1.5rem !important;
}

.frontend-me-1 {
    margin-right: 0.25rem !important;
}

.frontend-me-2 {
    margin-right: 0.5rem !important;
}

.frontend-me-3 {
    margin-right: 1rem !important;
}

/* Logo carousel */
.logo-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logo-carousel-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    animation: logoScroll 25s linear infinite;
}

.logo-carousel-item {
    flex-shrink: 0;
}

.logo-carousel-item img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(1);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.logo-carousel-item img:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.65);
    color: rgb(237, 237, 237);
    padding: 20px;
    z-index: 9999;
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner-text {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}

.cookie-emoji {
    font-size: 24px;
    line-height: 1;
    margin-top: 2px;
}

.cookie-message {
    font-size: 14px;
    line-height: 1.5;
}

.cookie-message strong {
    color: #fff;
    font-weight: 600;
}

.cookie-privacy {
    color: #ccc;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner .btn {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-banner .btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgb(237, 237, 237);
    background: transparent;
}

.cookie-banner .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: rgb(237, 237, 237);
}

.cookie-banner .btn-light {
    background: white;
    color: #333;
    border: 1px solid white;
}

.cookie-banner .btn-light:hover {
    background: #f8f9fa;
    color: #333;
    border-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cookie-banner-text {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-emoji {
        font-size: 20px;
        align-self: flex-start;
    }
    
    .cookie-message {
        font-size: 13px;
    }
    
    .cookie-banner-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-banner .btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 12px;
    }
    
    .cookie-banner .btn {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .cookie-message {
        font-size: 12px;
    }
    
    .cookie-privacy {
        font-size: 11px;
    }
}

/* Animation for banner appearance */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner {
    animation: slideUp 0.3s ease-out;
}

/* Ensure banner is above other elements */
.cookie-banner {
    z-index: 9999 !important;
}

/* Hide banner when consent is given */
.cookie-banner.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}
