/* ==========================================================================
   cabriolet.es — Dark Luxury Design System (Kimi Agent)
   Complete stylesheet — all components, all pages
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body); font-size: var(--fs-base);
    line-height: var(--lh-normal); color: var(--text-primary);
    background: var(--bg-primary); -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; overflow-x: hidden;
    font-feature-settings: 'ss01', 'cv05';
}
::selection { background: hsl(40 45% 62% / 0.9); color: hsl(240 6% 6%); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: hsl(240 6% 5%); }
::-webkit-scrollbar-thumb { background: hsl(240 4% 20%); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: hsl(40 30% 40%); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; }
ul, ol { list-style: none; }

.font-display { font-family: var(--font-display); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: var(--fw-semi); line-height: var(--lh-tight); color: var(--text-primary); }
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
p { line-height: var(--lh-relaxed); color: var(--text-secondary); }

.gold-text { background: linear-gradient(115deg, #f3dfae 0%, #d9b877 35%, #b98d45 70%, #e9cf96 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gold-line { background: linear-gradient(90deg, transparent, hsl(40 45% 62% / 0.6), transparent); }
.eyebrow { display: inline-block; font-size: var(--fs-xs); font-weight: var(--fw-bold); letter-spacing: 0.28em; text-transform: uppercase; color: hsl(40 45% 62% / 0.9); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--container-padding); }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-alt { background: var(--bg-secondary); }
.page-wrap { padding: calc(var(--header-h) + 2rem) 0 4rem; }

/* HEADER */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: var(--z-header); height: var(--header-h); display: flex; align-items: center; transition: all 0.5s ease; }
.site-header.scrolled { border-bottom: 1px solid var(--border-color); background: hsl(240 6% 5% / 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--container-padding); height: 100%; }
.logo { display: flex; align-items: center; gap: 0.625rem; text-decoration: none; }
.logo-icon { display: flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: var(--r-md); background: var(--grad-gold-br); color: #141312; box-shadow: var(--shadow-gold); transition: transform 0.3s ease; }
.logo:hover .logo-icon { transform: rotate(-6deg); }
.logo-icon svg { width: 1.25rem; height: 1.25rem; stroke-width: 2.4; }
.logo-text { line-height: 1; }
.logo-name { display: block; font-family: var(--font-display); font-size: 17px; font-weight: var(--fw-semi); letter-spacing: 0.04em; color: var(--text-primary); }
.logo-sub { display: flex; flex-direction: column; line-height: 1.15; margin-top: 2px; }
.logo-sub-line { font-size: 10px; font-weight: var(--fw-medium); letter-spacing: 0.16em; text-transform: uppercase; color: hsl(240 5% 60%); white-space: nowrap; }
.logo-sub-city { font-size: 12px; font-weight: var(--fw-bold); letter-spacing: 0.06em; color: var(--amber-300); white-space: nowrap; }
.nav-links { display: none; align-items: center; gap: 1.75rem; }
@media (min-width: 1280px) { .nav-links { display: flex; } }
.nav-links a { font-size: var(--fs-sm); font-weight: var(--fw-medium); color: hsl(240 5% 75%); transition: color var(--t-fast); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 120px; }
.nav-links a:hover { color: var(--amber-200); }
@media (min-width: 1280px) and (max-width: 1599px) { .nav-links .city-link { display: none; } }
.header-right { display: none; align-items: center; gap: 1rem; }
@media (min-width: 1280px) { .header-right { display: flex; } }
.header-phone { display: flex; align-items: center; gap: 0.5rem; font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--text-primary); transition: color var(--t-fast); }
.header-phone:hover { color: var(--amber-200); }
.header-phone svg { width: 1rem; height: 1rem; color: var(--amber-300); }
.lang-switch { display: flex; align-items: center; gap: 0.25rem; }
.lang-switch a { padding: 0.25rem 0.5rem; font-size: var(--fs-xs); font-weight: var(--fw-semi); color: var(--text-muted); border-radius: var(--r-sm); transition: all var(--t-fast); }
.lang-switch a.active { color: var(--amber-200); background: hsl(40 45% 62% / 0.1); }
.lang-switch a:hover { color: var(--amber-200); }
.hamburger { display: flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: var(--r-sm); border: 1px solid var(--border-color); color: var(--text-primary); }
@media (min-width: 1280px) { .hamburger { display: none; } }
.mobile-menu { border-top: 1px solid var(--border-color); background: hsl(240 6% 5% / 0.95); backdrop-filter: blur(20px); }
@media (min-width: 1280px) { .mobile-menu { display: none !important; } }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.25rem; padding: 1rem var(--container-padding); }
.mobile-menu a { display: block; padding: 0.625rem 0.75rem; border-radius: var(--r-sm); font-size: 15px; font-weight: var(--fw-medium); color: hsl(240 5% 75%); transition: background var(--t-fast), color var(--t-fast); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mobile-menu a:hover { background: hsl(0 0% 100% / 0.05); color: var(--amber-200); }

/* BUTTONS */
.btn-gold, .btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.625rem 1.25rem; border-radius: var(--r-pill); background: var(--grad-gold); color: #171512; font-size: var(--fs-sm); font-weight: var(--fw-bold); box-shadow: var(--shadow-gold); transition: transform 0.3s ease, box-shadow 0.3s ease; border: none; cursor: pointer; }
.btn-gold:hover, .btn-primary:hover { transform: scale(1.04); }
.btn-primary { padding: 1rem 1.75rem; font-size: 15px; }
.btn-secondary { display: inline-flex; align-items: center; gap: 0.625rem; padding: 1rem 1.75rem; border-radius: var(--r-pill); border: 1px solid hsl(0 0% 100% / 0.2); background: hsl(0 0% 100% / 0.05); color: var(--text-primary); font-size: 15px; font-weight: var(--fw-semi); backdrop-filter: blur(12px); transition: all 0.3s ease; cursor: pointer; }
.btn-secondary:hover { border-color: var(--border-gold-strong); color: var(--amber-100); }
.btn-outline { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.625rem 1rem; border-radius: var(--r-pill); background: hsl(0 0% 100% / 0.08); color: var(--text-primary); font-size: var(--fs-sm); font-weight: var(--fw-bold); transition: all 0.3s ease; border: none; cursor: pointer; }
.btn-outline:hover { background: var(--grad-gold); color: #171512; }
.btn-back, .btn-next { flex: 1; padding: 0.8rem 1.5rem; border-radius: var(--r-pill); font-size: 1rem; font-weight: var(--fw-semi); cursor: pointer; border: 1px solid var(--border-color); transition: all var(--t-fast); }
.btn-back { background: var(--bg-card); color: var(--text-primary); }
.btn-back:hover { background: var(--bg-elevated); }
.btn-next { background: var(--grad-gold); color: #171512; border: none; font-weight: var(--fw-bold); }
.btn-next:hover { transform: scale(1.02); }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.5rem; border-radius: var(--r-pill); background: var(--whatsapp); color: #0b2812; font-size: var(--fs-sm); font-weight: var(--fw-bold); transition: transform var(--t-fast); cursor: pointer; }
.btn-whatsapp:hover { transform: scale(1.03); }
.btn-submit { width: 100%; padding: 1rem; border-radius: var(--r-pill); background: var(--grad-gold); color: #171512; font-size: 15px; font-weight: var(--fw-bold); box-shadow: 0 1.25rem 2.5rem -0.625rem hsl(40 45% 30% / 0.3); transition: all 0.3s ease; border: none; cursor: pointer; }
.btn-submit:hover { transform: scale(1.02); }
.btn-submit:disabled { cursor: not-allowed; opacity: 0.4; }
.btn-submit:disabled:hover { transform: none; }
.step-nav { display: flex; gap: 1rem; margin-top: 1.5rem; }

/* HERO */
.hero { position: relative; display: flex; min-height: 100svh; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 24s ease-in-out forwards; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: var(--grad-hero-overlay); }
.hero-bg::before { content: ''; position: absolute; inset: 0; background: var(--grad-hero-left); }
.hero-content { position: relative; width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--container-padding); padding-bottom: 4rem; padding-top: calc(var(--header-h) + 4rem); }
@media (min-width: 1024px) { .hero-content { padding-bottom: 6rem; } }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.375rem 1rem; border-radius: var(--r-pill); border: 1px solid hsl(40 45% 62% / 0.25); background: hsl(0 0% 0% / 0.3); backdrop-filter: blur(12px); margin-bottom: 1.5rem; }
.hero-badge svg { width: 0.875rem; height: 0.875rem; color: var(--amber-300); }
.hero-badge span { font-size: var(--fs-xs); font-weight: var(--fw-semi); letter-spacing: 0.18em; text-transform: uppercase; color: hsl(40 45% 62% / 0.9); }
.hero h1 { max-width: 42rem; }
.hero-desc { margin-top: 1.5rem; max-width: 36rem; font-size: var(--fs-lg); line-height: var(--lh-relaxed); color: hsl(240 5% 80%); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }
.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; max-width: 40rem; margin-top: 3.5rem; overflow: hidden; border-radius: var(--r-lg); border: 1px solid hsl(0 0% 100% / 0.1); background: hsl(0 0% 100% / 0.1); backdrop-filter: blur(12px); }
@media (min-width: 640px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.hero-stat { background: hsl(0 0% 0% / 0.4); padding: 1rem 1.25rem; }
.hero-stat-value { display: flex; align-items: center; gap: 0.375rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: var(--fw-semi); color: var(--amber-200); }
.hero-stat-value svg { width: 0.875rem; height: 0.875rem; fill: var(--amber-300); color: var(--amber-300); }
.hero-stat-label { margin-top: 0.125rem; font-size: var(--fs-xs); font-weight: var(--fw-medium); letter-spacing: 0.04em; color: hsl(240 5% 60%); }
.scroll-hint { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: hsl(240 5% 60%); transition: color var(--t-fast); display: none; }
@media (min-width: 1024px) { .scroll-hint { display: block; } }
.scroll-hint:hover { color: var(--amber-200); }
.scroll-hint svg { width: 1.25rem; height: 1.25rem; animation: float-slow 6s ease-in-out infinite; }

/* SECTION HEADING */
.section-heading { text-align: center; max-width: 40rem; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.section-heading .eyebrow-row { display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.section-heading .eyebrow-row .gold-line { height: 1px; width: 2rem; }
.section-heading h2 { margin-top: 0; }
.section-heading h2 .gold-text { display: inline; }
.section-heading p { margin-top: 1rem; font-size: var(--fs-base); line-height: var(--lh-relaxed); color: hsl(240 5% 60%); }

/* CAR CARDS */
.fleet-grid, .cat-grid, .cd-similar-grid, .editorial-grid, .news-grid, .reviews-list { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .fleet-grid, .cat-grid, .cd-similar-grid, .editorial-grid, .news-grid, .reviews-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .cat-grid, .cd-similar-grid, .editorial-grid, .news-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1280px) { .fleet-grid { grid-template-columns: repeat(4, 1fr); } }

.car-card, .cat-card, .editorial-card, .news-card, .review-card, .testimonial-card { position: relative; display: flex; flex-direction: column; overflow: hidden; border-radius: var(--r-2xl); border: 1px solid hsl(0 0% 100% / 0.1); background: var(--bg-card); transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease; }
.car-card:hover, .cat-card:hover, .editorial-card:hover, .news-card:hover, .review-card:hover, .testimonial-card:hover { border-color: var(--border-gold-strong); box-shadow: var(--shadow-card-hover); }
.car-card-badge, .cat-card-tag { position: absolute; left: 1rem; top: 1rem; z-index: 10; padding: 0.25rem 0.75rem; border-radius: var(--r-pill); background: var(--grad-gold); color: #171512; font-size: 11px; font-weight: var(--fw-bold); letter-spacing: 0.04em; text-transform: uppercase; box-shadow: var(--shadow-gold); }
.cat-card-tag { left: auto; right: 1rem; top: 1rem; background: hsl(0 0% 0% / 0.5); color: hsl(240 5% 75%); backdrop-filter: blur(8px); border: 1px solid hsl(0 0% 100% / 0.15); box-shadow: none; }
.car-card-category { position: absolute; right: 1rem; top: 1rem; z-index: 10; padding: 0.25rem 0.75rem; border-radius: var(--r-pill); border: 1px solid hsl(0 0% 100% / 0.15); background: hsl(0 0% 0% / 0.5); backdrop-filter: blur(12px); font-size: 11px; font-weight: var(--fw-semi); color: hsl(240 5% 75%); }
.car-card-image, .cat-card-media, .editorial-card-media, .news-card img { position: relative; aspect-ratio: 3/2; overflow: hidden; background: #0d0d10; }
.news-card img { aspect-ratio: 16/9; }
.car-card-image img, .cat-card-media img, .editorial-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease-out; }
.car-card:hover .car-card-image img, .cat-card:hover .cat-card-media img, .editorial-card:hover .editorial-card-media img, .news-card:hover img { transform: scale(1.06); }
.car-card-image::after, .cat-card-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-card) 0%, transparent 100%); opacity: 0.9; }
.car-card-body, .cat-card-body, .editorial-card-body, .news-card-body { display: flex; flex-direction: column; flex: 1; padding: 0 1.25rem 1.25rem; margin-top: -1.5rem; position: relative; }
.cat-card-body, .editorial-card-body, .news-card-body { padding: 1.25rem; margin-top: 0; }
.car-card-body h3, .cat-card-title, .editorial-card-title, .news-card h3 { font-size: 17px; font-weight: var(--fw-semi); line-height: var(--lh-snug); color: var(--text-primary); }
.news-card h3 { font-size: var(--fs-md); }
.cat-card-title a, .editorial-card-title a, .news-card h3 a { color: inherit; text-decoration: none; }
.cat-card-title a:hover, .editorial-card-title a:hover, .news-card h3 a:hover { color: var(--amber-200); }
.car-card-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin-top: 0.75rem; text-align: center; }
.car-card-spec { border-radius: var(--r-sm); border: 1px solid hsl(0 0% 100% / 0.08); background: hsl(0 0% 100% / 0.03); padding: 0.5rem 0.25rem; }
.car-card-spec svg { display: block; margin: 0 auto; width: 1rem; height: 1rem; color: hsl(40 45% 62% / 0.8); }
.car-card-spec span { display: block; margin-top: 0.25rem; font-size: 10.5px; font-weight: var(--fw-medium); color: hsl(240 5% 60%); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.car-card-footer, .cat-card-foot, .editorial-card-foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; padding-top: 1rem; border-top: 1px solid hsl(0 0% 100% / 0.08); }
.cat-card-foot { gap: 1rem; }
.car-card-price, .cat-card-price, .editorial-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: var(--fw-semi); color: var(--amber-200); }
.car-card-price small, .cat-card-price small, .editorial-price small { font-size: var(--fs-sm); color: hsl(240 5% 60%); font-family: var(--font-body); font-weight: var(--fw-regular); }
.car-card-meta { margin-top: 0.125rem; font-size: var(--fs-xs); color: hsl(240 5% 60%); }
.cat-card-brand { font-size: 0.74rem; font-weight: var(--fw-semi); letter-spacing: 0.1em; text-transform: uppercase; color: hsl(240 5% 60%); }
.cat-card-meta { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; font-size: 0.88rem; color: hsl(240 5% 60%); }
.cat-card-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: hsl(240 5% 60%); opacity: 0.6; }
.cat-card-noprice { font-size: 1.1rem; font-weight: var(--fw-semi); color: hsl(240 5% 60%); }
.cat-empty { grid-column: 1 / -1; text-align: center; padding: 5rem 1rem; color: hsl(240 5% 60%); font-size: 1.1rem; }
.news-card p, .news-card .news-date { margin-top: 0.5rem; font-size: var(--fs-sm); color: hsl(240 5% 60%); }
.news-date { margin-top: 0.75rem; font-size: var(--fs-xs); color: hsl(240 5% 45%); }

/* FILTERS */
.filter-tabs { display: flex; justify-content: center; margin-top: 2.5rem; }
.filter-tabs-inner { display: inline-flex; border-radius: var(--r-pill); border: 1px solid hsl(0 0% 100% / 0.1); background: hsl(0 0% 100% / 0.03); padding: 0.375rem; }
.filter-tab { padding: 0.625rem 1.25rem; border-radius: var(--r-pill); font-size: var(--fs-sm); font-weight: var(--fw-semi); color: hsl(240 5% 60%); transition: all 0.3s ease; border: none; background: none; cursor: pointer; }
.filter-tab:hover { color: var(--text-primary); }
.filter-tab.active { background: var(--grad-gold); color: #171512; box-shadow: var(--shadow-gold); }
.cat-toolbar { position: sticky; top: var(--header-h); z-index: var(--z-sticky); background: hsl(240 6% 5% / 0.9); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 0.85rem 0; backdrop-filter: blur(14px); }
.cat-filters { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem; }
.cat-filters .filter-group { display: inline-flex; align-items: center; gap: 0.45rem; }
.cat-filters .filter-label { font-size: 0.72rem; font-weight: var(--fw-semi); letter-spacing: 0.08em; text-transform: uppercase; color: hsl(240 5% 60%); }
.pill-select { appearance: none; font-size: 0.9rem; font-weight: var(--fw-medium); color: var(--text-primary); padding: 0.5rem 2.2rem 0.5rem 1rem; border-radius: 999px; border: 1px solid var(--border-color); background-color: var(--bg-input); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.85rem center; cursor: pointer; transition: border-color var(--t-fast), color var(--t-fast); }
.pill-select:hover { border-color: var(--border-gold-strong); color: var(--amber-200); }
.pill-select:focus { outline: none; box-shadow: 0 0 0 3px hsl(40 45% 62% / 0.2); }
.pill-reset { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.88rem; font-weight: var(--fw-medium); color: hsl(240 5% 75%); text-decoration: none; padding: 0.5rem 1rem; border-radius: 999px; transition: color var(--t-fast), background var(--t-fast); }
.pill-reset:hover { color: var(--amber-200); background: hsl(40 45% 62% / 0.1); }
.cat-count { margin-left: auto; font-size: 0.88rem; color: hsl(240 5% 60%); white-space: nowrap; }
.cat-count strong { color: var(--text-primary); font-weight: var(--fw-semi); }
.cat-pagination { display: flex; justify-content: center; align-items: center; gap: 0.4rem; margin: 2.5rem 0 5rem; }
.cat-pagination a, .cat-pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 0.75rem; font-size: 0.92rem; font-weight: var(--fw-medium); color: hsl(240 5% 75%); text-decoration: none; border-radius: 999px; border: 1px solid transparent; transition: all var(--t-fast); }
.cat-pagination a:hover { color: var(--text-primary); border-color: var(--border-color); background: var(--bg-input); }
.cat-pagination .active { color: #171512; background: var(--grad-gold); border-color: var(--gold-mid); font-weight: var(--fw-semi); }
.cat-pagination .gap { color: hsl(240 5% 60%); opacity: 0.6; }
.cat-pagination .disabled { color: hsl(240 5% 60%); pointer-events: none; opacity: 0.4; }

/* BOOKING FORM */
.booking-wrapper { position: relative; }
.booking-glow { position: absolute; left: 50%; top: 0; width: 720px; height: 420px; transform: translateX(-50%); border-radius: 50%; background: hsl(40 45% 50% / 0.06); filter: blur(120px); pointer-events: none; }
.booking-card { display: grid; max-width: 64rem; margin: 3.5rem auto 0; overflow: hidden; border-radius: var(--r-2xl); border: 1px solid hsl(0 0% 100% / 0.1); background: #111114; box-shadow: 0 2.5rem 4rem -1rem rgba(0,0,0,0.5); }
@media (min-width: 1024px) { .booking-card { grid-template-columns: 1.35fr 1fr; } }
.booking-form { display: flex; flex-direction: column; gap: 1.25rem; padding: 1.5rem; }
@media (min-width: 640px) { .booking-form { padding: 2.25rem; } }
.form-group label, .form-group > span { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; font-size: var(--fs-sm); font-weight: var(--fw-semi); color: hsl(240 5% 75%); }
.form-group label svg, .form-group > span svg { width: 1rem; height: 1rem; color: var(--amber-300); }
.form-control { width: 100%; border-radius: var(--r-md); border: 1px solid hsl(0 0% 100% / 0.1); background: hsl(0 0% 100% / 0.04); padding: 0.875rem 1rem; font-size: 15px; color: var(--text-primary); outline: none; transition: all var(--t-fast); color-scheme: dark; }
.form-control::placeholder { color: hsl(240 5% 50%); }
.form-control:focus { border-color: hsl(40 45% 62% / 0.6); background: hsl(0 0% 100% / 0.06); box-shadow: 0 0 0 3px hsl(40 45% 62% / 0.2); }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.extras-grid { display: grid; gap: 0.625rem; }
@media (min-width: 640px) { .extras-grid { grid-template-columns: 1fr 1fr; } }
.extra-option { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.875rem; border-radius: var(--r-md); border: 1px solid hsl(0 0% 100% / 0.1); background: hsl(0 0% 100% / 0.02); cursor: pointer; transition: all var(--t-fast); }
.extra-option:hover { border-color: hsl(0 0% 100% / 0.25); }
.extra-option.selected { border-color: hsl(40 45% 62% / 0.5); background: hsl(40 45% 62% / 0.07); }
.extra-option input[type="checkbox"] { margin-top: 0.125rem; accent-color: var(--amber-300); }
.extra-option-text { flex: 1; min-width: 0; }
.extra-option-title { display: block; font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--text-primary); }
.extra-option-title .price { color: var(--amber-300); }
.extra-option-hint { display: block; margin-top: 0.125rem; font-size: var(--fs-xs); line-height: var(--lh-snug); color: hsl(240 5% 50%); }
.booking-summary { display: flex; flex-direction: column; border-top: 1px solid hsl(0 0% 100% / 0.1); padding: 1.5rem; background: linear-gradient(to bottom, #17171b, #101013); }
@media (min-width: 1024px) { .booking-summary { border-left: 1px solid hsl(0 0% 100% / 0.1); border-top: none; padding: 2.25rem; } }
.summary-car { display: flex; align-items: center; gap: 1rem; }
.summary-car img { width: 7rem; height: 5rem; border-radius: var(--r-md); border: 1px solid hsl(0 0% 100% / 0.1); object-fit: cover; }
.summary-car-name { font-family: var(--font-display); font-size: 15px; font-weight: var(--fw-semi); line-height: var(--lh-snug); color: var(--text-primary); }
.summary-car-meta { margin-top: 0.25rem; font-size: var(--fs-xs); color: hsl(240 5% 50%); }
.discount-badge { display: inline-flex; align-items: center; gap: 0.25rem; margin-left: 0.375rem; padding: 0.125rem 0.5rem; border-radius: var(--r-pill); background: hsl(40 45% 62% / 0.15); font-size: 10px; font-weight: var(--fw-bold); color: var(--amber-300); }
.summary-lines { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid hsl(0 0% 100% / 0.1); }
.summary-line { display: flex; justify-content: space-between; padding: 0.375rem 0; font-size: var(--fs-sm); color: hsl(240 5% 60%); }
.summary-line span:last-child { font-weight: var(--fw-semi); color: var(--text-primary); }
.summary-total { display: flex; align-items: baseline; justify-content: space-between; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid hsl(40 45% 62% / 0.25); }
.summary-total-label { font-size: var(--fs-sm); font-weight: var(--fw-semi); color: hsl(240 5% 75%); }
.summary-total-value { font-family: var(--font-display); font-size: 1.875rem; font-weight: var(--fw-semi); color: var(--amber-200); }
.booking-note { margin-top: 0.75rem; text-align: center; font-size: var(--fs-xs); line-height: var(--lh-relaxed); color: hsl(240 5% 50%); }
.booking-success { display: flex; flex: 1; flex-direction: column; align-items: center; justify-content: center; padding: 2rem 0; text-align: center; }
.booking-success svg { width: 3.5rem; height: 3.5rem; color: var(--amber-300); }
.booking-success h3 { margin-top: 1.25rem; font-size: var(--fs-xl); }
.booking-success p { margin-top: 0.75rem; max-width: 20rem; font-size: var(--fs-sm); line-height: var(--lh-relaxed); color: hsl(240 5% 60%); }
.booking-layout { display: grid; grid-template-columns: 1fr 350px; gap: 2rem; align-items: start; }
@media (max-width: 768px) { .booking-layout { grid-template-columns: 1fr; } }
.booking-layout .booking-summary { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 1.5rem; position: sticky; top: 2rem; }
.booking-layout .booking-summary img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; margin-bottom: 1rem; }
.booking-layout .booking-summary h3 { margin-bottom: 0.5rem; color: var(--text-primary); }
.booking-progress { display: flex; align-items: center; margin-bottom: 2rem; gap: 0; }
.progress-step { flex: 1; text-align: center; position: relative; }
.progress-step .step-circle { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-elevated); color: hsl(240 5% 60%); display: inline-flex; align-items: center; justify-content: center; font-weight: var(--fw-bold); font-size: 0.9rem; transition: all 0.3s; }
.progress-step.active .step-circle { background: var(--gold); color: #171512; }
.progress-step.done .step-circle { background: var(--success); color: #fff; }
.progress-step .step-label { display: block; font-size: 0.75rem; margin-top: 0.3rem; color: hsl(240 5% 60%); }
.progress-step.active .step-label { color: var(--amber-200); font-weight: var(--fw-semi); }
.progress-step.done .step-label { color: var(--success); }
.progress-line { flex: 1; height: 3px; background: var(--border-color); transition: background 0.3s; }
.progress-line.done { background: var(--success); }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeInStep 0.3s ease; }
@keyframes fadeInStep { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.form-section-title { font-size: 1.1rem; font-weight: var(--fw-semi); color: var(--text-primary); border-bottom: 2px solid var(--gold); padding-bottom: 0.3rem; margin-bottom: 0.5rem; }
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 2rem; font-size: 0.95rem; }
.review-grid dt { color: hsl(240 5% 60%); font-weight: var(--fw-medium); }
.review-grid dd { margin: 0 0 0.5rem 0; font-weight: var(--fw-semi); color: var(--text-primary); }
.review-total { font-size: 1.5rem; font-weight: var(--fw-bold); color: var(--amber-200); text-align: center; margin: 1rem 0; }
.insurance-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
@media (max-width: 600px) { .insurance-options { grid-template-columns: 1fr; } }
.insurance-card { border: 2px solid var(--border-color); border-radius: var(--r-sm); padding: 1rem; cursor: pointer; text-align: center; transition: all 0.2s; background: var(--bg-card); }
.insurance-card:hover { border-color: var(--border-gold-strong); }
.insurance-card.selected { border-color: var(--gold); background: hsl(40 45% 62% / 0.07); }
.insurance-card h4 { margin: 0 0 0.3rem; font-size: 1rem; color: var(--text-primary); }
.insurance-card .price { font-size: 1.2rem; font-weight: var(--fw-bold); color: var(--amber-200); }
.insurance-card ul { list-style: none; padding: 0; font-size: 0.8rem; color: hsl(240 5% 60%); text-align: left; }

/* ADVANTAGES */
.advantages-grid, .benefits-grid { display: grid; gap: 1.25rem; margin-top: 3.5rem; }
@media (min-width: 640px) { .advantages-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .advantages-grid, .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.advantage-card, .benefit-item, .pros-card, .partner-type-card { padding: 1.75rem; border-radius: var(--r-2xl); border: 1px solid hsl(0 0% 100% / 0.1); background: var(--bg-card); transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease; }
.advantage-card:hover, .benefit-item:hover, .pros-card:hover, .partner-type-card:hover { border-color: var(--border-gold-strong); box-shadow: var(--shadow-card-hover); }
.advantage-icon, .benefit-icon, .visual-icon, .partner-type-icon { display: flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: var(--r-md); background: linear-gradient(135deg, hsl(40 45% 62% / 0.2), hsl(40 45% 30% / 0.1)); color: var(--amber-300); border: 1px solid hsl(40 45% 62% / 0.25); transition: transform 0.5s ease; }
.advantage-card:hover .advantage-icon, .benefit-item:hover .benefit-icon, .partner-type-card:hover .partner-type-icon { transform: rotate(-6deg) scale(1.1); }
.advantage-icon svg, .benefit-icon svg, .visual-icon svg, .partner-type-icon svg { width: 1.5rem; height: 1.5rem; stroke-width: 1.8; }
.advantage-card h3, .benefit-item h3, .pros-card h3, .partner-type-card h3 { margin-top: 1.25rem; font-size: 16px; }
.advantage-card p, .benefit-item p, .pros-card p, .partner-type-card p { margin-top: 0.625rem; font-size: var(--fs-sm); line-height: var(--lh-relaxed); color: hsl(240 5% 60%); }

/* ROUTES */
.routes-grid { display: grid; gap: 1.5rem; margin-top: 3.5rem; }
@media (min-width: 1024px) { .routes-grid { grid-template-columns: repeat(3, 1fr); } }
.route-card { position: relative; display: flex; min-height: 460px; flex-direction: column; justify-content: flex-end; overflow: hidden; border-radius: var(--r-2xl); border: 1px solid hsl(0 0% 100% / 0.1); transition: border-color 0.5s ease, box-shadow 0.5s ease; }
.route-card:hover { border-color: var(--border-gold-strong); box-shadow: var(--shadow-card-hover); }
.route-card-link { text-decoration: none; color: inherit; display: block; }
.route-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s ease-out; }
.route-card:hover img { transform: scale(1.08); }
.route-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, #0b0b0e, hsl(240 6% 5% / 0.45) 50%, hsl(240 6% 5% / 0.1)); }
.route-card-content { position: relative; padding: 1.75rem; }
.route-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.route-tag { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.375rem 0.75rem; border-radius: var(--r-pill); border: 1px solid hsl(0 0% 100% / 0.15); background: hsl(0 0% 0% / 0.45); backdrop-filter: blur(12px); font-size: 11px; font-weight: var(--fw-semi); color: hsl(240 5% 75%); }
.route-tag svg { width: 0.875rem; height: 0.875rem; color: var(--amber-300); }
.route-card h3 { font-size: var(--fs-xl); }
.route-card p { margin-top: 0.625rem; font-size: var(--fs-sm); line-height: var(--lh-relaxed); color: hsl(240 5% 75%); }
.route-car { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; font-size: var(--fs-xs); font-weight: var(--fw-bold); letter-spacing: 0.04em; text-transform: uppercase; color: var(--amber-300); }
.route-car svg { width: 1rem; height: 1rem; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; gap: 1rem; margin-top: 2rem; }
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-quote { width: 1rem; height: 1rem; color: hsl(40 45% 62% / 0.35); }
.testimonial-card { align-items: center; text-align: center; padding: 1.25rem; border-radius: 1.75rem; }
.testimonial-stars, .review-stars { display: flex; gap: 0.25rem; margin-top: 0.75rem; }
.testimonial-stars svg, .review-stars svg { width: 0.75rem; height: 0.75rem; fill: var(--amber-300); color: var(--amber-300); }
.testimonial-text, .review-text { flex: 1; margin-top: 0.5rem; font-size: var(--fs-sm); line-height: var(--lh-relaxed); color: hsl(240 5% 75%); }
.testimonial-author, .review-author { margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid hsl(0 0% 100% / 0.1); }
.testimonial-name, .review-author strong { font-size: var(--fs-sm); font-weight: var(--fw-bold); color: var(--text-primary); }
.testimonial-meta, .review-date { margin-top: 0.125rem; font-size: var(--fs-xs); color: hsl(240 5% 50%); }
.testimonial-avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; overflow: hidden; border: 2px solid hsl(40 45% 62% / 0.3); margin-bottom: 0.5rem; flex-shrink: 0; background: hsl(40 45% 62% / 0.15); display: flex; align-items: center; justify-content: center; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-avatar-initials { font-size: var(--fs-base); font-weight: var(--fw-bold); color: hsl(40 45% 62% / 0.8); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin: 3rem auto 0; max-width: 48rem; }
.faq-item { overflow: hidden; border-radius: var(--r-md); border: 1px solid hsl(0 0% 100% / 0.1); background: var(--bg-card); transition: border-color var(--t-fast); }
.faq-item.open { border-color: hsl(40 45% 62% / 0.4); }
.faq-trigger { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 1.25rem 1.5rem; text-align: left; font-size: 15px; font-weight: var(--fw-semi); color: var(--text-primary); transition: color var(--t-fast); background: none; border: none; cursor: pointer; }
.faq-trigger:hover { color: var(--amber-200); }
.faq-trigger svg { width: 1.25rem; height: 1.25rem; color: hsl(240 5% 60%); transition: transform var(--t-fast), color var(--t-fast); flex-shrink: 0; }
.faq-item.open .faq-trigger svg { transform: rotate(180deg); color: var(--amber-300); }
.faq-answer { padding: 0 1.5rem 1.25rem; font-size: var(--fs-sm); line-height: var(--lh-relaxed); color: hsl(240 5% 60%); display: none; }
.faq-item.open .faq-answer { display: block; }

/* CONTACTS */
.contacts-grid { display: grid; gap: 1.5rem; margin-top: 3.5rem; }
@media (min-width: 1024px) { .contacts-grid { grid-template-columns: 1fr 1.15fr; } }
.contacts-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; border-radius: var(--r-2xl); border: 1px solid hsl(0 0% 100% / 0.1); background: var(--bg-card); transition: border-color 0.5s ease, box-shadow 0.5s ease; }
.contact-item:hover { border-color: var(--border-gold-strong); box-shadow: var(--shadow-card-hover); }
.contact-icon { display: flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; flex-shrink: 0; border-radius: var(--r-md); background: linear-gradient(135deg, hsl(40 45% 62% / 0.2), hsl(40 45% 30% / 0.1)); color: var(--amber-300); border: 1px solid hsl(40 45% 62% / 0.25); }
.contact-icon svg { width: 1.25rem; height: 1.25rem; stroke-width: 1.9; }
.contact-label { font-size: var(--fs-xs); font-weight: var(--fw-semi); letter-spacing: 0.04em; text-transform: uppercase; color: hsl(240 5% 60%); }
.contact-value { margin-top: 0.125rem; font-size: 15px; font-weight: var(--fw-semi); color: var(--text-primary); }
.contact-map { position: relative; min-height: 380px; overflow: hidden; border-radius: var(--r-2xl); border: 1px solid hsl(0 0% 100% / 0.1); }
.contact-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; filter: grayscale(0.35) invert(0.92) hue-rotate(180deg) contrast(0.9); }
.map-status { position: absolute; bottom: 1rem; left: 1rem; padding: 0.75rem 1rem; border-radius: var(--r-md); border: 1px solid hsl(0 0% 100% / 0.1); background: hsl(0 0% 0% / 0.7); backdrop-filter: blur(12px); }
.map-status-title { display: flex; align-items: center; gap: 0.5rem; font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--text-primary); }
.map-status-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--success); animation: pulse-dot 2s ease-in-out infinite; }
.map-status-text { margin-top: 0.125rem; font-size: var(--fs-xs); color: hsl(240 5% 60%); }

/* FOOTER */
.site-footer { border-top: 1px solid hsl(0 0% 100% / 0.1); }
.footer-marquee { overflow: hidden; border-bottom: 1px solid hsl(0 0% 100% / 0.1); padding: 1.25rem 0; }
.footer-marquee-inner { display: flex; width: max-content; animation: marquee 36s linear infinite; }
.footer-marquee-item { display: flex; align-items: center; gap: 2rem; white-space: nowrap; }
.footer-marquee-text { font-family: var(--font-display); font-size: var(--fs-sm); font-weight: var(--fw-medium); letter-spacing: 0.25em; text-transform: uppercase; color: hsl(240 5% 50%); }
.footer-marquee-dot { width: 0.375rem; height: 0.375rem; border-radius: 50%; background: hsl(40 45% 62% / 0.6); }
.footer-grid { display: grid; gap: 2.5rem; max-width: var(--container); margin: 0 auto; padding: 3.5rem var(--container-padding); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand p { margin-top: 1.25rem; max-width: 24rem; font-size: var(--fs-sm); line-height: var(--lh-relaxed); color: hsl(240 5% 50%); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: 50%; border: 1px solid hsl(0 0% 100% / 0.1); color: hsl(240 5% 75%); transition: all var(--t-fast); }
.footer-social a:hover { border-color: var(--border-gold-strong); color: var(--amber-300); }
.footer-social a svg { width: 1.25rem; height: 1.25rem; }
.footer-nav h4, .footer-contact h4 { font-family: var(--font-body); font-size: var(--fs-xs); font-weight: var(--fw-bold); letter-spacing: 0.22em; text-transform: uppercase; color: hsl(240 5% 50%); }
.footer-nav ul, .footer-contact ul { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.25rem; }
.footer-nav a, .footer-contact a, .footer-contact span { font-size: var(--fs-sm); color: hsl(240 5% 60%); transition: color var(--t-fast); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 160px; display: inline-block; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--amber-200); }
.footer-bottom { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.75rem; border-top: 1px solid hsl(0 0% 100% / 0.1); max-width: var(--container); margin: 0 auto; padding: 1.5rem var(--container-padding); font-size: var(--fs-xs); color: hsl(240 5% 40%); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom .dot { color: hsl(40 45% 62% / 0.7); }

/* WHATSAPP FAB */
.whatsapp-fab { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: var(--z-fab); display: flex; align-items: center; gap: 0; border-radius: var(--r-pill); background: var(--whatsapp); color: #0b2812; padding: 1rem; box-shadow: 0 1rem 3rem -0.5rem hsl(150 50% 10% / 0.5); transition: all 0.3s ease; }
.whatsapp-fab:hover { transform: scale(1.05); gap: 0.625rem; }
.whatsapp-fab svg { width: 1.5rem; height: 1.5rem; stroke-width: 2.2; }
.whatsapp-fab .fab-label { max-width: 0; overflow: hidden; font-size: var(--fs-sm); font-weight: var(--fw-bold); white-space: nowrap; transition: max-width 0.3s ease; }
.whatsapp-fab:hover .fab-label { max-width: 140px; }
.whatsapp-fab .fab-ping { position: absolute; right: -0.125rem; top: -0.125rem; width: 0.875rem; height: 0.875rem; }
.whatsapp-fab .fab-ping::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: hsl(150 60% 65%); opacity: 0.75; animation: ping 2s cubic-bezier(0,0,0.2,1) infinite; }
.whatsapp-fab .fab-ping::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: hsl(150 60% 60%); box-shadow: 0 0 0 2px var(--bg-primary); }

/* CAR DETAIL */
.cd-wrap { padding: clamp(2rem, 4vw, 3rem) 0 4rem; }
.cd-breadcrumb, .breadcrumbs { font-size: 0.82rem; color: hsl(240 5% 60%); margin-bottom: 1.5rem; }
.cd-breadcrumb a, .breadcrumbs a { color: hsl(240 5% 75%); text-decoration: none; transition: color var(--t-fast); }
.cd-breadcrumb a:hover, .breadcrumbs a:hover { color: var(--amber-200); }
.cd-breadcrumb .sep, .breadcrumbs .sep { margin: 0 0.5rem; opacity: 0.5; }
.cd-grid { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 980px) { .cd-grid { grid-template-columns: 1fr; } }
.cd-title-block { margin: 0 0 1.75rem; }
.cd-title-block h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); margin-bottom: 0.75rem; }
.cd-subtitle { font-size: 1.05rem; color: hsl(240 5% 75%); margin: 0; }
.cd-gallery { margin-bottom: 2.5rem; }
.cd-gallery-main { position: relative; width: 100%; aspect-ratio: 16 / 9; background: var(--bg-card); border-radius: 18px; overflow: hidden; border: 1px solid hsl(0 0% 100% / 0.1); }
.cd-gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity var(--t-fast); }
.cd-gallery-counter { position: absolute; bottom: 1rem; right: 1rem; background: hsl(240 6% 5% / 0.7); backdrop-filter: blur(6px); color: #fff; font-size: 0.78rem; font-weight: var(--fw-medium); padding: 0.35rem 0.8rem; border-radius: 999px; letter-spacing: 0.04em; }
.cd-gallery-thumbs { display: flex; gap: 0.6rem; margin-top: 0.75rem; overflow-x: auto; padding-bottom: 0.25rem; scrollbar-width: thin; }
.cd-gallery-thumbs button { flex: 0 0 auto; width: 96px; height: 64px; padding: 0; border: 2px solid transparent; border-radius: 10px; overflow: hidden; background: var(--bg-card); cursor: pointer; transition: border-color var(--t-fast), opacity var(--t-fast); }
.cd-gallery-thumbs button img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.7; }
.cd-gallery-thumbs button:hover img { opacity: 0.9; }
.cd-gallery-thumbs button.is-active { border-color: var(--gold); }
.cd-gallery-thumbs button.is-active img { opacity: 1; }
.cd-section-label { font-size: 0.74rem; font-weight: var(--fw-semi); letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber-300); margin: 0 0 1rem; display: block; }
.cd-description { font-size: 1.08rem; line-height: 1.75; color: hsl(240 5% 75%); margin: 0 0 2.5rem; max-width: 640px; }
.cd-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: hsl(0 0% 100% / 0.1); border: 1px solid hsl(0 0% 100% / 0.1); border-radius: 16px; overflow: hidden; margin-bottom: 2.5rem; }
@media (max-width: 620px) { .cd-specs { grid-template-columns: repeat(2, 1fr); } }
.cd-spec { display: flex; flex-direction: column; gap: 0.4rem; padding: 1.1rem 1.25rem; background: var(--bg-card); }
.cd-spec-head { display: flex; align-items: center; gap: 0.45rem; color: hsl(240 5% 60%); }
.cd-spec-head svg { width: 16px; height: 16px; flex-shrink: 0; }
.cd-spec-head span { font-size: 0.74rem; font-weight: var(--fw-semi); letter-spacing: 0.06em; text-transform: uppercase; }
.cd-spec-val { font-family: var(--font-display); font-size: 1.05rem; font-weight: var(--fw-semi); color: var(--text-primary); line-height: 1.2; }
.cd-booking { position: sticky; top: calc(var(--header-h) + 1rem); background: var(--bg-card); border: 1px solid hsl(0 0% 100% / 0.1); border-radius: 20px; padding: 1.75rem; }
.cd-booking-eyebrow { font-size: 0.72rem; font-weight: var(--fw-semi); letter-spacing: 0.14em; text-transform: uppercase; color: hsl(240 5% 60%); margin: 0 0 0.4rem; }
.cd-price-main { font-family: var(--font-display); font-size: 2.5rem; font-weight: var(--fw-semi); color: var(--amber-200); line-height: 1; letter-spacing: -0.02em; }
.cd-price-unit { font-size: 0.92rem; color: hsl(240 5% 60%); margin-top: 0.35rem; }
.cd-tariffs { width: 100%; margin: 1.5rem 0; border-collapse: collapse; }
.cd-tariffs th, .cd-tariffs td { padding: 0.65rem 0.25rem; text-align: left; border-bottom: 1px solid hsl(0 0% 100% / 0.1); }
.cd-tariffs th { font-size: 0.78rem; font-weight: var(--fw-semi); letter-spacing: 0.04em; text-transform: uppercase; color: hsl(240 5% 60%); }
.cd-tariffs td { font-family: var(--font-display); font-size: 1rem; font-weight: var(--fw-semi); color: var(--text-primary); }
.cd-tariffs .cd-tariffs-amt { text-align: right; color: var(--amber-200); }
.cd-tariffs tr:last-child th, .cd-tariffs tr:last-child td { border-bottom: none; }
.cd-wa { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; margin-top: 0.6rem; padding: 0.85rem 1.5rem; font-weight: var(--fw-medium); font-size: 0.95rem; color: hsl(240 5% 75%); background: transparent; border: 1px solid hsl(0 0% 100% / 0.1); border-radius: 999px; text-decoration: none; transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast); }
.cd-wa:hover { color: #25D366; border-color: #25D366; background: hsl(150 50% 60% / 0.06); }
.cd-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid hsl(0 0% 100% / 0.1); }
.cd-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: hsl(240 5% 75%); line-height: 1.3; }
.cd-trust-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--amber-300); }
.cd-deposit { margin-top: 1rem; padding: 0.75rem 1rem; background: var(--bg-elevated); border-radius: 10px; font-size: 0.85rem; color: hsl(240 5% 75%); }
.cd-deposit strong { color: var(--text-primary); font-weight: var(--fw-semi); }
.cd-unavailable { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; padding: 0.6rem 1rem; background: var(--bg-elevated); border-radius: 999px; font-size: 0.88rem; font-weight: var(--fw-medium); color: hsl(240 5% 60%); }
.cd-similar { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid hsl(0 0% 100% / 0.1); }
.cd-similar-head { text-align: center; max-width: 600px; margin: 0 auto 2.5rem; }

/* LANDING / CITY / BRAND PAGES */
.landing-hero, .city-hero, .brand-hero, .rooftype-hero, .reviews-hero, .partnership-hero, .cat-hero { position: relative; min-height: 50vh; display: flex; align-items: center; overflow: hidden; background: var(--bg-secondary); }
.landing-hero img, .city-hero img, .brand-hero img, .rooftype-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.landing-hero::after, .city-hero::after, .brand-hero::after, .rooftype-hero::after { content: ''; position: absolute; inset: 0; background: var(--grad-hero-overlay); }
.landing-hero-content, .city-hero-content, .brand-hero-content, .rooftype-hero-content { position: relative; z-index: 1; width: 100%; max-width: var(--container); margin: 0 auto; padding: calc(var(--header-h) + 2rem) var(--container-padding) 2rem; }
.cat-hero-inner { position: relative; z-index: 1; max-width: 760px; padding: calc(var(--header-h) + 2rem) 0 2rem; }

/* PARTNERS */
.partner-types { display: grid; gap: 1.25rem; margin-top: 3rem; }
@media (min-width: 640px) { .partner-types { grid-template-columns: repeat(3, 1fr); } }

/* SITEMAP */
.sitemap-grid { display: grid; gap: 2rem; }
@media (min-width: 640px) { .sitemap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sitemap-grid { grid-template-columns: repeat(3, 1fr); } }
.sitemap-section h3 { font-size: var(--fs-md); margin-bottom: 1rem; }
.sitemap-section ul { display: flex; flex-direction: column; gap: 0.5rem; }
.sitemap-section a { font-size: var(--fs-sm); color: hsl(240 5% 75%); transition: color var(--t-fast); }
.sitemap-section a:hover { color: var(--amber-200); }

/* STATS */
.stats-grid { display: grid; gap: 1.25rem; margin-top: 3rem; }
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card { padding: 1.75rem; border-radius: var(--r-lg); border: 1px solid hsl(0 0% 100% / 0.1); background: var(--bg-card); text-align: center; }
.stat-value { font-family: var(--font-display); font-size: 2.5rem; font-weight: var(--fw-semi); color: var(--amber-200); line-height: 1; }
.stat-label { margin-top: 0.5rem; font-size: var(--fs-sm); color: hsl(240 5% 60%); }

/* TRUST BAR */
.trust-bar { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; margin-top: 3rem; padding: 1.5rem; border-radius: var(--r-lg); border: 1px solid hsl(0 0% 100% / 0.1); background: var(--bg-card); }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: var(--fs-sm); color: hsl(240 5% 75%); }
.trust-item svg { width: 1.25rem; height: 1.25rem; color: var(--amber-300); }

/* FLASH MESSAGES */
.flash { padding: 1rem 1.5rem; border-radius: var(--r-md); margin-bottom: 1rem; }
.flash.success { background: hsl(140 60% 40% / 0.15); border: 1px solid hsl(140 60% 40% / 0.3); color: #9ee6a8; }
.flash.error { background: hsl(0 70% 50% / 0.15); border: 1px solid hsl(0 70% 50% / 0.3); color: #fca5a5; }
.flash.warning { background: hsl(40 80% 50% / 0.15); border: 1px solid hsl(40 80% 50% / 0.3); color: #fcd34d; }
.flash.info { background: hsl(210 70% 50% / 0.15); border: 1px solid hsl(210 70% 50% / 0.3); color: #93c5fd; }

/* PARTNER DASHBOARD */
.welcome-banner { padding: 1.75rem; border-radius: var(--r-lg); border: 1px solid hsl(0 0% 100% / 0.1); background: var(--bg-card); margin-bottom: 2rem; }
.welcome-banner h2 { font-size: var(--fs-xl); }
.welcome-banner p { margin-top: 0.5rem; color: hsl(240 5% 75%); }
.results-count { margin-bottom: 1rem; font-size: var(--fs-sm); color: hsl(240 5% 60%); }
.status-badge, .availability-badge { display: inline-flex; align-items: center; padding: 0.25rem 0.75rem; border-radius: var(--r-pill); font-size: var(--fs-xs); font-weight: var(--fw-semi); }
.status-confirmed, .status-published, .status-issued, .status-completed, .avail-yes, .published-yes { background: hsl(140 60% 40% / 0.15); color: #9ee6a8; }
.status-new, .status-draft { background: hsl(210 70% 50% / 0.15); color: #93c5fd; }
.status-cancelled, .status-failed, .avail-no, .published-no { background: hsl(0 70% 50% / 0.15); color: #fca5a5; }

/* TABLE */
.table-responsive { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid hsl(0 0% 100% / 0.1); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 0.875rem 1rem; text-align: left; border-bottom: 1px solid hsl(0 0% 100% / 0.1); font-size: var(--fs-sm); color: hsl(240 5% 75%); }
th { font-weight: var(--fw-semi); text-transform: uppercase; letter-spacing: 0.04em; color: hsl(240 5% 60%); background: var(--bg-card); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: hsl(0 0% 100% / 0.02); }

/* ANIMATIONS */
@keyframes kenburns { 0% { transform: scale(1) translateY(0); } 100% { transform: scale(1.12) translateY(-1.5%); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes float-slow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity var(--t-reveal), transform var(--t-reveal); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { transition: none; opacity: 1; transform: none; } .hero-bg img { animation: none; } .footer-marquee-inner { animation: none; } .scroll-hint svg { animation: none; } .map-status-dot { animation: none; } }

/* UTILITY */
.text-center { text-align: center; }
.text-gold { color: var(--amber-200); }
.text-muted { color: hsl(240 5% 60%); }
.mt-1 { margin-top: var(--sp-1); } .mt-2 { margin-top: var(--sp-2); } .mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); } .mt-6 { margin-top: var(--sp-6); } .mt-8 { margin-top: var(--sp-8); }
.mb-2 { margin-bottom: var(--sp-2); } .mb-4 { margin-bottom: var(--sp-4); }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
