:root {
    --bg-dark: #12161f;
    /* Midnight Slate */
    --bg-darker: #0c0f16;
    --text-white: #F7FAFC;
    /* Alabaster */
    --text-muted: #94a3b8;
    --accent-gold: #c5a065;
    /* Brushed Bronze */
    --accent-gold-dim: #8a6f44;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 18px;
    /* Slightly increased from default */
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 400;
}

h1.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.text-gold {
    color: var(--accent-gold);
}

.section-label {
    display: block;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 30px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background-color: var(--accent-gold);
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container.narrow {
    max-width: 800px;
}

section {
    padding: 100px 0;
    position: relative;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-gold);
    margin-top: 1rem;
    opacity: 0;
}

.loader-line {
    width: 0;
    height: 1px;
    background: var(--accent-gold);
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    z-index: 100;
    background: rgba(18, 22, 31, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    transition: opacity 0.3s;
}

.logo img {
    height: 128px;
    /* Reduced by 20% from 160px */
    width: auto;
    transform: translateY(5px);
    /* Dropped 5px */
}

.logo:hover {
    opacity: 0.8;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    margin-left: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

/* ... existing code ... */

/* Mobile Responsive */


.nav-links a:hover {
    color: var(--accent-gold);
}

.cta-btn {
    border: 1px solid var(--accent-gold);
    padding: 0.5rem 1.5rem;
    color: var(--accent-gold) !important;
}

.cta-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-dark) !important;
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 600px;
    /* Reduced from 800px */
    /* Ensure content fits */
    display: flex;
    align-items: flex-start;
    /* Changed from center */
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/hero_placeholder.jpg') center/cover no-repeat;
    filter: brightness(0.4);
    z-index: -1;
    transform: scale(1.1);
}

.hero-container {
    display: flex;
    align-items: flex-start;
    /* Align form and text to top */
    justify-content: center;
    /* Centered focus on the form */
    width: 100%;
    gap: 4rem;
    padding-top: 140px;
    /* Specific top padding instead of center */
    /* Account for fixed header */
}

.hero-content-right {
    flex: 0 0 75%;
    /* Occupy most of the width */
    max-width: 900px;
    /* Cap it reasonably for giant screens */
    opacity: 1;
    /* Was 0 for JS animation - now visible by default */
}

.hero-content-left {
    display: none;
    /* Hide the text for now as requested "occupy most of screen width" implies the form takes over */
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 1rem;
    font-weight: 300;
}

/* Glass Panel Form Card - Enhanced */
.glass-panel {
    background: linear-gradient(135deg, rgba(18, 22, 31, 0.95) 0%, rgba(30, 35, 48, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid var(--accent-gold);
    padding: 3rem;
    border-radius: 12px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(200, 170, 110, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    min-width: 500px;
}

.concierge-header-small h3 {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.concierge-header-small p {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Condensed Form Styling for Hero */
.small-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.small-card {
    padding: 1rem 0.5rem;
    font-size: 0.8rem;
}

.full-width {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: var(--text-white);
    margin-top: 10px;
}

/* Manifesto */
.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.manifesto-text h2 {
    font-size: 3rem;
    /* Increased from 2.5rem */
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

.manifesto-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    gap: 1rem;
}

.badge {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
}

.blueprint-visual {
    width: 100%;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.blueprint-svg .draw-path {
    fill: none;
    stroke: var(--accent-gold);
    stroke-width: 1;
    opacity: 0.5;
}

/* Services */
.services {
    background: var(--bg-darker);
}

.service-accordion {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    cursor: pointer;
    transition: background 0.3s;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-num {
    font-family: var(--font-heading);
    color: var(--text-muted);
    margin-right: 2rem;
    opacity: 0.3;
}

.service-item h3 {
    font-size: 2rem;
    flex-grow: 1;
}

.service-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    transition: transform 0.3s;
}

.service-item:hover .service-icon {
    transform: rotate(45deg);
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease;
    /* Slower transition for large content */
    padding-left: 4rem;
    color: var(--text-muted);
    opacity: 0;
    /* Add opacity transition */
}

.service-item.active .service-details {
    max-height: 800px;
    /* Allow much more room */
    padding-top: 2rem;
    opacity: 1;
    padding-bottom: 2rem;
}

/* Rich Content Styling inside Accordion */
.service-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-top: 1rem;
}

.service-sub-col h4 {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.service-sub-col p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    margin-top: 1rem;
}

.service-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-white);
}

.service-list li::before {
    content: "•";
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .service-details {
        padding-left: 0;
    }

    .service-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Google Reviews Section */
.google-reviews-section {
    background: #ffffff;
    color: #333;
    padding: 60px 0;
    position: relative;
    border-top: 1px solid #eee;
}

.google-reviews-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1100px;
}

.google-header {
    text-align: left;
    margin-bottom: 0px;
    flex: 0 0 300px;
}

.google-logo-wrapper {
    font-size: 2.2rem;
    font-family: 'Product Sans', 'Inter', sans-serif;
    /* Fallback to Inter */
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2px;
}

.g-blue {
    color: #4285F4;
}

.g-red {
    color: #DB4437;
}

.g-yellow {
    color: #F4B400;
}

.g-green {
    color: #0F9D58;
}

.review-label {
    color: #5f6368;
    font-weight: 400;
    margin-left: 10px;
}

.google-stars-header {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rating-score {
    font-size: 4rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.stars {
    color: #F4B400;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin: 0.5rem 0;
}

.review-count {
    color: #777;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Selected State */
input:checked+.image-card {
    border-color: var(--accent-gold);
    box-shadow: 0 0 25px rgba(197, 160, 101, 0.4);
}

/* Utils */
.mt-large {
    margin-top: 1.5rem;
}

/* Google Reviews Slider (Scroll Banner) */
.reviews-slider-container {
    position: relative;
    max-width: 100%;
    margin: 1rem auto 0;
    /* Reduced margin */
    padding: 0 4rem;
    /* Make room for arrows */
}

.reviews-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 0.5rem 0.5rem 1.5rem;
    /* Reduced Padding */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar IE */
}

.reviews-track::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome */
}

.google-review-card {
    flex: 0 0 320px;
    /* Fixed width for standard cards */
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /* Stronger shadow */
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: block;
    /* Always visible */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-review-card.active {
    display: block;
    /* backwards compatibility */
}

.google-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-name {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: #202124;
}

.review-date {
    font-size: 0.8rem;
    color: #777;
}

.g-icon-small {
    width: 24px;
    opacity: 1;
}

.review-stars {
    color: #F4B400;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.review-body {
    line-height: 1.6;
    color: #444;
    font-size: 1.05rem;
}

/* Strong Navigation Buttons */
.review-controls-google {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    /* Pass clicks through */
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.prev-google,
.next-google {
    pointer-events: auto;
    width: 60px;
    /* Bigger */
    height: 60px;
    /* Bigger */
    background: #4285F4;
    /* Google Blue */
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
    /* Blue shadow */
}

.prev-google:hover,
.next-google:hover {
    background: #3367D6;
    /* Darker blue hover */
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.review-controls-google {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1rem;
}

.review-controls-google button {
    background: #fff;
    border: 1px solid #dadce0;
    color: #5f6368;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-controls-google button:hover {
    background: #e8f0fe;
    color: #1967d2;
    border-color: #d2e3fc;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .google-reviews-section .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .google-header {
        text-align: center;
        flex: auto;
    }

    .google-stars-header,
    .google-logo-wrapper {
        align-items: center;
        justify-content: center;
    }

    .review-controls-google {
        justify-content: center;
    }
}

/* Concierge Form */
.concierge {
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
}

.concierge-header {
    text-align: center;
    margin-bottom: 4rem;
}

.concierge-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-step[data-step="1"] .next-btn,
.form-step[data-step="2"] .next-btn {
    display: none;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s;
}

.form-step label {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.option-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

input:checked+.option-card {
    background: var(--accent-gold);
    color: var(--bg-dark);
    border-color: var(--accent-gold);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

/* Fix Dropdown Legibility */
select option {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 10px;
}

input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* Image Selection Grid (Concierge Step 1) - Enhanced */
.image-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Dual Image Hover Effect */
.image-card {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.image-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.image-card .img-main {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.image-card .img-hover {
    opacity: 0;
    transform: scale(1.1);
    z-index: 2;
}

.image-card:hover .img-main {
    opacity: 0;
    transform: scale(1.05);
}

.image-card:hover .img-hover {
    opacity: 1;
    transform: scale(1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 0.8rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    color: var(--text-white);
    font-size: 1rem;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 3;
    transition: all 0.3s;
}

.image-card:hover .card-overlay {
    padding-bottom: 1.5rem;
    /* Slight lift */
}

.image-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 15px 30px rgba(200, 170, 110, 0.2);
}

/* Utils */
.mt-large {
    margin-top: 1.5rem;
}

.step-label {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--text-muted);
}

/* Buttons */
button[type="button"],
button[type="submit"] {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 1rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn {
    background: var(--accent-gold) !important;
    color: var(--bg-dark) !important;
}

.btn-group {
    display: flex;
    gap: 1rem;
}

/* Premium Footer */
footer {
    background: #080a0e;
    padding: 6rem 2rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    color: #fff;
    font-family: var(--font-body);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col h4 {
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-col p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icon:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-col p {
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
}

to {
    opacity: 1;
    transform: translateY(0);
}
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .glass-nav {
        padding: 0 1.5rem;
    }

    .hero {
        height: auto;
        padding-top: 120px;
        padding-bottom: 50px;
    }

    .hero-container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .hero-content-left {
        text-align: center;
        max-width: 100%;
        opacity: 1;
    }

    /* Force opacity for mobile if GSAP fails/slow */
    .hero-content-right {
        flex: auto;
        width: 100%;
        max-width: 100%;
        opacity: 1;
    }

    .hero-title {
        font-size: 3rem;
    }

    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .option-grid,
    .small-grid {
        grid-template-columns: 1fr;
    }

    /* Ensure form is usable on mobile */
    .glass-panel {
        padding: 1.5rem;
    }

    .nav-links {
        display: none;
    }

    /* Simplified mobile handling */
}

/* --- Media Queries (Tablet & Mobile Optimization) --- */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero-container {
        padding-top: 100px;
        gap: 2rem;
    }

    .hero-content-right {
        max-width: 100%;
        flex: 1;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .manifesto-grid,
    .service-details-grid {
        gap: 2rem;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        /* Base size reset */
    }

    section {
        padding: 60px 0;
        /* Reduced padding */
    }

    .container {
        padding: 0 1.5rem;
    }

    /* Hero */
    .hero {
        height: auto;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-container {
        flex-direction: column;
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .glass-panel {
        min-width: unset;
        /* Remove fixed min-width */
        width: 100%;
        padding: 1.5rem;
        /* Reduced padding */
    }

    /* Form Grid adjustments */
    .image-selection-grid,
    .dynamic-sub-options,
    .small-grid {
        grid-template-columns: 1fr;
        /* Stack visually */
        gap: 1rem;
    }

    .option-grid {
        grid-template-columns: 1fr;
    }

    /* Manifesto */
    .manifesto-grid {
        grid-template-columns: 1fr;
    }

    .manifesto-text h2 {
        font-size: 2rem;
    }

    .blueprint-visual {
        height: 250px;
    }

    /* Reviews */
    .reviews-slider-container {
        padding: 0 1rem;
    }

    .review-controls-google {
        display: none;
        /* Hide side arrows on mobile, rely on swipe/scroll */
        /* Or make them smaller/bottom */
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .social-links {
        justify-content: center;
    }

    /* Services Accordion Details */
    .service-item h3 {
        font-size: 1.5rem;
    }

    .service-details {
        padding-left: 0;
    }

    .service-details-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .nav-links a {
        display: none;
    }

    .concierge-header-small h3 {
        font-size: 1.5rem;
    }

    .concierge-header-small p {
        font-size: 0.95rem;
    }

    .submit-btn {
        width: 100%;
    }
}

/* FAQ Page Styles */
.page-header {
    padding: 180px 0 80px;
    background-color: var(--bg-dark);
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.faq-section {
    padding: 0 0 100px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
    /* Lighter background when active */
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-white);
    margin: 0;
    padding-right: 2rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: transform 0.3s;
}

/* Rotate icon when active */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
    padding: 0 2rem;
    opacity: 0;
}

/* Expand answer when active */
.faq-item.active .faq-answer {
    max-height: 500px;
    /* Arbitrary large height */
    padding: 0 2rem 2rem;
    opacity: 1;
    color: var(--text-muted);
    line-height: 1.7;
}