/* =========================================================
   TAXI Sindelfingen — Master Stylesheet
   ========================================================= */

:root {
    /* ─────────────────────────────────────────────────
       STRICT 5-COLOR EDITORIAL PALETTE
       (only these five hues + opacities — nothing else)
       ─────────────────────────────────────────────────
       pearl     #EDE9E9    rgb(237,233,233)
       dove      #D8D1D0    rgb(216,209,208)
       mocha     #BDB1AD    rgb(189,177,173)
       charcoal  #2F2F31    rgb( 47, 47, 49)
       charcoal-2 #2D2D2D   rgb( 45, 45, 45)
    */
    --pearl:        #EDE9E9;
    --dove:         #D8D1D0;
    --mocha:        #BDB1AD;
    --charcoal:     #2F2F31;
    --charcoal-2:   #2D2D2D;

    /* All previous color aliases now resolve to a palette member.
       The primary "accent" everywhere is now charcoal itself. */
    --accent:       var(--charcoal);
    --accent-light: var(--mocha);
    --accent-deep:  var(--charcoal-2);
    --gold:         var(--charcoal);
    --gold-light:   var(--mocha);
    --gold-soft:    var(--dove);
    --bronze:       var(--charcoal-2);
    --bronze-deep:  var(--charcoal-2);
    --brown:        var(--charcoal);
    --brown-deep:   var(--charcoal-2);
    --cream:        var(--pearl);
    --black:        var(--charcoal-2);
    --ink:          var(--charcoal-2);
    --pearl-light:  var(--pearl);  /* same — alias for older rules */
    --dark:         var(--charcoal);
    --dark-2:       var(--charcoal-2);
    --dark-3:       var(--charcoal);
    --yellow:       var(--charcoal);
    --yellow-dark:  var(--charcoal-2);
    --yellow-light: var(--mocha);

    /* Tonal stops — strictly within palette via rgba opacity overlays */
    --gray-100: var(--pearl);
    --gray-200: var(--dove);
    --gray-300: var(--mocha);
    --gray-400: rgba(47, 47, 49, 0.55);   /* charcoal at 55% — soft secondary text */
    --gray-500: rgba(47, 47, 49, 0.68);   /* charcoal at 68% — body secondary */
    --gray-600: rgba(47, 47, 49, 0.80);   /* charcoal at 80% — emphatic */
    --gray-700: var(--charcoal-2);

    --white: var(--pearl);      /* "white" aliases to pearl — strictly palette */
    --green: #25D366;           /* WhatsApp brand color — preserved per WhatsApp guidelines */
    --green-dark: #128C7E;
    --red: var(--charcoal);     /* error states use charcoal, not red */

    /* Layout */
    --container: 1280px;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* All shadows in charcoal tint — no warm hues */
    --shadow:        0 6px 24px rgba(47, 47, 49, 0.08);
    --shadow-lg:     0 24px 60px rgba(47, 47, 49, 0.18);
    --shadow-soft:   0 2px 8px rgba(47, 47, 49, 0.06);
    --shadow-gold:   0 16px 40px rgba(45, 45, 45, 0.22);   /* "gold" alias kept; now charcoal */
    --shadow-bronze: 0 18px 46px rgba(45, 45, 45, 0.28);

    /* Signature gradients — strictly within the 5-color palette */
    --grad-shine:   linear-gradient(135deg, var(--pearl) 0%, var(--mocha) 100%);    /* light shimmer for hero text */
    --grad-mid:     linear-gradient(135deg, var(--mocha) 0%, var(--charcoal) 100%); /* mid-tone for icons */
    --grad-dark:    linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
    --grad-night:   linear-gradient(150deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
    --grad-deep:    linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
    --grad-pearl:   linear-gradient(180deg, var(--pearl) 0%, var(--dove) 100%);
    --grad-section: linear-gradient(180deg, var(--pearl) 0%, var(--dove) 100%);
    /* Aliases retained so legacy CSS rules keep working */
    --grad-gold:    var(--grad-mid);
    --grad-warm:    var(--grad-mid);

    /* "Paper" wallpaper backgrounds — only mocha & dove tints, no warm hues */
    --wall-pearl:   radial-gradient(ellipse at top right, rgba(189,177,173,0.22) 0%, transparent 55%),
                    radial-gradient(ellipse at bottom left, rgba(216,209,208,0.32) 0%, transparent 55%),
                    var(--pearl);
    --wall-dove:    radial-gradient(ellipse at top, rgba(189,177,173,0.24) 0%, transparent 60%),
                    var(--dove);
    --wall-night:   radial-gradient(ellipse at 80% 20%, rgba(189,177,173,0.10) 0%, transparent 50%),
                    radial-gradient(ellipse at 20% 80%, rgba(0,0,0,0.45) 0%, transparent 60%),
                    linear-gradient(150deg, var(--charcoal) 0%, var(--charcoal-2) 100%);

    /* Paper-noise texture for tactile linen feel */
    --noise: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.045 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

    /* Typography */
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Poppins', 'Inter', sans-serif;

    /* Transitions */
    --t-fast: 0.18s ease;
    --t: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--charcoal-2);   /* charcoal text on pearl bg */
    background: var(--wall-pearl);
    background-attachment: fixed;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    position: relative;
}
/* Subtle paper-noise overlay across the whole body (premium tactile feel) */
body::before {
    content: ''; position: fixed; inset: 0;
    background-image: var(--noise);
    background-size: 160px 160px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
    mix-blend-mode: multiply;
}
header, main, section, footer, .header, .whatsapp-float, .chatbot, .back-to-top, #preloader { position: relative; z-index: 1; }
::selection { background: var(--charcoal); color: var(--pearl); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--yellow-dark); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; position: relative; }
.section-header { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 9px 22px;
    background: rgba(255,255,255,0.55);
    color: var(--charcoal-2);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    border-radius: 99px;
    margin-bottom: 22px;
    border: 1px solid rgba(189,177,173,0.6);
    backdrop-filter: blur(6px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.section-badge::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent); box-shadow: 0 0 8px rgba(47,47,49,0.55);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    font-weight: 800;
    color: var(--brown-deep);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.018em;
}
.section-title em { font-style: normal; color: var(--bronze); position: relative; }
.section-desc { font-size: 1.06rem; color: var(--gray-600); line-height: 1.78; }

/* =========== BUTTONS =========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 99px;
    transition: all var(--t);
    cursor: pointer;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--charcoal-2);
    color: var(--pearl);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    letter-spacing: 0.02em;
}
.btn-primary::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: var(--grad-mid);
    opacity: 0; transition: opacity var(--t);
}
.btn-primary:hover { transform: translateY(-2px); color: var(--pearl); box-shadow: var(--shadow-bronze); }
.btn-primary:hover::before { opacity: 1; }
.btn-outline { background: transparent; color: var(--pearl); border-color: var(--mocha); }
.btn-outline:hover { background: var(--pearl); color: var(--charcoal-2); transform: translateY(-2px); border-color: var(--pearl); }
.btn-ghost { background: rgba(237,233,233,0.08); color: var(--pearl); border-color: rgba(237,233,233,0.22); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(237,233,233,0.14); color: var(--pearl); border-color: var(--pearl); transform: translateY(-2px); }
.btn-whatsapp { background: var(--green); color: var(--white); }
.btn-whatsapp:hover { background: var(--green-dark); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* =========== PRELOADER =========== */
#preloader {
    position: fixed; inset: 0;
    background: var(--grad-night);
    z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease;
}
.loader { text-align: center; }
.shuttle-icon { animation: float 2s ease-in-out infinite; }
.loader-road { width: 200px; height: 4px; background: rgba(47,47,49,0.2); border-radius: 2px; margin: 18px auto; overflow: hidden; }
.road-line { width: 50%; height: 100%; background: var(--yellow); border-radius: 2px; animation: drive 1.4s ease-in-out infinite; }
.loader-text { font-family: var(--font-display); color: var(--yellow); font-weight: 700; letter-spacing: 0.16em; font-size: 0.92rem; text-transform: uppercase; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes drive { 0% { transform: translateX(-100%); } 100% { transform: translateX(200%); } }

/* =========== HEADER =========== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all var(--t); }
.header-top {
    background: var(--black);
    color: var(--gray-300);
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(47,47,49,0.1);
}
.header-top-content {
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 0;
}
.header-contact-info { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--yellow); }
.header-phone:hover { color: var(--yellow-light); }
.header-divider { color: rgba(255,255,255,0.2); }
.header-hours, .header-location { display: inline-flex; align-items: center; gap: 8px; }
.header-location { color: var(--gray-400); }
.hide-sm { display: none; }
@media (min-width: 900px) { .hide-sm { display: inline-flex; } }
.header-social { display: flex; align-items: center; gap: 14px; }
.header-social a { color: var(--gray-300); width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; transition: all var(--t); }
.header-social a:hover { background: var(--yellow); color: var(--black); }
.lang-switcher { display: flex; gap: 0; margin-left: 6px; border: 1px solid rgba(255,255,255,0.16); border-radius: 99px; overflow: hidden; }
.lang-btn { padding: 4px 12px; color: var(--gray-300); font-weight: 600; font-size: 0.78rem; transition: all var(--t-fast); background: transparent; }
.lang-btn.active { background: var(--yellow); color: var(--black); }

.navbar { background: rgba(237,233,233,0.86); backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px); border-bottom: 1px solid rgba(189,177,173,0.4); transition: all var(--t); }
.header.scrolled .navbar { background: rgba(245,242,242,0.96); box-shadow: var(--shadow); }
.navbar > .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 16px; }
.logo { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 1.32rem; color: var(--black); letter-spacing: -0.02em; line-height: 1; }
.logo:hover { color: var(--black); }
.logo-icon { font-size: 1.6rem; line-height: 1; }
/* New roof-light SVG mark — used in header, footer & preloader */
.logo-mark { display: inline-flex; flex: none; width: 38px; height: 38px; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 8px rgba(47,47,49,0.18); }
.logo-mark svg { width: 100%; height: 100%; display: block; }
.logo-text { letter-spacing: -0.015em; white-space: nowrap; }
.footer-logo .logo-mark { width: 44px; height: 44px; box-shadow: 0 2px 12px rgba(0,0,0,0.4); }
@media (max-width: 600px) {
    .logo { font-size: 1.1rem; gap: 9px; }
    .logo-mark { width: 32px; height: 32px; }
}
.logo-highlight {
    color: var(--charcoal-2);
    font-weight: 800;
    position: relative;
}
/* Refined "etched" underline on the highlight portion of the logo */
.logo-highlight::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
    height: 1px; background: var(--mocha); opacity: 0.6;
}
.nav-menu { display: none; gap: 30px; }
@media (min-width: 1024px) { .nav-menu { display: flex; } }
.nav-link { color: var(--gray-700); font-weight: 500; font-size: 0.95rem; position: relative; padding: 6px 0; }
.nav-link:hover, .nav-link.active { color: var(--black); }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--grad-gold); border-radius: 2px; transition: width var(--t); }
.nav-link.active::after, .nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--brown-deep); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-cta { padding: 11px 22px; font-size: 0.88rem; }
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 30px; padding: 6px; background: transparent; }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--black); transition: all var(--t); border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile menu */
@media (max-width: 1023.98px) {
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: min(86vw, 320px); height: 100vh;
        background: var(--white); flex-direction: column; gap: 0; padding: 110px 28px 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.15); transition: right var(--t-slow); z-index: 999;
    }
    .nav-menu.open { right: 0; display: flex; }
    .nav-link { padding: 14px 0; border-bottom: 1px solid var(--gray-200); width: 100%; font-size: 1.05rem; }
    .nav-link::after { display: none; }
}

/* =========== HERO =========== */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    color: var(--white); padding-top: 120px; padding-bottom: 60px; overflow: hidden;
}
/* Premium ambient glow — soft gold light from bottom-right of hero */
.hero::after {
    content: ''; position: absolute; pointer-events: none;
    width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
    bottom: -30%; right: -20%;
    background: radial-gradient(circle, rgba(47,47,49,0.18) 0%, rgba(45,45,45,0.08) 35%, transparent 70%);
    z-index: 1;
}
.hero::before {
    content: ''; position: absolute; pointer-events: none;
    width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
    top: -20%; left: -15%;
    background: radial-gradient(circle, rgba(88,46,12,0.35) 0%, transparent 70%);
    z-index: 1;
}
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.hero-bg { position: absolute; inset: 0; }
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-particles canvas { width: 100%; height: 100%; }
.hero-container { position: relative; z-index: 2; }
.hero-content { max-width: 820px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 9px 20px;
    background: rgba(255,255,255,0.08);
    color: var(--pearl);
    border: 1px solid rgba(214,164,121,0.45);
    border-radius: 99px;
    font-size: 0.84rem; font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.hero-badge i { color: var(--accent-light); }
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6.5vw, 5.2rem);
    font-weight: 800; line-height: 1.05; letter-spacing: -0.025em;
    margin-bottom: 28px;
}
.hero-title-line { display: block; color: var(--mocha); font-weight: 300; letter-spacing: -0.01em; }
.hero-title-brand {
    display: block;
    background: var(--grad-shine);  /* pearl → mocha shimmer (strict palette) */
    -webkit-background-clip: text; background-clip: text; color: transparent;
    font-weight: 800;
}
.hero-subtitle { font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: rgba(237,233,233,0.82); max-width: 720px; margin-bottom: 36px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12); }
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-value {
    display: inline-flex; align-items: baseline; gap: 2px;
    white-space: nowrap; line-height: 1;
}
.hero-stat-number, .hero-stat-number-static {
    font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800;
    color: var(--yellow); line-height: 1;
}
.hero-stat-plus, .hero-stat-slash {
    font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 1.8rem); font-weight: 800;
    color: var(--yellow); line-height: 1;
}
.hero-stat-label { font-size: 0.84rem; color: rgba(255,255,255,0.74); margin-top: 6px; }
.hero-stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.18); }
.hero-scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 3; }
.mouse { width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.6); border-radius: 14px; display: flex; justify-content: center; padding-top: 6px; }
.mouse-wheel { width: 3px; height: 8px; background: var(--yellow); border-radius: 2px; animation: scrollwheel 1.6s ease-in-out infinite; }
@keyframes scrollwheel { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(14px); } }
.hero-slider-dots { position: absolute; bottom: 30px; right: 40px; display: flex; gap: 10px; z-index: 3; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); transition: all var(--t); }
.slider-dot.active { background: var(--yellow); width: 26px; border-radius: 5px; }

/* =========== ABOUT =========== */
.about-section { background: var(--wall-dove); position: relative; }
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.about-card {
    background: var(--white); padding: 44px 34px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all var(--t);
    border: 1px solid rgba(189,177,173,0.55);
    position: relative;
    overflow: hidden;
}
.about-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--grad-gold);
    transform: scaleX(0); transform-origin: center;
    transition: transform var(--t);
}
.about-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--mocha); }
.about-card:hover::before { transform: scaleX(1); }
.about-card-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: var(--grad-gold);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--brown-deep); font-size: 1.6rem; margin-bottom: 22px;
    box-shadow: 0 8px 22px rgba(45,45,45,0.32), inset 0 1px 0 rgba(255,255,255,0.3);
    transition: transform var(--t), box-shadow var(--t);
}
.about-card:hover .about-card-icon { transform: rotate(-6deg) scale(1.04); box-shadow: 0 14px 32px rgba(45,45,45,0.42); }
.about-card h3 { font-family: var(--font-display); font-size: 1.22rem; font-weight: 700; color: var(--black); margin-bottom: 12px; }
.about-card p { color: var(--gray-600); line-height: 1.7; }

/* =========== SERVICES =========== */
.services-section { background: var(--pearl-light); position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.service-card {
    position: relative;
    background: linear-gradient(145deg, var(--dark) 0%, var(--brown-deep) 100%);
    color: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    transition: all var(--t);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: var(--yellow); transform: scaleX(0); transform-origin: left;
    transition: transform var(--t);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { background: var(--grad-warm); color: var(--brown-deep); }
.service-card.featured::before { background: var(--brown-deep); transform: scaleX(1); }
.service-card.featured .service-icon { background: rgba(59,29,5,0.18); color: var(--brown-deep); }
.service-card.featured .service-link { color: var(--brown-deep); border-color: var(--brown-deep); }
.service-card.featured .service-link:hover { background: var(--brown-deep); color: var(--gold); }
.service-badge {
    position: absolute; top: 16px; right: 16px; padding: 4px 12px;
    background: var(--black); color: var(--yellow); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; border-radius: 99px;
}
.service-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(47,47,49,0.16);
    color: var(--yellow);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 22px;
}
.service-card h3 { font-family: var(--font-display); font-size: 1.32rem; font-weight: 700; margin-bottom: 14px; }
.service-card p { color: rgba(255,255,255,0.78); margin-bottom: 22px; line-height: 1.7; }
.service-card.featured p { color: rgba(0,0,0,0.78); }
.service-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 20px;
    border: 2px solid var(--yellow);
    color: var(--yellow);
    border-radius: 99px;
    font-size: 0.86rem; font-weight: 600;
    transition: all var(--t);
}
.service-link:hover { background: var(--yellow); color: var(--black); }

/* =========== PRICING =========== */
.pricing-section { background: var(--wall-dove); position: relative; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-bottom: 56px; }
.pricing-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px 32px;
    box-shadow: var(--shadow-soft);
    transition: all var(--t);
    border: 1px solid rgba(189,177,173,0.55);
}
.pricing-card:hover { transform: translateY(-6px); border-color: rgba(47,47,49,0.5); }
.pricing-card.featured { border-color: var(--yellow); box-shadow: 0 14px 40px rgba(47,47,49,0.22); }
.pricing-popular {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    padding: 6px 16px; background: var(--yellow); color: var(--black);
    font-size: 0.78rem; font-weight: 700; border-radius: 99px;
    letter-spacing: 0.1em; text-transform: uppercase;
}
.pricing-card-header { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--gray-200); }
.pricing-card-header h3 { font-family: var(--font-display); font-size: 1.16rem; font-weight: 700; color: var(--black); margin-bottom: 6px; line-height: 1.3; }
.pricing-distance { font-size: 0.86rem; color: var(--gray-500); }
.pricing-card-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 24px; }
.pricing-from { font-size: 0.82rem; color: var(--gray-500); }
.pricing-amount {
    font-family: var(--font-display); font-size: 2.6rem; font-weight: 800;
    color: var(--charcoal-2);    /* monumental, pure charcoal — strict palette */
    line-height: 1; letter-spacing: -0.02em;
}
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; color: var(--gray-700); font-size: 0.93rem; }
.pricing-features li i { color: var(--yellow-dark); font-size: 0.86rem; }
.pricing-rate-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}
.rate-title { text-align: center; font-family: var(--font-display); font-size: 1.18rem; font-weight: 700; color: var(--black); margin-bottom: 24px; }
.rate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.rate-item {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
    padding: 18px;
    border-radius: var(--radius);
    display: flex; flex-direction: column; gap: 4px;
    border: 1px solid var(--gray-200);
    transition: all var(--t);
}
.rate-item:hover { border-color: var(--bronze); box-shadow: var(--shadow); transform: translateY(-2px); }
.rate-label { font-size: 0.74rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.rate-value { font-family: var(--font-display); font-size: 1.32rem; font-weight: 800; color: var(--bronze); letter-spacing: -0.01em; }

/* =========== CALCULATOR =========== */
.calculator-section { background: var(--wall-night); color: var(--pearl); position: relative; }
.calculator-section .section-title { color: var(--white); }
.calculator-section .section-desc { color: rgba(255,255,255,0.74); }
.calculator-wrapper { max-width: 880px; margin: 0 auto; }
.calculator-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(189,177,173,0.03) 100%);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(189,177,173,0.18);
    border-radius: var(--radius-xl); padding: 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.06);
}
.calc-vehicle-select { margin-bottom: 28px; }
.calc-vehicle-select > label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--gray-300); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.1em; }
.calc-vehicle-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.calc-vehicle-option {
    display: flex; align-items: center; gap: 14px;
    padding: 16px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--t);
    background: rgba(255,255,255,0.03);
}
.calc-vehicle-option:hover { border-color: rgba(47,47,49,0.5); }
.calc-vehicle-option.active { border-color: var(--yellow); background: rgba(47,47,49,0.1); }
.calc-vehicle-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(47,47,49,0.16); color: var(--yellow);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.16rem;
}
.calc-vehicle-details { flex: 1; display: flex; flex-direction: column; }
.calc-vehicle-name { font-weight: 600; color: var(--white); font-size: 0.96rem; }
.calc-vehicle-meta { font-size: 0.8rem; color: var(--gray-400); }
.calc-vehicle-price { font-family: var(--font-display); font-weight: 700; color: var(--yellow); }
.calc-vehicle-price small { font-weight: 400; font-size: 0.74rem; color: var(--gray-400); }
.calc-locations { position: relative; margin-bottom: 22px; }
.calc-input-group { position: relative; margin-bottom: 6px; }
.calc-input-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 22px; text-align: center; }
.calc-input-icon.start { color: var(--mocha); }
.calc-input-icon.end { color: var(--yellow); }
.calc-input {
    width: 100%; padding: 16px 16px 16px 48px;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    color: var(--white); font-size: 0.96rem;
    transition: all var(--t);
}
.calc-input:focus { outline: none; border-color: var(--yellow); background: rgba(255,255,255,0.1); }
.calc-input::placeholder { color: rgba(255,255,255,0.4); }
.calc-input-connector { position: relative; height: 8px; display: flex; align-items: center; justify-content: center; margin: 4px 0; }
.connector-line { position: absolute; left: 27px; top: -4px; bottom: -4px; width: 2px; background: rgba(255,255,255,0.2); }
.calc-swap-btn {
    position: relative; z-index: 2;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--yellow); color: var(--black);
    display: inline-flex; align-items: center; justify-content: center;
    margin-left: auto;
    transition: all var(--t);
}
.calc-swap-btn:hover { transform: rotate(180deg); background: var(--yellow-light); }
.calc-suggestions {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 10;
    background: var(--dark-2); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    margin-top: 4px; max-height: 220px; overflow-y: auto;
    display: none; box-shadow: var(--shadow-lg);
}
.calc-suggestions.active { display: block; }
.calc-suggestion-item { display: flex; align-items: center; gap: 10px; padding: 12px 16px; cursor: pointer; color: var(--gray-200); font-size: 0.9rem; transition: background var(--t-fast); }
.calc-suggestion-item:hover { background: rgba(47,47,49,0.1); color: var(--white); }
.calc-suggestion-item i { color: var(--yellow); font-size: 0.86rem; }
.calc-btn {
    width: 100%; padding: 18px;
    background: var(--yellow); color: var(--black);
    border-radius: var(--radius);
    font-weight: 700; font-size: 1rem;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    transition: all var(--t);
}
.calc-btn:hover { background: var(--yellow-light); transform: translateY(-2px); }
.calc-btn.loading { background: var(--gray-700); color: var(--gray-300); }
.spinner { width: 22px; height: 22px; border: 3px solid rgba(0,0,0,0.2); border-top-color: var(--black); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.calc-results { margin-top: 28px; padding: 28px; background: rgba(47,47,49,0.06); border: 1px solid rgba(47,47,49,0.3); border-radius: var(--radius-lg); }
.calc-results-header { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.08rem; color: var(--yellow); margin-bottom: 18px; }
.calc-results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; }
.calc-result-item { background: rgba(255,255,255,0.04); border-radius: var(--radius); padding: 18px; text-align: center; transition: transform var(--t); }
.calc-result-item.highlight { background: var(--yellow); color: var(--black); }
.calc-result-item.highlight .calc-result-label { color: rgba(0,0,0,0.7); }
.calc-result-item.highlight .calc-result-icon { color: var(--black); }
.calc-result-icon { color: var(--yellow); font-size: 1.16rem; margin-bottom: 8px; }
.calc-result-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; }
.calc-result-label { font-size: 0.78rem; color: var(--gray-300); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.calc-results-footer { margin-top: 22px; }
.calc-note { font-size: 0.82rem; color: var(--gray-300); margin-bottom: 16px; }
.calc-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.calc-action-btn {
    flex: 1; min-width: 130px;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 18px;
    border: 2px solid rgba(255,255,255,0.18);
    color: var(--white); border-radius: var(--radius);
    font-weight: 600; font-size: 0.9rem;
    transition: all var(--t);
}
.calc-action-btn.primary { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.calc-action-btn.primary:hover { background: var(--yellow-light); color: var(--black); }
.calc-action-btn.whatsapp { background: var(--green); color: var(--white); border-color: var(--green); }
.calc-action-btn.whatsapp:hover { background: var(--green-dark); color: var(--white); }
.calc-action-btn:hover { color: var(--white); border-color: var(--yellow); }
.calc-error { margin-top: 22px; padding: 14px 18px; background: rgba(47,47,49,0.18); border: 1px solid rgba(47,47,49,0.45); color: var(--mocha); border-radius: var(--radius); display: flex; align-items: center; gap: 10px; }

/* =========== BOOKING =========== */
.booking-section { background: var(--pearl-light); position: relative; }
.booking-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 36px; }
@media (max-width: 968px) { .booking-grid { grid-template-columns: 1fr; } }
.booking-info-card {
    background: var(--grad-deep);
    color: var(--white); padding: 36px;
    border-radius: var(--radius-xl);
    position: sticky; top: 130px;
}
.booking-info-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; }
.booking-step { display: flex; gap: 14px; margin-bottom: 20px; }
.booking-step-num {
    flex-shrink: 0; width: 36px; height: 36px;
    background: var(--yellow); color: var(--black);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800;
}
.booking-step h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.booking-step p { font-size: 0.88rem; color: rgba(255,255,255,0.74); line-height: 1.6; }
.booking-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 22px 0; }
.booking-direct { font-size: 0.92rem; color: rgba(255,255,255,0.74); margin-bottom: 12px; }
.booking-info-card .btn { margin-bottom: 10px; }
.booking-form-wrapper {
    background: var(--white); padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(189,177,173,0.5);
}
.form-section { margin-bottom: 32px; padding-bottom: 26px; border-bottom: 1px solid rgba(189,177,173,0.4); }
.form-section:last-of-type { border-bottom: none; }
.form-section-title {
    font-family: var(--font-display);
    font-size: 1.08rem; font-weight: 700; color: var(--ink);
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.form-section-title i { color: var(--accent); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.84rem; font-weight: 600; color: var(--gray-600); letter-spacing: 0.01em; }
.form-group input, .form-group select, .form-group textarea, .booking-form input, .contact-form input, .contact-form select, .contact-form textarea {
    padding: 13px 16px;
    border: 1.5px solid rgba(189,177,173,0.6);
    border-radius: var(--radius);
    font-size: 0.96rem;
    color: var(--ink);
    background: var(--white);
    transition: all var(--t);
    width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(47,47,49,0.14); }
.form-checkbox { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; font-weight: 400 !important; padding: 6px 0; line-height: 1.5; color: var(--gray-700); }
.form-checkbox input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--yellow-dark); }
.form-checkbox.required { font-weight: 500 !important; }
.form-checkbox a { color: var(--yellow-dark); text-decoration: underline; }
.form-note { font-size: 0.84rem; color: var(--gray-500); text-align: center; margin-top: 14px; }
.form-feedback { padding: 14px 18px; border-radius: var(--radius); font-weight: 500; margin-top: 14px; display: flex; align-items: center; gap: 10px; }
.form-feedback.success { background: rgba(189,177,173,0.25); color: var(--charcoal-2); border: 1px solid rgba(189,177,173,0.6); }
.form-feedback.error { background: rgba(47,47,49,0.10); color: var(--charcoal-2); border: 1px solid rgba(239,68,68,0.3); }

/* =========== TESTIMONIALS =========== */
.testimonials-section { background: var(--wall-dove); position: relative; }
.testimonials-rating { display: inline-flex; align-items: center; gap: 14px; margin-top: 14px; }
.rating-stars { color: var(--yellow-dark); font-size: 1.08rem; letter-spacing: 1px; }
.rating-text { font-weight: 600; color: var(--gray-700); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.testimonial-card {
    background: var(--white); padding: 36px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all var(--t);
    border: 1px solid rgba(189,177,173,0.4);
    position: relative;
}
.testimonial-card::before {
    content: '“'; position: absolute; top: 14px; right: 24px;
    font-family: var(--font-display); font-size: 4rem; font-weight: 800;
    color: var(--mocha); opacity: 0.4; line-height: 1; pointer-events: none;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--mocha); }
.testimonial-stars { color: var(--yellow-dark); margin-bottom: 14px; letter-spacing: 1.5px; font-size: 0.95rem; }
.testimonial-text { color: var(--gray-700); font-size: 0.96rem; line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--grad-gold);
    color: var(--black); font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
}
.author-name { font-weight: 600; color: var(--black); font-size: 0.94rem; }
.author-role { font-size: 0.82rem; color: var(--gray-500); }

/* =========== CONTACT =========== */
.contact-section { background: var(--pearl-light); position: relative; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 36px; margin-bottom: 50px; }
@media (max-width: 968px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
    background: var(--grad-night);
    color: var(--white); padding: 36px;
    border-radius: var(--radius-xl);
    height: 100%;
}
.contact-info-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
    flex-shrink: 0; width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(47,47,49,0.16); color: var(--yellow);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.16rem;
}
.contact-info-item h4 { font-family: var(--font-display); font-size: 0.86rem; font-weight: 700; color: var(--gray-300); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.contact-info-item a, .contact-info-item address, .contact-info-item p { color: var(--white); font-size: 1rem; font-style: normal; line-height: 1.5; }
.contact-info-item a:hover { color: var(--yellow); }
.contact-form-wrapper {
    background: var(--white); padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(189,177,173,0.5);
}
.contact-map iframe { width: 100%; box-shadow: var(--shadow); border-radius: var(--radius-lg); border: 1px solid rgba(189,177,173,0.4); }

/* =========== FOOTER =========== */
.footer { background: var(--grad-night); color: var(--gray-300); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 36px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 0.92rem; line-height: 1.75; margin: 14px 0 18px; max-width: 360px; }
.footer-logo { color: var(--white); margin-bottom: 12px; }
.footer-logo:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.06); color: var(--gray-300);
    display: inline-flex; align-items: center; justify-content: center;
    transition: all var(--t);
}
.footer-social a:hover { background: var(--yellow); color: var(--black); transform: translateY(-2px); }
.footer-links h4, .footer-contact h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a { font-size: 0.92rem; color: var(--gray-300); transition: color var(--t-fast); }
.footer-links a:hover, .footer-contact a:hover { color: var(--yellow); }
.footer-contact ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; line-height: 1.6; }
.footer-contact ul li i { color: var(--yellow); margin-top: 4px; }
.footer-bottom {
    padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px; font-size: 0.86rem;
}
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: var(--gray-300); }
.footer-legal a:hover { color: var(--yellow); }

/* =========== FLOATING WHATSAPP =========== */
.whatsapp-float {
    position: fixed; bottom: 28px; left: 28px; z-index: 999;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--green); color: var(--white);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 20px rgba(37,211,102,0.4);
    animation: pulseWA 2s infinite;
    transition: all var(--t);
}
.whatsapp-float:hover { transform: scale(1.08); color: var(--white); }
.whatsapp-tooltip {
    position: absolute; left: 70px; white-space: nowrap;
    background: var(--black); color: var(--white);
    padding: 6px 12px; border-radius: 6px;
    font-size: 0.82rem;
    opacity: 0; pointer-events: none;
    transition: opacity var(--t);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes pulseWA { 0%, 100% { box-shadow: 0 8px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 8px 32px rgba(37,211,102,0.65); } }

/* =========== CHATBOT =========== */
.chatbot { position: fixed; bottom: 28px; right: 28px; z-index: 999; }
.chatbot-toggle {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--yellow); color: var(--black);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(47,47,49,0.4);
    transition: all var(--t);
    position: relative;
}
.chatbot-toggle:hover { transform: scale(1.08); }
.chatbot-badge {
    position: absolute; top: -4px; right: -4px;
    width: 22px; height: 22px;
    background: var(--red); color: var(--white);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.74rem; font-weight: 700;
    border: 2px solid var(--white);
}
.chatbot-window {
    position: absolute; bottom: 78px; right: 0;
    width: min(380px, 92vw); height: 540px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex; flex-direction: column;
    overflow: hidden;
    transform: scale(0.95) translateY(10px); opacity: 0; pointer-events: none;
    transition: all var(--t);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}
.chatbot-window.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.chatbot-header {
    padding: 18px;
    background: var(--grad-night);
    color: var(--white);
    display: flex; align-items: center; justify-content: space-between;
}
.chatbot-header-info { display: flex; align-items: center; gap: 12px; }
.chatbot-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--yellow);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(47,47,49,0.18);
}
.chatbot-avatar svg { width: 100%; height: 100%; display: block; }
.chatbot-header h4 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.chatbot-status { font-size: 0.78rem; color: var(--gray-400); display: inline-flex; align-items: center; gap: 6px; }
.status-dot { width: 8px; height: 8px; background: var(--mocha); border-radius: 50%; }
.chatbot-close { color: var(--white); font-size: 1.1rem; opacity: 0.7; transition: opacity var(--t-fast); }
.chatbot-close:hover { opacity: 1; }
.chatbot-messages { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 10px; background: var(--gray-100); }
.chatbot-message {
    max-width: 84%; padding: 10px 14px;
    border-radius: 14px; font-size: 0.92rem; line-height: 1.55;
    word-break: break-word;
}
.chatbot-message.bot { background: var(--white); color: var(--gray-700); border-bottom-left-radius: 4px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); align-self: flex-start; }
.chatbot-message.bot a { color: var(--yellow-dark); font-weight: 600; }
.chatbot-message.user { background: var(--yellow); color: var(--black); border-bottom-right-radius: 4px; align-self: flex-end; }
.chatbot-message.typing { display: inline-flex; gap: 4px; padding: 12px 14px; }
.chatbot-message.typing .dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--gray-400);
    animation: typingDot 1.2s ease-in-out infinite;
}
.chatbot-message.typing .dot:nth-child(2) { animation-delay: 0.2s; }
.chatbot-message.typing .dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%, 60%, 100% { opacity: 0.4; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-4px); } }
.chatbot-quick-replies { display: flex; gap: 6px; padding: 10px 14px; flex-wrap: wrap; background: var(--gray-100); border-top: 1px solid var(--gray-200); }
.chatbot-quick-reply {
    padding: 6px 12px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 99px;
    font-size: 0.78rem; color: var(--gray-700);
    cursor: pointer;
    transition: all var(--t-fast);
}
.chatbot-quick-reply:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.chatbot-input { display: flex; gap: 8px; padding: 12px; background: var(--white); border-top: 1px solid var(--gray-200); }
.chatbot-input input { flex: 1; padding: 10px 14px; border: 1px solid var(--gray-200); border-radius: 99px; font-size: 0.9rem; }
.chatbot-input input:focus { outline: none; border-color: var(--yellow); }
.chatbot-input button { width: 40px; height: 40px; border-radius: 50%; background: var(--yellow); color: var(--black); display: inline-flex; align-items: center; justify-content: center; transition: all var(--t-fast); }
.chatbot-input button:hover { background: var(--yellow-dark); }

/* =========== BACK TO TOP =========== */
.back-to-top {
    position: fixed; bottom: 100px; right: 28px; z-index: 998;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--black); color: var(--yellow);
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow);
    opacity: 0; pointer-events: none;
    transition: all var(--t);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--yellow); color: var(--black); transform: translateY(-3px); }

/* =========== ANIMATIONS =========== */
[data-animate] { opacity: 0; transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
[data-animate="fade-up"] { transform: translateY(40px); }
[data-animate="fade-down"] { transform: translateY(-40px); }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate].animated { opacity: 1; transform: none; }

/* =========== UTILITIES =========== */
@media (max-width: 700px) {
    .section { padding: 70px 0; }
    .section-header { margin-bottom: 40px; }
    .container { padding: 0 18px; }
    .header-top { font-size: 0.78rem; }
    .header-top-content { padding: 7px 0; }
    .header-divider { display: none; }
    .header-hours { display: none; }
    .navbar > .container { padding-top: 10px; padding-bottom: 10px; }
    .nav-cta { padding: 9px 16px; font-size: 0.82rem; }
    .nav-cta span { display: none; }
    .nav-cta i { margin: 0; }
    .hero { padding-top: 130px; }
    .hero-buttons { gap: 10px; }
    .booking-form-wrapper, .contact-form-wrapper, .booking-info-card { padding: 22px; }
    .calculator-card { padding: 22px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .whatsapp-float { width: 52px; height: 52px; bottom: 16px; left: 16px; font-size: 1.4rem; }
    .chatbot { right: 16px; bottom: 16px; }
    .chatbot-toggle { width: 52px; height: 52px; font-size: 1.32rem; }
    .back-to-top { right: 16px; bottom: 80px; width: 40px; height: 40px; }
}

/* =========== LEGAL PAGES =========== */
.legal-page { padding-top: 140px; padding-bottom: 80px; }
.legal-page .container { max-width: 880px; }
.legal-page h1 { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--black); margin-bottom: 30px; }
.legal-page h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--black); margin: 32px 0 14px; }
.legal-page h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--black); margin: 22px 0 10px; }
.legal-page p, .legal-page li { color: var(--gray-700); line-height: 1.8; margin-bottom: 12px; }
.legal-page ul { padding-left: 26px; margin-bottom: 16px; list-style: disc; }
.legal-page a { color: var(--yellow-dark); text-decoration: underline; }
.legal-page strong { color: var(--black); }

/* =================================================================
   VISIBILITY FIXES — STRICT 5-COLOR PALETTE
   ----------------------------------------------------------------
   Anywhere the previous accent was charcoal-on-charcoal (invisible),
   swap to pearl/mocha for readable contrast on dark surfaces.
   ================================================================= */

/* ── Preloader (charcoal background) ── */
.loader-text { color: var(--mocha); }
.loader-road { background: rgba(237,233,233,0.18); }
.road-line   { background: var(--pearl); }

/* ── Header top bar (charcoal background) ── */
.header-top { color: rgba(237,233,233,0.82); }
.header-phone { color: var(--pearl); }
.header-phone:hover { color: var(--mocha); }
.header-divider { color: rgba(237,233,233,0.30); }
.header-location { color: rgba(237,233,233,0.70); }
.header-social a { color: rgba(237,233,233,0.85); }
.header-social a:hover { background: var(--pearl); color: var(--charcoal-2); }
.lang-switcher { border-color: rgba(237,233,233,0.30); }
.lang-btn { color: rgba(237,233,233,0.78); }
.lang-btn.active { background: var(--pearl); color: var(--charcoal-2); }

/* ── Hero (dark photo overlay) ── */
.hero-stat-number, .hero-stat-number-static { color: var(--pearl); }
.hero-stat-plus, .hero-stat-slash { color: var(--mocha); }
.hero-stat-label { color: rgba(237,233,233,0.74); }
.hero-stats { border-top-color: rgba(237,233,233,0.18); }
.hero-stat-divider { background: rgba(237,233,233,0.24); }
.hero-subtitle { color: rgba(237,233,233,0.86); }
.mouse { border-color: rgba(237,233,233,0.65); }
.mouse-wheel { background: var(--pearl); }
.slider-dot { background: rgba(237,233,233,0.45); }
.slider-dot.active { background: var(--pearl); }

/* ── Service cards (charcoal gradient) ── */
.service-icon { background: rgba(189,177,173,0.16); color: var(--mocha); }
.service-card h3 { color: var(--pearl); }
.service-card p { color: rgba(237,233,233,0.78); }
.service-link { color: var(--pearl); border-color: var(--pearl); }
.service-link:hover { background: var(--pearl); color: var(--charcoal-2); }
.service-badge { background: var(--pearl); color: var(--charcoal-2); }

/* Featured service card — make it the dark statement card with mocha accent */
.service-card.featured {
    background: var(--charcoal-2) !important;
    color: var(--pearl) !important;
    border: 1px solid rgba(189,177,173,0.4) !important;
    box-shadow: var(--shadow-lg);
}
.service-card.featured::before { background: var(--mocha) !important; transform: scaleX(1); }
.service-card.featured h3 { color: var(--pearl); }
.service-card.featured p { color: rgba(237,233,233,0.82) !important; }
.service-card.featured .service-icon { background: rgba(189,177,173,0.22) !important; color: var(--mocha) !important; }
.service-card.featured .service-link { color: var(--pearl) !important; border-color: var(--mocha) !important; }
.service-card.featured .service-link:hover { background: var(--pearl) !important; color: var(--charcoal-2) !important; border-color: var(--pearl) !important; }
.service-card.featured .service-badge { background: var(--mocha) !important; color: var(--charcoal-2) !important; }

/* ── Pricing popular tag (was charcoal-on-charcoal) ── */
.pricing-popular { background: var(--charcoal-2); color: var(--pearl); letter-spacing: 0.16em; }

/* ── Pricing card.featured — frame in mocha border, no caramel ── */
.pricing-card.featured { border: 2px solid var(--charcoal-2); box-shadow: var(--shadow-lg); }
.pricing-card.featured .pricing-amount { color: var(--charcoal-2); }
.pricing-card.featured .btn-primary { background: var(--charcoal-2); color: var(--pearl); }

/* ── Calculator card (charcoal background) ── */
.calc-vehicle-select > label { color: rgba(237,233,233,0.85); }
.calc-vehicle-option { background: rgba(237,233,233,0.04); border-color: rgba(189,177,173,0.20); }
.calc-vehicle-option:hover { border-color: rgba(189,177,173,0.55); background: rgba(237,233,233,0.06); }
.calc-vehicle-option.active { border-color: var(--pearl); background: rgba(237,233,233,0.08); }
.calc-vehicle-icon { background: rgba(189,177,173,0.16); color: var(--mocha); }
.calc-vehicle-name { color: var(--pearl); }
.calc-vehicle-meta { color: rgba(237,233,233,0.65); }
.calc-vehicle-price { color: var(--pearl); font-weight: 700; }
.calc-vehicle-price small { color: rgba(237,233,233,0.55); }
.calc-input-icon.start { color: var(--mocha); }
.calc-input-icon.end   { color: var(--pearl); }
.calc-input { background: rgba(237,233,233,0.06); border-color: rgba(189,177,173,0.25); color: var(--pearl); }
.calc-input::placeholder { color: rgba(237,233,233,0.40); }
.calc-input:focus { border-color: var(--pearl); background: rgba(237,233,233,0.10); box-shadow: 0 0 0 3px rgba(237,233,233,0.10); }
.connector-line { background: rgba(189,177,173,0.40); }
.calc-swap-btn  { background: var(--pearl); color: var(--charcoal-2); }
.calc-swap-btn:hover { background: var(--mocha); }
.calc-suggestions { background: var(--charcoal-2); border-color: rgba(189,177,173,0.30); }
.calc-suggestion-item { color: rgba(237,233,233,0.85); }
.calc-suggestion-item:hover { background: rgba(189,177,173,0.18); color: var(--pearl); }
.calc-suggestion-item i { color: var(--mocha); }
.calc-btn { background: var(--pearl); color: var(--charcoal-2); font-weight: 700; }
.calc-btn:hover { background: var(--mocha); color: var(--charcoal-2); }
.calc-btn.loading { background: rgba(189,177,173,0.30); color: var(--pearl); }
.calc-btn .spinner { border-color: rgba(45,45,45,0.18); border-top-color: var(--charcoal-2); }
.calc-results { background: rgba(189,177,173,0.10); border: 1px solid rgba(189,177,173,0.40); }
.calc-results-header { color: var(--pearl); }
.calc-result-icon { color: var(--mocha); }
.calc-result-item { background: rgba(237,233,233,0.05); }
.calc-result-item.highlight { background: var(--pearl); color: var(--charcoal-2); }
.calc-result-item.highlight .calc-result-icon { color: var(--charcoal-2); }
.calc-result-item.highlight .calc-result-label { color: rgba(45,45,45,0.65); }
.calc-result-item.highlight .calc-result-value { color: var(--charcoal-2); }
.calc-result-label { color: rgba(237,233,233,0.78); }
.calc-result-value { color: var(--pearl); }
.calc-note { color: rgba(237,233,233,0.78); }
.calc-action-btn { color: var(--pearl); border-color: rgba(237,233,233,0.30); }
.calc-action-btn:hover { background: rgba(237,233,233,0.08); border-color: var(--pearl); color: var(--pearl); }
.calc-action-btn.primary { background: var(--pearl); color: var(--charcoal-2); border-color: var(--pearl); }
.calc-action-btn.primary:hover { background: var(--mocha); color: var(--charcoal-2); }
.calc-error { background: rgba(189,177,173,0.18); border: 1px solid rgba(189,177,173,0.45); color: var(--pearl); }

/* ── Booking info card (charcoal-night) ── */
.booking-info-card { color: var(--pearl); }
.booking-info-card h3 { color: var(--pearl); }
.booking-step-num { background: var(--pearl); color: var(--charcoal-2); }
.booking-step h4 { color: var(--pearl); }
.booking-divider { background: rgba(189,177,173,0.30); }

/* ── Contact info card (charcoal-night) ── */
.contact-info-card { color: var(--pearl); }
.contact-info-icon { background: rgba(189,177,173,0.18); color: var(--mocha); }
.contact-info-item h4 { color: rgba(237,233,233,0.65); letter-spacing: 0.16em; }
.contact-info-item a, .contact-info-item address, .contact-info-item p { color: var(--pearl); }
.contact-info-item a:hover { color: var(--mocha); }
.contact-info-item { border-bottom-color: rgba(189,177,173,0.20); }

/* ── Footer (charcoal-night) ── */
.footer { color: rgba(237,233,233,0.78); }
.footer-brand p { color: rgba(237,233,233,0.72); }
.footer-logo { color: var(--pearl); }
.footer-logo:hover { color: var(--pearl); }
.footer-logo .logo-highlight { color: var(--mocha); }
.footer-logo .logo-highlight::after { background: var(--mocha); opacity: 0.4; }
.footer-social a { background: rgba(237,233,233,0.06); color: rgba(237,233,233,0.85); }
.footer-social a:hover { background: var(--pearl); color: var(--charcoal-2); }
.footer-links h4, .footer-contact h4 { color: var(--pearl); letter-spacing: 0.12em; }
.footer-links a, .footer-contact a { color: rgba(237,233,233,0.72); }
.footer-links a:hover, .footer-contact a:hover { color: var(--pearl); }
.footer-contact ul li { color: rgba(237,233,233,0.78); }
.footer-contact ul li i { color: var(--mocha); }
.footer-bottom { border-top-color: rgba(189,177,173,0.18); }
.footer-legal a { color: rgba(237,233,233,0.72); }
.footer-legal a:hover { color: var(--pearl); }

/* ── Chatbot (light surface inside a charcoal header) ── */
.chatbot-toggle { background: var(--charcoal-2); color: var(--pearl); box-shadow: var(--shadow-lg); }
.chatbot-toggle:hover { background: var(--charcoal); }
.chatbot-badge { background: var(--charcoal-2); color: var(--pearl); border: 2px solid var(--pearl); }
.chatbot-window { background: var(--pearl); border-color: rgba(189,177,173,0.5); }
.chatbot-header { background: var(--charcoal-2); }
.chatbot-avatar { background: var(--pearl); color: var(--charcoal-2); }
.chatbot-status { color: rgba(237,233,233,0.74); }
.status-dot { background: var(--mocha); }
.chatbot-close { color: var(--pearl); }
.chatbot-messages { background: var(--pearl); }
.chatbot-quick-replies { background: var(--pearl); border-top-color: rgba(189,177,173,0.4); }
.chatbot-quick-reply { background: var(--dove); border: 1px solid rgba(189,177,173,0.6); color: var(--charcoal-2); }
.chatbot-quick-reply:hover { background: var(--charcoal-2); border-color: var(--charcoal-2); color: var(--pearl); }
.chatbot-input { background: var(--pearl); border-top-color: rgba(189,177,173,0.4); }
.chatbot-input input { border-color: rgba(189,177,173,0.5); background: var(--pearl); color: var(--charcoal-2); }
.chatbot-input input:focus { border-color: var(--charcoal-2); }
.chatbot-input button { background: var(--charcoal-2); color: var(--pearl); }
.chatbot-input button:hover { background: var(--charcoal); }
.chatbot-message.bot { background: var(--dove); color: var(--charcoal-2); }
.chatbot-message.bot a { color: var(--charcoal-2); font-weight: 700; text-decoration: underline; }
.chatbot-message.user { background: var(--charcoal-2); color: var(--pearl); }
.chatbot-message.typing .dot { background: var(--mocha); }

/* ── Back-to-top ── */
.back-to-top { background: var(--charcoal-2); color: var(--pearl); }
.back-to-top:hover { background: var(--mocha); color: var(--charcoal-2); }

/* ── About card icon — visible on light card ── */
.about-card-icon { background: var(--charcoal-2); color: var(--pearl); box-shadow: var(--shadow); }
.about-card:hover .about-card-icon { background: var(--charcoal); }

/* ── Form section title icon — readable accent ── */
.form-section-title i { color: var(--mocha); }

/* ── Form-feedback (clearer monochrome status) ── */
.form-feedback.success { background: var(--dove); color: var(--charcoal-2); border: 1px solid var(--mocha); font-weight: 600; }
.form-feedback.error   { background: var(--charcoal-2); color: var(--pearl); border: 1px solid var(--mocha); font-weight: 600; }

/* ── Section-title em (in case any titles use it) — italic with mocha undertone ── */
.section-title em { font-style: italic; color: rgba(47,47,49,0.85); position: relative; }

/* ── Ratings stars (testimonials) — visible charcoal stars on white card ── */
.testimonial-stars, .rating-stars { color: var(--charcoal-2); letter-spacing: 1.5px; }

/* ── Pricing-features icon ── */
.pricing-features li i { color: var(--charcoal-2); }

/* ── A:hover on light backgrounds — subtle ── */
a:hover { color: var(--charcoal); }

/* ── Hero-badge — refine for charcoal background ── */
.hero-badge { color: var(--pearl); border-color: rgba(189,177,173,0.5); }
.hero-badge i { color: var(--mocha); }

/* ── Hero-drag-hint and scroll-hint icons ── */
.hero-scroll-indicator { color: var(--pearl); }

/* ── Logo on glass nav (light surface) ── */
.logo { color: var(--charcoal-2); }
.logo:hover { color: var(--charcoal-2); }
.logo-highlight { color: var(--charcoal-2); }
.logo-highlight::after { background: var(--mocha); }

/* ── Navigation link active/hover (light bg) ── */
.nav-link { color: rgba(47,47,49,0.72); }
.nav-link:hover, .nav-link.active { color: var(--charcoal-2); }
.nav-link::after { background: var(--charcoal-2); }
.hamburger span { background: var(--charcoal-2); }

/* ── Stats bar in hero — preserve dark hero pearl text ── */
.section-badge { color: var(--charcoal-2); }
.section-badge::before { background: var(--charcoal-2); box-shadow: 0 0 8px rgba(47,47,49,0.55); }

/* ── Section title color (pure charcoal-2 for impact) ── */
.section-title { color: var(--charcoal-2); }
.calculator-section .section-title { color: var(--pearl); }
.calculator-section .section-desc { color: rgba(237,233,233,0.78); }
.calculator-section .section-badge { background: rgba(237,233,233,0.10); color: var(--pearl); border-color: rgba(189,177,173,0.40); }
.calculator-section .section-badge::before { background: var(--mocha); box-shadow: 0 0 8px rgba(189,177,173,0.55); }

/* ── Form inputs accent ── */
.form-checkbox input { accent-color: var(--charcoal-2); }
.form-checkbox a    { color: var(--charcoal-2); text-decoration: underline; font-weight: 600; }
.form-section-title { color: var(--charcoal-2); }

/* ── Pricing-card.featured popular badge alt ── */
.pricing-popular { background: var(--charcoal-2); color: var(--pearl); }

/* =========================================================
   FOOTER — "DEVELOPED BY" CREDIT
   ========================================================= */
.footer-developed {
    font-size: 0.85rem;
    color: rgba(237,233,233,0.72);
    display: inline-flex; align-items: center; gap: 6px;
    flex-wrap: wrap;
}
.footer-developed a {
    color: var(--pearl);
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 6px;
    transition: color var(--t-fast);
}
.footer-developed a:hover { color: var(--mocha); }
.footer-developed a i { color: #0a66c2; font-size: 1rem; transition: color var(--t-fast); }
.footer-developed a:hover i { color: var(--mocha); }

/* =========================================================
   MOBILE RESPONSIVE — REFINEMENTS
   ========================================================= */

/* Tablet & smaller — base improvements */
@media (max-width: 1023.98px) {
    .section { padding: 90px 0; }
    .section-header { margin-bottom: 50px; }
    .hero { padding-top: 150px; min-height: auto; padding-bottom: 80px; }
    .nav-menu { padding-top: 90px; }
    .booking-info-card { position: static; }
}

/* Standard mobile breakpoint */
@media (max-width: 768px) {
    :root { --container: 100%; }
    .container { padding: 0 18px; }
    .section { padding: 64px 0; }
    .section-header { margin-bottom: 36px; }
    .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); line-height: 1.2; }
    .section-desc { font-size: 0.96rem; }

    /* Header / nav */
    .header-top { font-size: 0.74rem; }
    .header-top-content { padding: 6px 0; gap: 8px; flex-wrap: wrap; }
    .header-contact-info { gap: 10px; row-gap: 4px; }
    .header-divider { display: none; }
    .header-hours { display: none; }
    .header-social { gap: 8px; }
    .header-social a { width: 28px; height: 28px; font-size: 0.86rem; }
    .lang-btn { padding: 3px 9px; font-size: 0.72rem; }
    .navbar > .container { padding-top: 10px; padding-bottom: 10px; gap: 10px; }
    .logo { font-size: 1.02rem; gap: 8px; }
    .logo-mark { width: 30px; height: 30px; }
    .nav-cta { padding: 9px 14px; font-size: 0.8rem; }
    .nav-cta span { display: none; }
    .nav-cta i { margin: 0; }

    /* Hero */
    .hero { padding-top: 130px; padding-bottom: 50px; min-height: auto; }
    .hero-badge { font-size: 0.74rem; padding: 7px 14px; margin-bottom: 20px; }
    .hero-title { font-size: clamp(2rem, 9vw, 3rem); margin-bottom: 18px; }
    .hero-subtitle { font-size: 0.98rem; margin-bottom: 26px; line-height: 1.6; }
    .hero-buttons { gap: 10px; margin-bottom: 36px; }
    .hero-buttons .btn { flex: 1 1 100%; padding: 14px 22px; font-size: 0.94rem; }
    .hero-stats { gap: 18px; padding-top: 22px; justify-content: flex-start; }
    .hero-stat { flex: 1 1 calc(50% - 12px); min-width: 0; }
    .hero-stat-number, .hero-stat-number-static { font-size: 1.6rem; }
    .hero-stat-label { font-size: 0.74rem; line-height: 1.3; }
    .hero-stat-divider { display: none; }
    .hero-scroll-indicator { display: none; }
    .hero-slider-dots { bottom: 16px; right: 20px; gap: 8px; }

    /* Grids */
    .about-grid, .services-grid, .pricing-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .about-card, .testimonial-card { padding: 28px 22px; }
    .service-card { padding: 30px 22px; }
    .pricing-card { padding: 32px 22px; }

    /* Calculator */
    .calculator-card { padding: 22px; }
    .calc-vehicle-options { grid-template-columns: 1fr; gap: 10px; }
    .calc-vehicle-option { padding: 14px; }
    .calc-results { padding: 20px; }
    .calc-results-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .calc-result-item { padding: 14px 10px; }
    .calc-result-value { font-size: 1.25rem; }
    .calc-actions { flex-direction: column; }
    .calc-action-btn { width: 100%; flex: 0 0 auto; }

    /* Rate / pricing extras */
    .rate-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .pricing-rate-table { padding: 24px 18px; }

    /* Booking & contact */
    .booking-grid, .contact-grid { gap: 24px; }
    .booking-form-wrapper, .contact-form-wrapper { padding: 24px 20px; }
    .booking-info-card, .contact-info-card { padding: 26px 22px; position: static; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    /* Footer */
    .footer { padding: 50px 0 26px; }
    .footer-grid { gap: 28px; margin-bottom: 28px; }
    .footer-brand p { max-width: 100%; }
    .footer-bottom {
        flex-direction: column; align-items: center; text-align: center;
        gap: 12px; padding-top: 22px;
    }
    .footer-bottom > * { width: 100%; justify-content: center; }
    .footer-legal { justify-content: center; flex-wrap: wrap; gap: 14px; }
    .footer-developed { justify-content: center; }

    /* Floating widgets */
    .whatsapp-float { width: 52px; height: 52px; bottom: 16px; left: 16px; font-size: 1.4rem; }
    .whatsapp-tooltip { display: none; }
    .chatbot { right: 16px; bottom: 16px; }
    .chatbot-toggle { width: 52px; height: 52px; font-size: 1.32rem; }
    .chatbot-window {
        position: fixed; bottom: 80px; right: 12px; left: 12px;
        width: auto; height: calc(100vh - 110px); max-height: 600px;
    }
    .back-to-top { right: 16px; bottom: 80px; width: 40px; height: 40px; }

    /* Legal pages */
    .legal-page { padding-top: 120px; padding-bottom: 60px; }
    .legal-page h1 { font-size: 1.8rem; margin-bottom: 22px; }
    .legal-page h2 { font-size: 1.16rem; margin: 26px 0 10px; }
    .legal-page h3 { font-size: 1rem; }
    .legal-page p, .legal-page li { font-size: 0.94rem; line-height: 1.7; }
}

/* Small phones */
@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .section { padding: 50px 0; }
    .hero { padding-top: 120px; }
    .hero-title { font-size: clamp(1.75rem, 9.5vw, 2.4rem); }
    .hero-subtitle { font-size: 0.92rem; }
    .hero-buttons .btn { padding: 12px 18px; font-size: 0.9rem; }
    .hero-stat-number, .hero-stat-number-static { font-size: 1.4rem; }
    .hero-stat-label { font-size: 0.7rem; }
    .logo-text { font-size: 0.96rem; }
    .logo-mark { width: 28px; height: 28px; }
    .header-phone span { font-size: 0.78rem; }
    .calc-results-grid { grid-template-columns: 1fr; }
    .rate-grid { grid-template-columns: 1fr; }
    .footer-legal { gap: 10px; font-size: 0.82rem; }
    .footer-developed { font-size: 0.8rem; }
    .chatbot-window { bottom: 76px; height: calc(100vh - 100px); }
    .chatbot-header { padding: 14px; }
    .chatbot-avatar { width: 36px; height: 36px; }
    .chatbot-header h4 { font-size: 0.92rem; }
    .chatbot-status { font-size: 0.72rem; }
}

/* Prevent horizontal scroll on tiny viewports */
@media (max-width: 360px) {
    .hero-stat { flex: 1 1 100%; }
    .header-location { display: none; }
}
