/* ==========================================================================
   CARKLASS LUXURY AUTOMOTIVE DESIGN SYSTEM
   ========================================================================== */

:root {
    /* Colors */
    --bg-dark: #070709;
    --bg-card: #111115;
    --bg-card-hover: #17171d;
    --bg-light: #f6f7f9;
    
    --text-main: #ffffff;
    --text-muted: #a0a4b0;
    --text-dark: #111115;
    --text-dark-muted: #5a5d6a;
    
    --gold-primary: #a28253;
    --gold-light: #c2a378;
    --gold-dark: #7a5e37;
    --gold-gradient: linear-gradient(135deg, #bca076 0%, #a28253 50%, #7a5e37 100%);
    --gold-glow: rgba(162, 130, 83, 0.3);
    
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(162, 130, 83, 0.4);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Layout */
    --max-width: 1320px;
    --header-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    font-size: 16px;
}

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

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

ul {
    list-style: none;
}

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

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 64px 0;
    }
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.badge-sub {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.badge-sub.dark-badge {
    color: var(--text-dark-muted);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: var(--text-main);
    margin-bottom: 48px;
}

.section-title.dark-text {
    color: var(--text-dark);
}

.section-header.center {
    text-align: center;
}

.section-header.split-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header.split-header .section-title {
    margin-bottom: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #ffffff;
    box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(162, 130, 83, 0.5);
    filter: brightness(1.08);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-outline-border {
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-main);
    border: 1px solid var(--border-glass);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-outline-border:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(162, 130, 83, 0.05);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(7,7,9,0.9) 0%, rgba(7,7,9,0.4) 100%);
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(7, 7, 9, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo img {
    height: 46px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

.brand-logo:hover img {
    opacity: 0.9;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-main);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-whatsapp-header {
    padding: 8px 16px;
    font-size: 0.75rem;
    border: 1px solid var(--border-glass);
    background: transparent;
    color: var(--text-main);
    border-radius: 4px;
}

.btn-whatsapp-header i {
    color: #25D366;
    font-size: 1.1em;
}

.btn-whatsapp-header:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.08);
}

.mobile-only-contact {
    display: none;
}

/* Hamburger Menu Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.mobile-toggle .bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-smooth);
}

.mobile-toggle .bar:nth-child(1) { top: 0; }
.mobile-toggle .bar:nth-child(2) { top: 11px; }
.mobile-toggle .bar:nth-child(3) { top: 22px; }

.mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
    background-color: var(--gold-primary);
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
    background-color: var(--gold-primary);
}

/* Responsive Navbar */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: rgba(11, 11, 15, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 48px;
        gap: 28px;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 40px rgba(0,0,0,0.8);
        border-left: 1px solid var(--border-glass);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.25rem;
    }

    .mobile-toggle {
        display: block;
    }

    .btn-whatsapp-header {
        display: none;
    }

    .mobile-only-contact {
        display: block;
        width: 100%;
        margin-top: 20px;
    }

    .btn-whatsapp-mobile {
        width: 100%;
        background: #25D366;
        color: #fff;
        padding: 16px;
        border-radius: 4px;
        font-weight: 600;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    height: clamp(480px, 42vw, 600px);
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

@media (max-width: 992px) {
    .hero {
        height: auto;
        min-height: 480px;
        padding-bottom: 40px;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(7, 7, 9, 0.75) 0%,
        rgba(7, 7, 9, 0.4) 45%,
        rgba(7, 7, 9, 0.05) 100%
    );
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 30px 24px;
}

.hero-title {
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: #e2e4ea;
    max-width: 750px;
    margin-bottom: 28px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

@media (max-width: 768px) {
    .hero-subtitle br {
        display: none;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-buttons .btn {
    padding: 12px 24px;
    font-size: 0.8rem;
}

@media (max-width: 576px) {
    .hero-buttons .btn {
        width: 100%;
    }
}

/* ==========================================================================
   PERKS BAR
   ========================================================================== */
.perks-bar {
    position: relative;
    z-index: 10;
    background: var(--bg-card);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 32px 0;
}

.perks-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.perk-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(162, 130, 83, 0.08);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold-primary);
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.perk-item:hover .perk-icon-wrapper {
    background: var(--gold-primary);
    color: #000;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px var(--gold-glow);
}

.perk-text {
    display: flex;
    flex-direction: column;
}

.perk-text strong {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-main);
}

.perk-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   SERVICES SECTION ("¿Qué hacemos?")
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    group: card;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .card-bg img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(7,7,9,0.95) 15%, rgba(7,7,9,0.4) 60%, rgba(7,7,9,0.1) 100%);
    z-index: 2;
    transition: var(--transition-smooth);
}

.service-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(7,7,9,0.98) 25%, rgba(7,7,9,0.6) 70%, rgba(7,7,9,0.2) 100%);
}

.card-content {
    position: relative;
    z-index: 3;
    transition: var(--transition-smooth);
}

.service-card:hover .card-content {
    transform: translateY(-6px);
}

.card-title {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    color: var(--text-main);
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.card-cta {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-cta i {
    transition: transform 0.3s ease;
}

.service-card:hover .card-cta i {
    transform: translateX(6px);
}

/* ==========================================================================
   EXPERIENCE CARKLASS (TIMELINE)
   ========================================================================== */
.bg-light {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.timeline-container {
    position: relative;
    margin-top: 60px;
}

.timeline-line {
    position: absolute;
    top: 36px;
    left: 40px;
    right: 40px;
    height: 2px;
    border-top: 2px dashed #d1d5db;
    z-index: 1;
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: var(--transition-smooth);
}

.step-item:hover .step-icon {
    background: var(--text-dark);
    color: var(--gold-primary);
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.step-title {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--text-dark-muted);
    max-width: 200px;
}

/* Timeline Responsive */
@media (max-width: 992px) {
    .timeline-line {
        top: 0;
        bottom: 0;
        left: 35px;
        width: 2px;
        height: 100%;
        border-top: none;
        border-left: 2px dashed #d1d5db;
    }

    .timeline-steps {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .step-item {
        flex-direction: row;
        text-align: left;
        gap: 24px;
    }

    .step-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-desc {
        max-width: 100%;
    }
}

/* ==========================================================================
   FEATURED VEHICLES
   ========================================================================== */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.vehicle-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.vehicle-card:hover {
    transform: translateY(-8px);
    border-color: rgba(162, 130, 83, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.vehicle-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.vehicle-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vehicle-card:hover .vehicle-img-wrapper img {
    transform: scale(1.08);
}

.vehicle-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(7, 7, 9, 0.8);
    backdrop-filter: blur(8px);
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid var(--border-glass);
}

.vehicle-info {
    padding: 24px;
}

.vehicle-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.vehicle-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.vehicle-meta .separator {
    color: var(--gold-primary);
}

.vehicle-price {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.btn-vehicle-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.btn-vehicle-cta i {
    color: #25D366;
    font-size: 1.2em;
}

.vehicle-card:hover .btn-vehicle-cta {
    background: var(--gold-gradient);
    color: #ffffff;
    border-color: transparent;
}

.vehicle-card:hover .btn-vehicle-cta i {
    color: #ffffff;
}

/* Dots */
.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.carousel-indicators .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-indicators .dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--gold-primary);
}

/* ==========================================================================
   SPLIT SECTION (BEFORE/AFTER & MEMBERSHIPS)
   ========================================================================== */
.split-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
}

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

.col-header {
    margin-bottom: 32px;
}

.col-header .section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 0;
}

/* Comparison Slider */
.comparison-slider {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    cursor: ew-resize;
    user-select: none;
    touch-action: pan-y;
    container-type: inline-size;
}

.image-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: none !important;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.image-after-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%; /* JS controls this */
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100cqw; /* Mantiene el ancho total del slider contenedor */
    max-width: none !important; /* Evita que el reset global img { max-width: 100% } encoja la imagen */
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.handle {
    position: absolute;
    top: 0;
    left: 50%; /* JS controls this */
    transform: translateX(-50%);
    width: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 5;
}

.handle-line {
    width: 2px;
    flex-grow: 1;
    background: var(--gold-primary);
    box-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.handle-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-primary);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(162, 130, 83, 0.6);
}

.comp-badge {
    position: absolute;
    bottom: 16px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 4px;
    background: rgba(7, 7, 9, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    border: 1px solid var(--border-glass);
    z-index: 4;
}

.label-before { left: 16px; }
.label-after { right: 16px; }

/* Memberships Grid */
.memberships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.membership-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: var(--transition-smooth);
}

.membership-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.2);
}

.popular-featured {
    background: linear-gradient(145deg, #131318 0%, #1a1a22 100%);
    border: 1px solid var(--border-gold);
    box-shadow: 0 10px 40px rgba(162, 130, 83, 0.12);
}

.popular-featured:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 15px 50px rgba(162, 130, 83, 0.25);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--gold-gradient);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 4px 12px;
    border-radius: 4px;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.plan-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-glass);
}

.plan-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-main);
}

.plan-icon.gold-icon {
    background: rgba(162, 130, 83, 0.1);
    color: var(--gold-primary);
}

.plan-name {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

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

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.plan-features li {
    font-size: 0.88rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-check {
    color: var(--text-muted);
    font-size: 0.9em;
}

.feature-check.gold {
    color: var(--gold-primary);
}

.btn-plan-outline {
    display: block;
    text-align: center;
    padding: 14px;
    border: 1px solid var(--border-glass);
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.btn-plan-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.3);
}

.btn-plan-gold {
    width: 100%;
}

/* ==========================================================================
   LOCATION & FOOTER
   ========================================================================== */
.location-footer {
    background: #0c0e0f;
    border-top: 1px solid var(--border-glass);
    padding-top: 80px;
}

.location-banner {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.2fr);
    gap: 32px;
    align-items: center;
    margin-bottom: 80px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .location-banner {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.location-img-box {
    position: relative;
    height: 100%;
    min-height: 220px;
    max-height: 300px;
}

.location-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-logo-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(7, 7, 9, 0.85);
    backdrop-filter: blur(12px);
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid var(--border-glass);
}

.img-logo-overlay img {
    height: 18px;
    width: auto;
}

.location-content {
    padding: 24px 32px 24px 0;
}

@media (max-width: 768px) {
    .location-content {
        padding: 24px;
    }
}

.location-content .section-title {
    font-size: clamp(1.15rem, 1.8vw, 1.55rem);
    margin-bottom: 18px;
    line-height: 1.35;
}

.location-perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
}

.location-content .btn {
    padding: 10px 20px;
    font-size: 0.78rem;
}

.loc-perk {
    display: flex;
    align-items: center;
    gap: 12px;
}

.loc-perk i {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(162, 130, 83, 0.12);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.loc-perk strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    color: var(--text-main);
}

.loc-perk span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Executive Footer Grid */
.footer-vip-line {
    width: 100%;
    height: 1px;
    background: var(--gold-primary);
    margin-bottom: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1.2fr 0.9fr;
    gap: 40px;
    padding-bottom: 60px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 20px;
}

.footer-bio {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background: var(--gold-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--gold-glow);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-main);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--gold-primary);
}

.footer-links, .footer-contact-list, .footer-hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 4px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-contact-list li i {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-contact-list a:hover {
    color: var(--text-main);
    text-decoration: underline;
}

.footer-hours-list li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.85rem;
}

.footer-hours-list strong {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 600;
}

.footer-hours-list span {
    color: var(--text-muted);
}

.footer-hours-list .gold-text {
    color: var(--gold-primary);
    font-weight: 600;
}

/* Footer Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    border-top: 1px solid var(--border-glass);
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-tagline {
    font-family: var(--font-heading);
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    color: var(--gold-primary);
}

/* ==========================================================================
   ANIMATIONS & REVEAL UTILITIES
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
