/* ============================================================
   CHAMPIONS RENTALS — styles.css
   Premium Event Rental Website · Charlotte, NC
   Color palette derived from company logo:
     Gold #C9A227 · Red #C41E3A · Black #0D0D0D · White #FFFFFF
   ============================================================ */

/* ========================
   CSS CUSTOM PROPERTIES
======================== */
:root {
    /* Brand Colors */
    --gold:         #C9A227;
    --gold-light:   #F0D060;
    --gold-dark:    #8B6914;
    --gold-dim:     rgba(201, 162, 39, 0.15);
    --red:          #C41E3A;
    --red-dark:     #8B0000;
    --red-dim:      rgba(196, 30, 58, 0.15);

    /* Neutrals */
    --black:        #0D0D0D;
    --dark-1:       #111111;
    --dark-2:       #1A1A1A;
    --dark-3:       #222222;
    --dark-4:       #2E2E2E;
    --mid:          #444444;
    --gray:         #888888;
    --gray-light:   #BBBBBB;
    --off-white:    #F8F6F2;
    --white:        #FFFFFF;

    /* Gradients */
    --grad-gold:    linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    --grad-red:     linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    --grad-dark:    linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 100%);
    --grad-hero:    linear-gradient(160deg, #0D0D0D 0%, #111111 60%, #1a1a1a 100%);

    /* Typography */
    --font-heading: 'Cinzel', 'Georgia', serif;
    --font-display: 'Cinzel Decorative', 'Cinzel', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-pad:  6rem;
    --container:    1200px;

    /* Transitions */
    --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
    --t-fast:       0.18s;
    --t-base:       0.3s;
    --t-slow:       0.55s;

    /* Shadows */
    --shadow-sm:    0 2px 8px rgba(0,0,0,0.25);
    --shadow-md:    0 8px 32px rgba(0,0,0,0.35);
    --shadow-lg:    0 20px 60px rgba(0,0,0,0.45);
    --shadow-gold:  0 8px 32px rgba(201, 162, 39, 0.25);
    --shadow-red:   0 8px 32px rgba(196, 30, 58, 0.3);

    /* Border radius */
    --radius-sm:    6px;
    --radius-md:    12px;
    --radius-lg:    20px;
    --radius-xl:    32px;
    --radius-pill:  9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--dark-2);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol { list-style: none; }

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

/* ========================
   TYPOGRAPHY
======================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; font-weight: 600; }

p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray);
}

/* ========================
   UTILITIES
======================== */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
}

.section-pad {
    padding-block: var(--section-pad);
}

.gold-gradient-text {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}

/* ========================
   SECTION HEADER
======================== */
.section-header {
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: var(--dark-1);
}

.section-header p {
    font-size: 1.05rem;
    max-width: 560px;
    margin-inline: auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.85rem;
    padding: 0.35rem 1rem;
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: var(--radius-pill);
    background: rgba(201, 162, 39, 0.06);
}

/* ========================
   BUTTONS
======================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    transition: all var(--t-base) var(--ease);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    transform: translateX(-100%);
    transition: transform var(--t-base) var(--ease);
}

.btn:hover::before { transform: translateX(0); }

/* Primary — Red */
.btn-primary {
    background: var(--grad-red);
    color: var(--white);
    box-shadow: var(--shadow-red);
}
.btn-primary:hover {
    box-shadow: 0 12px 40px rgba(196, 30, 58, 0.45);
    transform: translateY(-2px);
    color: var(--white);
}
.btn-primary:active { transform: translateY(0); }

/* Ghost / Outline */
.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 24px rgba(201, 162, 39, 0.2);
    transform: translateY(-2px);
}

/* Service card button */
.btn-service {
    background: transparent;
    color: var(--dark-1);
    border: 1.5px solid var(--dark-3);
    padding: 0.65rem 1.4rem;
    font-size: 0.72rem;
    margin-top: auto;
}
.btn-service:hover {
    background: var(--dark-1);
    color: var(--white);
    border-color: var(--dark-1);
    transform: translateY(-2px);
}

/* Service featured button */
.btn-service--gold {
    background: var(--grad-gold);
    color: var(--dark-1);
    border-color: var(--gold);
}
.btn-service--gold:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
    color: var(--dark-1);
}

/* Size modifiers */
.btn-lg  { padding: 1rem 2.4rem; font-size: 0.82rem; }
.btn-xl  { padding: 1.2rem 3rem; font-size: 0.88rem; }
.btn-hero { padding: 1.05rem 2.2rem; font-size: 0.82rem; }

/* ========================
   SCROLL REVEAL ANIMATIONS
======================== */
@keyframes fadeUpIn {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulse-ring {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(8px); }
}

/* Hero entrance animations */
.animate-in {
    opacity: 0;
    transform: translateY(32px);
    animation: fadeUpIn 0.8s var(--ease-out) forwards;
}
.delay-0 { animation-delay: 0.1s; }
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 0.7s; }
.delay-4 { animation-delay: 0.9s; }
.delay-5 { animation-delay: 1.1s; }

/* Scroll reveal — default hidden state */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger siblings inside grids */
.services-grid .reveal:nth-child(2),
.why-grid .reveal:nth-child(2),
.testimonials-grid .reveal:nth-child(2),
.gallery-grid .reveal:nth-child(2),
.stats-grid .reveal:nth-child(2)
{ transition-delay: 0.1s; }

.services-grid .reveal:nth-child(3),
.why-grid .reveal:nth-child(3),
.testimonials-grid .reveal:nth-child(3),
.gallery-grid .reveal:nth-child(3),
.stats-grid .reveal:nth-child(3)
{ transition-delay: 0.2s; }

.services-grid .reveal:nth-child(4),
.why-grid .reveal:nth-child(4),
.testimonials-grid .reveal:nth-child(4),
.gallery-grid .reveal:nth-child(4),
.stats-grid .reveal:nth-child(4)
{ transition-delay: 0.3s; }

.services-grid .reveal:nth-child(5),
.why-grid .reveal:nth-child(5),
.testimonials-grid .reveal:nth-child(5),
.gallery-grid .reveal:nth-child(5)
{ transition-delay: 0.4s; }

.services-grid .reveal:nth-child(6),
.why-grid .reveal:nth-child(6),
.testimonials-grid .reveal:nth-child(6),
.gallery-grid .reveal:nth-child(6)
{ transition-delay: 0.5s; }

.why-grid .reveal:nth-child(7),
.gallery-grid .reveal:nth-child(7)
{ transition-delay: 0.6s; }

.why-grid .reveal:nth-child(8),
.gallery-grid .reveal:nth-child(8)
{ transition-delay: 0.7s; }

.gallery-grid .reveal:nth-child(9)
{ transition-delay: 0.8s; }

/* ========================
   NAVIGATION
======================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), padding var(--t-base) var(--ease);
    padding-block: 1rem;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(201, 162, 39, 0.2), var(--shadow-md);
    padding-block: 0.6rem;
}

.nav-container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nav-logo { flex-shrink: 0; }

.logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    transition: height var(--t-base) var(--ease);
    filter: drop-shadow(0 2px 8px rgba(201, 162, 39, 0.3));
}

#navbar.scrolled .logo-img { height: 44px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.nav-links a,
.language-toggle {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-pill);
    transition: color var(--t-fast), background var(--t-fast);
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(201, 162, 39, 0.35);
    background: rgba(201, 162, 39, 0.08);
    cursor: pointer;
}

.nav-links a:hover,
.language-toggle:hover {
    color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
}

.google-translate-widget,
.goog-te-banner-frame,
.goog-te-balloon-frame,
.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

.nav-cta {
    background: var(--grad-red) !important;
    color: var(--white) !important;
    padding: 0.55rem 1.2rem !important;
    border-radius: var(--radius-pill) !important;
    box-shadow: var(--shadow-red);
}

.nav-quote {
    color: var(--dark-1) !important;
    background: var(--grad-gold) !important;
    box-shadow: var(--shadow-gold);
}

.nav-quote:hover {
    color: var(--dark-1) !important;
    background: var(--grad-gold) !important;
    transform: translateY(-1px);
}

.nav-cta:hover {
    box-shadow: 0 8px 28px rgba(196, 30, 58, 0.5) !important;
    transform: translateY(-1px);
    background: rgba(255,255,255,0) !important;
    color: var(--white) !important;
    background: var(--grad-red) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    position: relative;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--t-base) var(--ease);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========================
   HERO SECTION
======================== */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(13, 13, 13, 0.9) 0%, rgba(13, 13, 13, 0.78) 48%, rgba(26, 26, 26, 0.86) 100%),
        url("https://images.pexels.com/photos/8392460/pexels-photo-8392460.jpeg?auto=compress&cs=tinysrgb&w=1800");
    background-size: cover;
    background-position: center;
    padding-block: 8rem 4rem;
}

/* Subtle geometric background texture */
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 162, 39, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 162, 39, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(196, 30, 58, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.hero-glow-gold {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-duration: 7s;
}

.hero-glow-red {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.1) 0%, transparent 70%);
    bottom: 0;
    left: -80px;
    animation-duration: 9s;
    animation-delay: -3s;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    padding-inline: 1.5rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding: 0.45rem 1.25rem;
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: var(--radius-pill);
    background: rgba(201, 162, 39, 0.07);
}

.hero-eyebrow i { font-size: 0.55rem; }

.hero-logo-wrap {
    margin-bottom: 1.75rem;
}

.hero-logo {
    height: clamp(100px, 16vw, 160px);
    width: auto;
    margin-inline: auto;
    filter: drop-shadow(0 8px 32px rgba(201, 162, 39, 0.4));
    animation: float 5s ease-in-out infinite;
    animation-delay: 1.2s; /* let entrance animation finish first */
}

.hero-headline {
    color: var(--white);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.08;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 32px rgba(0,0,0,0.6);
}

.hero-sub {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.72);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.hero-cta-note {
    color: rgba(255,255,255,0.72);
    font-size: 0.88rem;
    margin-bottom: 2.1rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 1.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.hero-trust-item i {
    color: var(--gold);
    font-size: 0.8rem;
}

.hero-trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.2);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    z-index: 2;
    transition: color var(--t-fast);
}

.hero-scroll:hover { color: var(--gold); }

.scroll-chevron {
    animation: bounce-down 1.8s ease-in-out infinite;
    color: var(--gold);
}

/* ========================
   TRUST BAR
======================== */
.trust-bar {
    background: var(--dark-1);
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    padding-block: 1.5rem;
}

.trust-bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 2rem;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-bar-item > i {
    font-size: 1.4rem;
    color: var(--gold);
    flex-shrink: 0;
}

.trust-bar-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.trust-bar-text strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
}

.trust-bar-text strong a {
    color: var(--gold);
    transition: opacity var(--t-fast);
}

.trust-bar-text strong a:hover { opacity: 0.8; }

.trust-bar-text span {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--font-heading);
}

.trust-bar-divider {
    display: block;
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* ========================
   SERVICES SECTION
======================== */
.services {
    background: var(--off-white);
}

.services-lead-form {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.services-lead-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(201, 162, 39, 0.16), transparent 32%),
        radial-gradient(circle at bottom right, rgba(196, 30, 58, 0.1), transparent 36%),
        linear-gradient(160deg, #121212 0%, #1c1c1c 100%);
    border: 1px solid rgba(201, 162, 39, 0.18);
    box-shadow: var(--shadow-md);
}

.services-lead-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 45%);
    pointer-events: none;
}

.services-lead-intro,
.lead-form-card {
    position: relative;
    z-index: 1;
}

.services-lead-intro {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem;
    color: var(--white);
}

.services-lead-intro h3 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-top: 0.75rem;
    margin-bottom: 0.85rem;
}

.services-lead-intro p {
    color: rgba(255,255,255,0.72);
    max-width: 42ch;
}

.services-lead-points {
    display: grid;
    gap: 0.7rem;
}

.services-lead-point {
    display: flex;
    gap: 0.9rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.services-lead-point i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.12);
    flex-shrink: 0;
}

.services-lead-point strong {
    display: block;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.services-lead-point span {
    color: rgba(255,255,255,0.68);
    font-size: 0.92rem;
    line-height: 1.6;
}

.services-lead-point a {
    color: var(--gold-light);
}

.lead-form-card {
    padding: 1.75rem;
    border-radius: 24px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 14px 40px rgba(0,0,0,0.18);
}

.lead-form-card-header {
    margin-bottom: 0.9rem;
}

.lead-form-card-header h4 {
    color: var(--dark-1);
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}

.lead-form-card-header p {
    font-size: 0.92rem;
    color: var(--gray);
}

.lead-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-field span {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark-2);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(17,17,17,0.1);
    border-radius: 16px;
    background: #fcfbf8;
    color: var(--dark-1);
    padding: 0.95rem 1rem;
    font: inherit;
    transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(201, 162, 39, 0.65);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.12);
    background: #fffdf7;
}

.form-field textarea {
    resize: vertical;
    min-height: 132px;
}

.form-field--full {
    grid-column: 1 / -1;
}

.lead-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
    margin-top: 1.25rem;
}

.lead-form-note {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--mid);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
    margin-bottom: 3.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base);
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 162, 39, 0.2);
}

.service-card--featured {
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-gold);
}

.service-card--featured:hover {
    box-shadow: 0 24px 60px rgba(201, 162, 39, 0.3);
}

.service-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--grad-gold);
    color: var(--dark-1);
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-pill);
    z-index: 2;
}

.service-icon-wrap {
    background: linear-gradient(135deg, var(--card-color-a), var(--card-color-b));
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    flex-shrink: 0;
}

.service-icon-wrap i {
    font-size: 2.2rem;
    color: rgba(255,255,255,0.9);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.service-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.85rem;
}

.service-body h3 {
    color: var(--dark-1);
    font-size: 1.15rem;
}

.service-body > p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.65;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-top: 0.25rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--dark-3);
    font-weight: 500;
}

.service-features li i {
    color: var(--gold);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.services-bottom-cta {
    text-align: center;
    padding: 2.5rem;
    background: var(--dark-1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.services-bottom-cta p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.section-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
}

.local-areas {
    margin-top: 2rem;
    padding: 1.75rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-sm);
}

.local-areas-copy {
    max-width: 780px;
    margin-bottom: 1.25rem;
}

.local-areas-copy h3 {
    color: var(--dark-1);
    font-size: clamp(1.35rem, 2.6vw, 2rem);
    margin-bottom: 0.6rem;
}

.local-areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.local-areas-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.9rem;
    border-radius: var(--radius-pill);
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.18);
    color: var(--dark-2);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ========================
   WHY CHOOSE US
======================== */
.why-us {
    background: var(--dark-1);
    position: relative;
    overflow: hidden;
}

.why-us-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(201, 162, 39, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(196, 30, 58, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.why-us .section-header h2 { color: var(--white); }
.why-us .section-header p  { color: rgba(255,255,255,0.6); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--t-base);
}

.why-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-4px);
}

.why-card:hover::before { opacity: 1; }

.why-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.08));
    border: 1px solid rgba(201, 162, 39, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.why-card-icon i {
    font-size: 1.3rem;
    color: var(--gold);
}

.why-card h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.why-card p {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* ========================
   STATS SECTION
======================== */
.stats-section {
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-1) 100%);
    border-top: 1px solid rgba(201, 162, 39, 0.15);
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    padding-block: 5rem;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(255,255,255,0.1);
}

.stat-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.1rem;
}

.stat-suffix {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    vertical-align: top;
    margin-top: 0.3rem;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-top: 0.75rem;
}

/* ========================
   TESTIMONIALS
======================== */
.testimonials {
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform var(--t-base), box-shadow var(--t-base);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -0.5rem;
    left: 1.25rem;
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stars { display: flex; gap: 0.2rem; }

.stars i {
    color: var(--gold);
    font-size: 0.85rem;
}

.testimonial-card > p {
    font-size: 0.92rem;
    color: var(--dark-3);
    line-height: 1.75;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 1rem;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--grad-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-1);
    flex-shrink: 0;
}

.testimonial-author div strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark-1);
    letter-spacing: 0.04em;
}

.testimonial-author div span {
    font-size: 0.75rem;
    color: var(--gray);
    font-style: normal;
}

.testimonials-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--dark-1);
    text-align: center;
    padding: 1rem 2rem;
    background: var(--white);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
    width: fit-content;
    margin-inline: auto;
}

.testimonials-badge .fa-google {
    font-size: 1.2rem;
    color: #4285F4;
}

.testimonials-cta {
    text-align: center;
    margin-top: 1.75rem;
}

.testimonials-cta p {
    color: var(--gray);
    margin-bottom: 1rem;
}

/* ========================
   GALLERY
======================== */
.gallery {
    background: var(--dark-1);
}

.gallery .section-header h2 { color: var(--white); }
.gallery .section-header p  { color: rgba(255,255,255,0.55); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 1rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--t-base) var(--ease), box-shadow var(--t-base);
}

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

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.gallery-item:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.gallery-visual {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background-size: cover;
    background-position: center;
    transition: transform var(--t-slow) var(--ease);
}

.gallery-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.22) 100%);
}

.gallery-item:hover .gallery-visual {
    transform: scale(1.05);
}

.gallery-visual i {
    font-size: 2.8rem;
    color: rgba(255,255,255,0.25);
    transition: color var(--t-base);
}

.gallery-item:hover .gallery-visual i {
    color: rgba(255,255,255,0.1);
}

.gallery-visual span {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    transition: opacity var(--t-base);
}

.gallery-item:hover .gallery-visual span { opacity: 0; }

/* Gallery hover overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    opacity: 0;
    transition: opacity var(--t-base) var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay {
    opacity: 1;
}

.gallery-caption h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.gallery-caption p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
}

.gallery-overlay > i {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--gold);
    font-size: 1rem;
    opacity: 0.8;
}

.gallery-cta {
    text-align: center;
}

.gallery-cta p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

/* ========================
   FAQ SECTION
======================== */
.faq {
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin-inline: auto;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--t-base), box-shadow var(--t-base);
    background: var(--white);
}

.faq-item.open {
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--dark-1);
    transition: color var(--t-fast), background var(--t-fast);
    background: var(--white);
}

.faq-question:hover {
    color: var(--gold-dark);
    background: rgba(201, 162, 39, 0.03);
}

.faq-item.open .faq-question {
    color: var(--gold-dark);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--t-base) var(--ease);
}

.faq-icon i {
    font-size: 0.65rem;
    color: var(--gray);
    transition: transform var(--t-base) var(--ease), color var(--t-base);
}

.faq-item.open .faq-icon {
    background: var(--gold);
    border-color: var(--gold);
}

.faq-item.open .faq-icon i {
    transform: rotate(45deg);
    color: var(--dark-1);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
    padding-inline: 1.5rem;
}

.faq-answer.open {
    max-height: 400px;
    padding-bottom: 1.5rem;
}

/* Override hidden attribute with JS-controlled class */
.faq-answer[hidden] { max-height: 0; padding-bottom: 0; }

.faq-answer p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.75;
}

.faq-answer p a {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-cta {
    text-align: center;
}

.faq-cta p {
    color: var(--gray);
    margin-bottom: 1.25rem;
}

/* ========================
   FINAL CTA SECTION
======================== */
.final-cta {
    position: relative;
    background: var(--dark-1);
    padding-block: 7rem;
    overflow: hidden;
    text-align: center;
}

.final-cta-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-bg-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.07) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.final-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin-inline: auto;
}

.final-cta-inner h2 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.25rem;
    margin-top: 0.75rem;
}

.final-cta-sub {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    max-width: 540px;
    margin-inline: auto;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.final-cta-phone-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.final-cta-phone-display i {
    font-size: 1.5rem;
    color: var(--gold);
}

.final-cta-phone-display a {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.04em;
    transition: color var(--t-fast);
}

.final-cta-phone-display a:hover { color: var(--gold); }

.final-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.final-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.75rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.final-trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.final-trust-badges i { color: var(--gold); }

/* ========================
   FOOTER
======================== */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 4.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-brand .footer-logo {
    height: 72px;
    width: auto;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 2px 8px rgba(201, 162, 39, 0.25));
}

.footer-brand > p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: all var(--t-fast);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark-1);
    transform: translateY(-2px);
}

.footer-nav h4,
.footer-services-nav h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer-nav ul li,
.footer-services-nav ul li {
    margin-bottom: 0.6rem;
}

.footer-nav ul li a,
.footer-services-nav ul li a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    transition: color var(--t-fast);
}

.footer-nav ul li a:hover,
.footer-services-nav ul li a:hover {
    color: var(--gold);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

.footer-contact-item a {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.footer-contact-item a:hover { color: var(--gold); }

.footer-call-btn {
    margin-top: 1.25rem;
    font-size: 0.72rem;
    padding: 0.7rem 1.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-block: 1.75rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    line-height: 1.6;
}

.footer-service-areas {
    margin-top: 0.35rem;
    font-size: 0.68rem !important;
    color: rgba(255,255,255,0.2) !important;
}

/* ========================
   LIGHTBOX
======================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity var(--t-base) var(--ease);
    pointer-events: none;
}

.lightbox:not([hidden]) {
    opacity: 1;
    pointer-events: all;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: all var(--t-fast);
    cursor: pointer;
    background: rgba(255,255,255,0.05);
}

.lightbox-close:hover {
    background: var(--red);
    border-color: var(--red);
    transform: rotate(90deg);
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 640px;
    width: 100%;
    transform: scale(0.9);
    transition: transform var(--t-base) var(--ease);
}

.lightbox:not([hidden]) .lightbox-content {
    transform: scale(1);
}

.lightbox-visual {
    width: 100%;
    max-width: 480px;
    height: 300px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
}

.lightbox-visual i {
    font-size: 4rem;
    color: rgba(255,255,255,0.3);
}

.lightbox-caption {
    text-align: center;
}

.lightbox-caption h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.lightbox-caption p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ========================
   FLOATING CTA (MOBILE)
======================== */
.floating-cta {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 999;
    opacity: 0;
    transition: transform var(--t-base) var(--ease), opacity var(--t-base);
    pointer-events: none;
    display: none;
}

.floating-cta.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.floating-call-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--grad-red);
    color: var(--white);
    padding: 0.9rem 1.75rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 8px 32px rgba(196, 30, 58, 0.5), 0 2px 8px rgba(0,0,0,0.3);
    white-space: nowrap;
    position: relative;
}

.floating-call-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--red);
    animation: pulse-ring 2s ease-out infinite;
}

.floating-call-btn i { font-size: 1rem; }

/* ========================
   RESPONSIVE — TABLET
======================== */
@media (max-width: 1024px) {
    :root { --section-pad: 4.5rem; }

    .services-lead-shell {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.25rem;
    }

    .services-lead-form {
        margin-top: 1.75rem;
        margin-bottom: 2.5rem;
    }

    .services-lead-intro,
    .lead-form-card {
        padding: 1.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand { grid-column: span 2; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .stat-item:nth-child(2)::after { display: none; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

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

/* ========================
   RESPONSIVE — MOBILE
======================== */
@media (max-width: 768px) {
    :root { --section-pad: 3.5rem; }

    .nav-container {
        position: relative;
    }

    .btn {
        max-width: 100%;
        justify-content: center;
        text-align: center;
        white-space: normal;
        line-height: 1.35;
    }

    .btn-lg,
    .btn-xl,
    .btn-hero {
        padding-inline: 1.4rem;
    }

    /* Nav mobile */
    .hamburger { display: flex; }

    .nav-links {
        position: absolute;
        top: calc(100% + 0.4rem);
        left: 1rem;
        right: 1rem;
        width: auto;
        padding: 0.85rem;
        background: rgba(10,10,10,0.985);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0.45rem;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease);
        z-index: 1000;
        border-radius: 20px;
        border: 1px solid rgba(201, 162, 39, 0.14);
        box-shadow: 0 24px 60px rgba(0,0,0,0.45);
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        font-size: 0.85rem;
        padding: 0.8rem 0.95rem;
        border: 1px solid rgba(255,255,255,0.08);
        background: rgba(255,255,255,0.03);
    }

    .nav-actions .language-toggle {
        display: none;
    }

    .nav-cta {
        margin-top: 0.2rem;
        padding: 0.9rem 0.95rem !important;
    }

    .nav-quote {
        margin-top: 0.2rem;
    }

    /* Hero */
    .hero {
        padding-inline: 0;
    }

    .hero-content {
        width: 100%;
        padding-inline: 1rem;
    }

    .hero-eyebrow {
        max-width: 100%;
        justify-content: center;
        gap: 0.45rem;
        padding-inline: 0.85rem;
        letter-spacing: 0.14em;
        line-height: 1.4;
    }

    .hero-trust-divider { display: none; }
    .hero-trust { gap: 0.75rem 1rem; }
    .hero-trust-item { font-size: 0.6rem; }

    /* Trust bar */
    .trust-bar-divider { display: none; }
    .trust-bar-inner { gap: 1.25rem; }
    .trust-bar-item { width: 45%; justify-content: center; }

    /* Services */
    .lead-form-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }

    .services-bottom-cta {
        padding: 2rem 1rem;
    }

    .local-areas {
        padding: 1.4rem;
    }

    /* Why */
    .why-grid { grid-template-columns: 1fr; }

    /* Stats */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .stat-item::after { display: none !important; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    .gallery-item--wide,
    .gallery-item--tall { grid-column: span 1; grid-row: span 1; }

    /* Gallery overlay — always show on mobile */
    .gallery-overlay { opacity: 1; }
    .gallery-visual i,
    .gallery-visual span { display: none; }

    /* FAQ */
    .faq-list { max-width: 100%; }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-brand { grid-column: auto; }

    /* Floating CTA */
    .floating-cta { display: block; }

    .floating-call-btn {
        max-width: calc(100vw - 2rem);
        justify-content: center;
        padding-inline: 1.25rem;
    }

    /* Final CTA */
    .final-cta-phone-display { flex-direction: column; gap: 0.5rem; }

    /* Section header */
    .section-header { margin-bottom: 2.5rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.7rem; }

    .hero-ctas { flex-direction: column; align-items: stretch; }
    .btn-hero { text-align: center; justify-content: center; }
    .hero-cta-note { font-size: 0.82rem; margin-bottom: 1.5rem; }

    .btn-lg,
    .btn-xl {
        width: 100%;
        padding: 0.9rem 1rem;
    }

    .section-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-eyebrow {
        font-size: 0.58rem;
        letter-spacing: 0.1em;
    }

    .trust-bar-item { width: 100%; }
    .services-lead-shell { padding: 1rem; }
    .services-lead-intro,
    .lead-form-card { padding: 1.25rem; }
    .services-lead-form {
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }
    .services-lead-intro { gap: 1.2rem; }
    .services-lead-point { padding: 0.9rem; }
    .lead-form-card-header { margin-bottom: 1rem; }
    .lead-form-actions { margin-top: 1rem; }
    .lead-form-actions .btn { width: 100%; justify-content: center; }
    .local-areas {
        margin-top: 1.5rem;
        padding: 1.15rem;
    }
    .local-areas-tags span {
        width: 100%;
        justify-content: flex-start;
    }

    .stats-grid { grid-template-columns: 1fr 1fr; }

    .lightbox-visual { height: 200px; }
}

/* ========================
   REDUCED MOTION
======================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html { scroll-behavior: auto; }

    .hero-logo { animation: none; }
    .hero-glow { animation: none; }
    .floating-call-btn::before { animation: none; }
    .scroll-chevron { animation: none; }
}
