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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0; /* Explicit margin reset */
    padding: 0; /* Explicit padding reset */
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Desktop header background */
@media (min-width: 769px) {
    .header {
        background-image: url('images/header-desktop.jpg');
    }
}

/* Mobile header background */
@media (max-width: 768px) {
    .header {
        background-image: url('images/header-phone.jpg');
    }
}


    /* 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: #fff;
    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: #d4af37;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    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;
}

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

.phone-number:hover {
    color: #d4af37;
}

.book-now-btn {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000;
    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: #fff;
    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 */
}

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

.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: #000;
    z-index: 2; /* Above information image but below content */
}

.information-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #fff;
    z-index: 15; /* Highest z-index to ensure content is always visible */
    position: relative;
}

.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;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.information-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.information-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #f0f0f0;
}

/* 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: #000;
}

.cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #d4af37;
}

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

.cta-secondary:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-3px);
}

/* Hero Features */
.information-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
}

.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);
}

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

.feature-item span {
    font-weight: 500;
    color: #fff;
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.service-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    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: #000; /* Solid black 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 rgba(255, 255, 255, 0.08);
        z-index: 1001;
        opacity: 1;
        animation: menuFadeIn 180ms ease-out;
    }
    .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        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;
    }
    
    /* 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: #fff;
    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: #666;
    margin-bottom: 1.5rem;
}
.quote-form {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    margin-bottom: 1rem;
}
.quote-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
}
.quote-inputs {
    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: 10px;
    font-size: 1rem;
}
.mapboxgl-ctrl-geocoder--input {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.mapboxgl-ctrl-geocoder--results {
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mapboxgl-ctrl-geocoder--result {
    border-radius: 0;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
}

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

.mapboxgl-ctrl-geocoder--result:hover {
    background-color: #f5f5f5;
}

.mapboxgl-ctrl-geocoder--result.active {
    background-color: #f0f0f0;
}

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

mapbox-search-box input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

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: #f5f5f5;
}

mapbox-search-listbox li[aria-selected="true"] {
    background-color: #f0f0f0;
}

#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: #fff;
    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: #d4af37;
}

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

.services-intro {
    padding: 80px 20px;
    background: #f9f9f9;
}

.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: #d4af37;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Services Grid Section */
.services-grid-section {
    padding: 80px 20px;
    background: #fff;
}

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

.service-item {
    background: #fff;
    border: 1px solid #eee;
    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: #d4af37;
}

.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: #000;
}

.service-icon i {
    color: #000;
    margin-bottom: 0;
}

.service-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.service-item > p {
    color: #666;
    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: #555;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

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

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    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(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

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

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

.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: #000;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Services CTA Section */
.services-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #000, #1a1a1a);
    color: #fff;
    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: #d4af37;
}

.cta-content > p {
    font-size: 1.2rem;
    color: #ccc;
    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: #000;
    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 #d4af37;
}

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

.cta-secondary {
    background: transparent;
    color: #fff;
    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 #fff;
}

.cta-secondary:hover {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
}

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

.cta-contact a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-contact a:hover {
    color: #f4d03f;
}

/* ==================== 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: #fff;
    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: #d4af37;
}

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

.fleet-intro {
    padding: 80px 20px;
    background: #f9f9f9;
}

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

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

.section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 900px;
}

.fleet-vehicles {
    padding: 80px 20px;
    background: #fff;
}

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

.fleet-card {
    background: #fff;
    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: #000;
    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: #000;
}

.vehicle-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: #333;
}

.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: #555;
    border-bottom: 1px solid #f0f0f0;
    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: #999;
    font-size: 0.95rem;
}

/* 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(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit {
    background: #fff;
    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;
}

.benefit:hover {
    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: #000;
}

.benefit h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000;
}

.benefit p {
    color: #666;
    line-height: 1.6;
}

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

.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: #d4af37;
}

.cta-box > p:first-of-type {
    font-size: 1.1rem;
    color: #ccc;
    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 {
        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: #fff;
    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: #d4af37;
}

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

/* Contact Info Section */
.contact-info-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.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: #fff;
    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: #000;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.info-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.info-card a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #f4d03f;
}

.info-details {
    font-size: 0.9rem;
    color: #999;
    margin-top: 1rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 20px;
    background: #fff;
}

.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: #000;
}

.form-subtitle {
    color: #666;
    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: #333;
}

.form-input {
    padding: 0.9rem 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.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: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #666;
    cursor: pointer;
}

.form-checkbox input {
    margin-top: 0.3rem;
    cursor: pointer;
}

.form-submit {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000;
    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: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-status-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    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;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(212, 175, 55, 0.03));
}

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

.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: #000;
    border: 2px solid #d4af37;
}

.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: #d4af37;
    border: 2px solid #d4af37;
}

.cta-button-secondary:hover {
    background: #d4af37;
    color: #000;
}

.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: #fff;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 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: #d4af37;
    transform: translateY(-3px);
}

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

.area-item span {
    font-weight: 600;
    color: #333;
}

/* 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: #fff;
}

.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: #666;
    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(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.commitment-card {
    background: #fff;
    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;
}

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

.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: #000;
}

.commitment-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000;
}

.commitment-card p {
    color: #666;
    line-height: 1.6;
}

/* About Services Section */
.about-services {
    padding: 80px 20px;
    background: #fff;
}

.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(auto-fit, minmax(280px, 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: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

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

.service-item p {
    color: #666;
    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(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.fleet-card {
    background: #fff;
    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: #d4af37;
    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: #000;
    font-weight: 600;
}

.fleet-card p {
    color: #666;
    line-height: 1.6;
}

/* About CTA Section */
.about-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #000, #1a1a1a);
    color: #fff;
    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: #d4af37;
}

.about-cta > p {
    font-size: 1.2rem;
    color: #ccc;
    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: #000;
    border: 2px solid #d4af37;
}

.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: #fff;
    border: 2px solid #fff;
}

.about-cta .cta-secondary:hover {
    background: #d4af37;
    color: #000;
    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;
    }
}
