/* =========================================================
   ECTOR PRESSURE WASHING — DESIGN SYSTEM
   ========================================================= */

:root {
    /* Brand colors derived from the Ector logo */
    --c-primary: #0F4C81;        /* deep brand blue */
    --c-primary-dark: #0A3961;
    --c-primary-darker: #082842;
    --c-primary-light: #1E88E5;
    --c-sky: #5BB5E5;            /* light sky blue from logo */
    --c-sky-pale: #DEEFFB;
    --c-accent: #F59E0B;         /* high-conversion amber CTA */
    --c-accent-dark: #D97706;
    --c-accent-light: #FBBF24;
    --c-success: #16A34A;

    /* Neutrals */
    --c-bg: #FFFFFF;
    --c-bg-alt: #F6FAFD;
    --c-bg-tint: #EAF4FB;
    --c-border: #E2E8F0;
    --c-border-light: #F1F5F9;
    --c-text: #0F172A;
    --c-text-soft: #475569;
    --c-text-muted: #64748B;
    --c-white: #FFFFFF;

    /* Typography */
    --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --f-display: 'Bebas Neue', 'Inter', sans-serif;

    /* Layout */
    --container: 1200px;
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 18px;
    --radius-xl: 26px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(15, 76, 129, 0.06);
    --shadow: 0 4px 14px rgba(15, 76, 129, 0.10);
    --shadow-md: 0 10px 30px rgba(15, 76, 129, 0.15);
    --shadow-lg: 0 24px 60px rgba(15, 76, 129, 0.22);
    --shadow-accent: 0 8px 24px rgba(245, 158, 11, 0.35);

    /* Transitions */
    --t-fast: 0.15s ease;
    --t: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Header height (kept in sync with JS scroll-offset) */
    --header-h: 76px;
    --top-bar-h: 38px;
}

/* =========================================================
   RESET / BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + var(--top-bar-h) + 8px);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--f-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--c-primary);
    text-decoration: none;
    transition: color var(--t-fast);
}

a:hover { color: var(--c-primary-light); }

button { font: inherit; cursor: pointer; border: none; background: none; }

input, textarea, select {
    font: inherit;
    color: inherit;
}

ul { list-style: none; }

::selection {
    background: var(--c-primary);
    color: var(--c-white);
}

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5.5rem 0;
}

.section-alt {
    background: var(--c-bg-alt);
}

.section-dark {
    background: linear-gradient(135deg, var(--c-primary-darker) 0%, var(--c-primary) 100%);
    color: var(--c-white);
    position: relative;
    overflow: hidden;
}
.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(91, 181, 229, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.section-feature {
    background: linear-gradient(180deg, var(--c-bg-alt) 0%, var(--c-bg) 100%);
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3.5rem;
}

.section-header-light .eyebrow,
.section-header-light p {
    color: rgba(255, 255, 255, 0.85);
}
.section-header-light h2 { color: var(--c-white); }

.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-primary);
    margin-bottom: 0.85rem;
}

h1, h2, h3, h4, h5 {
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--c-text);
}

h1 {
    font-size: clamp(2.25rem, 5.4vw, 4.25rem);
    font-weight: 900;
    letter-spacing: -0.035em;
}

h2 {
    font-size: clamp(1.85rem, 3.4vw, 2.75rem);
}

h3 {
    font-size: 1.35rem;
    line-height: 1.25;
}

h4 {
    font-size: 1.1rem;
}

.lead {
    font-size: 1.125rem;
    color: var(--c-text-soft);
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.125rem;
    color: var(--c-text-soft);
    line-height: 1.6;
}

.text-primary { color: var(--c-primary); }
.text-accent { color: var(--c-accent); }
.text-white { color: var(--c-white); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform var(--t-fast), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
    white-space: nowrap;
    text-decoration: none;
}
.btn:active { transform: translateY(1px); }

.btn-lg {
    padding: 1.05rem 1.95rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
    display: flex;
}

.btn-primary {
    background: var(--c-primary);
    color: var(--c-white);
    box-shadow: var(--shadow);
}
.btn-primary:hover {
    background: var(--c-primary-dark);
    color: var(--c-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--c-white);
    color: var(--c-primary);
    border-color: var(--c-primary);
}
.btn-secondary:hover {
    background: var(--c-primary);
    color: var(--c-white);
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
    color: #1A1306;
    box-shadow: var(--shadow-accent);
    font-weight: 800;
}
.btn-accent:hover {
    color: #1A1306;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.5);
    filter: brightness(1.04);
}

.btn-ghost {
    background: transparent;
    color: var(--c-text);
    border-color: var(--c-border);
}
.btn-ghost:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
    background: var(--c-bg-tint);
}

.btn-ghost-light {
    background: transparent;
    color: var(--c-white);
    border-color: rgba(255,255,255,0.4);
}
.btn-ghost-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--c-white);
    color: var(--c-white);
}

.btn-cta {
    box-shadow: 0 6px 20px rgba(15, 76, 129, 0.25);
}

/* =========================================================
   TOP PHONE BAR
   ========================================================= */
.top-bar {
    background: linear-gradient(135deg, var(--c-primary-darker) 0%, var(--c-primary) 100%);
    color: var(--c-white);
    height: var(--top-bar-h);
    font-size: 0.85rem;
    position: relative;
    z-index: 90;
}

.top-bar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.top-bar-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
}

.top-bar-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ADE80;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    animation: pulse 2s infinite;
    display: inline-block;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
    70%  { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.top-bar-link {
    color: var(--c-white);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.top-bar-link:hover { color: var(--c-accent-light); }

.top-bar-divider { color: rgba(255,255,255,0.35); }

/* =========================================================
   HEADER
   ========================================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(1.2) blur(8px);
    -webkit-backdrop-filter: saturate(1.2) blur(8px);
    border-bottom: 1px solid var(--c-border-light);
    transition: box-shadow var(--t), border-color var(--t);
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(15, 76, 129, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    height: var(--header-h);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--c-text);
    flex-shrink: 0;
}
.logo:hover { color: var(--c-primary); }

.logo img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    background: var(--c-bg-tint);
    padding: 4px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-title {
    font-family: var(--f-display);
    font-size: 1.65rem;
    color: var(--c-primary);
    letter-spacing: 0.04em;
}

.logo-sub {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--c-text-soft);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-top: 2px;
}

.nav-desktop {
    display: flex;
    gap: 0.25rem;
}

.nav-desktop a {
    color: var(--c-text-soft);
    font-weight: 600;
    padding: 0.55rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: color var(--t-fast), background var(--t-fast);
}
.nav-desktop a:hover {
    color: var(--c-primary);
    background: var(--c-bg-tint);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-call-mobile {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    border-color: var(--c-primary);
    color: var(--c-primary);
}
.btn-call-mobile:hover {
    background: var(--c-primary);
    color: var(--c-white);
}

.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 2px solid var(--c-border);
    border-radius: var(--radius-sm);
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: transform var(--t), opacity var(--t-fast);
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 0.4rem;
    background: var(--c-white);
    border-top: 1px solid var(--c-border-light);
    box-shadow: 0 14px 24px -10px rgba(15, 76, 129, 0.12);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
    color: var(--c-text);
    font-weight: 600;
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--c-border-light);
}
.nav-mobile .btn { margin-top: 0.5rem; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    overflow: hidden;
    color: var(--c-white);
    padding: 5rem 0 5.5rem;
    isolation: isolate;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(8, 40, 66, 0.92) 0%, rgba(15, 76, 129, 0.78) 60%, rgba(15, 76, 129, 0.55) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-text { max-width: 620px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}
.hero-badge .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4ADE80;
    animation: pulse 2s infinite;
}

.hero h1 {
    color: var(--c-white);
    margin-bottom: 1.25rem;
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2rem;
    line-height: 1.55;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 1.75rem;
}
.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 0.95rem;
}
.hero-trust svg { color: var(--c-accent-light); flex-shrink: 0; }

/* HERO QUICK QUOTE CARD */
.hero-card {
    background: var(--c-white);
    color: var(--c-text);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    max-width: 440px;
    margin-left: auto;
    width: 100%;
    border: 1px solid var(--c-border-light);
}

.hero-card-header { margin-bottom: 1.4rem; }

.hero-card-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--c-accent-dark);
    background: rgba(245, 158, 11, 0.12);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.hero-card-header h3 {
    font-size: 1.35rem;
    line-height: 1.25;
}

.qq-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--c-text);
    margin: 1rem 0 0.55rem;
}
.qq-label:first-child { margin-top: 0; }

.qq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
}

.qq-chip {
    cursor: pointer;
    position: relative;
}
.qq-chip input { position: absolute; opacity: 0; pointer-events: none; }
.qq-chip span {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 0.55rem 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-text-soft);
    transition: all var(--t-fast);
}
.qq-chip:hover span { border-color: var(--c-primary-light); color: var(--c-primary); }
.qq-chip input:checked + span {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: var(--c-white);
}

.qq-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--c-border);
    border-radius: var(--radius-sm);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.qq-input:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.12);
}

.quick-quote button { margin-top: 1.25rem; }

.qq-fineprint {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    text-align: center;
    margin-top: 0.85rem;
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar {
    background: var(--c-primary-darker);
    color: var(--c-white);
    padding: 2rem 0;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.trust-item strong {
    font-family: var(--f-display);
    font-size: 2.5rem;
    color: var(--c-accent-light);
    letter-spacing: 0.04em;
    line-height: 1;
}
.trust-item span {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
}

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

.service-card {
    position: relative;
    background: var(--c-white);
    border: 1px solid var(--c-border-light);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-sky) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-slow);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-sky-pale);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
    border: 2px solid var(--c-accent);
    background: linear-gradient(180deg, #FFFBEB 0%, #FFFFFF 30%);
}
.service-card.featured::before { background: var(--c-accent); transform: scaleX(1); }

.ribbon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--c-accent);
    color: #1A1306;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--c-bg-tint);
    border-radius: var(--radius);
    color: var(--c-primary);
    margin-bottom: 1.25rem;
}

.service-card h3 {
    margin-bottom: 0.6rem;
}

.service-card p {
    color: var(--c-text-soft);
    margin-bottom: 1.1rem;
    font-size: 0.95rem;
}

.service-features {
    margin-bottom: 1.25rem;
}
.service-features li {
    position: relative;
    padding-left: 1.6rem;
    font-size: 0.9rem;
    color: var(--c-text-soft);
    margin-bottom: 0.45rem;
    line-height: 1.45;
}
.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2316A34A'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.service-link {
    display: inline-block;
    font-weight: 700;
    color: var(--c-primary);
    font-size: 0.95rem;
    transition: gap var(--t-fast);
}
.service-link:hover { color: var(--c-accent-dark); }

/* =========================================================
   PROCESS
   ========================================================= */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem 1.5rem;
    counter-reset: step;
    list-style: none;
}

.process-step {
    position: relative;
    padding-top: 1rem;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 32px;
    left: 56px;
    right: -1.5rem;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--c-sky-pale) 0 8px, transparent 8px 16px);
}

@media (max-width: 900px) {
    .process-step:not(:last-child)::after { display: none; }
}

.process-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
    color: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
    box-shadow: 0 8px 24px rgba(15, 76, 129, 0.3);
    position: relative;
    z-index: 1;
}

.process-step h3 { margin-bottom: 0.45rem; }

.process-step p {
    color: var(--c-text-soft);
    font-size: 0.95rem;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: var(--c-text-soft); margin-bottom: 1rem; line-height: 1.7; }

.signature {
    font-style: italic;
    color: var(--c-primary) !important;
    font-weight: 700;
    margin-top: 1.25rem !important;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--c-border-light);
}
.about-stats > div { display: flex; flex-direction: column; gap: 0.2rem; }
.about-stats strong {
    font-family: var(--f-display);
    font-size: 2rem;
    color: var(--c-primary);
    letter-spacing: 0.03em;
    line-height: 1;
}
.about-stats span {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    line-height: 1.35;
}

.about-media {
    position: relative;
}

.about-photo {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5;
}
.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    background: var(--c-white);
    padding: 1.1rem 1.4rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border: 1px solid var(--c-border-light);
}
.about-badge svg { color: var(--c-primary); flex-shrink: 0; }
.about-badge strong { display: block; color: var(--c-text); }
.about-badge span { font-size: 0.85rem; color: var(--c-text-soft); }

/* =========================================================
   SERVICE AREA (DARK SECTION)
   ========================================================= */
.service-area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.area-list {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    backdrop-filter: blur(6px);
}
.area-list h4 {
    color: var(--c-accent-light);
    margin-bottom: 1rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.area-list li {
    color: rgba(255,255,255,0.92);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
}
.area-list li:last-child { border-bottom: none; }

.area-cta {
    background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
    color: #1A1306;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.area-cta h4 {
    color: #1A1306;
    margin-bottom: 0.25rem;
}
.area-cta p {
    color: #4A340A;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}
.area-cta .btn { margin-top: auto; }

/* =========================================================
   GALLERY (BEFORE/AFTER)
   ========================================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--c-bg-tint);
    position: relative;
}

.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }

.gallery-item figcaption {
    padding: 1rem 1.25rem;
    background: var(--c-white);
    font-weight: 600;
    color: var(--c-text);
    border-top: 1px solid var(--c-border-light);
}

.ba-slider {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    user-select: none;
    cursor: ew-resize;
}
.gallery-item-tall .ba-slider { aspect-ratio: 4 / 5; }

.ba-after, .ba-before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-before {
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.05s linear;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--c-white);
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 0 1px rgba(15, 76, 129, 0.3);
}
.ba-handle span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--c-white);
    border-radius: 50%;
    border: 3px solid var(--c-primary);
    box-shadow: var(--shadow-md);
}
.ba-handle span::before,
.ba-handle span::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    transform: translateY(-50%);
}
.ba-handle span::before {
    left: 6px;
    border-width: 6px 7px 6px 0;
    border-color: transparent var(--c-primary) transparent transparent;
}
.ba-handle span::after {
    right: 6px;
    border-width: 6px 0 6px 7px;
    border-color: transparent transparent transparent var(--c-primary);
}

.ba-label {
    position: absolute;
    top: 1rem;
    background: rgba(15, 76, 129, 0.85);
    color: var(--c-white);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    pointer-events: none;
    backdrop-filter: blur(4px);
}
.ba-label-before { left: 1rem; }
.ba-label-after { right: 1rem; background: rgba(22, 163, 74, 0.9); }

.gallery-item-wide img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

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

.testimonial {
    background: var(--c-white);
    border: 1px solid var(--c-border-light);
    border-radius: var(--radius-lg);
    padding: 1.85rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform var(--t), box-shadow var(--t);
}
.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.stars {
    color: var(--c-accent);
    font-size: 1.15rem;
    letter-spacing: 0.15em;
}

.testimonial p {
    color: var(--c-text);
    font-size: 1rem;
    line-height: 1.65;
    flex: 1;
}

.testimonial footer {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--c-border-light);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-sky) 100%);
    color: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.testimonial footer strong { display: block; color: var(--c-text); }
.testimonial footer span { font-size: 0.85rem; color: var(--c-text-muted); }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
}

.why-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}
.why-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--c-bg-tint);
    color: var(--c-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.why-item h4 { margin-bottom: 0.3rem; }
.why-item p { color: var(--c-text-soft); font-size: 0.9rem; line-height: 1.55; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-container { max-width: 880px; }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.faq-item {
    background: var(--c-white);
    border: 1px solid var(--c-border-light);
    border-radius: var(--radius);
    transition: border-color var(--t), box-shadow var(--t);
    overflow: hidden;
}
.faq-item[open] {
    border-color: var(--c-primary-light);
    box-shadow: var(--shadow);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--c-text);
    padding: 1.15rem 3rem 1.15rem 1.5rem;
    list-style: none;
    position: relative;
    user-select: none;
    transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--c-primary); }

.faq-toggle {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--c-bg-tint);
    color: var(--c-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    transform: translateY(-50%);
    transition: transform var(--t), background var(--t);
}
.faq-item[open] .faq-toggle { transform: translateY(-50%) rotate(45deg); background: var(--c-primary); color: var(--c-white); }

.faq-item p {
    padding: 0 1.5rem 1.4rem;
    color: var(--c-text-soft);
    line-height: 1.65;
}

/* =========================================================
   QUOTE FORM
   ========================================================= */
.section-quote {
    background: linear-gradient(135deg, var(--c-bg-alt) 0%, var(--c-sky-pale) 100%);
    position: relative;
    overflow: hidden;
}
.section-quote::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.quote-intro h2 { margin-bottom: 1rem; }
.quote-intro p { color: var(--c-text-soft); font-size: 1.05rem; margin-bottom: 1.5rem; }

.quote-perks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.quote-perks li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--c-text);
    font-weight: 500;
}
.quote-perks svg { color: var(--c-success); flex-shrink: 0; }

.quote-call-fallback {
    background: var(--c-white);
    border: 1px dashed var(--c-border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    color: var(--c-text-soft);
}
.quote-call-fallback strong {
    display: block;
    color: var(--c-text);
    margin-bottom: 0.25rem;
}
.quote-call-fallback a {
    color: var(--c-primary);
    font-weight: 700;
}

.quote-form {
    background: var(--c-white);
    border: 1px solid var(--c-border-light);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.quote-progress {
    height: 6px;
    background: var(--c-border-light);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 2rem;
}
.quote-progress-bar {
    height: 100%;
    width: 33%;
    background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-sky) 100%);
    border-radius: 999px;
    transition: width var(--t-slow);
}

.quote-step {
    display: none;
    border: none;
    padding: 0;
    margin: 0;
    animation: fadeIn 0.3s ease;
}
.quote-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.quote-step legend {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.quote-step legend span {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--c-primary);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 0.4rem;
}

.quote-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.qs-tile {
    cursor: pointer;
    position: relative;
}
.qs-tile input { position: absolute; opacity: 0; pointer-events: none; }
.qs-tile > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 1rem 0.5rem;
    border: 2px solid var(--c-border);
    border-radius: var(--radius);
    text-align: center;
    transition: all var(--t-fast);
    height: 100%;
}
.qs-icon { width: 32px; height: 32px; color: var(--c-primary); }
.qs-tile span { font-size: 0.78rem; font-weight: 600; color: var(--c-text-soft); line-height: 1.2; }
.qs-tile:hover > div { border-color: var(--c-primary-light); }
.qs-tile input:checked + div {
    background: var(--c-bg-tint);
    border-color: var(--c-primary);
    color: var(--c-primary);
}
.qs-tile input:checked + div span:not(.qs-icon) { color: var(--c-primary); }

.quote-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 1rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    display: block;
    width: 100%;
    padding: 0.85rem 1rem;
    margin-top: 0.4rem;
    border: 2px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--c-text);
    background: var(--c-white);
    font-weight: 400;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.15);
}
.quote-form input.error,
.quote-form select.error,
.quote-form textarea.error {
    border-color: #DC2626;
    background: #FEF2F2;
}

.quote-form textarea { resize: vertical; min-height: 90px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 0.6rem;
    font-weight: 500 !important;
    cursor: pointer;
    font-size: 0.9rem !important;
    color: var(--c-text-soft) !important;
}
.checkbox-label input {
    width: auto !important;
    margin: 0 !important;
    padding: 0;
    width: 18px !important;
    height: 18px !important;
    margin-top: 2px !important;
    accent-color: var(--c-primary);
}

.form-error {
    display: none;
    color: #DC2626;
    font-size: 0.88rem;
    margin: 0.75rem 0;
    padding: 0.5rem 0.85rem;
    background: #FEF2F2;
    border-left: 3px solid #DC2626;
    border-radius: 4px;
}
.form-error.show { display: block; }

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.75rem;
}
.form-actions .btn:only-child { margin-left: auto; }

.quote-success {
    text-align: center;
    padding: 2rem 1rem;
}
.success-check {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--c-success);
    color: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }
.quote-success h3 { font-size: 1.8rem; margin-bottom: 0.85rem; color: var(--c-success); }
.quote-success p { color: var(--c-text-soft); margin-bottom: 1rem; line-height: 1.6; }
.success-meta { color: var(--c-text); font-weight: 600; margin-top: 1.5rem; }
.success-calls {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.section-cta {
    background:
        linear-gradient(135deg, rgba(8, 40, 66, 0.92) 0%, rgba(15, 76, 129, 0.92) 100%),
        url('/assets/images/hero-trailer.jpg') center / cover;
    color: var(--c-white);
    padding: 5.5rem 0;
    text-align: center;
}

.final-cta h2 {
    color: var(--c-white);
    font-size: clamp(1.85rem, 3.5vw, 2.85rem);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    max-width: 640px;
    margin: 0 auto 2rem;
}

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

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

.contact-card {
    background: var(--c-white);
    border: 1px solid var(--c-border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: transform var(--t), box-shadow var(--t);
    box-shadow: var(--shadow-sm);
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-sky) 100%);
    color: var(--c-white);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: var(--shadow);
}
.contact-avatar-icon { background: var(--c-accent); color: #1A1306; }

.contact-card h3 { margin-bottom: 0.25rem; }
.contact-role {
    display: block;
    font-size: 0.85rem;
    color: var(--c-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    margin-top: 0.5rem;
    background: var(--c-bg-alt);
    border: 1px solid var(--c-border-light);
    border-radius: var(--radius-sm);
    color: var(--c-text);
    font-weight: 600;
    transition: all var(--t-fast);
}
.contact-link:hover {
    background: var(--c-primary);
    color: var(--c-white);
    border-color: var(--c-primary);
}

.contact-hours .hours-list {
    text-align: left;
    margin-top: 0.5rem;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--c-border-light);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list span { color: var(--c-text-soft); }
.hours-list strong { color: var(--c-text); }

.contact-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--c-text-muted);
    font-style: italic;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: var(--c-primary-darker);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-top: 1rem;
    max-width: 320px;
}

.footer .logo-title { color: var(--c-white); }
.footer .logo-sub { color: rgba(255, 255, 255, 0.6); }
.footer .logo:hover .logo-title { color: var(--c-accent-light); }

.footer-col h5 {
    color: var(--c-white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}
.footer-col a {
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--c-accent-light); }

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { color: rgba(255, 255, 255, 0.7); }
.footer-legal a:hover { color: var(--c-accent-light); }

/* =========================================================
   STICKY MOBILE CALL BAR
   ========================================================= */
.sticky-call {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
    color: #1A1306;
    text-align: center;
    padding: 1rem;
    font-weight: 800;
    font-size: 1rem;
    z-index: 90;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.15);
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    text-decoration: none;
}
.sticky-call:hover { color: #1A1306; filter: brightness(1.05); }

/* =========================================================
   CHATBOT
   ========================================================= */
.chatbot {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 95;
}

.chatbot-fab {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
    color: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(15, 76, 129, 0.4);
    transition: transform var(--t), box-shadow var(--t);
    position: relative;
}
.chatbot-fab:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 16px 36px rgba(15, 76, 129, 0.5);
}
.chatbot-fab .close-icon { display: none; }
.chatbot-fab.open .chat-icon { display: none; }
.chatbot-fab.open .close-icon { display: block; }

.chatbot-fab-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--c-primary-light);
    opacity: 0.7;
    animation: pulseRing 2.5s cubic-bezier(0.4,0,0.6,1) infinite;
    pointer-events: none;
}
@keyframes pulseRing {
    0%   { transform: scale(0.85); opacity: 0.85; }
    80%  { transform: scale(1.4); opacity: 0; }
    100% { transform: scale(1.4); opacity: 0; }
}
.chatbot-fab.open .chatbot-fab-pulse { display: none; }

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 3rem);
    height: 540px;
    max-height: calc(100vh - 120px);
    background: var(--c-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 48px rgba(15, 76, 129, 0.25), 0 0 0 1px var(--c-border-light);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    animation: chatPop 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.chatbot-window[hidden] { display: none; }

@keyframes chatPop {
    from { opacity: 0; transform: scale(0.85) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.chatbot-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
    color: var(--c-white);
    flex-shrink: 0;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c-white);
    padding: 4px;
    overflow: hidden;
    flex-shrink: 0;
}
.chatbot-avatar img {
    width: 100%; height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.chatbot-header > div { flex: 1; }
.chatbot-header strong { display: block; font-size: 0.95rem; }
.chatbot-status {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1px;
}
.chatbot-status .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4ADE80;
    animation: pulse 2s infinite;
}

.chatbot-close {
    color: var(--c-white);
    opacity: 0.85;
    padding: 0.3rem;
    border-radius: var(--radius-sm);
    transition: opacity var(--t-fast), background var(--t-fast);
}
.chatbot-close:hover { opacity: 1; background: rgba(255,255,255,0.15); }

.chatbot-body {
    flex: 1;
    padding: 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    background: var(--c-bg-alt);
    scroll-behavior: smooth;
}

.chat-msg {
    max-width: 85%;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    font-size: 0.92rem;
    line-height: 1.5;
    animation: msgIn 0.3s ease;
    word-wrap: break-word;
}
@keyframes msgIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-msg.bot {
    background: var(--c-white);
    color: var(--c-text);
    align-self: flex-start;
    border-top-left-radius: 4px;
    box-shadow: 0 1px 2px rgba(15, 76, 129, 0.05);
}
.chat-msg.bot a { color: var(--c-primary); font-weight: 700; text-decoration: underline; }

.chat-msg.user {
    background: var(--c-primary);
    color: var(--c-white);
    align-self: flex-end;
    border-top-right-radius: 4px;
}

.chat-msg.typing {
    background: var(--c-white);
    align-self: flex-start;
    padding: 0.85rem 1rem;
    display: inline-flex;
    gap: 4px;
    box-shadow: 0 1px 2px rgba(15, 76, 129, 0.05);
}

.chat-system {
    align-self: center;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--c-text-muted);
    background: rgba(15, 76, 129, 0.05);
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    letter-spacing: 0.02em;
    margin: 0.25rem 0;
    animation: msgIn 0.3s ease;
}

.quote-review-card {
    background: linear-gradient(180deg, #FFFBEB 0%, #FFFFFF 100%);
    border: 1px solid var(--c-accent);
    border-radius: 12px;
    padding: 0.95rem 1rem;
    line-height: 1.65;
    font-size: 0.9rem;
}
.quote-review-card strong:first-child {
    display: block;
    color: var(--c-accent-dark);
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}
.chat-msg.typing span {
    width: 7px; height: 7px;
    background: var(--c-primary-light);
    border-radius: 50%;
    animation: typingDot 1.2s infinite;
}
.chat-msg.typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-msg.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30%           { transform: translateY(-5px); opacity: 1; }
}

.chatbot-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background: var(--c-white);
    border-top: 1px solid var(--c-border-light);
    max-height: 110px;
    overflow-y: auto;
}
.chatbot-quick:empty { display: none; }

.chip {
    background: var(--c-bg-alt);
    color: var(--c-primary);
    border: 1px solid var(--c-sky-pale);
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--t-fast);
    flex-shrink: 0;
}
.chip:hover {
    background: var(--c-primary);
    color: var(--c-white);
    border-color: var(--c-primary);
}

.chatbot-input {
    display: flex;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    background: var(--c-white);
    border-top: 1px solid var(--c-border-light);
    flex-shrink: 0;
}
.chatbot-input input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 2px solid var(--c-border);
    border-radius: 999px;
    font-size: 0.95rem;
    background: var(--c-bg-alt);
    transition: border-color var(--t-fast);
}
.chatbot-input input:focus {
    outline: none;
    border-color: var(--c-primary);
    background: var(--c-white);
}
.chatbot-input button {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--c-primary);
    color: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--t-fast), transform var(--t-fast);
}
.chatbot-input button:hover { background: var(--c-primary-dark); transform: scale(1.05); }

/* =========================================================
   ANIMATIONS / UTILITIES
   ========================================================= */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-card { max-width: 100%; margin-left: 0; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .quote-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .service-area-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .nav-desktop { display: none; }
    .hamburger { display: flex; }
}

@media (max-width: 768px) {
    .top-bar-pill { display: none; }
    .top-bar-divider { display: none; }
    .top-bar-actions { width: 100%; justify-content: center; }
    .header-actions .btn-cta { display: none; }
    .btn-call-mobile { display: flex; }
    .header-actions .btn-cta { padding: 0.7rem 1rem; font-size: 0.85rem; }
    .section { padding: 4rem 0; }
    .section-header { margin-bottom: 2.5rem; }
    .hero { padding: 3rem 0 4rem; }
    .hero-card { padding: 1.5rem; }
    .qq-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .trust-item strong { font-size: 2rem; }
    .why-list { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item-wide, .gallery-item-tall { grid-column: auto; grid-row: auto; }
    .quote-form { padding: 1.5rem; }
    .quote-services { grid-template-columns: repeat(3, 1fr); }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-actions { flex-direction: column-reverse; }
    .form-actions .btn { width: 100%; }
    .service-area-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .sticky-call { display: flex; }
    body { padding-bottom: 60px; }
    .chatbot { bottom: 76px; right: 1rem; }
    .about-stats { grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem; }
    .about-stats strong { font-size: 1.5rem; }
    .hero-trust { gap: 0.75rem 1.25rem; }
    .hero-trust li { font-size: 0.85rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    .hero-sub { font-size: 1rem; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .quote-services { grid-template-columns: repeat(2, 1fr); }
    .logo-sub { display: none; }
    .top-bar { font-size: 0.75rem; }
}
