/* ============================================================
   HUNTINGTON BEACH MOBILE DETAILING
   Dark + Gold Premium Theme
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --gold:          #d4a017;
    --gold-dark:     #b8860b;
    --gold-light:    #e8b84b;
    --gold-glow:     rgba(212, 160, 23, 0.30);
    --dark:          #111827;
    --dark2:         #1f2937;
    --dark3:         #374151;
    --dark4:         #4b5563;
    --light-bg:      #f9f8f6;
    --cream:         #f3f0eb;
    --white:         #ffffff;
    --text-on-dark:  #e5e7eb;
    --text-muted:    #9ca3af;
    --text-body:     #374151;
    --border-dark:   rgba(255,255,255,0.08);
    --border-light:  #e5e7eb;
    --radius:        16px;
    --radius-sm:     10px;
    --shadow-sm:     0 1px 4px rgba(0,0,0,0.08);
    --shadow-md:     0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg:     0 8px 40px rgba(0,0,0,0.22);
    --shadow-gold:   0 4px 24px rgba(212,160,23,0.25);
    /* Aliases for legacy inline references */
    --primary:       #d4a017;
    --accent:        #d4a017;
    --text-light:    #9ca3af;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    color: var(--text-body);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--dark);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ---------- Scroll Reveal ---------- */
.sr {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.sr.visible { opacity: 1; transform: translateY(0); }
.sr-delay-1 { transition-delay: 0.08s; }
.sr-delay-2 { transition-delay: 0.16s; }
.sr-delay-3 { transition-delay: 0.24s; }
.sr-delay-4 { transition-delay: 0.32s; }
.sr-delay-5 { transition-delay: 0.40s; }
.sr-delay-6 { transition-delay: 0.48s; }

/* ---------- Nav Accent Bar ---------- */
.nav-accent-bar {
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark) 50%, var(--gold-light) 100%);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1050;
}

/* ---------- Top Bar ---------- */
.site-topbar {
    background: var(--dark);
    color: var(--text-muted);
    font-size: 0.80rem;
    padding: 7px 0;
    position: fixed;
    top: 3px; left: 0; right: 0;
    z-index: 1040;
    border-bottom: 1px solid var(--border-dark);
    letter-spacing: 0.01em;
}
.site-topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.topbar-phone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}
.topbar-phone i { font-size: 0.75rem; }
.topbar-phone:hover { color: var(--gold-light); }
.topbar-hours { color: var(--text-muted); font-size: 0.78rem; }
.topbar-right { display: flex; align-items: center; gap: 8px; }
.topbar-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(212,160,23,0.10);
    border: 1px solid rgba(212,160,23,0.22);
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
}

/* ---------- Main Navbar ---------- */
.site-nav {
    background: rgba(17,24,39,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.30);
    position: fixed;
    top: 35px; left: 0; right: 0;
    z-index: 1030;
    transition: box-shadow 0.3s, top 0.3s;
    border-bottom: 1px solid var(--border-dark);
}
.site-nav.scrolled {
    box-shadow: 0 4px 32px rgba(0,0,0,0.40);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    gap: 1rem;
}
.nav-brand img {
    height: 54px;
    width: auto;
    transition: height 0.3s;
}
.site-nav.scrolled .nav-brand img { height: 44px; }

/* Desktop nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}
.nav-links > a {
    color: var(--text-on-dark);
    font-weight: 600;
    font-size: 0.90rem;
    padding: 0.55rem 1rem;
    border-radius: 8px;
    letter-spacing: 0.01em;
    transition: color 0.2s, background 0.2s;
}
.nav-links > a:hover {
    color: var(--gold);
    background: rgba(212,160,23,0.08);
}

/* Dropdown buttons */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-on-dark);
    font-weight: 600;
    font-size: 0.90rem;
    padding: 0.55rem 1rem;
    border-radius: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: color 0.2s, background 0.2s;
}
.nav-dropdown-btn:hover,
.nav-dropdown-wrap.open .nav-dropdown-btn {
    color: var(--gold);
    background: rgba(212,160,23,0.08);
}
.dd-chevron {
    width: 13px; height: 13px;
    transition: transform 0.25s;
    color: var(--text-muted);
}
.nav-dropdown-wrap.open .dd-chevron { transform: rotate(180deg); }

/* Dropdown panels */
.nav-services-panel {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark2);
    border: 1px solid var(--border-dark);
    border-top: 2px solid var(--gold);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 1.25rem;
    min-width: 520px;
    z-index: 200;
    animation: dropIn 0.2s cubic-bezier(0.22,1,0.36,1);
}
.nav-dropdown-wrap.open .nav-services-panel { display: block; }

@keyframes dropIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.services-panel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
}
.service-panel-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.65rem 0.8rem;
    border-radius: 10px;
    color: var(--text-on-dark);
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}
.service-panel-item:hover {
    background: rgba(212,160,23,0.10);
    color: var(--gold);
}
.service-panel-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(212,160,23,0.10);
    border: 1px solid rgba(212,160,23,0.22);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    font-size: 0.85rem;
}

/* Areas panel */
.nav-areas-panel {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: var(--dark2);
    border: 1px solid var(--border-dark);
    border-top: 2px solid var(--gold);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 1.25rem;
    min-width: 360px;
    z-index: 200;
    animation: dropInRight 0.2s cubic-bezier(0.22,1,0.36,1);
}
.nav-dropdown-wrap.open .nav-areas-panel { display: block; }
@keyframes dropInRight {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.areas-panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-dark);
}
.areas-panel-title { font-weight: 700; font-size: 0.9rem; color: #fff; display: block; }
.areas-panel-sub { font-size: 0.75rem; color: var(--text-muted); display: block; }
.areas-grid { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.area-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 11px;
    border-radius: 100px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-dark);
    font-size: 0.78rem;
    color: var(--text-on-dark);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.area-pill:hover {
    background: rgba(212,160,23,0.12);
    border-color: rgba(212,160,23,0.35);
    color: var(--gold);
}

/* Nav CTA */
.nav-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark) !important;
    font-weight: 800;
    font-size: 0.87rem;
    letter-spacing: 0.01em;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    box-shadow: var(--shadow-gold);
    margin-left: 0.5rem;
    white-space: nowrap;
    transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-cta-phone:hover {
    filter: brightness(1.10);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(212,160,23,0.40);
    color: var(--dark) !important;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border: none;
    background: transparent;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-on-dark);
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--dark2);
    border-top: 1px solid var(--border-dark);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.2rem;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a, .nav-mobile-menu button {
    color: var(--text-on-dark);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    display: block;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.nav-mobile-menu a:hover, .nav-mobile-menu button:hover {
    background: rgba(212,160,23,0.08);
    color: var(--gold);
}
.nav-mobile-menu .mobile-submenu {
    display: none;
    padding-left: 1rem;
    margin-top: 0.2rem;
}
.nav-mobile-menu .mobile-submenu.open { display: block; }
.nav-mobile-cta {
    margin-top: 0.75rem;
    display: block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: var(--dark) !important;
    text-align: center !important;
    border-radius: 100px !important;
    padding: 0.8rem 1rem !important;
    font-weight: 800 !important;
}

/* ---------- Sticky Call Button ---------- */
.sticky-call-btn {
    position: fixed;
    bottom: 28px;
    left: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark) !important;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 13px 22px;
    border-radius: 100px;
    box-shadow: var(--shadow-gold);
    animation: pulseGold 2.2s ease-in-out infinite;
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    letter-spacing: 0.01em;
}
.sticky-call-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 36px rgba(212,160,23,0.45);
    color: var(--dark) !important;
}
.sticky-call-btn .call-icon {
    animation: ring 3s ease-in-out infinite;
    font-size: 1rem;
}
@keyframes pulseGold {
    0%, 100% { box-shadow: 0 4px 24px rgba(212,160,23,0.30); }
    50%       { box-shadow: 0 4px 36px rgba(212,160,23,0.55); }
}
@keyframes ring {
    0%, 80%, 100% { transform: rotate(0deg); }
    85%  { transform: rotate(-15deg); }
    90%  { transform: rotate(15deg); }
    95%  { transform: rotate(-10deg); }
}

/* ---------- Page Body Offset ---------- */
.page-body { padding-top: 103px; }

/* ---------- Buttons ---------- */
.btn-primary-amber {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark);
    font-size: 1rem;
    font-weight: 800;
    padding: 15px 34px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
    transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
    letter-spacing: 0.02em;
    text-decoration: none;
}
.btn-primary-amber::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 60%);
    pointer-events: none;
}
.btn-primary-amber:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 8px 32px rgba(212,160,23,0.45);
    color: var(--dark);
    text-decoration: none;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 30px;
    border: 2px solid rgba(255,255,255,0.30);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    text-decoration: none;
    letter-spacing: 0.01em;
}
.btn-outline-light:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212,160,23,0.06);
    text-decoration: none;
}

/* Hero-specific outline button (dark background variant) */
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: transparent;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 28px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    text-decoration: none;
    letter-spacing: 0.01em;
}
.btn-hero-outline:hover {
    border-color: var(--gold-dark);
    color: var(--gold-dark);
    background: #fef9ec;
    text-decoration: none;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: transparent;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 30px;
    border: 2px solid rgba(0,0,0,0.20);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    text-decoration: none;
}
.btn-outline-dark:hover {
    border-color: var(--gold-dark);
    color: var(--gold-dark);
    background: rgba(212,160,23,0.05);
    text-decoration: none;
}

/* ---------- Section Utilities ---------- */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(212,160,23,0.10);
    border: 1.5px solid rgba(212,160,23,0.30);
    border-radius: 100px;
    padding: 5px 16px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 1rem;
}
.section-badge-dark {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.14);
    color: var(--gold);
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 3.0vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.10;
    letter-spacing: -0.01em;
}
.section-title-light { color: #fff; }

.section-title-underline {
    display: block;
    width: 52px; height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 2px;
    margin: 0.65rem auto 0;
}

.section-subtitle {
    font-size: 1.07rem;
    color: var(--dark4);
    line-height: 1.78;
    max-width: 640px;
    margin-top: 1rem;
}
.section-subtitle-light { color: rgba(255,255,255,0.68); }

.section-heading-center {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-heading-center .section-subtitle { margin: 1rem auto 0; }

.section-pad { padding: 88px 0; }
.section-pad-sm { padding: 64px 0; }

/* Light section bg */
.bg-light-section { background: var(--light-bg); }
.bg-cream-section { background: var(--cream); }
.bg-dark-section  { background: var(--dark); }

/* ---------- HERO ---------- */
/*
 * Two-column split:
 * LEFT  — white background, all text content
 * RIGHT — full photo background, floating form card on top
 */
.hero-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 103px);
    overflow: hidden;
    border-top: 4px solid var(--gold);
}
.hero-bg-dots, .hero-glow { display: none; }
.hero-body { display: contents; }

/* LEFT panel */
.hero-inner {
    background: #fff;
    padding: 64px 52px 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    border-right: 1px solid var(--border-light);
}
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* RIGHT panel — photo + floating form */
.hero-right {
    position: relative;
    overflow: hidden;
    background: var(--dark);
}
.hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/img/car-detailing-near-me-huntington-beach-mobile-detailing.jpg');
    background-size: cover;
    background-position: center 30%;
    z-index: 0;
}
.hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(17,24,39,0.55) 0%,
        rgba(17,24,39,0.70) 100%
    );
    z-index: 1;
}

/* Floating form card */
.hero-form-float {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 24px 48px;
    overflow-y: auto;
}

/* Badge pinned bottom-left */
.hero-photo-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(17,24,39,0.82);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212,160,23,0.28);
    border-radius: 100px;
    padding: 8px 20px;
    color: rgba(255,255,255,0.85);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.02em;
}
.hero-photo-badge i { color: var(--gold); }

/* Trust bar */
.hero-trust-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fef9ec;
    border: 1px solid rgba(212,160,23,0.30);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #92650a;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
}
.trust-pill i { font-size: 0.62rem; color: var(--gold); }

/* H1 */
.hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 3.8vw, 3.6rem);
    font-weight: 800;
    line-height: 1.10;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin: 0;
}
.hero-headline .h1-accent {
    color: var(--gold-dark);
    font-style: italic;
}

/* Desc */
.hero-desc {
    font-size: 1.04rem;
    line-height: 1.75;
    color: var(--dark4);
    font-weight: 400;
    max-width: 500px;
    margin: 0;
}

/* Checklist */
.hero-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 20px;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}
.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--text-body);
    font-family: 'DM Sans', sans-serif;
}
.check-icon {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 900;
}

/* CTA row */
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Testimonial snippet */
.hero-testimonial {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--gold);
    border-radius: 10px;
    padding: 14px 18px;
}
.hero-testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}
.hero-testimonial-body { flex: 1; }
.hero-testimonial-text {
    font-size: 0.83rem;
    color: var(--dark3);
    line-height: 1.58;
    margin: 0 0 5px;
    font-style: italic;
    font-family: 'DM Sans', sans-serif;
}
.hero-testimonial-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.73rem;
    color: var(--dark4);
    font-family: 'DM Sans', sans-serif;
}
.hero-testimonial-meta strong { color: var(--dark); font-weight: 700; }
.hero-testimonial-stars { color: var(--gold); letter-spacing: 1px; font-size: 0.78rem; }
.hero-testimonial-google { color: #1a73e8; font-size: 0.70rem; font-weight: 600; }

/* ---------- STATS STRIP ---------- */
@keyframes statFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes statIconPop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.18) rotate(-6deg); }
    70%  { transform: scale(0.93) rotate(3deg); }
    100% { transform: scale(1) rotate(0deg); }
}
.stats-strip {
    background: var(--gold);
    padding: 26px 0;
    position: relative;
    overflow: hidden;
}
.stats-strip::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.06) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}
.stats-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 44px;
    opacity: 0;
    animation: statFadeUp 0.55s ease forwards;
}
.stat:nth-child(1) { animation-delay: 0.10s; }
.stat:nth-child(3) { animation-delay: 0.22s; }
.stat:nth-child(5) { animation-delay: 0.34s; }
.stat:nth-child(7) { animation-delay: 0.46s; }
.stat-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(0,0,0,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--dark);
    flex-shrink: 0;
    transition: background 0.2s;
}
.stat:hover .stat-icon {
    animation: statIconPop 0.45s ease;
    background: rgba(0,0,0,0.20);
}
.stat-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    letter-spacing: -0.01em;
}
.stat-label {
    font-size: 0.70rem;
    color: rgba(17,24,39,0.68);
    margin-top: 3px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
}
.stat-vline {
    width: 1px; height: 48px;
    background: rgba(0,0,0,0.15);
    flex-shrink: 0;
}

/* ---------- WHY CHOOSE US ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.features-grid--4 { grid-template-columns: repeat(4, 1fr); }
.features-grid--2 { grid-template-columns: repeat(2, 1fr); }
.feature-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}
.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.10);
    border-color: rgba(212,160,23,0.25);
}
.feature-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(212,160,23,0.12), rgba(212,160,23,0.04));
    border: 1.5px solid rgba(212,160,23,0.22);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: var(--gold-dark);
    margin: 0 auto 1.25rem;
    transition: transform 0.3s, background 0.3s;
}
.feature-card:hover .feature-icon {
    transform: scale(1.10) rotate(-4deg);
    background: linear-gradient(135deg, rgba(212,160,23,0.20), rgba(212,160,23,0.08));
}
.feature-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    color: var(--dark);
}
.feature-card p {
    font-size: 0.86rem;
    color: var(--dark4);
    line-height: 1.68;
    margin: 0;
}

/* ---------- SERVICES GRID ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
}
.service-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.11);
    border-color: rgba(212,160,23,0.22);
}
.service-card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212,160,23,0.12), rgba(212,160,23,0.04));
    border: 1.5px solid rgba(212,160,23,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--gold-dark);
    flex-shrink: 0;
    transition: transform 0.3s, background 0.3s;
}
.service-card:hover .service-card-icon {
    transform: scale(1.10) rotate(-5deg);
    background: linear-gradient(135deg, rgba(212,160,23,0.22), rgba(212,160,23,0.08));
}
.service-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--dark);
    margin: 0;
}
.service-card p {
    font-size: 0.87rem;
    line-height: 1.68;
    color: var(--dark4);
    margin: 0;
    flex: 1;
}
.service-card-bullets {
    list-style: none;
    padding: 0;
    margin: 10px 0 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.service-card-bullets li {
    font-size: 0.82rem;
    color: var(--dark4);
    line-height: 1.45;
    padding-left: 16px;
    position: relative;
}
.service-card-bullets li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
}
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.87rem;
    font-weight: 700;
    color: var(--gold-dark);
    padding: 4px 0;
    border-bottom: 1.5px solid transparent;
    transition: gap 0.2s, border-color 0.2s, color 0.2s;
    margin-top: 4px;
    width: fit-content;
}
.service-card-link:hover {
    gap: 10px;
    border-bottom-color: var(--gold);
    color: var(--gold);
}

/* ---------- PROFESSIONAL STANDARDS ---------- */
.standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.standard-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.6rem 1.5rem;
    border-left: 4px solid var(--gold);
    border-top: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s, border-left-color 0.3s;
}
.standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
    border-left-color: var(--gold-dark);
}
.standard-card h4 {
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 0.55rem;
    color: var(--dark);
}
.standard-card p {
    font-size: 0.86rem;
    line-height: 1.68;
    color: var(--dark4);
    margin: 0;
}

/* ---------- HOW IT WORKS ---------- */
@keyframes floatBob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-7px); }
}
@keyframes numShimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes connectorDraw {
    from { transform: scaleX(0); transform-origin: left; }
    to   { transform: scaleX(1); transform-origin: left; }
}
@keyframes stepFadeSlide {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
}
/* 5-step variant — first row 3, second row 2 centred via auto-fill */
.process-grid--5 {
    grid-template-columns: repeat(3, 1fr);
}
.process-grid--5 .process-step:nth-child(4),
.process-grid--5 .process-step:nth-child(5) {
    grid-column: span 1;
}
/* Centre the last two items when they don't fill the row */
.process-grid--5::after {
    content: '';
    /* invisible filler that nudges the 4th+5th steps to appear centred */
}
/* Simpler: just use 5 columns */
.process-grid--5 {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}
.process-grid.sr.visible::before {
    animation: connectorDraw 0.8s ease 0.3s both;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(16.67% + 20px);
    right: calc(16.67% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    opacity: 0.40;
    z-index: 0;
}
.process-grid--5::before {
    left: calc(10% + 16px);
    right: calc(10% + 16px);
}
.process-grid--5 .process-step-num {
    width: 64px; height: 64px;
    font-size: 1.6rem;
}
.process-grid--5 .process-step h4 { font-size: 0.95rem; }
.process-grid--5 .process-step p { font-size: 0.84rem; max-width: 200px; }
.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2.25rem 1.75rem 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.process-step.sr.visible {
    animation: stepFadeSlide 0.55s ease both;
}
.process-step.sr-delay-1.visible { animation-delay: 0.10s; }
.process-step.sr-delay-2.visible { animation-delay: 0.25s; }
.process-step.sr-delay-3.visible { animation-delay: 0.40s; }
.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(15,76,129,0.13);
    border-color: var(--gold);
}
.process-step-num {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    animation: floatBob 3s ease-in-out infinite;
    color: var(--dark);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-gold);
}
.process-step:nth-child(1) .process-step-num { animation-delay: 0s; }
.process-step:nth-child(2) .process-step-num { animation-delay: 1s; }
.process-step:nth-child(3) .process-step-num { animation-delay: 2s; }
.process-step h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 0.6rem;
    letter-spacing: -0.01em;
    color: var(--dark);
}
.process-step p {
    font-size: 0.90rem;
    line-height: 1.70;
    color: var(--dark4);
    max-width: 260px;
    margin: 0 auto;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
}
.testimonial-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 12px; right: 18px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 5.5rem;
    font-weight: 900;
    color: rgba(212,160,23,0.10);
    line-height: 1;
    pointer-events: none;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.10);
}
.testimonial-stars {
    color: var(--gold);
    font-size: 1.05rem;
    letter-spacing: 3px;
}
.testimonial-text {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-body);
    font-style: italic;
    flex: 1;
    margin: 0;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(212,160,23,0.10);
    border: 2px solid rgba(212,160,23,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem;
    color: var(--gold-dark);
    flex-shrink: 0;
}
.testimonial-name {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}
.testimonial-badge {
    font-size: 0.72rem;
    font-weight: 600;
    color: #4285f4;
    display: flex; align-items: center; gap: 3px;
}

/* ---------- SERVICE AREAS ---------- */
.areas-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}
.area-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 18px;
    border-radius: 100px;
    background: #fff;
    border: 1.5px solid var(--border-light);
    font-size: 0.87rem;
    color: var(--text-body);
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}
.area-badge:hover {
    background: rgba(212,160,23,0.08);
    border-color: rgba(212,160,23,0.35);
    color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(212,160,23,0.12);
}
.area-badge--featured {
    background: rgba(212,160,23,0.12);
    border-color: var(--gold);
    color: var(--gold-dark);
    font-weight: 700;
}

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.faq-item {
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-item.open {
    border-color: rgba(212,160,23,0.30);
    box-shadow: 0 4px 20px rgba(212,160,23,0.08);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.35rem;
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--dark);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    letter-spacing: -0.01em;
    transition: background 0.2s, color 0.2s;
}
.faq-question:hover { background: var(--light-bg); }
.faq-item.open .faq-question { color: var(--gold-dark); }
.faq-chevron {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 0.65rem;
    color: var(--dark4);
    transition: transform 0.25s, background 0.2s, border-color 0.2s, color 0.2s;
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    background: rgba(212,160,23,0.10);
    border-color: rgba(212,160,23,0.30);
    color: var(--gold-dark);
}
.faq-answer {
    display: none;
    padding: 0.9rem 1.35rem 1.2rem;
    font-size: 0.92rem;
    color: var(--dark4);
    line-height: 1.78;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.faq-item.open .faq-answer { display: block; }

/* ---------- OWNER / ABOUT — legacy stub kept for inner pages ---------- */

/* ---------- CTA BANNER ---------- */
.cta-banner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    color: #fff;
    text-align: center;
    padding: 88px 24px;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(212,160,23,0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.cta-banner h2 {
    font-size: clamp(2.1rem, 3.5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
}
.cta-banner p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.68);
    margin: 0 auto 2.25rem;
    max-width: 560px;
    position: relative;
    line-height: 1.75;
}
.cta-banner-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
}

/* ---------- FOOTER ---------- */
/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #0a0f1a;
    color: #94a3b8;
    position: relative;
}
.footer-top-line {
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold) 50%, var(--gold-light));
}
.footer-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 72px 40px 56px;
    display: grid;
    grid-template-columns: 1.7fr 1fr 2fr 1.4fr;
    gap: 52px;
}

/* Brand column */
.footer-brand {}
.footer-logo-mark {
    display: block;
    margin-bottom: 1.1rem;
}
.footer-logo-mark a { display: inline-block; }
.footer-logo-mark img { height: 60px; width: auto; display: block; }
.footer-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 1rem;
}
.footer-stars i { color: var(--gold); font-size: 0.78rem; }
.footer-stars span {
    font-size: 0.78rem;
    color: #94a3b8;
    margin-left: 5px;
}
.footer-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.footer-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,160,23,0.10);
    border: 1px solid rgba(212,160,23,0.28);
    color: var(--gold);
    font-weight: 700;
    font-size: 0.97rem;
    padding: 9px 16px;
    border-radius: 8px;
    letter-spacing: 0.01em;
    transition: background 0.2s, color 0.2s;
}
.footer-phone-link:hover {
    background: rgba(212,160,23,0.18);
    color: var(--gold-light);
}

/* Column headings */
.footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #fff;
    margin: 0 0 1.25rem;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid rgba(212,160,23,0.50);
    display: block;
}

/* Service links */
.footer-links {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-links--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 0.75rem;
}
.footer-links a {
    font-size: 0.855rem;
    color: #64748b;
    transition: color 0.18s, padding-left 0.18s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
}
.footer-links a i { flex-shrink: 0; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

/* Contact items */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.1rem;
}
.footer-contact-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    font-size: 0.9rem;
    transition: background 0.2s, border-color 0.2s;
}
.footer-contact-item:hover .footer-contact-icon {
    background: rgba(212,160,23,0.10);
    border-color: rgba(212,160,23,0.28);
}
.footer-contact-text { font-size: 0.855rem; color: #64748b; line-height: 1.55; }
.footer-contact-text strong {
    display: block;
    color: #cbd5e1;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 3px;
}
.footer-contact-text a { color: var(--gold); transition: color 0.2s; }
.footer-contact-text a:hover { color: var(--gold-light); }

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 40px;
    background: rgba(0,0,0,0.25);
}
.footer-bottom-inner {
    max-width: 1260px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.775rem;
    color: #475569;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-bottom-links a {
    color: #475569;
    transition: color 0.2s;
    font-size: 0.775rem;
    padding: 2px 6px;
    border-radius: 4px;
}
.footer-bottom-links a:hover { color: var(--gold); }
.footer-bottom-links .sep { color: #1e293b; }

/* ---------- PAGE HERO STRIP (contact, about, inner pages) ---------- */
.page-hero-strip {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    padding: 72px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero-strip::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(212,160,23,0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}
.page-hero-strip .container { position: relative; z-index: 1; }
.page-hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0.5rem 0 0.75rem;
    line-height: 1.05;
}
.page-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.68);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .page-hero-strip { padding: 52px 20px 44px; }
    .contact-grid, .about-img-text { grid-template-columns: 1fr !important; }
}

/* ---------- QUOTE FORM ---------- */
.qform-outer { width: 100%; max-width: 480px; }
.qform { border: none !important; outline: none !important; }
.qform-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 32px 32px 26px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.38), 0 0 0 1px rgba(0,0,0,0.05);
    border-top: 4px solid var(--gold);
    position: relative;
}

/* Header */
.qform-header {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}
.qform-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(212,160,23,0.35);
}
.qform-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--dark);
    display: block;
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.qform-subtitle {
    font-size: 0.78rem;
    color: var(--dark4);
    display: block;
    margin-top: 3px;
    font-family: 'DM Sans', sans-serif;
}

/* Fields */
.qform-field { margin-bottom: 14px; }
.qform-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--dark4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    font-family: 'DM Sans', sans-serif;
}
.qform-input-wrap { position: relative; }
.qform-input-icon {
    position: absolute;
    left: 13px; top: 50%;
    transform: translateY(-50%);
    color: #cbd5e1;
    font-size: 0.82rem;
    pointer-events: none;
    z-index: 1;
}
.qform-textarea-icon { top: 13px; transform: none; }
.qform-input {
    width: 100%;
    padding: 11px 13px 11px 38px;
    font-size: 0.90rem;
    color: var(--dark);
    background: #f8fafc;
    border: 1.5px solid #e8edf2;
    border-radius: 10px;
    outline: none;
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
.qform-input::placeholder { color: #c8d0da; }
.qform-input:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212,160,23,0.12);
}
.qform-textarea { resize: none; min-height: 76px; padding-top: 11px; }

/* Captcha */
.qform-math-row { display: flex; align-items: center; gap: 8px; }
.qform-math-img {
    border-radius: 7px;
    border: 1.5px solid var(--border-light);
    height: 40px;
    flex-shrink: 0;
    background: var(--light-bg);
}
.qform-math-refresh {
    width: 36px; height: 36px;
    border-radius: 8px;
    border: 1.5px solid var(--border-light);
    background: var(--light-bg);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--dark4);
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
}
.qform-math-refresh:hover { background: #fef9ec; border-color: var(--gold); color: var(--gold-dark); }
.qform-math-row .qform-input-wrap { flex: 1; min-width: 0; }

/* Submit */
.qform-submit {
    margin-top: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    font-size: 0.93rem;
    font-weight: 800;
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(212,160,23,0.35);
    transition: transform 0.18s, filter 0.18s, box-shadow 0.18s;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.qform-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 8px 28px rgba(212,160,23,0.45);
}
.qform-submit:disabled { opacity: 0.7; cursor: not-allowed; }

/* Disclaimer */
.qform-disclaimer {
    text-align: center;
    font-size: 0.70rem;
    color: #aaa;
    margin: 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-family: 'DM Sans', sans-serif;
}

/* Success */
.qform-success { text-align: center; padding: 1.5rem 0; }
.qform-success-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #fef9ec;
    border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    color: var(--gold-dark);
}
.qform-success-title { font-weight: 800; font-size: 1.05rem; color: var(--dark); margin-bottom: 0.5rem; }
.qform-success-sub { font-size: 0.84rem; color: var(--dark4); line-height: 1.65; }
.qform-success-sub a { color: var(--gold-dark); }
.qform-error-banner {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #dc2626;
    font-size: 0.84rem;
    padding: 9px 14px;
    margin-bottom: 10px;
}

/* ---------- TRUST LOGOS ---------- */
.trust-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem 3rem;
}
.trust-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(20%);
    opacity: 0.88;
    transition: opacity 0.2s, filter 0.2s, transform 0.2s;
}
.trust-logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-3px);
}
.trust-logo-item img {
    height: 72px;
    width: auto;
    object-fit: contain;
}

/* ---------- OWNER CARD ---------- */
.owner-card {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 56px;
    align-items: start;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}
.owner-photo-wrap {
    position: relative;
    height: 100%;
    min-height: 440px;
}
.owner-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.owner-photo-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 100px;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.owner-content {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.owner-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}
.owner-lead {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.75;
    margin: 0;
}
.owner-body {
    font-size: 0.95rem;
    color: var(--dark4);
    line-height: 1.80;
    margin: 0;
}
.owner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}
.owner-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.02em;
}
.owner-tag--green  { background: #166534; color: #fff; }
.owner-tag--amber  { background: var(--gold); color: var(--dark); }
.owner-tag--dark   { background: var(--dark); color: #fff; }

@media (max-width: 900px) {
    .owner-card {
        grid-template-columns: 1fr;
    }
    .owner-photo-wrap { min-height: 300px; }
    .owner-content { padding: 28px 24px; }
}

/* ---------- Inner Page Overrides ---------- */
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    border: none !important;
    color: var(--dark) !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
}
.btn-primary:hover, .btn-primary:focus {
    filter: brightness(1.08) !important;
    color: var(--dark) !important;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
}
.inner-page-body { padding-top: 103px; }
.page-banner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    color: #fff;
    padding: 72px 0 56px;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(212,160,23,0.06) 1px, transparent 1px);
    background-size: 24px 24px;
}
.page-banner h1 {
    color: #fff;
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 900;
    margin-bottom: 0.75rem;
    position: relative;
}
.page-banner p { color: rgba(255,255,255,0.72); position: relative; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .standards-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; padding: 56px 28px 44px; }
    .stat { padding: 0 28px; }
}
@media (max-width: 768px) {
    .nav-links, .nav-cta-phone { display: none; }
    .nav-toggle { display: flex; }
    .page-body { padding-top: 95px; }
    .hero-wrap { grid-template-columns: 1fr; min-height: auto; }
    .hero-inner { padding: 48px 24px 44px; }
    .hero-right { min-height: 520px; }
    .hero-form-float { position: relative; inset: auto; padding: 24px; }
    .qform-outer { max-width: 100%; }
    .hero-checklist { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: 1fr; }
    .process-grid::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .features-grid,
    .features-grid--4 { grid-template-columns: 1fr 1fr; }
    .standards-grid { grid-template-columns: 1fr; }
    .process-grid--5 { grid-template-columns: repeat(3, 1fr); }
    .trust-logos-row { gap: 1.5rem 2rem; }
    .trust-logo-item img { height: 52px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; padding: 40px 20px 32px; }
    .footer-bottom { padding: 16px 20px; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
    .section-pad { padding: 64px 0; }
    .cta-banner { padding: 64px 20px; }
    .stats-strip { padding: 20px 0; }
}
@media (max-width: 540px) {
    .services-grid { grid-template-columns: 1fr; }
    .features-grid,
    .features-grid--4,
    .features-grid--2 { grid-template-columns: 1fr; }
    .process-grid--5 { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr; padding: 36px 16px 28px; }
    .footer-links--2col { grid-template-columns: 1fr 1fr; }
    .hero-cta-row { flex-direction: column; align-items: flex-start; }
    .sticky-call-btn { bottom: 16px; left: 14px; padding: 11px 18px; font-size: 0.85rem; }
    .hero-headline { font-size: clamp(1.85rem, 8vw, 2.4rem); }
    .process-step-num { width: 64px; height: 64px; font-size: 1.6rem; }
    .stats-inner { flex-direction: column; }
    .stat-vline { width: 60px; height: 1px; }
    .qform-wrap { padding: 24px 18px; }
}
