/* Screen-reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Internal gold links */
.link-gold {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.link-gold:hover {
    color: var(--gold-light, #d4b85c);
}

/* ===========================
   CSS Variables
   =========================== */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;

    --gold: #c9a84c;
    --gold-hover: #e0be5a;
    --gold-muted: #8a7535;
    --gold-glow: rgba(201, 168, 76, 0.3);

    --text-primary: #f0ece2;
    --text-secondary: #a0998a;
    --text-on-gold: #1a1200;

    --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
    --container: 1200px;
}

/* ===========================
   Reset & Base
   =========================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold-hover);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ===========================
   Container
   =========================== */
.container {
    width: min(92%, var(--container));
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===========================
   Typography
   =========================== */
.section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.02em;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--text-on-gold);
    border-color: var(--gold);
    animation: glow 3s ease-in-out infinite;
}

.btn-primary:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    color: var(--text-on-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: rgba(240, 236, 226, 0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-icon {
    font-size: 1.1em;
}

/* ===========================
   Header
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.6rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.logo:hover {
    color: var(--text-primary);
}

.logo-icon {
    color: var(--gold);
    font-size: 1.4rem;
}

.logo-gold {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gold);
    color: var(--text-on-gold) !important;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--gold-hover);
    color: var(--text-on-gold) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 1rem;
}

.lang-link {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: color var(--transition), background var(--transition);
    letter-spacing: 0.03em;
}

.lang-link:hover {
    color: var(--gold);
}

.lang-link.active {
    color: var(--text-on-gold);
    background: var(--gold);
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
    border-radius: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================
   Hero
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
    z-index: 1;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 6rem 0 4rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid var(--gold-muted);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.1s both;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-desc {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--text-secondary);
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
    opacity: 0.5;
}

/* ===========================
   Sections
   =========================== */
.section {
    padding: 5rem 0;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-amenities {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #0f0f0f 100%);
    padding: 4rem 0;
}

/* ===========================
   About
   =========================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.about-photo {
    display: flex;
    justify-content: center;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 50%;
}

.about-list li strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.about-list li p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===========================
   Car
   =========================== */
.car-hero {
    position: relative;
    margin-bottom: 2.5rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.car-main-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    display: block;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center 30%;
}

@media (min-width: 768px) {
    .car-main-img {
        aspect-ratio: 16 / 9;
        object-position: center 45%;
    }
}

.car-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
    aspect-ratio: 4 / 3;
    transition: transform var(--transition);
}

.car-gallery-img:hover {
    transform: scale(1.03);
}

.car-name-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(transparent, rgba(10, 10, 10, 0.9));
}

.car-name-badge h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.car-class {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 500;
}

.car-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.car-feature {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition);
}

.car-feature:hover {
    border-color: var(--gold-muted);
    transform: translateY(-3px);
}

.car-feature-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.75rem;
}

.car-feature h4 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.car-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.car-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.car-note {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.95rem;
}

/* ===========================
   Services
   =========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 2px solid var(--gold-muted);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.1);
    border-bottom-color: var(--gold);
}

.service-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.service-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===========================
   Amenities
   =========================== */
.amenities-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.amenity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 160px;
    text-align: center;
    transition: all var(--transition);
}

.amenity:hover {
    border-color: var(--gold-muted);
}

.amenity-icon {
    font-size: 2rem;
}

.amenity span:last-child {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===========================
   Pricing
   =========================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--gold-muted);
    transform: translateY(-4px);
}

.pricing-card-featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.08) 0%, var(--bg-card) 100%);
    transform: scale(1.03);
}

.pricing-card-featured:hover {
    transform: scale(1.03) translateY(-4px);
    border-color: var(--gold-hover);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--text-on-gold);
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card h4 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-price {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.pricing-currency {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-details {
    text-align: left;
    margin-bottom: 1.5rem;
}

.pricing-details li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.pricing-details li:last-child {
    border-bottom: none;
}

.pricing-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 0.5rem;
}

.pricing-footer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===========================
   Seasonal Offers
   =========================== */
.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.season-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.season-card:hover {
    border-color: var(--gold-muted);
    transform: translateY(-4px);
}

.season-card-featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.08) 0%, var(--bg-card) 100%);
}

.season-card-featured:hover {
    border-color: var(--gold-hover);
}

.season-icon {
    font-size: 2.5rem;
}

.season-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
}

.season-period {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.season-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
}

.season-card .btn {
    margin-top: 0.5rem;
}

/* ===========================
   Reviews
   =========================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--gold-muted);
    transition: all var(--transition);
}

.review-card:hover {
    border-left-color: var(--gold);
    transform: translateY(-3px);
}

.review-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.review-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.review-type {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* ===========================
   CTA Section
   =========================== */
.section-cta {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%),
        var(--bg-primary);
    padding: 6rem 0;
    border-top: 1px solid var(--gold-muted);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-subtitle {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0 1.5rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.footer-contacts a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-collab {
    grid-column: 1 / -1;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-collab p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-collab a {
    color: var(--gold);
    font-weight: 500;
}

.footer-bottom {
    grid-column: 1 / -1;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* ===========================
   Image Placeholders
   =========================== */
.img-placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    border: 1px dashed var(--gold-muted);
    border-radius: var(--radius-sm);
    position: relative;
}

.img-wide {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.img-square {
    aspect-ratio: 1;
    width: 250px;
    max-width: 100%;
    border-radius: 50%;
}

.img-thumb {
    aspect-ratio: 4 / 3;
    width: 100%;
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px var(--gold-glow);
    }
    50% {
        box-shadow: 0 0 25px var(--gold-glow), 0 0 50px rgba(201, 168, 76, 0.15);
    }
}

/* Fade-in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.fade-in-group > .fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in-group > .fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in-group > .fade-in:nth-child(3) { transition-delay: 0.3s; }
.fade-in-group > .fade-in:nth-child(4) { transition-delay: 0.4s; }
.fade-in-group > .fade-in:nth-child(5) { transition-delay: 0.5s; }
.fade-in-group > .fade-in:nth-child(6) { transition-delay: 0.6s; }

/* ===========================
   Responsive: Tablet (768px+)
   =========================== */
@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: auto 1fr;
        gap: 3rem;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr 1fr;
        text-align: left;
    }

    .footer-nav {
        flex-direction: column;
        justify-content: flex-start;
    }

    .footer-contacts {
        align-items: flex-end;
    }

    .footer-bottom {
        grid-column: 1 / -1;
        text-align: center;
    }
}

/* ===========================
   Responsive: Desktop (1024px+)
   =========================== */
@media (min-width: 1024px) {
    .section {
        padding: 6rem 0;
    }

    .hero-content {
        padding: 8rem 0 5rem;
    }
}

/* ===========================
   Responsive: Mobile (<768px)
   =========================== */
@media (max-width: 767px) {
    .burger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .lang-switch {
        margin-left: 0;
        margin-right: 0.5rem;
    }

    .lang-link {
        font-size: 0.7rem;
        padding: 0.15rem 0.35rem;
    }

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

    .hero-cta .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .car-gallery {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

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

    .pricing-card-featured {
        transform: scale(1);
    }

    .pricing-card-featured:hover {
        transform: translateY(-4px);
    }

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .amenity {
        min-width: 140px;
        padding: 1.2rem 1rem;
    }

    .seasons-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--card-bg, #1a1a1a);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item[open] {
    border-color: rgba(201, 168, 76, 0.4);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary, #f0ece2);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color 0.3s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--gold, #c9a84c);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-question:hover {
    color: var(--gold, #c9a84c);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary, #a0998a);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--gold, #c9a84c);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.faq-answer a:hover {
    border-bottom-color: var(--gold, #c9a84c);
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }
}
