/* =====================================================
   RVS Travels — Modern theme (Warm & Trustworthy)
   ===================================================== */

/* ---------- Design tokens ---------- */
:root {
    --c-bg:          #ffffff;
    --c-bg-soft:     #f8fafc;
    --c-bg-muted:    #f1f5f9;
    --c-bg-warm:     #fff7ed;
    --c-ink:         #0b2545;
    --c-ink-2:       #1e3a5f;
    --c-muted:       #64748b;
    --c-line:        #e2e8f0;
    --c-line-soft:   #eef2f6;
    --c-brand:       #0b2545;
    --c-brand-ink:   #06192f;
    --c-accent:      #f97316;
    --c-accent-ink:  #ea580c;
    --c-accent-soft: #ffedd5;
    --c-success:     #16a34a;
    --c-warn:        #f59e0b;
    --c-wa:          #25d366;

    --r-sm:  6px;
    --r-md:  10px;
    --r-lg:  16px;
    --r-xl:  24px;
    --r-pill: 999px;

    --shadow-sm: 0 1px 2px rgba(11,37,69,0.06), 0 1px 3px rgba(11,37,69,0.06);
    --shadow-md: 0 6px 16px rgba(11,37,69,0.08), 0 3px 6px rgba(11,37,69,0.05);
    --shadow-lg: 0 22px 48px -16px rgba(11,37,69,0.18), 0 8px 20px -8px rgba(11,37,69,0.1);
    --shadow-warm: 0 12px 32px -8px rgba(249,115,22,0.35);

    --max-w: 1240px;
    --pad-x: clamp(20px, 4vw, 40px);

    --t-display: clamp(2.25rem, 4.5vw + 1rem, 4.25rem);
    --t-h2:      clamp(1.625rem, 2.2vw + 1rem, 2.5rem);
    --t-h3:      clamp(1.125rem, 0.5vw + 1rem, 1.375rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--c-ink-2);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-accent-ink); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--c-accent); }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
    margin: 0;
    line-height: 1.15;
    color: var(--c-ink);
    font-weight: 800;
    letter-spacing: -0.02em;
}
p { margin: 0; }
::selection { background: var(--c-accent); color: #fff; }

/* ---------- Layout primitives ---------- */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
}

.section { padding: clamp(52px, 8vw, 104px) 0; position: relative; }
.section-soft  { background: var(--c-bg-soft); }
.section-warm  { background: var(--c-bg-warm); }
.section-dark  { background: var(--c-ink); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .section-eyebrow { color: var(--c-accent); }
.section-dark p { color: rgba(255,255,255,0.78); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(32px, 4vw, 60px); }
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-accent-ink);
    font-weight: 700;
    margin-bottom: 14px;
}
.section-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--c-accent);
    border-radius: 2px;
}
.section-eyebrow.center-line { justify-content: center; }
.section-title { font-size: var(--t-h2); margin-bottom: 12px; }
.section-subtitle { color: var(--c-muted); font-size: 1.0625rem; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: 0.9375rem;
    border: 2px solid transparent;
    transition: transform 0.1s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
    background: var(--c-accent);
    color: #fff;
    border-color: var(--c-accent);
    box-shadow: var(--shadow-warm);
}
.btn-primary:hover { background: var(--c-accent-ink); color: #fff; border-color: var(--c-accent-ink); }
.btn-secondary {
    background: var(--c-ink);
    color: #fff;
    border-color: var(--c-ink);
}
.btn-secondary:hover { background: var(--c-brand-ink); color: #fff; border-color: var(--c-brand-ink); }
.btn-ghost {
    background: transparent;
    color: var(--c-ink);
    border-color: var(--c-line);
}
.btn-ghost:hover { background: var(--c-bg-muted); border-color: var(--c-ink); color: var(--c-ink); }
.btn-whatsapp {
    background: var(--c-wa);
    color: #fff;
    border-color: var(--c-wa);
}
.btn-whatsapp:hover { background: #1faa54; color: #fff; border-color: #1faa54; }
.btn-lg { padding: 15px 30px; font-size: 1rem; }

/* ---------- Header / Nav ---------- */
.site-header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--c-line);
    position: sticky;
    top: 0;
    z-index: 50;
}
.header-strip {
    background: var(--c-ink);
    color: rgba(255,255,255,0.85);
    font-size: 0.8125rem;
    padding: 8px 0;
}
.header-strip-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.header-strip a { color: rgba(255,255,255,0.85); }
.header-strip a:hover { color: #fff; }
.header-strip-items { display: inline-flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.header-strip-item { display: inline-flex; align-items: center; gap: 6px; }
.header-strip-item svg { color: var(--c-accent); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 84px;
    padding-top: 14px;
    padding-bottom: 14px;
}
.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--c-ink);
    font-weight: 800;
    font-size: 1.125rem;
}
.site-brand img {
    height: 52px;
    width: auto;
    image-rendering: -webkit-optimize-contrast;
}
@media (max-width: 560px) { .site-brand img { height: 44px; } }

.site-nav ul {
    display: flex;
    gap: 30px;
}
.site-nav a {
    color: var(--c-ink-2);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 8px 0;
    position: relative;
}
.site-nav a:hover { color: var(--c-accent-ink); }
.site-nav a.is-active { color: var(--c-accent-ink); }
.site-nav a.is-active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 3px;
    background: var(--c-accent);
    border-radius: 2px;
}

.header-actions { display: inline-flex; align-items: center; gap: 12px; }
.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--c-ink);
    font-weight: 700;
    font-size: 0.9375rem;
}
.header-phone-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--r-pill);
    background: var(--c-accent-soft);
    color: var(--c-accent-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.header-phone:hover .header-phone-icon { background: var(--c-accent); color: #fff; }

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--c-line);
    border-radius: var(--r-sm);
    padding: 8px 10px;
    color: var(--c-ink);
}
.nav-toggle svg { display: block; }

@media (max-width: 980px) {
    .site-nav, .header-phone { display: none; }
    .nav-toggle { display: inline-flex; }
    body.nav-open .site-nav {
        display: block;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: #fff;
        padding: 16px var(--pad-x) 24px;
        border-bottom: 1px solid var(--c-line);
        box-shadow: var(--shadow-md);
    }
    body.nav-open .site-nav ul { flex-direction: column; gap: 4px; }
    body.nav-open .site-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--c-line-soft); }
}
@media (max-width: 560px) {
    .header-strip { display: none; }
}

/* ---------- Banner (top) ---------- */
.site-banner {
    padding: 10px 16px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
}

/* ---------- Hero slider (full-width) ---------- */
.hero-slider {
    position: relative;
    height: clamp(460px, 72vh, 660px);
    overflow: hidden;
    background: var(--c-ink);
    margin-bottom: 60px;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11,37,69,0.88) 0%, rgba(11,37,69,0.5) 60%, rgba(11,37,69,0.15) 100%);
}
@media (max-width: 768px) {
    .hero-slide::after { background: linear-gradient(180deg, rgba(11,37,69,0.5) 0%, rgba(11,37,69,0.85) 100%); }
}
.hero-slide-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}
.hero-slide-content {
    color: #fff;
    max-width: 620px;
    padding: 40px 0 80px;
}
.hero-slide-content .hero-eyebrow {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
    backdrop-filter: blur(6px);
}
.hero-slide-content .hero-eyebrow::before {
    background: var(--c-accent);
    box-shadow: 0 0 0 4px rgba(249,115,22,0.3);
}
.hero-slide-content h2 {
    color: #fff;
    font-size: clamp(2rem, 3.5vw + 1rem, 3.75rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
    font-weight: 800;
}
.hero-slide-content h2 .accent { color: var(--c-accent); }
.hero-slide-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.0625rem;
    max-width: 520px;
    margin-bottom: 28px;
    line-height: 1.6;
}
.hero-slide-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-slide-content .btn-ghost {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.28);
    color: #fff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hero-slide-content .btn-ghost:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.hero-slider-arrows {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(12px, 3vw, 32px);
    pointer-events: none;
    z-index: 3;
}
.hero-slider-arrow {
    pointer-events: auto;
    width: 46px; height: 46px;
    border-radius: var(--r-pill);
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s ease, transform 0.18s ease;
}
.hero-slider-arrow:hover { background: var(--c-accent); border-color: var(--c-accent); transform: scale(1.05); }

.hero-slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}
.hero-slider-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, width 0.25s ease;
    padding: 0;
}
.hero-slider-dot.is-active {
    background: var(--c-accent);
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 560px) {
    .hero-slider-arrows { display: none; }
    .hero-slider { height: clamp(420px, 80vh, 560px); margin-bottom: 40px; }
}

/* ---------- Hero (legacy two-column, kept for inner pages if needed) ---------- */
.hero {
    padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 80px);
    background: linear-gradient(180deg, var(--c-bg-warm) 0%, var(--c-bg) 100%);
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    position: relative;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: #fff;
    color: var(--c-ink);
    border: 1px solid var(--c-line);
    border-radius: var(--r-pill);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.hero-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--c-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(249,115,22,0.2);
}
.hero-title {
    font-size: var(--t-display);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}
.hero-title .accent { color: var(--c-accent); }
.hero-lead {
    font-size: 1.125rem;
    color: var(--c-muted);
    max-width: 560px;
    margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
    color: var(--c-ink-2);
    font-size: 0.9375rem;
}
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.hero-trust svg { color: var(--c-success); flex-shrink: 0; }

.hero-image {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 800px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-image { order: -1; aspect-ratio: 16 / 10; }
}

/* ---------- Feature strip ---------- */
.feature-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    padding: 32px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    margin-top: -100px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 5;
}
@media (max-width: 560px) {
    .feature-strip { margin-top: -30px; }
}
.feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.feature-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: var(--r-md);
    background: var(--c-accent-soft);
    color: var(--c-accent-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.feature-title { font-size: 0.9375rem; font-weight: 700; margin-bottom: 4px; color: var(--c-ink); }
.feature-desc { font-size: 0.875rem; color: var(--c-muted); }

/* ---------- Car cards ---------- */
.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 26px;
}
.car-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
}
.car-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--c-accent-soft);
}
.car-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--c-bg-muted);
    overflow: hidden;
}
.car-card-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.car-card:hover .car-card-media img { transform: scale(1.06); }
.car-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #fff;
    padding: 6px 12px;
    border-radius: var(--r-pill);
    font-size: 0.8125rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--c-ink);
    box-shadow: var(--shadow-sm);
}
.car-card-body { padding: 22px; display: flex; flex-direction: column; gap: 14px; flex-grow: 1; }
.car-card-title { font-size: var(--t-h3); color: var(--c-ink); }
.car-card-subtitle { color: var(--c-muted); font-size: 0.9375rem; margin-top: -10px; }
.car-card-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    font-size: 0.9375rem;
    color: var(--c-ink);
    font-weight: 600;
}
.car-card-highlights span { display: inline-flex; align-items: center; gap: 6px; }
.car-card-highlights svg { color: var(--c-accent); flex-shrink: 0; }
.car-card-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.car-spec {
    background: var(--c-bg-soft);
    color: var(--c-ink-2);
    padding: 4px 10px;
    border-radius: var(--r-pill);
    font-size: 0.8125rem;
    font-weight: 500;
}
.car-card-extras {
    display: flex;
    gap: 18px;
    font-size: 0.8125rem;
    color: var(--c-muted);
    padding-top: 2px;
}
.car-card-extras strong { color: var(--c-ink); font-weight: 700; }
.car-card-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--c-line-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.car-card-price-label { color: var(--c-muted); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 2px; }
.car-card-price { display: flex; align-items: baseline; gap: 4px; }
.car-card-price-amount { font-size: 1.5rem; font-weight: 800; color: var(--c-ink); }
.car-card-price-per { color: var(--c-muted); font-size: 0.875rem; }
.car-card-cta {
    background: var(--c-accent);
    color: #fff !important;
    padding: 9px 16px;
    border-radius: var(--r-pill);
    font-size: 0.8125rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.15s ease;
}
.car-card-cta:hover { background: var(--c-accent-ink); color: #fff !important; }

/* ---------- Service cards ---------- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
}
.service-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-accent-soft);
}
.service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-md);
    background: var(--c-accent-soft);
    color: var(--c-accent-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}
.service-card-title { font-size: 1.125rem; margin-bottom: 8px; color: var(--c-ink); }
.service-card-desc { color: var(--c-muted); font-size: 0.9375rem; }

/* ---------- Team members ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    max-width: 920px;
    margin: 0 auto;
}
.team-member {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    text-align: center;
}
.team-member:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-accent-soft); }
.team-member-img {
    aspect-ratio: 4 / 5;
    background: var(--c-bg-muted);
    overflow: hidden;
    position: relative;
}
.team-member-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.team-member:hover .team-member-img img { transform: scale(1.05); }
.team-member-info { padding: 22px 18px 24px; }
.team-member-name { font-size: 1.0625rem; font-weight: 700; color: var(--c-ink); }
.team-member-designation { font-size: 0.8125rem; color: var(--c-accent-ink); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.team-member-social {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--c-line-soft);
}
.team-member-social a {
    width: 34px;
    height: 34px;
    border-radius: var(--r-pill);
    background: var(--c-bg-soft);
    color: var(--c-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}
.team-member-social a:hover { background: var(--c-accent); color: #fff; }

/* ---------- Stats ---------- */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    text-align: center;
}
.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--c-accent);
    letter-spacing: -0.02em;
    line-height: 1;
}
.section-dark .stat-number { color: var(--c-accent); }
.stat-label { color: var(--c-muted); font-size: 0.9375rem; margin-top: 8px; }
.section-dark .stat-label { color: rgba(255,255,255,0.78); }

/* ---------- Testimonials ---------- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
}
.testimonial {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    padding: 28px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--c-warn); margin-bottom: 12px; font-size: 14px; letter-spacing: 2px; }
.testimonial-text { color: var(--c-ink-2); margin-bottom: 18px; font-size: 0.9375rem; line-height: 1.7; }
.testimonial-author { font-weight: 700; color: var(--c-ink); font-size: 0.9375rem; }
.testimonial-author-loc { color: var(--c-muted); font-size: 0.8125rem; margin-top: 2px; }

/* ---------- Page title (inner pages) ---------- */
.page-title {
    background: linear-gradient(180deg, var(--c-bg-warm), #fff);
    padding: clamp(48px, 7vw, 88px) 0;
    border-bottom: 1px solid var(--c-line);
    text-align: center;
}
.page-title h1 {
    font-size: clamp(2rem, 3vw + 1rem, 3.25rem);
    letter-spacing: -0.025em;
    margin-bottom: 14px;
}
.page-title p { color: var(--c-muted); font-size: 1.0625rem; max-width: 660px; margin: 0 auto; }

/* ---------- CTA section ---------- */
.cta-band {
    background: var(--c-ink);
    color: #fff;
    border-radius: var(--r-xl);
    padding: clamp(40px, 6vw, 72px);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::after {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(249,115,22,0.3), transparent 70%);
    pointer-events: none;
}
.cta-band h2 { color: #fff; font-size: var(--t-h2); margin-bottom: 12px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 28px; position: relative; }
.cta-band .btn { position: relative; }

/* ---------- Contact page ---------- */
.contact-quick {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}
.contact-quick-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-quick-card:hover {
    transform: translateY(-3px);
    border-color: var(--c-accent-soft);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}
.contact-quick-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.contact-quick-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.contact-quick-label {
    font-size: 0.75rem;
    color: var(--c-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.contact-quick-value {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--c-ink);
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form { background: #fff; padding: clamp(24px, 3vw, 32px); border: 1px solid var(--c-line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.form-flash {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: var(--r-md);
    margin-bottom: 18px;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.5;
}
.form-flash svg { flex-shrink: 0; margin-top: 2px; }
.form-flash-success { background: #dcfce7; color: #166534; border: 1px solid rgba(22,163,74,0.25); }
.form-flash-danger  { background: #fee2e2; color: #991b1b; border: 1px solid rgba(220,38,38,0.25); }

/* ---------- Star rating (radio inputs) ---------- */
.star-rating {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}
.star-rating input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.star-rating label {
    cursor: pointer;
    color: var(--c-line);
    transition: color 0.12s ease, transform 0.12s ease;
    line-height: 0;
    display: inline-flex;
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input[type="radio"]:checked ~ label {
    color: var(--c-warn);
}
.star-rating label:hover { transform: scale(1.08); }
.star-rating input[type="radio"]:focus-visible + label {
    outline: 2px solid var(--c-accent);
    outline-offset: 2px;
    border-radius: 4px;
}

.review-form-wrap { max-width: 720px; margin: 0 auto; }
.contact-form h2 { font-size: var(--t-h3); margin-bottom: 8px; }
.contact-form p.lead { color: var(--c-muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-label { display: block; font-size: 0.8125rem; font-weight: 700; margin-bottom: 6px; color: var(--c-ink-2); }
.form-input, .form-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    font-size: 0.9375rem;
    font-family: inherit;
    background: var(--c-bg);
    color: var(--c-ink);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px var(--c-accent-soft);
}

.contact-info-list { display: flex; flex-direction: column; gap: 18px; }
.contact-info {
    display: flex;
    gap: 16px;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-info:hover { border-color: var(--c-accent-soft); box-shadow: var(--shadow-sm); }
.contact-info-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: var(--r-md);
    background: var(--c-accent-soft);
    color: var(--c-accent-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.contact-info-title { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-muted); font-weight: 700; margin-bottom: 4px; }
.contact-info-text { color: var(--c-ink); font-size: 0.9375rem; line-height: 1.55; }
.contact-info-text a { color: var(--c-ink); }
.contact-info-text a:hover { color: var(--c-accent-ink); }

.map-wrap {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--c-line);
    aspect-ratio: 16 / 7;
    box-shadow: var(--shadow-sm);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-ink); color: rgba(255,255,255,0.7); padding: clamp(48px, 6vw, 80px) 0 24px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: clamp(28px, 4vw, 56px);
    margin-bottom: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h3 { color: var(--c-accent); font-size: 0.875rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.72); font-size: 0.9375rem; font-weight: 500; }
.footer-col a:hover { color: #fff; }
.footer-brand img {
    height: 56px;
    width: auto;
    margin-bottom: 18px;
    background: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.9375rem; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--r-md);
    background: rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.85);
    transition: background 0.15s ease, color 0.15s ease;
}
.footer-social a:hover { background: var(--c-accent); color: #fff; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 0.9375rem; }
.footer-contact-item svg { flex-shrink: 0; color: var(--c-accent); margin-top: 2px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: var(--c-wa);
    color: #fff;
    border-radius: var(--r-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(37,211,102,0.45), 0 6px 14px rgba(0,0,0,0.12);
    z-index: 40;
    transition: transform 0.18s ease;
}
.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: var(--r-pill);
    background: rgba(37,211,102,0.25);
    z-index: -1;
    animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
    0%   { transform: scale(0.85); opacity: 0.8; }
    100% { transform: scale(1.6);  opacity: 0; }
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-3 { margin-top: 24px; }
.muted { color: var(--c-muted); }
