/* ============================================
   Services Page Clone Styles (Premium Dark Mode)
   ============================================ */

:root {
    --bg-dark: #050505;
    --bg-card: #0A0A0A;
    --text-white: #FFFFFF;
    --text-gray: #B0B0B0;
    --accent-gold: #C5A059;
    --accent-gold-hover: #D4B06A;
    --border-color: #222222;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
}

/* --- Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-gold {
    background-color: var(--accent-gold);
    color: #000;
    border: 1px solid var(--accent-gold);
}

.btn-gold:hover {
    background-color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
}

.btn-outline {
    background: transparent;
    border: 1px solid #333;
    color: var(--text-white);
}

.btn-outline:hover {
    border-color: var(--text-white);
}

/* --- Services Hero --- */
.services-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Push content to right */
    text-align: left; /* Text alignment within content */
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%), url('../images/hero-car.png');
    background-size: cover;
    background-position: center;
    padding: 100px 5%;
    margin-bottom: 0;
}

.services-hero-content {
    max-width: 600px;
    margin-right: 5%; /* Offset from right edge */
    margin-left: auto; /* Push to right */
}

.services-hero h1 {
    font-size: clamp(36px, 4vw, 56px);
    margin-bottom: 20px;
    line-height: 1.1;
}

.services-subtitle {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 100%;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-buttons .btn {
    padding: 14px 32px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.hero-buttons .btn-gold {
    background-color: #C5A059;
    color: #000;
    border: 1px solid #C5A059;
}

.hero-buttons .btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.hero-buttons .btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .services-hero {
        justify-content: center;
        text-align: center;
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-car.png');
        background-size: cover;
        background-position: center;
        align-items: flex-end; /* Bottom align on mobile if car is main focus? Or center. */
        justify-content: flex-end;
        padding-bottom: 15vh;
    }
    
    .services-hero-content {
        margin-right: auto;
        margin-left: auto;
        text-align: left;
        padding: 20px;
    }

    .hero-buttons {
        justify-content: flex-start;
    }
    
    .trust-indicators {
        justify-content: flex-start !important;
    }
}

/* --- Page Intro --- */
.services-intro {
    /* Use standard spacing compatible with global header */
    padding: 180px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 1) 100%), url('../images/hero-bg-service.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    /* Ensure z-index context if needed */
}

.intro-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-gray);
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.intro-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-white);
}

.intro-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.intro-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: var(--accent-gold);
    margin-bottom: 40px;
}

.intro-badges .dot {
    color: #333;
}

.intro-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- Services Grid --- */
.services-section {
    padding: 60px 0;
}

.section-label {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Force 3 columns */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 80px;
    justify-items: center;
}

/* Center last orphaned card */
.service-card:last-child:nth-child(7),
.service-card:nth-child(7) {
    grid-column: 2;
    justify-self: center;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #C5A059, #D4B06A);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.service-card-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-icon svg {
    stroke: #000;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, #D4B06A, #E5C17B);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5),
        0 0 30px rgba(197, 160, 89, 0.3);
}

.service-card:hover .service-card-icon::before {
    opacity: 1;
    animation: iconShine 1.5s ease-in-out infinite;
}

.service-card:hover .service-card-icon svg {
    transform: scale(1.05);
}

@keyframes iconShine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-description {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: gap 0.3s ease;
}

.service-card-link::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-card-link:hover {
    color: #fff;
    gap: 5px;
}

.service-card-link:hover::after {
    transform: translateX(5px);
}

.badge-gold {
    background: var(--accent-gold);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.learn-more {
    font-size: 13px;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.learn-more:hover {
    border-color: var(--accent-gold);
}

/* Highlight Card (7th Item) - Desktop Optimization */
.highlight-card {
    grid-column: 2 / 3;
    /* Center in 3-column grid */
    background: linear-gradient(180deg, rgba(197, 160, 89, 0.05) 0%, #0A0A0A 100%);
    border-color: rgba(197, 160, 89, 0.3);
}

.highlight-card:hover {
    box-shadow: 0 0 40px rgba(197, 160, 89, 0.2);
    border-color: var(--accent-gold);
}

.card-badge {
    background: var(--accent-gold);
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: row;
    /* Horizontal badge as per image */
    align-items: center;
    gap: 8px;
    clip-path: none;
    /* Removed the previous shape */
}

.badge-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-price {
    font-size: 11px;
    font-weight: 800;
}

/* --- Mobile Horizontal Layout Refinement --- */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        position: relative;
        flex-direction: column;
        align-items: center;
        /* Center Align Everything */
        text-align: center;
        padding: 30px 20px;
        /* Balanced padding */
    }

    .service-card-icon {
        position: relative;
        /* Reset to relative flow */
        top: auto;
        right: auto;
        width: 60px;
        height: 60px;
        margin: 0 auto 15px auto;
        /* Center margin */
        font-size: 2rem;
    }

    .service-card-title {
        position: relative;
        /* Reset to relative flow */
        top: auto;
        left: auto;
        right: auto;
        margin: 0 0 10px 0;
        justify-content: center;
        height: auto;
        width: 100%;
    }

    .service-card-description {
        margin-top: 0;
        width: 100%;
        margin-bottom: 20px;
    }

    .service-card-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
    }

    /* We need to wrap text elements to group them for flex-row layout */
    /* Since we can't change HTML structure easily here without rewrite, we use display contents or wrapper? */
    /* Actually better to use grid on the card itself for mobile */
    .service-card {
        display: grid;
        grid-template-columns: 40px 1fr;
        grid-template-areas:
            "icon title"
            "icon desc"
            "empty link";
        gap: 8px 20px;
    }

    .card-icon {
        grid-area: icon;
    }

    .service-card h3 {
        grid-area: title;
        min-height: auto;
        margin-bottom: 4px;
        font-size: 16px;
        justify-content: flex-start;
    }

    .service-card p {
        grid-area: desc;
        margin-bottom: 12px;
        font-size: 13px;
    }

    .learn-more {
        grid-area: link;
    }

    /* Reset Highlight Card for Mobile */
    .highlight-card {
        grid-column: 1;
    }

    .card-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 10px;
        grid-column: 1 / -1;
        width: fit-content;
        margin-left: auto;
        /* Align right */
    }

    /* Re-structure grid areas for highlight card to include badge */
    .highlight-card {
        grid-template-areas:
            "badge badge"
            "icon title"
            "icon desc"
            "empty link";
    }

    .card-badge {
        grid-area: badge;
    }
}

/* --- Booking Strip --- */

/* --- Autocomplete Dropdown --- */
.booking-group {
    position: relative;
    /* Ensure absolute dropdown positions relative to this */
}

.autocomplete-items {
    position: absolute;
    border: 1px solid var(--accent-gold);
    border-bottom: none;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #000;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    max-height: 250px;
    overflow-y: auto;
    margin-top: 5px;
}

.autocomplete-item {
    padding: 12px 15px;
    cursor: pointer;
    background-color: #050505;
    border-bottom: 1px solid #222;
    color: #fff;
    font-size: 14px;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.autocomplete-item:hover,
.autocomplete-active {
    background-color: var(--accent-gold);
    /* Blue/Gold highlight */
    color: #000;
    font-weight: 600;
}

.autocomplete-item strong {
    font-weight: 700;
    color: var(--accent-gold);
}

.autocomplete-item:hover strong {
    color: #000;
}

.booking-strip-section {
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.strip-label-mobile {
    display: none;
    /* Only show on mobile if requested, referencing image it has 'Desktop' label but usually hidden in design */
    font-size: 12px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 20px;
}

.booking-strip {
    background: rgba(30, 30, 30, 0.9);
    /* Higher opacity for visibility */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 160, 89, 0.5);
    /* More visible border */
    border-radius: 50px;
    /* Pill shape explicitly */
    display: flex;
    /* Default is row */
    flex-direction: row;
    /* FORCE ROW */
    align-items: center;
    padding: 8px 8px 8px 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    max-width: 1100px;
    margin: 0 auto;
    gap: 0;
}

/* Glow Effect Wrapper */
.booking-strip:hover {
    border-color: var(--accent-gold);
    /* Full gold on hover */
    box-shadow: 0 0 40px rgba(197, 160, 89, 0.2);
}

.booking-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    /* Use border-right instead of div */
}

.booking-group:last-of-type {
    border-right: none;
    padding-right: 10px;
}

/* Hide the old divider div since we use border-right now for better flex control */
.booking-divider {
    display: none;
}

.booking-group label {
    font-size: 11px;
    color: #888;
    margin-bottom: 4px;
    font-weight: 500;
    display: block;
}

.booking-group input,
.booking-group select {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 0;
    width: 100%;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.booking-group input::placeholder {
    color: #ddd;
    opacity: 1;
}

/* Custom Select Styling */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.select-selected {
    color: #fff;
    padding: 0;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.select-selected:after {
    content: "";
    /* Arrow */
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-color: #666 transparent transparent transparent;
    margin-left: 10px;
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #666 transparent;
    transform: translateY(-5px);
}

.select-items {
    position: absolute;
    background-color: #000;
    border: 1px solid var(--accent-gold);
    border-top: none;
    border-bottom: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    max-height: 250px;
    overflow-y: auto;
    margin-top: 5px;
}

.select-hide {
    display: none;
}

.select-item {
    color: #fff;
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #222;
    font-size: 14px;
    transition: background 0.2s;
}

.select-item:hover,
.same-as-selected {
    background-color: var(--accent-gold);
    color: #000;
    font-weight: 600;
}

.booking-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 20px;
}

.btn-book-strip {
    background: linear-gradient(135deg, #DFBD69 0%, #997836 100%);
    /* Gradient Gold */
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-book-strip:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}

.booking-note {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 15px;
}

/* --- Responsive (Mobile Stacked Layout) --- */
@media (max-width: 768px) {
    .booking-strip {
        flex-direction: column;
        align-items: stretch;
        border-radius: 16px;
        /* Card shape on mobile */
        padding: 0;
        background: rgba(20, 20, 20, 0.95);
    }

    .booking-group {
        width: 100%;
        padding: 15px 20px;
        border-right: none;
        /* Remove desktop separator */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .booking-group:last-of-type {
        border-bottom: none;
        padding-right: 20px;
    }

    .booking-divider {
        display: none;
    }

    .booking-group label {
        font-size: 12px;
        color: #666;
    }

    .booking-group input::placeholder {
        color: #999;
    }

    .btn-book-strip {
        border-radius: 0 0 12px 12px;
        /* Bottom rounded corners */
        width: 100%;
        margin: 0;
        background: linear-gradient(135deg, #DFBD69 0%, #B89648 100%);
    }

    .strip-label-mobile {
        display: block;
        /* Show header on mobile */
    }
}

/* --- Why Choose Us --- */
.why-choose-us {
    padding: 80px 0;
    position: relative;
}

.section-header-center {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    margin-bottom: 50px;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-header-center:after {
    content: "";
    /* Gold Glow Line under title if needed, or just keep simple */
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    margin: 20px auto 0;
    box-shadow: 0 0 10px var(--accent-gold);
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-box {
    background: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.15), inset 0 0 20px rgba(197, 160, 89, 0.05);
    /* Inner & Outer Glow */
    transform: translateY(-5px);
    background: linear-gradient(180deg, rgba(197, 160, 89, 0.05) 0%, #0A0A0A 100%);
}

.feature-icon {
    position: relative;
    margin-bottom: 20px;
    color: var(--accent-gold);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.feature-icon svg {
    filter: drop-shadow(0 0 5px rgba(197, 160, 89, 0.3));
}

/* Icon Badges (Clock, Coin) */
.icon-badge-clock,
.icon-badge-coins {
    position: absolute;
    bottom: -5px;
    right: -8px;
    background: #000;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.feature-box h4 {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.feature-box p {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

/* --- Service Areas --- */
.service-areas {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(30, 30, 30, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    /* Subtle radial highlight behind section */
}

.areas-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.areas-subtitle {
    font-size: 16px;
    color: #888;
    margin-bottom: 50px;
    font-weight: 400;
}

.area-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ccc;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: default;
}

.tag:hover {
    border-color: rgba(197, 160, 89, 0.5);
    color: #fff;
}

.tag.active-tag {
    border-color: var(--accent-gold);
    color: var(--text-white);
    background: rgba(197, 160, 89, 0.1);
    /* Inner gold tint */
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.3), inset 0 0 10px rgba(197, 160, 89, 0.1);
    /* Gold Glow */
    font-weight: 600;
}

/* --- FAQ --- */
.faq-section {
    padding: 80px 0;
    text-align: center;
}

.faq-main-title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 50px;
    font-weight: 600;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 25px 0;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent-gold);
}

/* Chevron Icon */
.faq-icon::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

/* Rotate icon when active */
.faq-question.active .faq-icon::after {
    transform: rotate(-135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding-right: 40px;
}

.faq-answer p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 25px;
    margin-top: 10px;
    /* Reset to positive margin */
}

/* --- Bottom CTA --- */
.bottom-cta {
    padding: 80px 0 120px;
    /* Extra padding bottom for spacing before footer */
    text-align: center;
}

.bottom-cta h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive */
/* --- Interactive Map Section --- */
.map-section {
    padding: 80px 0;
    background: #050505;
}

.map-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.areas-list-container {
    background: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-grow: 1;
    text-align: center;
}

.area-pill:hover,
.area-pill.active {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
    font-weight: 600;
}

#serviceMap {
    height: 500px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

@media (max-width: 992px) {
    .map-layout {
        grid-template-columns: 1fr;
    }

    #serviceMap {
        height: 400px;
    }
}