/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Desktop header background */
@media (min-width: 769px) {
    .header {
        background: rgba(0, 0, 0, 0.5);
    }
}

/* Mobile header background */
@media (max-width: 768px) {
    .header {
        background: rgba(0, 0, 0, 0.5);
    }
}


    /* Book link uses standard nav-link styling on mobile */
.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 90px;
    width: auto;
    display: block;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text i {
    color: #d4af37;
    font-size: 1.5rem;
}

.logo-tagline {
    font-size: 0.8rem;
    color: #d4af37;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
}

/* Book link should be hidden by default (desktop and non-open mobile) */
.nav-item.mobile-book { display: none; }

.nav-link {
    color: var(--nav-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Hide mobile theme toggle by default (desktop) */
.mobile-theme-toggle {
    display: none;
}

/* Theme Toggle Button */
.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
    color: var(--text-inverse);
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.theme-toggle:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
    color: var(--accent);
    transform: scale(1.1);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.phone-number {
    color: var(--nav-text);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: var(--accent);
}

.book-now-btn {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: var(--btn-text);
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.book-now-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.2);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    width: 28px;
    height: 22px;
}

.bar {
    position: absolute;
    left: 0;
    width: 28px;
    height: 3px;
    background: var(--nav-icon);
    border-radius: 2px;
    margin: 0;
    transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
    transform-origin: center center;
}

/* Hamburger bar default positions */
.hamburger .bar:nth-child(1) { top: 4px; }
.hamburger .bar:nth-child(2) { top: 10px; }
.hamburger .bar:nth-child(3) { top: 16px; }

/* Parallax Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: 1; /* Lower z-index to allow information to overlap */
    margin: 0; /* Ensure no margin */
    padding: 0; /* Ensure no padding */
}

/* Subtle dark overlay to reduce hero brightness */
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); /* Adjust opacity to taste */
    z-index: 1; /* Above image, below content */
    pointer-events: none;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Ensure full viewport height on all devices */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0; /* Remove any margin */
    padding: 0; /* Remove any padding */
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: -1;
    transition: transform 0.1s ease-out; /* Smooth transition for parallax effect */
    margin: 0; /* Remove any margin */
    padding: 0; /* Remove any padding */
    border: none; /* Ensure no border */
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
    display: block; /* Ensure block display to prevent gaps */
    margin: 0; /* Remove any margin */
    padding: 0; /* Remove any padding */
    border: none; /* Ensure no border */
    vertical-align: top; /* Prevent baseline gaps */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2; /* Ensure content sits above overlay */
    width: 90%; /* Limit width to prevent overflow */
    max-width: 1200px; /* Maximum width for larger screens */
}

.hero-title {
    font-family: 'Climate Crisis', cursive;
    font-size: clamp(3rem, 12vw, 12rem); /* Responsive font size that scales with viewport */
    font-weight: 400;
    color: #d4af37;
    text-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.8),
        -2px -2px 4px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(212, 175, 55, 0.3);
    letter-spacing: clamp(2px, 0.5vw, 8px); /* Responsive letter spacing */
    line-height: 0.9;
    margin: 0;
    text-transform: uppercase;
    animation: parallaxGlow 3s ease-in-out infinite alternate;
    word-wrap: break-word; /* Prevent text overflow */
    overflow-wrap: break-word;
}

.hero-logo {
    max-width: 90%;
    width: clamp(300px, 60vw, 800px);
    height: auto;
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.8))
            drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.8))
                drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    }
    100% {
        filter: drop-shadow(4px 4px 12px rgba(0, 0, 0, 0.9))
                drop-shadow(0 0 40px rgba(212, 175, 55, 0.5));
    }
}

@keyframes parallaxGlow {
    0% {
        text-shadow: 
            4px 4px 8px rgba(0, 0, 0, 0.8),
            -2px -2px 4px rgba(255, 255, 255, 0.1),
            0 0 20px rgba(212, 175, 55, 0.3);
    }
    100% {
        text-shadow: 
            4px 4px 12px rgba(0, 0, 0, 0.9),
            -2px -2px 6px rgba(255, 255, 255, 0.2),
            0 0 40px rgba(212, 175, 55, 0.5);
    }
}

/* Mobile menu fade-in animation */
@keyframes menuFadeIn {
    0% { opacity: 0; transform: translateY(-8px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.information {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 0; /* Remove any margin that could cause gaps */
    padding: 0; /* Remove any padding that could cause gaps */
    z-index: 10; /* Higher z-index to appear above parallax when overlapping */
}

.information-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Ensure information image is above parallax but below content */
    background: #000;
}

.information-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: none;
}

.information-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.information-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay);
    z-index: 2; /* Above information image but below content */
    transition: background 0.3s ease;
}

.information-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--text-inverse);
    z-index: 15;
    position: relative;
    transition: color 0.3s ease;
}

.information-text {
    max-width: 600px;
    margin-bottom: 3rem;
}

.information-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--accent);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: text-shadow 0.3s ease;
}

html[data-theme="light"] .information-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    color: #d4af37;
}

html[data-theme="dark"] .information-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #f4d03f;
}

.information-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: text-shadow 0.3s ease;
}

html[data-theme="light"] .information-subtitle {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
    color: #d4af37;
}

html[data-theme="dark"] .information-subtitle {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #f4d03f;
}

.information-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-inverse);
    transition: color 0.3s ease;
}

/* Information Buttons */
.information-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cta-primary,
.cta-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.cta-primary {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: var(--btn-text);
}

.cta-secondary {
    background: transparent;
    color: var(--text-inverse);
    border: 2px solid var(--accent);
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.cta-secondary:hover {
    background: var(--accent);
    color: var(--btn-text);
    transform: translateY(-3px);
}

/* Hero Features */
.information-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 500px;
    justify-self: start;
    margin-left: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    min-height: 60px;
    transition: all 0.3s ease;
}

html[data-theme="light"] .feature-item {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

html[data-theme="dark"] .feature-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.feature-item i {
    color: var(--accent);
    font-size: 1.5rem;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-inverse);
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background: var(--surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--bg);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 4px 12px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px var(--shadow-lg);
    border-color: var(--accent);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Add additional breakpoints for better responsiveness */

/* Large screens and ultra-wide monitors */
@media (min-width: 1920px) {
    .hero-content {
        max-width: 1400px; /* Larger max-width for ultra-wide screens */
    }
}

/* Extra large screens */
@media (min-width: 1440px) and (max-width: 1919px) {
    .hero-content {
        max-width: 1200px;
    }
}

/* Standard desktop */
@media (min-width: 1024px) and (max-width: 1439px) {
    .hero-content {
        width: 85%;
        max-width: 1000px;
    }
}

/* Tablet landscape */
@media (min-width: 769px) and (max-width: 1023px) {
    .parallax-content {
        width: 90%;
        max-width: 800px;
    }
}
@media (max-width: 768px) {
    .nav-container {
        position: relative;
    }
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Mobile dropdown panel */
    .nav-menu.active {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        top: 0; /* JS sets exact offset to sit below header */
        height: 100vh; /* Cover half the page height */
        max-height: 100vh;
        overflow-y: auto;
        background: var(--bg); /* Theme-aware background */
        flex-direction: column;
        align-items: flex-start; /* Left align items */
        gap: 1.5rem; /* Add spacing between items */
        padding: 0.5rem 0;
        border-top: 1px solid var(--border);
        z-index: 1001;
        opacity: 1;
        animation: menuFadeIn 180ms ease-out;
    }
    .nav-item {
        border-bottom: 1px solid var(--border);
        width: 100%;
    }
    .nav-link {
        padding: 0.875rem 20px;
        font-size: 1.5rem; /* 2x font size for mobile dropdown items */
        display: block;
        width: 100%;
        text-align: left;
    }

    /* Mobile theme toggle */
    .mobile-theme-toggle {
        display: block;
        margin-top: 1rem;
    }

    .theme-toggle-mobile-btn {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.875rem 20px;
        font-size: 1.5rem;
        background: none;
        border: none;
        color: var(--nav-text);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .theme-toggle-mobile-btn:hover {
        color: var(--accent);
        padding-left: 25px;
    }

    .theme-toggle-mobile-btn i {
        font-size: 1.5rem;
    }

    .theme-toggle-mobile-btn span {
        font-weight: 500;
    }
    
    /* Hamburger animation to X */
    .hamburger.active .bar:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(3) {
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
    }
    
    /* Remove fixed font sizes since we're using clamp() for responsiveness */
    .parallax-content {
        width: 95%; /* Slightly wider on tablets */
    }
    
    .information-title {
        font-size: 2.5rem;
    }
    
    .information-subtitle {
        font-size: 1.2rem;
    }
    
    .information-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .information-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Show Book link only within mobile dropdown when open */
    .nav-menu.active .nav-item.mobile-book { display: block; }
}

/* Enhanced mobile breakpoint */
@media (max-width: 480px) {
    /* Remove fixed font sizes since we're using clamp() for responsiveness */
    .parallax-content {
        width: 98%; /* Almost full width on mobile */
        padding: 0 10px; /* Add some padding for safety */
    }
    
    .information-title {
        font-size: 2rem;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .information-content {
        padding: 0 15px;
    }

    /* Center information text and buttons; hide features on phone */
    .information-text {
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .information-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: clamp(220px, 70vw, 380px);
        margin: 0 auto;
    }
    .information-features {
        display: none;
    }
}
.quote-card {
    background: var(--surface);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    max-width: 640px;
    margin: 2rem auto;
}
.quote-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.quote-subtitle {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}
.quote-form {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    margin-bottom: 1rem;
}
.deposit-wall {
    background: linear-gradient(135deg, rgba(9, 9, 9, 0.9), rgba(26, 26, 26, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.deposit-wall-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
}
.deposit-title {
    font-size: 1.6rem;
    margin: 0.2rem 0 0.35rem;
}
.deposit-description {
    color: var(--text-secondary);
    margin: 0;
}
.deposit-actions {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 240px;
}
.deposit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, #d4af37, #b78a1e);
    color: #0b0b0b;
    padding: 0.8rem 1.25rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
}
.deposit-btn:hover {
    filter: brightness(0.95);
}
.deposit-note {
    color: #c0c0c0;
    font-size: 0.95rem;
    margin: 0;
}
.deposit-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    padding-top: 1rem;
}
.deposit-step {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.16);
    color: #d4af37;
    font-weight: 700;
}
.quote-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: var(--text);
    cursor: pointer;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-top: 0;
    cursor: pointer;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--surface);
    accent-color: #d4af37;
    flex: 1;
}
.quote-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
}
.quote-input.invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.12);
}
.input-error i { color: #dc3545; }
.input-error span { line-height: 1.2; }
.quote-button {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000;
    border: none;
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.quote-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.quote-button:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.2);
}
.quote-result {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
}
@media (max-width: 600px) {
    .quote-form { flex-direction: column; align-items: stretch; }
}
.mapboxgl-ctrl-geocoder {
    min-width: 100%;
    border-radius: var(--radius, 8px);
    font-size: var(--text-sm, 0.875rem);
    background: var(--surface, #f8f9fa);
    border: 1px solid var(--border, #e0e0e0);
}

.mapboxgl-ctrl-geocoder--input {
    padding: 0.875rem 1rem;
    border-radius: var(--radius, 8px);
    border: 1px solid var(--border, #e0e0e0);
    font-size: var(--text-sm, 0.875rem);
    color: var(--text, #1a1a1a);
    background: var(--surface, #f8f9fa);
}

.mapboxgl-ctrl-geocoder--results {
    border-radius: var(--radius, 8px);
    border: 1px solid var(--border, #e0e0e0);
    box-shadow: 0 2px 8px var(--shadow, rgba(0, 0, 0, 0.08));
    background: var(--surface, #f8f9fa);
}

.mapboxgl-ctrl-geocoder--result {
    border-radius: 0;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border, #e0e0e0);
    color: var(--text, #1a1a1a);
}

.mapboxgl-ctrl-geocoder--result:last-child {
    border-bottom: none;
}

.mapboxgl-ctrl-geocoder--result:hover {
    background-color: var(--surface-2, #f0f2f5);
}

.mapboxgl-ctrl-geocoder--result.active {
    background-color: var(--surface-2, #f0f2f5);
}

/* Mapbox Search Box API Styling */
mapbox-search-box {
    width: 100%;
}

mapbox-search-box input {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: var(--radius, 8px);
    border: 1px solid var(--border, #e0e0e0);
    font-size: var(--text-sm, 0.875rem);
    color: var(--text, #1a1a1a);
    background: var(--surface, #f8f9fa);
}

mapbox-search-listbox {
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 0.25rem;
}

mapbox-search-listbox li {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
}

mapbox-search-listbox li:last-child {
    border-bottom: none;
}

mapbox-search-listbox li:hover {
    background-color: var(--surface);
}

mapbox-search-listbox li[aria-selected="true"] {
    background-color: var(--surface);
}

#booking-map {
    border-radius: 12px;
}

/* ==================== SERVICES PAGE STYLES ==================== */

.services-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
                url('images/services-header-golden-gate.jpg');
    background-size: cover;
    background-position: center 30%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-inverse);
    padding: 60px 20px;
}

.services-hero-content {
    max-width: 800px;
}

.services-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent);
}

.services-hero-subtitle {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    color: var(--text-inverse);
    font-weight: 300;
}

.services-intro {
    padding: 80px 20px;
    background: var(--surface);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.intro-feature i {
    color: var(--accent);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Services Grid Section */
.services-grid-section {
    padding: 80px 20px;
    background: var(--bg);
}

.services-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.service-item:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--btn-text);
}

.service-icon i {
    color: var(--btn-text);
    margin-bottom: 0;
}

.service-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.service-item > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
    text-align: left;
}

.service-features li {
    padding: 0.7rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(212, 175, 55, 0.03));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--surface);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.benefit-card:hover {
    box-shadow: 0 12px 32px var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.benefit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

html[data-theme="dark"] .benefit-card p {
    background: linear-gradient(180deg, #f5f5f5 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Services CTA Section */
.services-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #000, #1a1a1a);
    color: var(--text-inverse);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-bottom: 1rem;
    color: var(--accent);
}

.cta-content > p {
    font-size: 1.2rem;
    color: var(--text-inverse);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-primary {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: var(--btn-text);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-secondary {
    background: transparent;
    color: var(--text-inverse);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid var(--text-inverse);
}

.cta-secondary:hover {
    background: #d4af37;
    color: var(--btn-text);
    border-color: #d4af37;
}

.cta-contact {
    margin-top: 2rem;
    font-size: 1.1rem;
}

.cta-contact a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-contact a:hover {
    color: var(--accent-2);
}

/* ==================== FLEET PAGE STYLES ==================== */

.fleet-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
                url('images/fleet-header-luxury-vehicles.jpg');
    background-size: cover;
    background-position: center 0%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-inverse);
    padding: 60px 20px;
}

.fleet-hero-content {
    max-width: 800px;
}

.fleet-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent);
}

.fleet-hero-subtitle {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    color: #fff;
    font-weight: 300;
}

.fleet-intro {
    padding: 80px 20px;
    background: var(--surface);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.section-title.centered {
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 900px;
}

.fleet-vehicles {
    padding: 80px 20px;
    background: var(--bg);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.fleet-card {
    background: var(--surface);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.fleet-card:hover {
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.vehicle-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.fleet-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fleet-card:hover .fleet-img {
    transform: scale(1.05);
}

.vehicle-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d4af37;
    color: var(--btn-text);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.vehicle-info {
    padding: 2.5rem;
}

.vehicle-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.vehicle-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

html[data-theme="dark"] .vehicle-description {
    background: linear-gradient(180deg, #f5f5f5 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vehicle-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.feature i {
    color: #d4af37;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.vehicle-amenities {
    list-style: none;
    margin-bottom: 1.5rem;
}

.vehicle-amenities li {
    padding: 0.7rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    padding-left: 1.5rem;
    position: relative;
}

.vehicle-amenities li:last-child {
    border-bottom: none;
}

.vehicle-amenities li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.vehicle-use {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Dark mode gradient for fleet descriptions and features */
html[data-theme="dark"] .feature,
html[data-theme="dark"] .vehicle-amenities li,
html[data-theme="dark"] .vehicle-use {
    background: linear-gradient(180deg, #f5f5f5 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Keep fleet symbols gold even when gradients apply to text */
html[data-theme="dark"] .feature i,
html[data-theme="light"] .feature i {
    color: #d4af37 !important;
    background: none;
    -webkit-text-fill-color: #d4af37;
}

/* Fleet Benefits Section */
.fleet-benefits {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(212, 175, 55, 0.03));
}

.fleet-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit {
    background: var(--surface);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.benefit:hover {
    border-color: #d4af37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--btn-text);
}

.benefit h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.benefit p {
    color: var(--text-secondary);
    line-height: 1.6;
}

html[data-theme="dark"] .benefit p {
    background: linear-gradient(180deg, #f5f5f5 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fleet CTA Section */
.fleet-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #000, #1a1a1a);
    color: var(--text-inverse);
}

.cta-box {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #d4af37;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--accent);
}

.cta-box > p:first-of-type {
    font-size: 1.1rem;
    color: var(--text-inverse);
    margin-bottom: 2rem;
}

.cta-box .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.contact-info {
    color: #aaa;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-image {
        height: 250px;
    }

    .vehicle-info {
        padding: 1.5rem;
    }

    .vehicle-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-grid-full {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .fleet-benefits .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }
}

/* ==================== CONTACT PAGE STYLES ==================== */

.contact-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
                url('images/contact-header-palm-tree.jpg');
    background-size: cover;
    background-position: center 0%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-inverse);
    padding: 60px 20px;
}

.contact-hero-content {
    max-width: 800px;
}

.contact-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent);
}

.contact-hero-subtitle {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    color: var(--text-inverse);
    font-weight: 300;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 20px;
    background: var(--surface);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    background: var(--bg);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--btn-text);
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.info-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.info-card a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--accent-2);
}

.info-details {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 20px;
    background: var(--surface);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.form-content {
    max-width: 500px;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.form-subtitle {
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.form-input {
    padding: 0.9rem 1rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    color: var(--text);
    background: var(--surface);
}

/* Stronger visible borders in both themes */
html[data-theme="dark"] .form-input,
html[data-theme="dark"] .form-textarea {
    border-color: rgba(255, 255, 255, 0.28);
}

html[data-theme="light"] .form-input,
html[data-theme="light"] .form-textarea {
    border-color: rgba(0, 0, 0, 0.18);
}

.form-input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.95rem;
    color: var(--text);
    cursor: pointer;
    white-space: nowrap;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-secondary);
}

.form-checkbox input {
    margin-top: 0;
    cursor: pointer;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
}

.form-submit {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: var(--btn-text);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.form-submit:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.form-status-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-status-message.success {
    background: var(--surface-2);
    color: var(--success);
    border: 1px solid var(--success);
    display: block;
}

.form-status-message.error {
    background: var(--surface-2);
    color: var(--danger);
    border: 1px solid var(--danger);
    display: block;
}

.form-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
    aspect-ratio: 3 / 4;
}

.form-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Quick Contact Section */
.quick-contact {
    padding: 80px 20px;
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.cta-button {
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.cta-button-primary {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: var(--btn-text);
    border: 2px solid var(--accent);
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-button-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.cta-button-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.cta-button-secondary:hover {
    background: #d4af37;
    color: var(--btn-text);
}

.cta-button-secondary:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* Service Areas Section */
.service-areas {
    padding: 80px 20px;
    background: var(--surface);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.area-item {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.area-item:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.1));
    border-color: var(--accent);
    transform: translateY(-3px);
}

.area-item i {
    color: #d4af37;
    font-size: 1.5rem;
}

.area-item span {
    font-weight: 600;
    color: var(--text);
}

html[data-theme="dark"] .area-item {
    border: 1px solid rgba(255, 255, 255, 0.25);
}

html[data-theme="dark"] .area-item span {
    color: #fff;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-image {
        order: -1;
    }

    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .cta-buttons-group {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Honeypot field (hidden) */
.hp-group { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }
.hp-field { opacity: 0; pointer-events: none; }

/* ==================== ABOUT PAGE STYLES ==================== */

.about-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
                url('images/about-header-everest.jpg');
    background-size: cover;
    background-position: center 0%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 60px 20px;
}

.about-hero-content {
    max-width: 800px;
}

.about-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #d4af37;
}

.about-hero-subtitle {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    color: #ddd;
    font-weight: 300;
}

/* About Introduction Section */
.about-intro {
    padding: 80px 20px;
    background: var(--surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text .section-title {
    margin-top: 0;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Commitment Section */
.about-commitment {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(212, 175, 55, 0.03));
}

.about-commitment .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .commitment-grid {
        grid-template-columns: 1fr;
    }
}

.commitment-card {
    background: var(--surface);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 4px 12px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.commitment-card:hover {
    box-shadow: 0 12px 32px var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.commitment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--btn-text);
}

.commitment-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.commitment-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About Services Section */
.about-services {
    padding: 80px 20px;
    background: var(--surface);
}

.about-services .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.about-services .section-description {
    text-align: center;
    margin-bottom: 3rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-item {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.02));
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.service-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 600;
}

.service-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Fleet Highlight Section */
.about-fleet-highlight {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(212, 175, 55, 0.03));
}

.about-fleet-highlight .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.about-fleet-highlight .section-description {
    text-align: center;
    margin-bottom: 3rem;
}

.fleet-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.fleet-card {
    background: var(--surface);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.fleet-card:hover {
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.fleet-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 600;
}

.fleet-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About CTA Section */
.about-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #000, #1a1a1a);
    color: var(--text-inverse);
    text-align: center;
}

.about-cta .container {
    max-width: 800px;
}

.about-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-bottom: 1rem;
    color: var(--accent);
}

.about-cta > p {
    font-size: 1.2rem;
    color: var(--text-inverse);
    margin-bottom: 2.5rem;
}

.about-cta .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta .cta-primary,
.about-cta .cta-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.about-cta .cta-primary {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: var(--btn-text);
    border: 2px solid var(--accent);
}

.about-cta .cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.about-cta .cta-secondary {
    background: transparent;
    color: var(--text-inverse);
    border: 2px solid var(--text-inverse);
}

.about-cta .cta-secondary:hover {
    background: #d4af37;
    color: var(--btn-text);
    border-color: #d4af37;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .commitment-grid,
    .services-list,
    .fleet-highlight-grid {
        grid-template-columns: 1fr;
    }

    .about-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-cta .cta-primary,
    .about-cta .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
