/* MOBILE OVERFLOW PROTECTION & HORIZONTAL LOCK */
* { box-sizing: border-box; }
html, body { 
    overflow-x: hidden; 
    scroll-behavior: smooth;
    width: 100%;
    min-height: 100vh;
}

.page-wrapper {
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

section, header.hero, footer {
    width: 100%;
    position: relative;
    padding: 100px 5% 80px;
}

.glass-nav, nav {
    position: fixed; top: 0; left: 0; width: 100vw !important; z-index: 1000;
    padding: 15px 5%; display: flex; justify-content: space-between; align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
    backdrop-filter: blur(15px); border-bottom: 1px solid var(--border-glass);
    height: auto;
}

/* GLOBAL STYLES */
:root {
    --bg-dark: #0b0b0c;
    --bg-card: rgba(20, 20, 22, 0.55);
    --bg-card-glass: rgba(20, 20, 22, 0.75);
    --accent-red: #e51a23;
    --accent-red-glow: rgba(229, 26, 35, 0.5);
    --text-light: #ffffff;
    --text-gray: #c1c1c7;
    --border-glass: rgba(255, 255, 255, 0.09);
    --font-primary: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.5;
}

h1,h2,h3,h4,.font-heading {
    font-family: var(--font-primary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-red); }

/* GLOBAL STYLES */
.logo { font-size: clamp(1.2rem,3vw,1.6rem); font-weight: 900; letter-spacing: -0.03em; text-transform: uppercase; }
.logo span { color: var(--accent-red); }
.nav-links { display: flex; gap: 35px; list-style: none; border-left: 1px solid var(--border-glass); border-right: 1px solid var(--border-glass); padding: 10px 35px; }
.nav-links a { color: var(--text-gray); text-decoration: none; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; transition: all 0.3s; white-space: nowrap; }
.nav-links a:hover { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }

@keyframes nav-btn-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(229,26,35,0.0), 0 4px 14px rgba(229,26,35,0.3); }
    50%       { box-shadow: 0 0 0 6px rgba(229,26,35,0.0), 0 4px 22px rgba(229,26,35,0.55); }
}
@keyframes nav-quote-pulse {
    0%, 100% { border-color: rgba(229,26,35,0.5); box-shadow: none; }
    50%       { border-color: rgba(229,26,35,0.9); box-shadow: 0 0 14px rgba(229,26,35,0.2); }
}

.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-coordinator-pill {
    display: flex; align-items: center; gap: 9px; text-decoration: none;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    padding: 8px 16px; border-radius: 50px;
    transition: background 0.3s, border-color 0.3s;
}
.nav-coordinator-pill:hover { background: rgba(255,255,255,0.11); border-color: rgba(255,255,255,0.22); }
.nav-pill-text { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: #fff; line-height: 1.3; }
.nav-pill-text span { display: block; color: rgba(255,255,255,0.45); font-size: 0.62rem; font-weight: 400; text-transform: none; letter-spacing: 0; }
.nav-call-short { display: none; }
.nav-call-full { display: inline; }
.nav-call-btn, .nav-quote-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    height: 40px; padding: 0 22px;
    font-family: var(--font-primary); font-size: 0.78rem; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase;
    white-space: nowrap; cursor: pointer; text-decoration: none;
    border-radius: 6px; transition: all 0.25s ease;
}
.nav-call-btn {
    background: var(--accent-red); color: #fff; border: 1px solid transparent;
    box-shadow: 0 4px 16px rgba(229,26,35,0.4);
    animation: nav-btn-pulse 3s ease-in-out infinite;
}
.nav-call-btn:hover { animation: none; background: #ff1d27; box-shadow: 0 6px 24px rgba(229,26,35,0.65); transform: translateY(-2px); }
.nav-quote-btn {
    background: rgba(255,255,255,0.07); color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: none;
    animation: nav-quote-pulse 3s ease-in-out infinite;
}
.nav-quote-btn:hover { animation: none; background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.35); transform: translateY(-2px); }

.cta-btn {
    background: var(--accent-red); color: white; padding: 14px 28px; border: none; border-radius: 4px;
    font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer;
    box-shadow: 0 5px 20px var(--accent-red-glow); transition: all 0.3s; text-decoration: none; font-size: 0.85rem; display: inline-block; font-family: var(--font-primary);
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px var(--accent-red); background: #ff1d27; }

/* HERO */
.hero {
    position: relative; min-height: 100vh; width: 100%;
    display: grid; grid-template-columns: 1fr 1.2fr; align-items: center;
    padding: 100px 5% 50px; overflow: hidden; gap: 40px;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(11,11,12,0.9) 0%, rgba(11,11,12,0.3) 30%, rgba(11,11,12,0.3) 70%, rgba(11,11,12,0.9) 100%),
                linear-gradient(to right, rgba(11,11,12,0.7) 0%, transparent 50%, rgba(11,11,12,0.7) 100%);
    z-index: 2;
}
.video-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translate(-50%,-50%); object-fit: cover; display: none; }
@media (orientation: landscape) { #video-desktop { display: block; } }
@media (orientation: portrait) { #video-mobile { display: block; } }

.hero-form-card {
    position: relative; z-index: 10;
    background: rgba(15,15,17,0.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1); 
    border-top: 6px solid var(--accent-red);
    border-radius: 12px; padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.6);
    opacity: 0; transform: translateX(-30px); animation: fadeInRight 0.8s forwards 0.3s;
    max-width: 480px; margin-left: auto;
}
.form-title { font-size: 1.8rem; margin-bottom: 5px; }
.form-subtitle { color: var(--text-gray); font-size: 0.85rem; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 0.05em; }
.input-group { margin-bottom: 18px; }
.input-group label { display: block; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-gray); margin-bottom: 8px; }
.input-group input, .input-group select, .input-group textarea {
    width: 100%; background: #ffffff; border: 1px solid #e4e4e7;
    border-radius: 4px; padding: 14px 16px; color: #111; font-family: var(--font-primary); font-size: 0.95rem; font-weight: 500; outline: none; transition: all 0.3s;
}
.input-group textarea { resize: vertical; min-height: 80px; }
.input-group input:focus, .input-group select:focus, .input-group textarea:focus { background: #ffffff; border-color: var(--accent-red); box-shadow: 0 0 0 2px rgba(229,26,35,0.2); }
.form-submit { width: 100%; margin-top: 0px; padding: 16px; font-size: 0.95rem; border-radius: 6px; }

/* MULTI-STEP FORM SYSTEM */
.form-step {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.form-step.active {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
    animation: slideInStep 0.4s ease forwards;
}
@keyframes slideInStep {
    from { opacity: 0; transform: translateX(15px); }
    to { opacity: 1; transform: translateX(0); }
}
.step-indicator-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    position: relative;
    padding: 0 5px;
}
.step-dot {
    width: 26px;
    height: 26px;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--text-gray);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}
.step-dot.active {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: white;
    box-shadow: 0 0 12px var(--accent-red-glow);
}
.step-dot.completed {
    background: white;
    border-color: white;
    color: var(--bg-dark);
}
.step-progress-line {
    position: absolute;
    top: 13px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255,255,255,0.1);
    z-index: 1;
}
.step-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--accent-red);
    transition: width 0.3s ease;
    width: 0%;
}
.step-nav-btns {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    margin-top: 20px;
}
.step-nav-btns.single {
    grid-template-columns: 1fr;
}
.back-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 14px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.back-btn:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.4);
}
.next-btn {
    background: var(--accent-red);
    border: none;
    color: #fff;
    padding: 14px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-align: center;
}
.next-btn:hover {
    background: #f02731;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--accent-red-glow);
}

.hero-copy {
    position: relative; z-index: 10; max-width: 650px; text-align: left;
    display: flex; flex-direction: column; justify-content: center;
    opacity: 0; transform: translateX(30px); animation: fadeInLeft 0.8s forwards 0.5s;
}
.tagline { font-size: clamp(0.85rem,2vw,1.1rem); text-transform: uppercase; letter-spacing: 0.35em; color: var(--accent-red); font-weight: 800; margin-bottom: 20px; display: flex; align-items: center; gap: 15px; }
.tagline::after { content: ''; flex-grow: 1; height: 2px; background: linear-gradient(to right, var(--accent-red), transparent); max-width: 100px; }
.hero-title { font-size: clamp(2.5rem,6vw,5.5rem); line-height: 0.85; margin-bottom: 25px; text-shadow: 2px 4px 20px rgba(0,0,0,0.7); will-change: transform; }
.hero-title span { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.9); }
.hero-title strong { color: var(--accent-red); text-shadow: 0 0 30px rgba(229,26,35,0.4); }
.hero-subtitle { font-size: clamp(1rem,2.5vw,1.25rem); color: #ffffff; font-weight: 600; margin-bottom: 35px; border-left: 3px solid var(--accent-red); padding-left: 20px; text-shadow: 0 2px 15px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,0.9); }

/* PARTNER MARQUEE (NEW) */
.partner-marquee {
    position: relative; z-index: 10; background: #070708; padding: 20px 0;
    border-bottom: 1px solid var(--border-glass); overflow: hidden;
}
.marquee-track {
    display: flex; width: max-content; animation: marquee-scroll 30s linear infinite;
    align-items: center;
}
.partner-marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
    display: flex; align-items: center; gap: 10px; padding: 0 50px;
    font-size: 1.1rem; font-weight: 900; color: rgba(255,255,255,0.45);
    text-transform: uppercase; letter-spacing: 0.15em; transition: color 0.3s;
}
.marquee-item svg {
    height: 24px; width: auto; fill: rgba(255,255,255,0.4);
    transition: fill 0.3s, transform 0.3s;
}
.marquee-item:hover { color: #fff; }
.marquee-item:hover svg { fill: var(--accent-red); transform: scale(1.05); }

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* TRUST BAR */
.trust-bar {
    position: relative; z-index: 10; background: #0e0e10;
    border-bottom: 1px solid var(--border-glass);
    padding: 25px 5%; display: flex; justify-content: center; gap: 50px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 12px; font-weight: 800; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.12em; color: #fff; }
.trust-item span { color: var(--accent-red); font-size: 1.4rem; line-height: 1; }

/* SECTION COMMON */
.section-label { color: var(--accent-red); text-align: center; letter-spacing: 0.25em; font-weight: 800; font-size: 0.9rem; margin-bottom: 10px; text-transform: uppercase; }
.section-title { text-align: center; font-size: clamp(2rem,4vw,3.2rem); margin-bottom: 50px; line-height: 1.1; color: inherit; }
.section-desc { text-align: center; color: var(--text-gray); max-width: 650px; margin: -30px auto 50px; font-size: 1.05rem; line-height: 1.7; }
.stats-section .section-desc, .video-reel-section .section-desc, .services-section .section-desc { color: #52525b; font-weight: 500; }

/* STATS BENTO */
.stats-section { padding: 80px 5%; background-color: #ffffff; border-bottom: 1px solid #f4f4f5; color: #111; }
.stats-section .container { max-width: 1300px; margin: 0 auto; }
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bento-card {
    background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 12px;
    padding: 30px 24px; transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275); display: flex; flex-direction: column; overflow: hidden;
}
.bento-card:hover { transform: translateY(-6px); border-color: rgba(229,26,35,0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.08), inset 0 0 20px rgba(229,26,35,0.02); }
.bento-card.wide { grid-column: span 2; }
.stat-num { font-size: clamp(2.8rem,5vw,3.6rem); font-weight: 900; line-height: 1; margin-bottom: 10px; letter-spacing: -0.05em; }
.stat-num span { color: var(--accent-red); margin-left: 2px; }
.bento-card h3 { font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 0.02em; text-transform: uppercase; font-weight: 900; color: #111; }
.bento-card p { color: #52525b; line-height: 1.5; font-size: 0.85rem; font-weight: 500; }

/* VIDEO REEL (NEW) */
.video-reel-section { padding: 80px 5%; background: #ffffff; overflow: hidden; border-top: 1px solid #f4f4f5; border-bottom: 1px solid #f4f4f5; color: #111; }
.reel-grid {
    display: flex; gap: 25px; justify-content: center; overflow-x: auto; padding: 20px 0 40px;
    scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none;
    width: 100%;
}
.reel-grid::-webkit-scrollbar { display: none; }
.reel-card {
    flex: 0 0 300px; aspect-ratio: 9/16; border-radius: 24px; overflow: hidden;
    position: relative; border: 1px solid #e5e7eb;
    scroll-snap-align: start; box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease; cursor: pointer; background: #000;
}
.reel-card:hover { transform: translateY(-10px) scale(1.02); border-color: rgba(229,26,35,0.4); }
.reel-video { width: 100%; height: 100%; object-fit: cover; }
.reel-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8) 100%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 25px;
    z-index: 2; pointer-events: none;
}
.reel-tag { background: var(--accent-red); color: #fff; font-size: 0.65rem; font-weight: 900; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; width: max-content; margin-bottom: 10px; }
.reel-title { font-size: 1.1rem; font-weight: 900; line-height: 1.2; margin-bottom: 5px; text-shadow: 0 2px 10px rgba(0,0,0,0.8); color: #fff; }
.reel-play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 60px; height: 60px; border-radius: 50%; background: rgba(229,26,35,0.9);
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
    color: #fff; border: 3px solid rgba(255,255,255,0.2); box-shadow: 0 0 30px var(--accent-red-glow);
    z-index: 3; transition: all 0.3s; pointer-events: none;
}
.reel-card:hover .reel-play-btn { transform: translate(-50%, -50%) scale(1.1); background: var(--accent-red); }

/* SERVICES MODERNIZED */
.services-section { padding: 50px 5% 40px !important; background: #ffffff; color: #111; }
.services-section .container { max-width: 1300px; margin: 0 auto; }
.services-section .section-title { margin-bottom: 20px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
}
.service-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb; border-radius: 16px;
    text-align: left; transition: all 0.4s ease; position: relative; overflow: hidden;
    display: flex; flex-direction: column;
    height: 100%;
}
.service-img-wrapper {
    height: 130px; overflow: hidden; position: relative;
    border-bottom: 1px solid #e5e7eb;
}
.service-img-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.service-card:hover .service-img-wrapper img { transform: scale(1.1); }
.service-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
    background: var(--accent-red); transform: scaleX(0); transition: transform 0.4s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { transform: translateY(-5px); border-color: rgba(229,26,35,0.5); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.service-card-body { padding: 16px 20px; display: flex; flex-direction: column; flex-grow: 1; }
.service-card h3 { font-size: 1rem; margin-bottom: 6px; text-transform: uppercase; font-weight: 900; color: #111; transition: color 0.3s; }
.service-card:hover h3 { color: var(--accent-red); }
.service-card p { color: #52525b; font-size: 0.8rem; line-height: 1.5; margin-bottom: 0; flex-grow: 1; font-weight: 500; }
.service-icon-small {
    position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px); font-size: 1rem; width: 34px; height: 34px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    border: 1px solid #e5e7eb; z-index: 2; box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* ASYMMETRIC GALLERY FOR DIFFERENCE SECTION */
.difference-section { padding: 100px 5%; background: #0d0d0e; }
.difference-section .container { max-width: 1300px; margin: 0 auto; }
.difference-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.difference-content h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); margin-bottom: 20px; line-height: 1; }
.difference-content h2 span { color: var(--accent-red); }
.difference-content p { color: var(--text-gray); font-size: 1rem; line-height: 1.8; margin-bottom: 25px; }
.diff-list { list-style: none; margin-bottom: 30px; }
.diff-list li { padding: 12px 0; border-bottom: 1px solid var(--border-glass); display: flex; align-items: center; gap: 15px; font-weight: 600; font-size: 0.95rem; }
.diff-list li span { color: var(--accent-red); font-size: 1.2rem; }

.staggered-gallery {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.gallery-col { display: flex; flex-direction: column; gap: 20px; }
.gallery-col.offset { margin-top: 40px; }
.gallery-item {
    border-radius: 16px; overflow: hidden; border: 1px solid var(--border-glass);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3); aspect-ratio: 3/4; position: relative;
    background: #141416;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-badge {
    position: absolute; bottom: 15px; left: 15px; background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px); padding: 6px 12px; border-radius: 6px;
    font-size: 0.7rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em;
    border: 1px solid rgba(255,255,255,0.1);
}

/* WRITTEN REVIEWS MARQUEE */
.testimonials-section { padding: 100px 5%; background: #0e0e10; overflow: hidden; }
.testimonials-section .container { max-width: 1300px; margin: 0 auto; }
.reviews-marquee-container {
    position: relative; display: flex; overflow: hidden; padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.reviews-track { display: flex; width: max-content; animation: reviews-scroll 40s linear infinite; }
.testimonials-section:hover .reviews-track { animation-play-state: paused; }
.testimonial-card {
    flex: 0 0 380px; background: var(--bg-card); border: 1px solid var(--border-glass);
    border-radius: 16px; padding: 35px 30px; margin: 0 12px; transition: all 0.3s ease;
    backdrop-filter: blur(15px);
}
.testimonial-card:hover { border-color: rgba(229,26,35,0.3); transform: translateY(-6px); }
.stars { color: #ffc107; font-size: 1.1rem; margin-bottom: 15px; letter-spacing: 2px; }
.testimonial-card blockquote { color: var(--text-gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; min-height: 70px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-red); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1rem; }
.reviewer-info .name { font-weight: 800; font-size: 0.85rem; }
.reviewer-info .location { color: var(--text-gray); font-size: 0.75rem; }

@keyframes reviews-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* BOTTOM FORM SECTION (NEW) */
.bottom-form-section {
    padding: 100px 5%; background: linear-gradient(to bottom, #070708, var(--bg-dark));
    position: relative; border-top: 1px solid var(--border-glass); overflow: hidden;
}
.bottom-form-section .container { max-width: 1300px; margin: 0 auto; position: relative; z-index: 2; }
.bottom-form-section::after {
    content: ''; position: absolute; bottom: -150px; right: -150px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(229,26,35,0.1) 0%, transparent 70%); z-index: 1;
}
.bottom-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px;
    align-items: center;
}
.bottom-content { display: flex; flex-direction: column; }
.bottom-content h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 20px; line-height: 1; }
.bottom-content h2 span { color: var(--accent-red); }
.bottom-content p { color: var(--text-gray); font-size: 1.1rem; line-height: 1.7; margin-bottom: 35px; }
.bottom-contact-box {
    background: var(--bg-card); border: 1px solid var(--border-glass);
    border-radius: 12px; padding: 30px; display: flex; flex-direction: column; gap: 15px;
}
.contact-line { display: flex; align-items: center; gap: 15px; font-size: 1.1rem; font-weight: 700; color: #fff; text-decoration: none; transition: color 0.3s; }
.contact-line:hover { color: var(--accent-red); }
.contact-line span.icon { width: 45px; height: 45px; border-radius: 50%; background: rgba(229,26,35,0.1); border: 1px solid rgba(229,26,35,0.3); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }

.bottom-form-card {
    background: rgba(15,15,17,0.8); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 45px; backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    position: relative; border-top: 6px solid var(--accent-red);
}
.bottom-form-card h3 { font-size: 1.6rem; margin-bottom: 8px; }
.bottom-form-card p { font-size: 0.85rem; color: var(--text-gray); margin-bottom: 30px; text-transform: uppercase; letter-spacing: 0.05em; }

/* FOOTER */
footer {
    padding: 60px 5% 30px; background: #070708;
    border-top: 1px solid var(--border-glass);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1300px; margin: 0 auto 40px; }
.footer-brand .logo { margin-bottom: 15px; }
.footer-brand p { color: var(--text-gray); font-size: 0.85rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 { font-size: 0.85rem; letter-spacing: 0.15em; margin-bottom: 20px; color: var(--accent-red); text-transform: uppercase; font-weight: 900; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-gray); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    text-align: center; padding-top: 30px; border-top: 1px solid var(--border-glass);
    color: var(--text-gray); font-size: 0.8rem; max-width: 1300px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 15px; align-items: center;
}
.attribution-btn {
    display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
    background: rgba(30, 30, 30, 0.8); border: 1px solid rgba(255,255,255,0.15);
    padding: 10px 24px; border-radius: 100px; color: #fff;
    font-size: 0.75rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); margin-top: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.attribution-btn span { color: var(--accent-red); font-weight: 900; }
.attribution-btn:hover { background: rgba(40, 40, 40, 0.95); color: #fff; border-color: rgba(255,255,255,0.3); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(229, 56, 59, 0.15); }

/* FLOATING */
.floating-quote {
    position: fixed; bottom: 30px; right: 30px; z-index: 90;
    background: rgba(11,11,12,0.85); border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px); padding: 14px 20px; border-radius: 50px;
    display: flex; align-items: center; gap: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    transition: transform 0.3s, box-shadow 0.3s; text-decoration: none;
    animation: floating-oscillation 3s ease-in-out infinite;
}
@keyframes floating-oscillation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.floating-quote:hover { transform: scale(1.03); }
.pulse-dot { width: 9px; height: 9px; background: #28d646; border-radius: 50%; animation: pulse 2s infinite; }
.floating-info { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; }
.floating-info span { display: block; color: var(--text-gray); font-size: 0.65rem; font-weight: 400; }

/* CUSTOM CURSOR */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--accent-red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: screen;
    filter: blur(10px);
    opacity: 0.5;
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    transform: translate(-50%, -50%);
}
.cursor-follower.active {
    width: 80px;
    height: 80px;
    opacity: 0.2;
}

/* ANIMATIONS */
@keyframes fadeInRight { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40,214,70,0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(40,214,70,0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40,214,70,0); }
}

/* MOBILE TOUCH FEEDBACK */
@media (hover: none) {
    .cta-btn:active, .next-btn:active, .form-submit:active, .reel-card:active {
        transform: scale(0.96);
        filter: brightness(1.1);
    }
}

/* STAGGERED REVEALS */
.stagger-container .fade-up:nth-child(1) { transition-delay: 0.05s; }
.stagger-container .fade-up:nth-child(2) { transition-delay: 0.15s; }
.stagger-container .fade-up:nth-child(3) { transition-delay: 0.25s; }
.stagger-container .fade-up:nth-child(4) { transition-delay: 0.35s; }
.stagger-container .fade-up:nth-child(5) { transition-delay: 0.45s; }
.stagger-container .fade-up:nth-child(6) { transition-delay: 0.55s; }

/* POP IN ANIMATION */
@keyframes popIn {
    0% { opacity: 0; transform: scale(0.85); }
    70% { transform: scale(1.02); }
    100% { opacity: 1; transform: scale(1); }
}
.pop-in { opacity: 0; }
.pop-in.visible { animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }


/* SCROLL ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(40px) scale(0.95); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0) scale(1); }

/* MAGNETIC BUTTONS */
.cta-btn, .next-btn, .form-submit {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    will-change: transform;
}

/* LIGHT SWEEP EFFECT */
.bento-card, .service-card, .hero-form-card, .bottom-form-card {
    position: relative;
    overflow: hidden;
}
.bento-card::before, .service-card::before, .hero-form-card::before, .bottom-form-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at var(--sweep-x, 50%) var(--sweep-y, 50%), rgba(255,255,255,0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 1;
}
.bento-card:hover::before, .service-card:hover::before, .hero-form-card:hover::before, .bottom-form-card:hover::before {
    opacity: 1;
}

@media (max-width: 1360px) {
    .nav-links { gap: 20px; padding: 10px 20px; }
    .nav-actions { gap: 12px; }
    .nav-call-btn, .nav-quote-btn { padding: 0 14px; }
    .nav-coordinator-pill { padding: 8px 12px; }
}

/* RESPONSIVE OVERRIDES */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; text-align: center; padding-top: 120px; gap: 60px; }
    .hero-overlay { background: linear-gradient(to bottom, rgba(11,11,12,0.95) 0%, rgba(11,11,12,0.65) 40%, rgba(11,11,12,0.65) 75%, rgba(11,11,12,0.95) 100%); }
    .hero-form-card { margin: 0 auto; order: 2; }
    .hero-copy { align-items: center; text-align: center; order: 1; margin: 0 auto; }
    .hero-subtitle { border-left: none; border-top: 2px solid var(--accent-red); padding-left: 0; padding-top: 15px; }
    .tagline { justify-content: center; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .difference-grid { grid-template-columns: 1fr; gap: 40px; }
    .gallery-col.offset { margin-top: 0; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .nav-coordinator-pill { display: none; }
    .nav-call-full { display: none; }
    .nav-call-short { display: inline; }
    .nav-quote-btn, .nav-call-btn { height: 36px; padding: 0 13px; font-size: 0.7rem; }
    .nav-actions { gap: 8px; }
    .bottom-grid { grid-template-columns: 1fr; gap: 40px; }
    .bottom-content { text-align: center; }
    .contact-line { justify-content: center; }
    .bottom-form-card { margin: 0 auto; width: 100%; }
}

@media (max-width: 768px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .bento-card { padding: 18px 15px; }
    .bento-card.wide { grid-column: span 2; }
    .bento-card p { font-size: 0.8rem; line-height: 1.4; }
    .stat-num { font-size: 2rem; margin-bottom: 4px; }
    .bento-card h3 { font-size: 0.9rem; margin-bottom: 6px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card { max-width: 100%; margin: 0; width: 100%; }
    .service-img-wrapper { height: 100px; }
    .staggered-gallery { gap: 10px; }
    .gallery-col { gap: 10px; }
    .reel-grid { gap: 15px; padding-left: 5%; }
    .reel-card { flex: 0 0 260px; }
    .testimonial-card { flex: 0 0 320px; padding: 25px 20px; margin: 0 8px; }
    .bottom-form-card { padding: 30px 20px; }
}

@media (max-width: 600px) {
    .stats-section { padding: 40px 4%; }
    .services-section, .testimonials-section, .difference-section, .video-reel-section, .bottom-form-section { padding: 60px 4%; }
    .section-title { margin-bottom: 25px; font-size: 1.8rem; }
    .stat-num { font-size: 2rem; margin-bottom: 4px; }
    .hero { padding-top: 90px; }
    .hero-form-card { padding: 20px 15px; transform: scale(0.9); margin-top: -20px; }
    .hero-title { font-size: 2.2rem; line-height: 1.1; }
    .trust-bar { flex-direction: column; align-items: center; gap: 15px; }
    .footer-grid { grid-template-columns: 1fr; }
    .partner-marquee, .reviews-marquee-container { max-width: 100vw; overflow: hidden; }
}

/* SMS CONSENT CHECKBOX STYLING */
.sms-consent-wrapper {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 15px;
    margin-bottom: 20px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: left;
}

.checkbox-container {
    position: relative;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-container .custom-checkbox {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkbox-container:hover input[type="checkbox"] ~ .custom-checkbox {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.checkbox-container input[type="checkbox"]:checked ~ .custom-checkbox {
    background-color: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: 0 0 10px var(--accent-red-glow);
}

.checkbox-container .custom-checkbox:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input[type="checkbox"]:checked ~ .custom-checkbox:after {
    display: block;
}

.checkbox-container .custom-checkbox:after {
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Red outline for keyboard focus and validation feedback */
.checkbox-container input[type="checkbox"]:focus ~ .custom-checkbox {
    border-color: var(--accent-red);
    box-shadow: 0 0 6px var(--accent-red-glow);
}

.sms-consent-label {
    font-size: 0.72rem;
    line-height: 1.45;
    color: var(--text-gray);
    font-weight: 500;
    user-select: none;
    cursor: pointer;
}

.sms-consent-label a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s;
    font-weight: 700;
}

.sms-consent-label a:hover {
    color: var(--accent-red);
    border-bottom-color: var(--accent-red);
    text-shadow: 0 0 8px var(--accent-red-glow);
}
