/* Gold & Navy Theme */
:root {
    --bg-primary: #020617;
    --bg-deep: #0f172a;
    --bg-surface: #1e293b;
    --text-primary: #f8fafc;
    --text-muted: #94a3b8;
    --border-light: rgba(148, 163, 184, 0.1);
    --accent-gold: #D4AF37;
    --accent-blue: #3b82f6;
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F0D977 50%, #C9A961 100%);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-muted);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

.section {
    padding: 100px 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.text-muted {
    color: var(--text-muted);
}

.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none !important;
}

.btn:hover {
    text-decoration: none !important;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #0f172a;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Badge removed - defined later */

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
    z-index: 1000;
    box-sizing: border-box;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.logo:hover {
    text-decoration: none;
    color: var(--text-primary);
}

.logo i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    /* Add white/light background if logo is dark */
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 12px;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* Hero */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background: linear-gradient(rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.95)), url('hero_corporate_office.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.about-hero {
    padding-top: 200px;
    padding-bottom: 140px;
    background: linear-gradient(rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.95)), url('about_team.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(2, 6, 23, 0.8) 100%);
    pointer-events: none;
}

.about-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 24px;
    color: #fff;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-content {
    max-width: 800px;
    width: 100%;
    margin-bottom: 60px;
    box-sizing: border-box;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.cta-group {
    display: flex;
    gap: 16px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}

.stat-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.glass-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    height: 100%;
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.stat-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

/* Grid & Lists */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.feature-list i {
    color: var(--accent-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.bento-card {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.bento-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
}

.bento-card.large {
    grid-column: span 2;
}

.bento-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.bento-icon i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

/* Footer */
footer a {
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--accent-gold) !important;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    html {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    body {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
        position: relative !important;
    }
    
    .navbar {
        padding: 15px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        left: 0 !important;
        right: 0 !important;
    }

    .navbar .container {
        /* Keep flex row for logo and hamburger */
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Hide desktop nav */
    .desktop-nav,
    .nav-links.desktop-nav,
    div.desktop-nav {
        display: none !important;
        visibility: hidden !important;
    }

    /* Show mobile menu button */
    .mobile-menu-btn {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 60px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h1 br {
        display: none;
    }

    .text-gradient-gold {
        display: block;
        margin: 8px 0;
    }

    .lead {
        font-size: 1.1rem;
    }

    .hero-stats,
    .split-grid,
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bento-card.large {
        grid-column: span 1;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-group .btn {
        width: 100%;
        justify-content: center;
    }

    .container {
        padding: 0 20px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .navbar .container {
        padding: 0 16px !important;
        box-sizing: border-box !important;
    }
    
    * {
        box-sizing: border-box !important;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .glass-header {
        padding: 24px !important;
    }

    .booking-form-card {
        padding: 24px !important;
    }

    .footer-nav {
        flex-direction: column;
        gap: 12px;
    }

    .footer-nav a {
        margin: 0 !important;
        display: block;
    }

    /* About Hero Mobile */
    .about-hero {
        padding-top: 140px !important;
        padding-bottom: 80px !important;
    }

    .about-hero h1 {
        font-size: 2.5rem !important;
    }

    /* Logo adjustments */
    .logo {
        flex: 1 1 auto !important;
        max-width: calc(100% - 50px) !important;
        overflow: hidden !important;
        min-width: 0 !important;
    }
    
    .logo img {
        height: 32px !important;
        flex-shrink: 0 !important;
    }

    .logo span {
        font-size: 0.85rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    /* Mobile menu button size adjustments */
    .mobile-menu-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 1.25rem !important;
        padding: 6px !important;
        margin-left: 12px !important;
    }

    /* Badge mobile */
    .badge {
        font-size: 0.75rem !important;
        padding: 6px 12px !important;
    }

    /* Mobile form controls */
    .form-control {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }

    /* Mobile stat cards */
    .stat-card {
        padding: 24px !important;
    }

    .stat-card h3 {
        font-size: 1.25rem !important;
    }

    .stat-card i {
        font-size: 2rem !important;
    }

    /* Booking section mobile */
    .booking-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .booking-grid h2 {
        font-size: 2rem !important;
    }

    .booking-grid h3 {
        font-size: 1.25rem !important;
    }

    .booking-grid p {
        font-size: 1rem !important;
    }

    .booking-grid .badge {
        margin-bottom: 16px !important;
    }

    .booking-grid a[href^="tel"] {
        font-size: 1.25rem !important;
    }

    .booking-grid ul {
        margin-bottom: 24px !important;
    }

    .booking-grid li {
        font-size: 0.95rem !important;
    }

    /* Privacy Policy & Terms Mobile */
    .privacy-policy-content,
    .hero-small {
        padding-top: 100px !important;
        padding-bottom: 40px !important;
    }

    .privacy-policy-content h1,
    .hero-small h1 {
        font-size: 2rem !important;
    }

    .privacy-policy-content h2,
    .hero-small h2 {
        font-size: 1.5rem !important;
    }

    /* Footer mobile */
    .site-footer {
        padding: 40px 0 30px !important;
    }

    .footer-link {
        font-size: 0.9rem !important;
    }

    .copyright {
        font-size: 0.85rem !important;
    }
}

/* Mobile Navigation Styles */
.mobile-menu-btn {
    display: none;
    /* Hidden on desktop */
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent-gold);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow: hidden;
}

.mobile-nav-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 60px 40px 40px;
    max-width: 400px;
    width: 90%;
}

.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateY(0);
}

.mobile-nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    letter-spacing: 0.5px;
}

.mobile-nav-link:hover {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
    transform: rotate(90deg);
}

.mobile-cta {
    margin-top: 20px;
    width: 100% !important;
    justify-content: center;
    font-size: 0.95rem;
    padding: 12px 24px;
}

/* Utility Classes & New Components */
.stat-card.highlight {
    border-color: var(--accent-gold);
    background: rgba(30, 64, 175, 0.05);
}

.text-gold {
    color: var(--accent-gold);
}

.mb-md {
    margin-bottom: 24px;
}

.bg-gradient-subtle {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    position: relative;
}

.glass-header {
    text-align: center;
    margin-bottom: 80px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.bg-book-call {
    background: linear-gradient(rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.95)), url('book_call_background.png');
    background-size: cover;
    background-position: center;
}

.booking-form-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-deep);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: white;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

textarea.form-control {
    resize: vertical;
}

.site-footer {
    border-top: 1px solid var(--border-light);
    padding: 60px 0 40px;
    background: var(--bg-deep);
}

.footer-nav {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-muted);
    margin: 0 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-gold);
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* About Page Premium Styles */
.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 100px;
    color: var(--accent-gold);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-section-card {
    background: var(--bg-surface);
    padding: 60px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.2);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card i {
    font-size: 3rem;
    color: var(--accent-blue);
    display: block;
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.feature-card:hover i {
    color: var(--accent-gold);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.value-item h3 {
    margin-bottom: 12px;
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-item:hover h3 {
    color: var(--accent-gold);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.industry-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateX(5px);
}

.industry-item i {
    color: var(--accent-blue);
    font-size: 1.25rem;
}

.industry-item:hover i {
    color: var(--accent-gold);
}

.guarantee-box {
    background: rgba(59, 130, 246, 0.05);
    padding: 40px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-blue);
}

.guarantee-box h3 {
    color: var(--accent-blue);
}