*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-weight: 400; color: #1a1a2e; line-height: 1.6; }

:root {
    --dark: #0f0f1a;
    --dark-mid: #1a1a2e;
    --blue: #2563eb;
    --blue-hover: #1d4ed8;
    --blue-light: #3b82f6;
    --blue-glow: rgba(37,99,235,0.28);
    --light: #f1f5f9;
    --white: #ffffff;
    --shadow: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.22);
    --shadow-blue: 0 8px 28px rgba(37,99,235,0.28);
    --radius: 12px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.22s, color 0.22s, transform 0.22s, border-color 0.22s, box-shadow 0.22s;
    border: 2px solid transparent;
    letter-spacing: 0.01em;
}
.btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #1a1a2e;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(245,158,11,0.45);
    font-weight: 700;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245,158,11,0.55);
    color: #1a1a2e;
}
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: var(--white); color: var(--dark-mid); border-color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

/* ── BRAND LOGO ── */
.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.brand-logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(245,158,11,0.5));
}
.brand-logo-wordmark {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--white);
    white-space: nowrap;
}
.brand-logo-wordmark em {
    font-style: normal;
    color: #fbbf24;
}
.brand-logo--sm .brand-logo-icon { width: 28px; height: 28px; }
.brand-logo--sm .brand-logo-wordmark { font-size: 1rem; }

/* ── TOP BAR ── */
#top-bar { background: var(--dark); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
#top-bar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.top-logo { text-decoration: none; }
.top-right { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.top-phone { font-size: 1.4rem; font-weight: 700; color: var(--white); text-decoration: none; white-space: nowrap; }

/* ── NAVIGATION ── */
#main-nav { background: var(--dark); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.45); }
#main-nav .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 58px; }
.nav-logo { text-decoration: none; flex-shrink: 0; }
.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    color: var(--white);
    text-decoration: none;
    padding: 10px 13px;
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    transition: color 0.2s, background 0.2s;
    border-radius: 4px;
    white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li > a:focus { color: #93c5fd; background: rgba(255,255,255,0.07); outline: none; }
.nav-phone { color: var(--white); font-weight: 600; font-size: 0.9rem; text-decoration: none; white-space: nowrap; flex-shrink: 0; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    background: #111827;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    min-width: 250px;
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s, visibility 0.15s;
    transition-delay: 120ms;
    z-index: 1001;
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
    max-height: 520px;
    overflow-y: auto;
    padding: 8px 0;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0ms;
}
.dropdown-category {
    padding: 10px 16px 4px;
    font-size: 0.68rem;
    font-weight: 700;
    color: #60a5fa;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}
.dropdown a {
    display: block;
    padding: 7px 16px 7px 20px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.84rem;
    transition: background 0.15s, color 0.15s;
}
.dropdown a:hover,
.dropdown a:focus { background: rgba(37,99,235,0.25); color: var(--white); outline: none; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.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); }

/* Mobile menu */
#mobile-menu { display: none; background: #111827; border-top: 1px solid rgba(255,255,255,0.08); }
#mobile-menu.open { display: block; }
#mobile-menu .mob-inner { padding: 12px 20px 20px; max-height: 70vh; overflow-y: auto; }
#mobile-menu ul { list-style: none; }
#mobile-menu ul li a {
    display: block;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}
#mobile-menu ul li a:hover { color: #93c5fd; }
.mob-cat-head {
    display: block;
    color: #60a5fa;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    padding: 12px 0 3px;
}
.mob-sub { padding-left: 14px !important; font-weight: 400 !important; font-size: 0.84rem !important; }

/* ── SECTION HEADING ACCENT ── */
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 52px;
    position: relative;
    display: block;
}
.section-title::after {
    content: '';
    display: block;
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    border-radius: 2px;
    margin: 14px auto 0;
}

/* ── HERO ── */
#hero {
    /* IMAGE SLOT ─────────────────────────────────────────────────────────────
       Replace the url() below with your hero photograph.
       Ideal shot: wide-format, professional team at work, clean property
       interior, or aerial/cityscape. Minimum 1600×900px, optimised JPG.
       ──────────────────────────────────────────────────────────────────────── */
    background:
        linear-gradient(145deg, rgba(6,6,18,0.93) 0%, rgba(15,18,40,0.91) 45%, rgba(13,27,74,0.89) 100%),
        url('/assets/images/hero-bg.jpg') center / cover no-repeat;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
#hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 65%);
    pointer-events: none;
}
#hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59,130,246,0.10) 0%, transparent 65%);
    pointer-events: none;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.hero-left { color: var(--white); padding-top: 12px; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #93c5fd;
    background: rgba(37,99,235,0.18);
    border: 1px solid rgba(147,197,253,0.25);
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 20px;
}
#hero h1 {
    font-size: clamp(1.85rem, 4vw, 3.1rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.hero-sub {
    font-size: clamp(0.95rem, 1.7vw, 1.08rem);
    color: rgba(255,255,255,0.72);
    margin-bottom: 28px;
    line-height: 1.7;
}
.hero-trust { list-style: none; margin-bottom: 36px; }
.hero-trust li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.88);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
}
.hero-trust li svg { width: 17px; height: 17px; flex-shrink: 0; color: #4ade80; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero form card */
.hero-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 34px 30px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}
.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
}
.hero-form-card h2 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--dark-mid);
    margin-bottom: 5px;
    margin-top: 4px;
}
.form-sub { font-size: 0.86rem; color: #6b7280; margin-bottom: 20px; }

/* ── FORM FIELDS ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-full { grid-column: 1 / -1; }
label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 5px; color: #374151; }
input, select, textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 7px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: var(--dark-mid);
    background: #f8fafc;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
textarea { resize: vertical; min-height: 100px; }
.honeypot-field { display: none !important; visibility: hidden; }
.form-submit { grid-column: 1 / -1; text-align: center; margin-top: 4px; }
.form-submit .btn { width: 100%; padding: 14px; font-size: 1rem; }
#form-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 12px 16px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.92rem;
    display: none;
}
#form-message.success { background: #d1fae5; color: #065f46; display: block; }
#form-message.error { background: #fee2e2; color: #991b1b; display: block; }

/* ── TRUST BADGES ── */
#trust { background: var(--white); padding: 48px 0; border-bottom: 1px solid #f1f5f9; }
.badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1.5px solid #e2e8f0;
    border-left: 4px solid var(--blue);
    border-radius: 8px;
    padding: 12px 22px;
    font-weight: 700;
    color: var(--dark-mid);
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.badge:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.1); }

/* ── ABOUT ── */
#about { background: var(--white); padding: 90px 0; }
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: 18px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.16);
    /* IMAGE SLOT ─────────────────────────────────────────────────────────────
       Replace the background below with your team/work photograph:
       background: url('/assets/images/about-team.jpg') center / cover no-repeat;
       Then remove the ::before and ::after pseudo-elements below.
       Ideal shot: team members on-site, uniformed staff, or a pristine
       interior after cleaning. Minimum 900×675px, optimised JPG.
       ──────────────────────────────────────────────────────────────────────── */
    background: linear-gradient(145deg, #0b1628 0%, #1a3050 55%, #0e2040 100%);
}
.about-image::before {
    /* Placeholder dashed border — remove once real image is set */
    content: '';
    position: absolute;
    inset: 16px;
    border: 2px dashed rgba(255,255,255,0.12);
    border-radius: 10px;
    pointer-events: none;
}
.about-image::after {
    /* Placeholder label — remove once real image is set */
    content: 'Team / Work Photography';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.18);
    font-size: 0.78rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    pointer-events: none;
}
#about h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
#about h2::after {
    content: '';
    display: block;
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    border-radius: 2px;
    margin: 12px 0 24px;
}
#about p { color: #4b5563; margin-bottom: 20px; font-size: 1.03rem; line-height: 1.75; }
#about .btn { margin-top: 10px; }

/* ── SERVICES ── */
#services {
    background: var(--light);
    background-image: radial-gradient(circle, rgba(37,99,235,0.055) 1px, transparent 1px);
    background-size: 28px 28px;
    padding: 90px 0;
}
#services > .container > h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
#services > .container > h2::after {
    content: '';
    display: block;
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    border-radius: 2px;
    margin: 12px auto 20px;
}
.services-intro {
    text-align: center;
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto 52px;
}
.svc-category {
    margin-bottom: 44px;
    border-radius: 18px;
    padding: 36px 36px 32px;
    background: var(--white);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.07);
    position: relative;
    overflow: hidden;
}
.svc-category::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 18px 18px 0 0;
}
.category-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #edf2f7;
}
.category-icon {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.category-icon svg { width: 28px; height: 28px; }
.category-header:hover .category-icon { transform: scale(1.07); }
.category-label {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
    color: var(--dark-mid);
}
.category-desc { font-size: 0.88rem; color: #6b7280; line-height: 1.6; }
.category-count {
    margin-left: auto;
    flex-shrink: 0;
    align-self: flex-start;
    font-size: 0.76rem;
    font-weight: 600;
    color: #9ca3af;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 4px 12px;
    white-space: nowrap;
}

/* Category colour variants */
.svc-residential::before { background: linear-gradient(90deg, #2563eb, #3b82f6); }
.svc-residential .category-icon { background: linear-gradient(135deg, #2563eb, #3b82f6); box-shadow: 0 6px 20px rgba(37,99,235,0.28); }
.svc-residential .category-label { color: #1d4ed8; }
.svc-residential .card { border-left-color: #2563eb; }
.svc-residential .card:hover { box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 16px 40px rgba(37,99,235,0.16); border-top-color: rgba(37,99,235,0.45); }

.svc-specialist::before { background: linear-gradient(90deg, #dc2626, #ef4444); }
.svc-specialist .category-icon { background: linear-gradient(135deg, #dc2626, #ef4444); box-shadow: 0 6px 20px rgba(220,38,38,0.28); }
.svc-specialist .category-label { color: #b91c1c; }
.svc-specialist .card { border-left-color: #dc2626; }
.svc-specialist .card:hover { box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 16px 40px rgba(220,38,38,0.16); border-top-color: rgba(220,38,38,0.45); }

.svc-damage::before { background: linear-gradient(90deg, #d97706, #f59e0b); }
.svc-damage .category-icon { background: linear-gradient(135deg, #d97706, #f59e0b); box-shadow: 0 6px 20px rgba(217,119,6,0.26); }
.svc-damage .category-label { color: #b45309; }
.svc-damage .card { border-left-color: #d97706; }
.svc-damage .card:hover { box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 16px 40px rgba(217,119,6,0.16); border-top-color: rgba(217,119,6,0.45); }

.svc-commercial::before { background: linear-gradient(90deg, #059669, #10b981); }
.svc-commercial .category-icon { background: linear-gradient(135deg, #059669, #10b981); box-shadow: 0 6px 20px rgba(5,150,105,0.26); }
.svc-commercial .category-label { color: #047857; }
.svc-commercial .card { border-left-color: #059669; }
.svc-commercial .card:hover { box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 16px 40px rgba(5,150,105,0.16); border-top-color: rgba(5,150,105,0.45); }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
    background: #fafbfd;
    border-radius: 12px;
    padding: 24px 22px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05), 0 4px 16px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.06);
    border-left: 4px solid var(--blue);
    border-top: 2px solid rgba(0,0,0,0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-top-color 0.18s ease;
}
.card:hover { transform: translateY(-3px); background: var(--white); }
.card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--dark-mid); letter-spacing: -0.01em; }
.card p { font-size: 0.85rem; color: #6b7280; line-height: 1.68; }

/* ── CTA BANNER ── */
#cta-banner {
    /* IMAGE SLOT ─────────────────────────────────────────────────────────────
       Replace the url() below with a supporting photograph.
       Ideal shot: clean residential or commercial property, professional
       equipment, or uniformed team member. Minimum 1400×700px, optimised JPG.
       ──────────────────────────────────────────────────────────────────────── */
    background:
        linear-gradient(130deg, rgba(6,6,18,0.93) 0%, rgba(15,18,40,0.90) 50%, rgba(30,58,138,0.88) 100%),
        url('/assets/images/cta-bg.jpg') center / cover no-repeat;
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
#cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(37,99,235,0.22) 0%, transparent 65%);
    pointer-events: none;
}
.cta-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 16px;
    position: relative;
}
#cta-banner h2 {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    position: relative;
    line-height: 1.3;
}
#cta-banner > .container > p { color: rgba(255,255,255,0.68); font-size: 1.02rem; margin-bottom: 40px; position: relative; }
.cta-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    position: relative;
}
.cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 36px;
}
.cta-stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.18);
    flex-shrink: 0;
}
.cta-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}
.cta-stat-plus, .cta-stat-unit {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue-light);
    vertical-align: super;
    line-height: 1;
}
.cta-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 5px; letter-spacing: 0.04em; }
.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
}
.btn-cta-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 7px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    backdrop-filter: blur(4px);
}
.btn-cta-call svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-cta-call:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); color: var(--white); }

/* Submit button spinner */
.btn-spinner {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── BOTTOM CTA ── */
.wave-testi-cta2 { line-height: 0; background: var(--light); }
.wave-testi-cta2 svg { display: block; width: 100%; height: 60px; }
#cta-bottom {
    background: linear-gradient(135deg, #0a0c1a 0%, #0f1228 55%, #1a1f4e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
#cta-bottom::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(37,99,235,0.18) 0%, transparent 65%);
    pointer-events: none;
}
.cta-bottom-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.cta-bottom-left h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.cta-bottom-left > p {
    color: rgba(255,255,255,0.62);
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 28px;
}
.cta-bottom-trust {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cta-bottom-trust li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.72);
}
.cta-bottom-trust li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--blue-light);
}
.cta-bottom-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 36px 32px;
    text-align: center;
    backdrop-filter: blur(8px);
}
.cta-phone-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    margin-bottom: 24px;
}
.cta-phone-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37,99,235,0.4);
    margin-top: 2px;
}
.cta-phone-icon svg { width: 20px; height: 20px; color: var(--white); }
.cta-phone-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-bottom: 4px; }
.cta-phone-number {
    display: block;
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.2s;
}
.cta-phone-number:hover { color: var(--blue-light); }
.cta-phone-note { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 3px; }
.cta-bottom-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: rgba(255,255,255,0.3);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.cta-bottom-divider::before, .cta-bottom-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.12);
}
.cta-bottom-btn { width: 100%; text-align: center; justify-content: center; }
.cta-bottom-reassurance {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    margin-top: 10px;
    margin-bottom: 0;
}

/* ── SERVICE INLINE CTA STRIP ── */
.svc-cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(100deg, #0f1228 0%, #1a1f4e 50%, #0f1228 100%);
    border: 1px solid rgba(245,158,11,0.2);
    border-radius: 14px;
    padding: 22px 28px;
    margin: 32px 0;
    position: relative;
    overflow: hidden;
}
.svc-cta-strip::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(245,158,11,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.svc-cta-strip-left {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}
.svc-cta-strip-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(245,158,11,0.25) 0%, rgba(217,119,6,0.15) 100%);
    border: 1px solid rgba(245,158,11,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
}
.svc-cta-strip-icon svg { width: 20px; height: 20px; }
.svc-cta-strip-text strong {
    display: block;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}
.svc-cta-strip-text span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
}
.svc-cta-strip .btn { flex-shrink: 0; padding: 11px 24px; font-size: 0.9rem; }

/* ── WHY CHOOSE US ── */
#why { background: var(--white); padding: 90px 0; }
#why > .container > h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
#why > .container > h2::after {
    content: '';
    display: block;
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    border-radius: 2px;
    margin: 12px auto 48px;
}
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.why-box {
    background: var(--white);
    border-radius: 12px;
    padding: 30px 18px 26px;
    text-align: center;
    border: 1px solid #e8edf5;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.22s, box-shadow 0.22s;
}
.why-box:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(37,99,235,0.13); }
.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--white);
    box-shadow: 0 6px 18px rgba(37,99,235,0.3);
}
.why-icon svg { width: 22px; height: 22px; }
.why-box h3 { font-size: 0.93rem; font-weight: 700; margin-bottom: 10px; color: var(--dark-mid); }
.why-box p { font-size: 0.83rem; color: #6b7280; line-height: 1.65; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--light); padding: 90px 0; }
#testimonials > .container > h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
#testimonials > .container > h2::after {
    content: '';
    display: block;
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    border-radius: 2px;
    margin: 12px auto 48px;
}
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testi-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px 30px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border-left: 4px solid var(--blue);
    position: relative;
    overflow: hidden;
}
.testi-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    right: 22px;
    font-size: 7rem;
    font-family: Georgia, serif;
    color: rgba(37,99,235,0.08);
    line-height: 1;
    pointer-events: none;
}
.testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px rgba(37,99,235,0.3);
    /* IMAGE SLOT: swap this div for <img src="/assets/images/testimonial-[n].jpg"
       alt="[Customer name]" width="50" height="50" loading="lazy"> and remove
       the background/font styles. Use a square crop, min 100×100px. */
}
.testi-stars { color: #f59e0b; font-size: 1.05rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-quote { font-size: 0.95rem; color: #4b5563; margin-bottom: 20px; font-style: italic; line-height: 1.75; position: relative; }
.testi-author { font-weight: 700; font-size: 0.9rem; color: var(--dark-mid); }
.testi-location { font-size: 0.8rem; color: #9ca3af; margin-top: 3px; }

/* ── FOOTER ── */
#footer { background: var(--dark); color: rgba(255,255,255,0.78); padding: 60px 0 0; }

/* Main row: brand / quick links / contact / services */
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.4fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f59e0b;
    display: inline-block;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.footer-col p { font-size: 0.86rem; margin-bottom: 8px; line-height: 1.65; }
.footer-col > a:not(.brand-logo):not(.btn),
.footer-col a:not(.brand-logo):not(.btn):not(.social-icon):not(.footer-phone a) {
    color: rgba(255,255,255,0.62);
    text-decoration: none;
    font-size: 0.86rem;
    display: block;
    margin-bottom: 6px;
    transition: color 0.18s, padding-left 0.18s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.footer-col > a:not(.brand-logo):not(.btn):hover,
.footer-col a:not(.brand-logo):not(.btn):not(.social-icon):not(.footer-phone a):hover {
    color: var(--white);
    padding-left: 4px;
}
.footer-logo { margin-bottom: 14px; }
.footer-phone { font-size: 1.05rem; font-weight: 700; margin-top: 12px; margin-bottom: 4px; }
.footer-phone a { color: var(--white) !important; font-size: 1.05rem !important; font-weight: 700 !important; text-decoration: none; }
.footer-email { font-size: 0.84rem; color: rgba(255,255,255,0.55); }

/* Contact column icon lines */
.footer-contact-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.86rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 12px;
}
.footer-contact-line svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: #f59e0b; }
.footer-contact-line a { color: var(--white); text-decoration: none; font-weight: 600; }
.footer-contact-line a:hover { color: #fbbf24; }
.footer-cta-btn { margin-top: 6px; padding: 10px 22px; font-size: 0.88rem; width: 100%; text-align: center; }

/* ── SOCIAL ICONS ── */
.social-icons { display: flex; gap: 10px; margin-top: 16px; margin-bottom: 14px; }
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
    text-decoration: none;
    padding: 0;
    margin-bottom: 0;
}
.social-icon svg { width: 16px; height: 16px; display: block; flex-shrink: 0; }
.si-facebook:hover { background: #1877F2; border-color: #1877F2; color: #fff; transform: translateY(-2px); }
.si-x:hover        { background: #000;    border-color: #333;    color: #fff; transform: translateY(-2px); }
.si-linkedin:hover { background: #0A66C2; border-color: #0A66C2; color: #fff; transform: translateY(-2px); }
.si-pinterest:hover{ background: #E60023; border-color: #E60023; color: #fff; transform: translateY(-2px); }

/* Header social icons */
.header-social { display: flex; gap: 8px; align-items: center; }

/* Footer address */
.footer-address {
    font-style: normal;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 12px;
}
.footer-address p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 2px; }

.footer-svc-cats { }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.09);
    padding: 18px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.38);
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: rgba(255,255,255,0.38); text-decoration: none; }
.footer-legal-links a:hover { color: rgba(255,255,255,0.7); }

/* ── WAVE DIVIDERS ── */
.wave-divider { display: block; line-height: 0; overflow: hidden; }
.wave-divider svg { width: 100%; display: block; }
.wave-hero-trust { background: linear-gradient(145deg, #060612 0%, #0f1228 45%, #0d1b4a 100%); }
.wave-services-cta { background: var(--light); }
.wave-cta-why { background: linear-gradient(130deg, #060612 0%, #0f1228 50%, #1e3a8a 100%); }

/* ── FADE IN ── */
.fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── BACK TO TOP ── */
#back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,99,235,0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s, box-shadow 0.2s;
    transform: translateY(10px);
}
#back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37,99,235,0.55); }
#back-to-top svg { width: 20px; height: 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 1080px) {
    .why-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-left { text-align: center; }
    .hero-trust li { justify-content: flex-start; max-width: 340px; margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-form-card { max-width: 560px; margin: 0 auto; }
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-image { aspect-ratio: 16 / 9; }
    .cta-bottom-inner { grid-template-columns: 1fr; gap: 36px; }
    .cta-stats { flex-wrap: wrap; gap: 20px; }
    .cta-stat-divider { display: none; }
    .cta-stat { padding: 0 16px; }
    .svc-cta-strip { flex-direction: column; align-items: flex-start; gap: 16px; }
    .svc-cta-strip .btn { width: 100%; text-align: center; }
}
@media (max-width: 860px) {
    .nav-menu, .nav-phone { display: none; }
    .hamburger { display: flex; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    #top-bar .container { flex-direction: column; text-align: center; }
    .top-phone { font-size: 1.1rem; }
    .form-grid { grid-template-columns: 1fr; }
    .form-full { grid-column: 1; }
    .form-submit { grid-column: 1; }
    #form-message { grid-column: 1; }
    .hero-form-card { padding: 24px 18px; }
    .svc-category { padding: 24px 20px; }
    .cards-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-cta-btn { width: auto; }
    #hero { padding: 56px 0 44px; }
    #about, #services, #why, #testimonials { padding: 56px 0; }
    #cta-banner { padding: 60px 0; }
    #cta-bottom { padding: 60px 0; }
    .cta-bottom-inner { grid-template-columns: 1fr; gap: 40px; }
    .cta-stat { padding: 0 20px; }
    .cta-stat-number { font-size: 1.6rem; }
}
@media (max-width: 440px) {
    .hero-btns { flex-direction: column; align-items: stretch; }
    .hero-btns .btn { text-align: center; }
    .why-grid { grid-template-columns: 1fr; }
    .badges { flex-direction: column; align-items: center; }
}

/* ── LEGAL PAGES ── */
.legal-page { padding: 60px 0 80px; }
.legal-body h1 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.legal-body > p:first-of-type { color: rgba(255,255,255,0.45); margin-bottom: 32px; font-size: 0.88rem; }
.legal-body h2 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: #93c5fd; margin: 40px 0 10px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.legal-body p { font-size: 0.95rem; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 12px; }
.legal-body ul { margin: 0 0 14px 20px; }
.legal-body ul li { font-size: 0.95rem; color: rgba(255,255,255,0.72); line-height: 1.75; }
.legal-body a { color: #93c5fd; text-decoration: underline; }
.legal-body strong { color: rgba(255,255,255,0.9); }
