/* =========================================================================
   ECOMMDOTS — TESTIMONIALS — MASTER STYLESHEET
   ========================================================================= */

:root {
  /* Layout & Backgrounds */
  --bg:                #050505;
  --bg-2:              #0a0a0a;
  --bg-3:              #111111;
  --bg-light:          #f5f5f5;

  /* Brand Colors */
  --red:               #d9232d;
  --white:             #ffffff;
  --text-inverse:      #ffffff;
  --gradient-primary:  linear-gradient(135deg, #ff0044 0%, #cc0000 100%);

  /* Typography */
  --font-d:            'Bebas Neue', sans-serif;
  --font-s:            'Barlow', sans-serif;
  --font-display:      'Bebas Neue', sans-serif;
  --font-sans:         'Barlow', sans-serif;

  /* Motion & Easing */
  --ease:              cubic-bezier(0.16, 1, 0.3, 1);
  --transition:        0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0}
html { scroll-behavior:smooth; overflow-x:hidden; }
body { font-family:var(--font-s); background:var(--bg); color:var(--white); -webkit-font-smoothing:antialiased; overflow-x:hidden; }
.container { width:90%; max-width:1400px; margin:0 auto; }
a { text-decoration:none; color:inherit; }
img { display:block; max-width:100%; }


/* ── SOCIAL SIDEBAR ── */
.social-sidebar { position:fixed;right:0;top:50%;transform:translateY(-50%);display:flex;flex-direction:column;z-index:9999; }
.toggle-btn { width:52px;height:58px;background:#111;border:none;display:flex;align-items:center;justify-content:center;color:#fff;transition:background .2s; }
.toggle-btn:hover { background:#333; }
.arrow-icon { width:18px;height:18px;transition:transform .35s var(--ease); }
.social-sidebar.open .arrow-icon { transform:rotate(180deg); }
.social-links { overflow:hidden;max-height:0;transition:max-height .35s var(--ease),opacity .3s;opacity:0; }
.social-sidebar.open .social-links { max-height:200px;opacity:1; }
.social-btn { width:52px;height:58px;display:flex;align-items:center;justify-content:center;transition:filter .2s; }
.social-btn svg { width:22px;height:22px; }
.social-btn:hover { filter:brightness(1.15); }
.whatsapp-btn { background:#25D366;color:#fff; }
.email-btn    { background:#E53935;color:#fff; }

/* ─── HEADER ─────────────────────────────────────────────────────────────── */
/* ─── HEADER (STUDIO PLATINUM MONOLITH - PERMANENTLY PINNED) ─── */
.main-header {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    background: #0d0d0f; 
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    padding: 8px 16px 8px 24px; 
    z-index: 1000;
    box-shadow: 
        0 40px 80px rgba(0,0,0,0.9), 
        0 0 0 1px rgba(255,255,255,0.1),
        0 0 60px rgba(217, 35, 45, 0.25);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ─── BRAND LOGO (PURE VECTOR INTEGRATION) ────────────────────────────── */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    cursor: pointer;
}

.brand-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px; 
    height: 50px;
    position: relative;
    will-change: transform;
}

.brand-icon-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.brand-text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 2.1rem;
    letter-spacing: 0.02em;
    color: var(--text-inverse);
    line-height: 1;
    padding-top: 4px;
    transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo:hover .brand-icon-svg {
    transform: scale(1.08) rotate(4deg); 
    filter: brightness(1.15); 
}

.brand-logo:hover .brand-text {
    opacity: 0.95;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: #a0a0a0;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.nav-controls {
    display: flex;
    align-items: center;
}

/* ─── HEADER BUTTON (HIGH-CONTRAST & KINETIC ENGINE) ───────────── */
.btn-audit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    background: #ffffff; 
    border: 1px solid #ffffff; 
    border-radius: 100px;
    color: #111111; 
    font-family: var(--font-sans);
    font-size: 11px; 
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-audit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary); 
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-audit:hover {
    border-color: transparent;
    color: #ffffff; 
    box-shadow: 0 12px 30px rgba(217, 35, 45, 0.35);
    transform: translateY(-2px);
    padding-left: 32px; 
    padding-right: 24px;
}

.btn-audit:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* ─── DROPDOWN NAVIGATION ───────────── */
.nav-has-dropdown {
    position: relative;
    perspective: 1200px; 
}

.nav-drop-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-drop-trigger svg {
    width: 14px;
    height: 14px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.3s ease;
}

.nav-has-dropdown:hover .nav-drop-trigger svg {
    transform: rotate(180deg);
    stroke: var(--red);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    padding-top: 32px; 
    transform: translateX(-50%) translateY(20px) rotateX(-10deg);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 100;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) rotateX(0deg);
}

.nav-dropdown-inner {
    background: #0d0d0f; 
    border: 1px solid rgba(255, 255, 255, 0.12); 
    border-radius: 12px;
    padding: 16px; 
    min-width: 320px; 
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.8), 
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 20px 40px rgba(217, 35, 45, 0.15); 
    position: relative;
    overflow: hidden;
}

.nav-dropdown-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: var(--gradient-primary);
}

.nav-links .nav-drop-item {
    display: flex;
    flex-direction: column;
    padding: 18px 24px; 
    border-radius: 8px;
    text-transform: none;
    letter-spacing: normal;
    text-shadow: none !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links .nav-drop-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0; 
}

.nav-links .nav-drop-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0; width: 3px;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links .nav-drop-item:hover {
    background: rgba(255, 255, 255, 0.03); 
    padding-left: 32px; 
    border-radius: 8px;
    border-bottom-color: transparent;
}

.nav-links .nav-drop-item:hover::before {
    transform: scaleY(1);
}

.nd-title {
    font-family: var(--font-sans);
    font-size: 14px; 
    font-weight: 700; 
    color: #ffffff; 
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.nav-links .nav-drop-item:hover .nd-title {
    color: var(--red);
}

.nd-sub {
    font-family: var(--font-sans);
    font-size: 14.5px; 
    color: rgba(255, 255, 255, 0.6); 
    font-weight: 400;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.nav-links .nav-drop-item:hover .nd-sub {
    color: #ffffff; 
}

.nav-dropdown-inner.mega-menu {
    min-width: 720px; 
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px; 
    padding: 20px;
}

.nav-dropdown-inner.mega-menu .nav-drop-item {
    border-bottom: none !important; 
    padding: 16px 20px;
}

.nav-dropdown-inner.mega-menu .nav-drop-item:hover {
    padding-left: 28px;
}

/* ─── SOCIAL SIDEBAR OVERRIDES ─── */
.social-sidebar.open .social-links {
    max-height: 320px; /* Expanded for 4 icons */
    opacity: 1;
}
.linkedin-btn { background: #0A66C2; color: #ffffff; }
.youtube-btn { background: #FF0000; color: #ffffff; }
.facebook-btn{
    background: #1877F2;
    color: #ffffff;
}

/* ─── CALENDLY OVERRIDES ─── */
.calendly-overlay {
    background-color: rgba(5, 5, 5, 0.75) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
}
.calendly-popup {
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.1) !important;
    height: 720px !important; 
    max-height: 90vh !important;
}
.calendly-overlay, .calendly-popup, .calendly-popup-content { scrollbar-width: none !important; -ms-overflow-style: none !important; }
.calendly-overlay::-webkit-scrollbar, .calendly-popup::-webkit-scrollbar, .calendly-popup-content::-webkit-scrollbar { display: none !important; }
.calendly-close-overlay { color: #ffffff !important; opacity: 0.5 !important; transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important; }
.calendly-close-overlay:hover { opacity: 1 !important; transform: scale(1.15) !important; }

/* ─── HAMBURGER BUTTON & MOBILE NAV OVERLAY ─── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1100;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left center;
}
.hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(1px, -1px); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(1px, 1px); }

.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.98);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 80px 48px 48px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
}
.mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
}
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 400px;
}
.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: clamp(36px, 8vw, 56px);
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.04em;
    text-align: center;
    display: block;
    width: 100%;
    padding: 12px 0;
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.3s;
}
.mobile-nav-links a:hover { color: #ffffff; }
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-nav-cta { margin-top: 48px; }
.mobile-nav-cta .btn-audit { font-size: 12px; padding: 14px 32px; }

/* ─── HEADER MEDIA QUERIES ─── */
@media(max-width:1024px){
    .nav-links, .nav-controls .btn-audit { display: none; }
    .hamburger { display: flex; }
}
@media(max-width:768px){
    .main-header { top: 12px; width: 94%; padding: 10px 16px; }
    .brand-text { font-size: 1.6rem; }
    .brand-icon-wrap { width: 40px; height: 40px; }
    .social-sidebar { display: none !important; } /* Hide on mobile */
}
@media(max-width: 480px) {
    .main-header { top: 10px; width: 96%; padding: 8px 14px; }
    .brand-text { font-size: 1.4rem; }
}
/* =========================================================================
   HERO — HALL OF PROOF
   Concept: Massive vertical counter of total reviews, dramatic testimonial
   quote cuts across the screen, floating star elements, and a portrait strip.
   ========================================================================= */
.testi-hero {
  position:relative; min-height:100vh;
  display:grid; place-items:center;
  overflow:hidden; 
  padding-top:140px;
  padding-bottom:120px; /* Injected: Forces professional breathing room on shorter viewports */
  background:var(--bg);
}

/* Noise texture overlay */
.testi-hero::before {
  content:''; position:absolute; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size:200px 200px;
  opacity:.6; pointer-events:none; z-index:0;
}

/* Ambient red bloom */
.hero-bloom {
  position:absolute; border-radius:50%;
  pointer-events:none; z-index:0;
}
.bloom-1 { width:900px;height:900px;top:-200px;left:-200px;background:radial-gradient(circle,rgba(217,35,45,.06) 0%,transparent 65%); }
.bloom-2 { width:600px;height:600px;bottom:-100px;right:-100px;background:radial-gradient(circle,rgba(217,35,45,.04) 0%,transparent 70%); }

/* =========================================================================
   HERO — VERTICAL LABEL (ASYMMETRICAL VIEWPORT FRAMING)
   ========================================================================= */

.hero-v-label {
  position: absolute; 
  /* The Master Move: Shifted to the left gutter to balance the right-side social sidebar */
  left: clamp(15px, 3vw, 50px); 
  top: 50%;
  
  /* Native vertical layout, rotated to read from bottom-to-top (standard for left-margin typography) */
  writing-mode: vertical-rl; 
  transform: translateY(-50%) rotate(180deg); 
  
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5em;
  color: rgba(255, 255, 255, 0.45); /* Premium silver */
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 10;
  pointer-events: none;
  
  /* Flexbox applied to the vertical axis */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px; 
}

/* Elongated cinematic framing pillars */
.hero-v-label::before,
.hero-v-label::after {
  content: '';
  display: block;
  width: 1px;
  height: 15vh; /* Elongated to 15vh for a more dramatic structural anchor */
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}
/* Hero inner grid */
.hero-inner {
  position:relative; z-index:5;
  display:grid; grid-template-columns:1fr 1fr;
  gap:80px; align-items:center;
  width:100%; max-width:1200px;
}

/* Left: The Statement */
.hero-left { }
.hero-eyebrow {
  display:inline-flex;align-items:center;gap:12px;
  margin-bottom:32px;opacity:0;
  animation:fadeUp .8s var(--ease) .3s forwards;
}
.ey-line { width:30px;height:2px;background:var(--red); }
.ey-text { font-size:12px;font-weight:700;letter-spacing:.2em;color:var(--red);text-transform:uppercase; }

.hero-h1 {
  font-family:var(--font-d);
  font-size:clamp(70px,8vw,130px);
  line-height:.85; letter-spacing:.02em;
  color:var(--white); margin-bottom:32px;
  opacity:0; animation:fadeUp .9s var(--ease) .45s forwards;
}
.hero-h1 .red { color:var(--red); }

.hero-desc {
  font-size:18px; font-weight:300; line-height:1.75;
  color:rgba(255,255,255,.55); max-width:480px;
  margin-bottom:48px;
  opacity:0; animation:fadeUp .8s var(--ease) .6s forwards;
}

.hero-stats-row {
  display:flex; gap:48px;
  opacity:0; animation:fadeUp .8s var(--ease) .75s forwards;
}
.hstat { display:flex;flex-direction:column; }
.hstat-num { font-family:var(--font-d);font-size:56px;color:var(--white);line-height:1;letter-spacing:.02em; }
.hstat-num span { color:var(--red); }
.hstat-label { font-size:12px;font-weight:700;letter-spacing:.15em;color:rgba(255,255,255,.3);text-transform:uppercase;margin-top:4px; }

/* Right: Floating portrait mosaic */
.hero-right {
  position: relative; 
  height: 600px;
  opacity: 0; 
  animation: fadeLeft .9s var(--ease) .5s forwards;
}

/* The Cards: Premium Glass Edge & Deep Ambient Shadows */
.portrait-card {
  position: absolute; 
  border-radius: 12px; /* Smoother, more modern curve */
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08); /* Hairline glass edge */
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.9),
    inset 0 1px 1px rgba(255, 255, 255, 0.15); /* Top rim light */
  transition: border-color 0.5s ease, box-shadow 0.5s ease; 
}

/* Grayscale to full-color kinetic interaction */
.portrait-card img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: top center; 
  filter: grayscale(35%) brightness(0.85);
  transition: filter 0.7s var(--ease), transform 0.7s var(--ease);
}

.portrait-card::after {
  content: ''; 
  position: absolute; 
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(5,5,5,0.9) 100%);
  pointer-events: none;
}

/* High-End Hover State */
.portrait-card:hover {
  border-color: rgba(217, 35, 45, 0.4); /* Brand red edge bleed */
  box-shadow: 
    0 50px 100px rgba(0, 0, 0, 1),
    0 0 40px rgba(217, 35, 45, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
  z-index: 30 !important; /* Forces hovered card to the absolute front */
}
.portrait-card:hover img {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.06);
}

/* Masterfully orchestrated asymmetrical grid */
.pc-1 { width: 190px; height: 260px; top: 10px; left: 0; z-index: 1; }
.pc-2 { width: 290px; height: 390px; top: 70px; left: 150px; z-index: 4; } /* The focal point */
.pc-3 { width: 160px; height: 220px; top: 20px; right: 20px; z-index: 2; }
.pc-4 { width: 230px; height: 160px; bottom: 80px; left: -10px; z-index: 3; }
.pc-5 { width: 200px; height: 230px; bottom: 15px; right: 40px; z-index: 2; }

/* Quote badge floating over mosaic */
.hero-quote-badge {
  position: absolute; 
  bottom: -15px; 
  left: 55%; /* Shifted right to anchor the visual weight of pc-2 */
  transform: translateX(-50%);
  background: rgba(13, 13, 15, 0.75); /* Darker, richer glass */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--red);
  border-radius: 8px; 
  padding: 24px 28px;
  width: 350px; 
  z-index: 10;
  animation: floatY 6s ease-in-out infinite 1.5s;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.8), 
    0 0 40px rgba(217, 35, 45, 0.12); /* Ambient red drop shadow */
}
.hqb-quote { font-size:16px; font-weight:300; font-style:italic; color:rgba(255,255,255,.9); line-height:1.6; margin-bottom:14px; }
.hqb-author { display:flex; align-items:center; gap:12px; }
.hqb-avatar { width:38px; height:38px; border-radius:50%; object-fit:cover; border:2px solid var(--red); }
.hqb-name { font-size:13px; font-weight:700; color:var(--white); letter-spacing:.05em; }
.hqb-role { font-size:11px; color:var(--red); text-transform:uppercase; letter-spacing:.1em; font-weight:600; }
.hqb-stars { display:flex; gap:3px; margin-bottom:8px; }
.hqb-stars svg { width:14px; height:14px; fill:var(--red); }

/* =========================================================================
   SECTION UTILITY
   ========================================================================= */
.section-eyebrow { display:inline-flex;align-items:center;gap:12px; }
.section-eyebrow .ey-line { width:30px;height:2px;background:var(--red); }
.section-eyebrow .ey-text { font-size:12px;font-weight:700;letter-spacing:.2em;color:var(--red);text-transform:uppercase; }

.reveal { opacity:0;transform:translateY(40px);transition:all 1s var(--ease); }
.reveal.from-left  { transform:translateX(-50px); }
.reveal.from-right { transform:translateX(50px); }
.reveal.scale      { transform:scale(.95); }
.reveal.is-visible { opacity:1!important;transform:none!important; }
.del-1 { transition-delay:.1s; }
.del-2 { transition-delay:.2s; }
.del-3 { transition-delay:.3s; }
.del-4 { transition-delay:.4s; }

/* =========================================================================
   MARQUEE STRIP
   ========================================================================= */
.proof-strip {
  background:var(--bg-3); border-top:1px solid rgba(255,255,255,.03);
  border-bottom:2px solid var(--red); padding:18px 0;
  overflow:hidden; display:flex;
}
.proof-strip::before,.proof-strip::after {
  content:''; position:absolute;top:0;bottom:0;width:150px;z-index:2;pointer-events:none;
}
.proof-strip { position:relative; }
.proof-strip::before { left:0;background:linear-gradient(90deg,var(--bg-3),transparent); }
.proof-strip::after  { right:0;background:linear-gradient(-90deg,var(--bg-3),transparent); }
.strip-track { display:flex;gap:40px;width:max-content;align-items:center;animation:stripScroll 30s linear infinite; }
.strip-item { display:flex;align-items:center;gap:40px;white-space:nowrap; }
.strip-text { font-size:13px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:rgba(255,255,255,.35); }
.strip-dot  { width:5px;height:5px;border-radius:50%;background:var(--red); }
@keyframes stripScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* =========================================================================
   VIDEO TESTIMONIALS
   ========================================================================= */
.video-section {
  background:var(--bg-2); padding:120px 0;
  position:relative; overflow:hidden;
}
.video-section::before {
  content:''; position:absolute;top:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg,transparent,rgba(217,35,45,.5),transparent);
}

.section-header { text-align:center; margin-bottom:80px; }
.section-header h2 { font-family:var(--font-d);font-size:clamp(52px,7vw,100px);line-height:.9;letter-spacing:.02em;margin-top:12px; }
.section-header p  { font-size:18px;color:rgba(255,255,255,.45);max-width:550px;margin:20px auto 0;line-height:1.7;font-weight:300; }

/* Video carousel */
.video-carousel-wrap {
  position:relative;
  -webkit-mask-image:linear-gradient(to right,transparent 0,black 6%,black 94%,transparent 100%);
  mask-image:linear-gradient(to right,transparent 0,black 6%,black 94%,transparent 100%);
  overflow:hidden;
}
.video-track {
  display:flex; gap:28px;
  transition:transform .7s var(--ease);
  padding:20px 0;
}

.video-card {
  flex-shrink:0; width:380px;
  background:var(--bg-3);
  border:1px solid rgba(255,255,255,.06);
  border-radius:12px; overflow:hidden;
  transition:all .5s var(--ease);
  position:relative;
  box-shadow:0 10px 30px rgba(0,0,0,.4);
}
.video-card:hover {
  transform:translateY(-12px);
  border-color:rgba(217,35,45,.3);
  box-shadow:0 30px 60px rgba(0,0,0,.7),0 0 30px rgba(217,35,45,.1);
}

/* Thumbnail area */
.vc-thumb {
  position:relative; height:240px; overflow:hidden;
  background:#0a0a0a;
}
.vc-thumb img {
  width:100%;height:100%;object-fit:cover;object-position:center top;
  filter:grayscale(15%) brightness(.9);
  transition:transform .8s var(--ease),filter .5s;
}
.video-card:hover .vc-thumb img { transform:scale(1.06);filter:grayscale(0%) brightness(1); }

/* Play button */
.vc-play {
  position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  background:rgba(5,5,5,.3);
  transition:background .4s;
}
.video-card:hover .vc-play { background:rgba(5,5,5,.15); }
.vc-play-btn {
  width:64px;height:64px;border-radius:50%;
  background:rgba(217,35,45,.9);
  backdrop-filter:blur(8px);
  display:flex;align-items:center;justify-content:center;
  border:2px solid rgba(255,255,255,.3);
  transition:all .4s var(--ease);
  box-shadow:0 0 0 0 rgba(217,35,45,.4);
  animation:pulsePlay 2.5s ease-in-out infinite;
}
.video-card:hover .vc-play-btn { transform:scale(1.12);background:var(--red);box-shadow:0 10px 30px rgba(217,35,45,.5); }
.vc-play-btn svg { width:22px;height:22px;fill:#fff;margin-left:3px; }

/* Duration badge */
.vc-duration {
  position:absolute;bottom:12px;right:12px;
  background:rgba(5,5,5,.75);backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.1);
  padding:4px 10px;border-radius:4px;
  font-size:12px;font-weight:700;letter-spacing:.05em;color:#fff;
}

/* Stars on thumbnail */
.vc-stars {
  position:absolute;top:14px;left:14px;
  display:flex;gap:3px;
}
.vc-stars svg { width:13px;height:13px;fill:var(--red); }

/* Card body */
.vc-body { padding:28px 26px 30px; }
.vc-meta { font-size:11px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:rgba(255,255,255,.3);margin-bottom:12px; }
.vc-quote {
  font-size:15px;color:rgba(255,255,255,.75);line-height:1.65;font-weight:300;font-style:italic;
  margin-bottom:22px;
  border-left:2px solid rgba(217,35,45,.5); padding-left:16px;
}
.vc-author { display:flex;align-items:center;gap:14px; }
.vc-avatar { width:44px;height:44px;border-radius:50%;object-fit:cover;border:2px solid rgba(217,35,45,.4); }
.vc-name { font-weight:700;font-size:15px;color:#fff;margin-bottom:2px; }
.vc-role { font-size:11px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--red); }
.vc-platform { margin-top:4px;font-size:11px;color:rgba(255,255,255,.3);font-weight:600;letter-spacing:.05em; }

/* Carousel controls */
.carousel-controls { display:flex;align-items:center;justify-content:center;gap:16px;margin-top:56px; }
.cc-btn {
  width:52px;height:52px;border-radius:50%;
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);
  color:#fff;display:flex;align-items:center;justify-content:center;
  transition:all .4s var(--ease);
}
.cc-btn:hover { background:var(--red);border-color:var(--red);box-shadow:0 10px 24px rgba(217,35,45,.3);transform:translateY(-3px); }
.cc-btn svg { width:20px;height:20px;stroke:currentColor;stroke-width:2;fill:none; }
.cc-dots { display:flex;gap:10px;align-items:center; }
.cc-dot { width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.15);transition:all .4s var(--ease);cursor:pointer; }
.cc-dot.active { background:var(--red);width:26px;border-radius:8px;box-shadow:0 0 10px rgba(217,35,45,.5); }

/* =========================================================================
   FEATURED QUOTE — CINEMATIC BREAK
   ========================================================================= */
.featured-quote-section {
  background:var(--bg); padding:160px 0;
  position:relative; overflow:hidden;
  border-top:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.04);
}
.fq-bg-text {
  position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);
  font-family:var(--font-d);font-size:clamp(200px,25vw,380px);
  color:rgba(255,255,255,.018); white-space:nowrap;
  pointer-events:none; line-height:1; letter-spacing:.02em;
  z-index:0;
}
.fq-inner { position:relative;z-index:5;text-align:center;max-width:980px;margin:0 auto; }
.fq-quote-mark {
  font-family:Georgia,serif;font-size:240px;line-height:.7;
  color:rgba(217,35,45,.12); display:block; margin-bottom:-40px;
}
.fq-text {
  font-family:var(--font-s); font-size:clamp(24px,3.5vw,44px);
  font-weight:300; font-style:italic;
  color:rgba(255,255,255,.88); line-height:1.45; letter-spacing:-.01em;
  margin-bottom:48px;
}
.fq-text strong { color:#fff;font-weight:700;font-style:normal; }
.fq-author { display:flex;align-items:center;justify-content:center;gap:20px; }
.fq-avatar { width:64px;height:64px;border-radius:50%;object-fit:cover;border:3px solid var(--red); }
.fq-info { text-align:left; }
.fq-name { font-family:var(--font-d);font-size:28px;color:#fff;letter-spacing:.04em; }
.fq-role { font-size:13px;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:var(--red); }
.fq-stars { display:flex;gap:4px;margin-top:6px; }
.fq-stars svg { width:16px;height:16px;fill:var(--red); }

/* =========================================================================
   TEXT REVIEWS — STAGGERED MOSAIC GRID
   ========================================================================= */
.reviews-section {
  background:var(--bg-light); padding:120px 0;
  position:relative; overflow:hidden;
}
.reviews-section::before {
  content:''; position:absolute;top:0;left:0;right:0;height:2px;
  background:linear-gradient(90deg,transparent,var(--red),transparent);
}

.reviews-section .section-header h2 { color:#0a0a0a; }
.reviews-section .section-header p   { color:#666; }
.reviews-section .section-eyebrow .ey-text { color:var(--red); }

/* Masonry-like staggered grid */
.reviews-mosaic {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px; margin-top:80px;
}

.review-card {
  background:#fff;
  border:1px solid rgba(0,0,0,.07);
  border-radius:10px;
  padding:36px 32px;
  position:relative;
  transition:all .5s var(--ease);
  box-shadow:0 4px 20px rgba(0,0,0,.05);
  overflow:hidden;
  opacity:0; transform:translateY(30px);
}
.review-card.is-visible { opacity:1;transform:translateY(0); }
.review-card:hover {
  transform:translateY(-8px);
  box-shadow:0 24px 50px rgba(0,0,0,.12);
  border-color:rgba(217,35,45,.3);
}

/* Red top accent line */
.review-card::before {
  content:''; position:absolute;top:0;left:0;right:0;height:0;
  background:var(--red);transition:height .4s var(--ease);
}
.review-card:hover::before { height:3px; }

/* Featured / large card */
.review-card.featured {
  background:linear-gradient(145deg,#111,#0a0a0a);
  border-color:rgba(217,35,45,.25);
  grid-column:span 1;
  box-shadow:0 10px 40px rgba(0,0,0,.4);
}
.review-card.featured .rv-text    { color:rgba(255,255,255,.8); }
.review-card.featured .rv-name    { color:#fff; }
.review-card.featured .rv-role    { color:var(--red); }
.review-card.featured .rv-date    { color:rgba(255,255,255,.25); }
.review-card.featured .rv-quote   { color:var(--red); }
.review-card.featured::before { background:#fff; }

.rv-header { display:flex;align-items:center;justify-content:space-between;margin-bottom:24px; }
.rv-stars { display:flex;gap:4px; }
.rv-stars svg { width:15px;height:15px;fill:var(--red); }
.rv-platform-badge {
  font-size:10px;font-weight:800;letter-spacing:.15em;
  text-transform:uppercase; padding:4px 10px;
  border-radius:20px;
}
.badge-amazon  { background:rgba(255,153,0,.12);color:#FF9900; border:1px solid rgba(255,153,0,.2); }
.badge-upwork  { background:rgba(20,133,62,.12);color:#14853e; border:1px solid rgba(20,133,62,.2); }
.badge-google  { background:rgba(66,133,244,.12);color:#4285F4; border:1px solid rgba(66,133,244,.2); }
.badge-direct  { background:rgba(217,35,45,.1);color:var(--red);border:1px solid rgba(217,35,45,.2); }

.rv-quote { font-size:52px;font-family:Georgia,serif;line-height:.8;color:rgba(0,0,0,.08);margin-bottom:-8px;display:block; }
.review-card.featured .rv-quote { color:rgba(217,35,45,.12); }

.rv-text { font-size:15.5px;color:#3a3a3a;line-height:1.75;font-weight:400;margin-bottom:28px; }
.rv-author { display:flex;align-items:center;gap:14px; }
.rv-avatar { width:46px;height:46px;border-radius:50%;object-fit:cover;object-position:top;border:2px solid rgba(0,0,0,.06); }
.review-card.featured .rv-avatar { border-color:rgba(217,35,45,.4); }
.rv-name { font-weight:700;font-size:15px;color:#111;letter-spacing:.02em;margin-bottom:2px; }
.rv-role { font-size:11px;text-transform:uppercase;letter-spacing:.12em;font-weight:600;color:#888; }
.rv-date { font-size:11px;color:#bbb;margin-top:2px; }

/* =========================================================================
   RATINGS OVERVIEW PANEL
   ========================================================================= */
.ratings-overview {
  background:var(--bg-2); padding:100px 0;
  position:relative;
}
.ratings-grid { display:grid;grid-template-columns:1fr 1fr 1fr;gap:60px;align-items:center; }

/* Left: Big Score */
.ro-score-side { text-align:center; }
.ro-big-num { font-family:var(--font-d);font-size:clamp(100px,14vw,180px);line-height:.85;color:#fff;letter-spacing:.02em; }
.ro-big-num span { color:var(--red); }
.ro-total { font-size:13px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:rgba(255,255,255,.3);margin-top:8px; }
.ro-star-row { display:flex;justify-content:center;gap:6px;margin-top:16px; }
.ro-star-row svg { width:20px;height:20px;fill:var(--red); }

/* Center: Bar chart */
.ro-bars { display:flex;flex-direction:column;gap:14px; }
.ro-bar-row { display:flex;align-items:center;gap:14px; }
.ro-bar-label { font-size:13px;font-weight:700;color:rgba(255,255,255,.4);width:18px;text-align:right;flex-shrink:0; }
.ro-bar-track { flex:1;height:6px;background:rgba(255,255,255,.07);border-radius:3px;overflow:hidden; }
.ro-bar-fill { height:100%;background:var(--red);border-radius:3px;transform:scaleX(0);transform-origin:left;transition:transform 1.2s var(--ease); }
.ro-bar-fill.animated { transform:scaleX(1); }
.ro-bar-pct { font-size:12px;font-weight:700;color:rgba(255,255,255,.3);width:36px;flex-shrink:0; }

/* Right: Platform breakdown */
.ro-platforms { display:flex;flex-direction:column;gap:20px; }
.ro-platform { display:flex;align-items:center;gap:16px;padding:20px 24px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);border-radius:8px;transition:all .4s var(--ease); }
.ro-platform:hover { background:rgba(255,255,255,.06);border-color:rgba(217,35,45,.2);transform:translateX(6px); }
.ro-platform-icon { width:40px;height:40px;border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0; }
.ro-platform-info h4 { font-size:15px;font-weight:700;color:#fff;margin-bottom:2px; }
.ro-platform-info span { font-size:12px;color:rgba(255,255,255,.35);font-weight:600; }
.ro-platform-stars { display:flex;gap:3px;margin-left:auto; }
.ro-platform-stars svg { width:13px;height:13px;fill:var(--red); }

/* =========================================================================
   FINAL CTA
   ========================================================================= */
.testi-cta {
  background:linear-gradient(135deg,#a00000,#cc0000 40%,#e60000 70%,#ff2200);
  padding:120px 0; text-align:center; position:relative; overflow:hidden;
}
.testi-cta::before { content:'';position:absolute;top:-100px;left:-100px;width:500px;height:500px;border-radius:50%;background:rgba(255,255,255,.04); }
.testi-cta::after  { content:'';position:absolute;bottom:-150px;right:-150px;width:600px;height:600px;border-radius:50%;background:rgba(0,0,0,.1); }
.testi-cta-inner { position:relative;z-index:2; }
.testi-cta h2 { font-family:var(--font-d);font-size:clamp(52px,7vw,110px);color:#fff;line-height:.9;letter-spacing:.02em;margin-bottom:24px; }
.testi-cta p  { font-size:19px;color:rgba(255,255,255,.75);max-width:500px;margin:0 auto 44px;line-height:1.75;font-weight:300; }
.tcta-btn { display:inline-block;background:#fff;color:var(--red);padding:20px 52px;font-family:var(--font-s);font-size:14px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;border-radius:4px;transition:all .3s; }
.tcta-btn:hover { transform:translateY(-4px);box-shadow:0 16px 40px rgba(0,0,0,.3); }
.tcta-trust { margin-top:32px;font-size:13px;color:rgba(255,255,255,.45);display:flex;align-items:center;justify-content:center;gap:28px;flex-wrap:wrap; }
.tcta-trust span { display:inline-flex;align-items:center;gap:6px; }
.tcta-trust svg { width:14px;height:14px;fill:rgba(255,255,255,.45); }

/* ════════════════════════════════════════════════════════
   9. MILLION DOLLAR FOOTER — STUDIO LUXURY
════════════════════════════════════════════════════════ */
.footer {
    background: #030303; /* A true, void-level obsidian black */
    padding: 120px 0 0; /* Massive top breathing room */
    position: relative;
    overflow: hidden; /* Required to contain the giant text and glow */
}

/* Subtle Crimson Ambient Light emerging from the top */
.footer-glow {
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 35, 45, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.relative-z {
    position: relative;
    z-index: 2;
}

/* ─── GRID LAYOUT ─── */
.footer-grid-premium {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-desc {
    font-family: var(--font-sans);
    font-size: 15.5px;
    font-weight: 400;
    color: #8A8A93; /* Crisp slate gray */
    line-height: 1.85;
    max-width: 320px;
}

.footer-col-title {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 32px;
    position: relative;
}

/* ─── KINETIC LINK ENGINE ─── */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    color: #A1A1AA;
    text-decoration: none;
    display: inline-flex;
    width: max-content;
    position: relative;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-links a span {
    position: relative;
    padding-bottom: 4px;
}

/* The Line Draw Effect */
.footer-links a span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links a:hover span::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ─── LOCATIONS ─── */
.footer-locations {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.loc-item {
    display: flex;
    flex-direction: column;
}

.loc-item strong {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.loc-item span {
    font-family: var(--font-sans);
    font-size: 14px;
    color: #8A8A93;
    margin-top: 2px;
}

/* ─── THE MEGA-TYPOGRAPHY WATERMARK ─── */
.footer-giant-text {
    font-family: var(--font-display);
    font-size: clamp(80px, 14.5vw, 240px); /* Scales dynamically with the screen */
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: 0.02em;
    text-align: center;
    
    /* The Stealth Stroke Effect */
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
    
    user-select: none;
    pointer-events: none;
    width: 100%;
    margin: 40px 0 0 0;
    
    /* Pulls it slightly beneath the bottom grid line */
    transform: translateY(20px);
}

/* ─── THE FINAL BASELINE ─── */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 10;
    background: #030303; /* Covers the bottom of the giant text */
}

.fb-copy {
    font-family: var(--font-sans);
    font-size: 13px;
    color: #71717A;
}

.fb-legal {
    display: flex;
    gap: 32px;
}

.fb-legal a {
    font-family: var(--font-sans);
    font-size: 13px;
    color: #71717A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fb-legal a:hover {
    color: #ffffff;
}

/* Tactical Social Buttons */
.fb-socials {
    display: flex;
    gap: 12px;
}

.fb-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: #A1A1AA;
}

.fb-social-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fb-social-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(217, 35, 45, 0.2);
}

.fb-social-btn:hover svg {
    transform: scale(1.1);
}
/* ─── CHA DEVELOPER WATERMARK ─── */
.fb-copy-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.fb-watermark {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.wm-text {
    color: #555555; /* Stealth mode */
}

.wm-link {
    color: #8A8A93;
    font-weight: 800;
    text-decoration: none;
    position: relative;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* The Kinetic Signature Line */
.wm-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wm-link:hover {
    color: #ffffff; /* Ignites to pure white on hover */
}

.wm-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
/* ─── HQ DIRECT CONTACT LINKS ─── */
.loc-link {
    font-family: var(--font-sans);
    font-size: 14px;
    color: #8A8A93;
    margin-top: 4px;
    text-decoration: none;
    position: relative;
    width: max-content;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.loc-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.loc-link:hover {
    color: #ffffff;
}

.loc-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ─── FOOTER RESPONSIVE ─── */
@media(max-width: 1024px) {
    .footer-grid-premium {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    .footer-brand-col {
        grid-column: span 2;
    }
    .footer-giant-text {
        transform: translateY(10px);
    }
}

@media(max-width: 768px) {
    .footer { padding: 80px 0 0; }
    .footer-grid-premium {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .footer-brand-col {
        grid-column: span 1;
    }
    .footer-bottom-bar {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}
@media(max-width: 768px) {
    /* ... your other mobile footer rules ... */
    
    .fb-copy-wrap {
        flex-direction: column;
        gap: 12px;
    }
    
    .fb-watermark {
        padding-left: 0;
        border-left: none;
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}
/* =========================================================================
   VIDEO MODAL
   ========================================================================= */
.vid-modal-overlay {
  position:fixed;inset:0;z-index:999999;
  background:rgba(5,5,5,.92); backdrop-filter:blur(20px);
  opacity:0;pointer-events:none;
  display:flex;align-items:center;justify-content:center;
  transition:opacity .4s;
}
.vid-modal-overlay.open { opacity:1;pointer-events:auto; }
.vid-modal-box {
  background:#000;border-radius:12px;overflow:hidden;
  width:min(900px,90vw);
  box-shadow:0 50px 100px rgba(0,0,0,.9);
  transform:scale(.95);transition:transform .5s var(--ease);
  position:relative;
}
.vid-modal-overlay.open .vid-modal-box { transform:scale(1); }
.vid-modal-close {
  position:absolute;top:16px;right:16px;z-index:10;
  width:40px;height:40px;border-radius:50%;
  background:rgba(255,255,255,.1);border:none;color:#fff;
  display:flex;align-items:center;justify-content:center;
  transition:all .3s;
}
.vid-modal-close:hover { background:var(--red);transform:rotate(90deg); }
.vid-modal-close svg { width:18px;height:18px; }
.vid-iframe-wrap { position:relative;padding-top:56.25%; }
.vid-iframe-wrap iframe { position:absolute;inset:0;width:100%;height:100%;border:none; }

/* Placeholder (no actual video src) */
.vid-placeholder {
  width:100%;aspect-ratio:16/9;
  background:linear-gradient(135deg,#111,#0a0a0a);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px;
}
.vid-placeholder .vp-icon { width:72px;height:72px;background:var(--red);border-radius:50%;display:flex;align-items:center;justify-content:center; }
.vid-placeholder .vp-icon svg { width:28px;height:28px;fill:#fff;margin-left:4px; }
.vid-placeholder p { color:rgba(255,255,255,.4);font-size:14px;letter-spacing:.05em; }



/* CONTACT FROM SECTION */

/* ==========================================================================
   MILLION DOLLAR CONTACT SECTION (RED OVERDRIVE & OBSIDIAN GLASS)
   ========================================================================== */

.contact-section {
    background: linear-gradient(135deg,#a00000 0%,#cc0000 40%,#e60000 70%,#ff2200 100%);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-section::before {
    content: ''; 
    position: absolute; 
    top: -150px; 
    left: -100px; 
    width: 800px; 
    height: 800px;
    border-radius: 50%; 
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    z-index: 0;
}

.contact-section::after {
    content: ''; 
    position: absolute; 
    bottom: -200px; 
    right: -150px; 
    width: 900px; 
    height: 900px;
    border-radius: 50%; 
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
    z-index: 0;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-copy { 
    position: relative; 
}

.contact-h2 {
    font-family: var(--font-display);
    font-size: clamp(44px, 4.5vw, 76px);
    color: #ffffff; 
    letter-spacing: 0.02em;
    line-height: 0.88;
    margin-bottom: 28px;
}

.contact-h2 em { 
    font-style: normal; 
    color: #ffffff; 
    position: relative;
    display: inline-block;
}

.contact-h2 em::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.2); 
    z-index: -1;
}

.contact-lead {
    font-family: var(--font-sans);
    font-size: 18px; 
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85); 
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 90%;
}

.contact-trust { 
    display: flex; 
    flex-direction: column; 
    gap: 40px; 
}

.ct-item { 
    display: flex; 
    align-items: center; 
    gap: 24px; 
}

.ct-icon {
    width: 64px; 
    height: 64px; 
    border-radius: 50%; 
    background: #ffffff; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15); 
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.ct-item:hover .ct-icon {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ct-icon svg { 
    width: 24px; 
    height: 24px; 
    stroke: var(--red); 
    stroke-width: 1.5; 
    fill: none; 
}

.ct-text { 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}

.ct-text strong {
    font-family: var(--font-sans); 
    font-size: 15px; 
    font-weight: 800; 
    color: #ffffff; 
    display: block; 
    margin-bottom: 4px; 
    letter-spacing: 0.1em; 
    text-transform: uppercase;
}

.ct-text span {
    font-family: var(--font-sans); 
    font-size: 16px; 
    font-weight: 500; 
    color: rgba(255, 255, 255, 0.75); 
    line-height: 1.5;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.95); 
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 56px 48px;
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 40px 100px rgba(150, 0, 0, 0.4), 0 10px 40px rgba(217, 35, 45, 0.15);
}

.contact-form-card::before {
    content: ''; 
    position: absolute; 
    top: 0; left: 32px; right: 32px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.form-grid { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}
.form-row-2 { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
}
.form-group { 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
    position: relative; 
}

.form-label {
    font-family: var(--font-sans); 
    font-size: 13.5px; 
    font-weight: 600; 
    letter-spacing: 0.08em; 
    text-transform: uppercase;
    color: #111111; 
    margin-bottom: 2px; 
}

.form-input, .form-textarea, .form-select {
    background: #f4f4f6; 
    border: 1px solid #e5e7eb;
    border-radius: 6px; 
    padding: 16px 20px;
    font-family: var(--font-sans); 
    font-size: 15px; 
    font-weight: 500; 
    color: #111111;
    outline: none; 
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%; 
    -webkit-appearance: none;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: #a0a0a0; 
    font-weight: 400;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    background: #ffffff;
    border-color: var(--red); 
    box-shadow: 0 0 0 4px rgba(217, 35, 45, 0.1);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23555555' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; 
    background-position: right 18px center; 
    padding-right: 48px;
    color: #555555; 
}

.form-select option { 
    background: #ffffff; 
    color: #111111; 
}

.form-textarea { 
    resize: vertical; 
    min-height: 120px; 
    line-height: 1.6; 
}

.form-title {
    font-family: var(--font-display);
    font-size: 44px; 
    color: #111111;
    letter-spacing: 0.04em; 
    line-height: 1; 
    margin-bottom: 8px;
}

.form-subtitle {
    font-family: var(--font-sans); 
    font-size: 14.5px; 
    color: #555555; 
    margin-bottom: 32px;
    line-height: 1.6;
}

.form-checkgroup { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 12px; 
    margin-top: 4px;
}

.form-check {
    display: flex; 
    align-items: center; 
    gap: 12px;
    padding: 14px 16px;
    background: #f4f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px; 
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-check:hover { 
    border-color: var(--red); 
    background: #ffffff; 
    box-shadow: 0 4px 12px rgba(217, 35, 45, 0.06);
}

.form-check input[type="checkbox"] { 
    width: 18px; 
    height: 18px; 
    accent-color: var(--red); 
    cursor: pointer; 
}

.form-check-label {
    font-family: var(--font-sans); 
    font-size: 13.5px; 
    font-weight: 600;
    color: #111111; 
    cursor: pointer; 
    transition: color 0.3s ease;
}

.form-check:hover .form-check-label { 
    color: var(--red); 
}

.form-submit {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  width: 100%; padding: 22px 40px; margin-top: 28px;
  background: var(--red); color: #fff;
  font-family: var(--font-sans); font-size: 14px; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase;
  border: none; border-radius: 8px; cursor: pointer;
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 16px 40px rgba(217,35,45,0.3);
}
.form-submit::before {
  content: ''; position: absolute; inset: 0;
  background: var(--red-dark); transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.form-submit:hover::before { transform: translateX(0); }
.form-submit:hover { transform: translateY(-3px); box-shadow: 0 24px 50px rgba(217,35,45,0.4); }
.form-submit span, .form-submit svg { position: relative; z-index: 1; }
.form-submit svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2.5; transition: transform 0.4s ease; }
.form-submit:hover svg { transform: translateX(6px); }

.form-fine {
    font-family: var(--font-sans); 
    font-size: 12.5px;
    color: #888888;
    text-align: center; 
    margin-top: 20px; 
    line-height: 1.6;
}

.form-success { 
    display: none; 
    text-align: center; 
    padding: 48px 0; 
}

.form-success.show { 
    display: block; 
    animation: scaleIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; 
}

.form-success-icon {
    width: 72px; 
    height: 72px; 
    border-radius: 50%;
    background: rgba(217, 35, 45, 0.1); 
    border: 1px solid rgba(217, 35, 45, 0.3);
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 28px;
}

.form-success-icon svg { 
    width: 32px; 
    height: 32px; 
    fill: var(--red); 
}

.form-success h3 {
    font-family: var(--font-display); 
    font-size: 44px; 
    color: #111111;
    letter-spacing: 0.04em; 
    margin-bottom: 16px; 
    line-height: 1;
}

.form-success p { 
    font-family: var(--font-sans); 
    font-size: 18px; 
    color: #555555; 
    line-height: 1.75; 
}

/* ══════════════════════════════════════════════════════
   CONTACT & FORM: HIGH-DENSITY RESPONSIVE MATRIX
   Desktop Base CSS remains 100% untouched.
══════════════════════════════════════════════════════ */

/* ─── 1024px: Tablets (Macro Layout Collapse) ─── */
@media (max-width: 1024px) {
    .contact-section { padding: 100px 0; }
    
    .contact-inner { grid-template-columns: 1fr; gap: 64px; }
    
    .contact-copy { 
        text-align: center; 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
    }
    .contact-lead { max-width: 600px; margin: 0 auto 40px; }
    
    .contact-trust { 
        flex-direction: row; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 32px; 
    }
    .ct-item { 
        flex-direction: column; 
        text-align: center; 
        gap: 16px; 
    }
}

/* ─── 768px: Mobile Landscape & Form Row Collapse ─── */
@media (max-width: 768px) {
    .contact-section { padding: 80px 0; }
    .contact-h2 { font-size: 48px !important; margin-bottom: 24px; line-height: 1.1; }
    
    .form-title { font-size: 36px; text-align: center; }
    .form-subtitle { text-align: center; }
    
    .contact-form-card { padding: 40px 32px; }
    
    .form-row-2 { grid-template-columns: 1fr; gap: 16px; }
    .form-grid { gap: 16px; }
}

/* ─── 480px: Small Phones (The Million-Dollar Density Engine) ─── */
@media (max-width: 480px) {
    .contact-section { padding: 60px 0; }
    .contact-h2 { font-size: 40px !important; }
    
    .contact-form-card { 
        padding: 32px 20px; 
        border-radius: 8px; 
    }
    .form-title { font-size: 28px; margin-bottom: 6px; }
    .form-subtitle { font-size: 13px; margin-bottom: 24px; }
    
    .form-input, .form-textarea, .form-select {
        padding: 14px 16px;
        font-size: 14px;
    }
    .form-textarea { min-height: 100px; }
    
    .form-checkgroup {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .form-check {
        width: calc(50% - 4px); 
        padding: 12px 10px;
        gap: 8px;
    }
    .form-check-label { font-size: 11.5px; }
    .form-check input[type="checkbox"] { width: 16px; height: 16px; }
    
    .form-submit {
        padding: 18px 24px;
        font-size: 13px;
        margin-top: 16px;
    }
}

/* ══════════════════════════════════════════════════════
   MOBILE FIX: PREMIUM FOOTER CENTER ALIGNMENT
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* 1. Center the Brand Identity */
    .footer-brand-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-brand-col .brand-logo {
        justify-content: center;
    }
    .footer-desc {
        margin: 0 auto; /* Optically centers the restricted max-width paragraph */
    }

    /* 2. Center the Navigation Columns */
    .footer-nav-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-links {
        align-items: center;
    }

    /* 3. Center the Corporate HQ Locations */
    .footer-locations {
        align-items: center;
    }
    .loc-item {
        align-items: center;
        text-align: center;
    }

    /* 4. Center the Bottom Baseline Elements */
    .fb-legal {
        justify-content: center;
        flex-wrap: wrap; /* Ensures legal links don't break on tiny screens */
    }
    .fb-socials {
        justify-content: center;
    }

    /* 5. THE MILLION DOLLAR POLISH: Center-Origin Hover Sweeps */
    /* Forces the red line to expand outward from the middle to match the centered layout */
    .footer-links a span::after,
    .loc-link::after,
    .wm-link::after {
        transform-origin: center !important; 
    }
    .footer-links a:hover span::after,
    .loc-link:hover::after,
    .wm-link:hover::after {
        transform-origin: center !important;
    }
}
/* ══════════════════════════════════════════════════════
   MOBILE FIX: CONTACT ITEMS SINGLE COLUMN STACK
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* 1. Force the container into a strict vertical column */
    .contact-trust { 
        flex-direction: column !important; 
        align-items: center !important; 
        gap: 48px !important; /* Premium breathing room between items */
        width: 100%;
    }
    
    /* 2. Center each individual item perfectly */
    .ct-item { 
        flex-direction: column !important; /* Keeps the icon stacked above the text */
        text-align: center !important; 
        width: 100%;
        max-width: 320px; /* Optically traps the text so it doesn't span too wide */
        gap: 16px !important; 
    }
    
    /* 3. Micro-scale the icons for mobile elegance */
    .ct-icon {
        width: 56px !important;
        height: 56px !important;
    }
    
    .ct-icon svg {
        width: 20px !important;
        height: 20px !important;
    }
}



/* =========================================================================
   KEYFRAMES
   ========================================================================= */
@keyframes fadeUp { 0%{opacity:0;transform:translateY(40px)} 100%{opacity:1;transform:translateY(0)} }
@keyframes fadeLeft { 0%{opacity:0;transform:translateX(60px)} 100%{opacity:1;transform:translateX(0)} }
@keyframes floatY { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-12px)} }
@keyframes scrollDrop { 0%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(20px)} }
@keyframes pulsePlay { 0%,100%{box-shadow:0 0 0 0 rgba(217,35,45,.4)} 50%{box-shadow:0 0 0 12px rgba(217,35,45,0)} }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media(max-width:1100px) {
  .hero-inner { grid-template-columns:1fr;text-align:center; }
  .hero-desc { margin:0 auto 48px; }
  .hero-stats-row { justify-content:center; }
  .hero-right { display:none; }
  .hero-v-label { display:none; }
  .ratings-grid { grid-template-columns:1fr 1fr; }
  .ro-score-side { grid-column:span 2;border-bottom:1px solid rgba(255,255,255,.05);padding-bottom:40px; }
}
@media(max-width:900px) {
  .reviews-mosaic { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr 1fr;gap:40px; }
  .nav-links { display:none; }
}
@media(max-width:640px) {
  .reviews-mosaic { grid-template-columns:1fr; }
  .ratings-grid { grid-template-columns:1fr; }
  .ro-score-side { grid-column:span 1; }
  .footer-grid { grid-template-columns:1fr; }
  .hero-stats-row { gap:28px; }
  .hstat-num { font-size:44px; }
}




















/* ══════════════════════════════════════════════════════
   ADMIN COMMAND CENTER (CMS STYLES)
══════════════════════════════════════════════════════ */
.admin-fab { position:fixed;bottom:32px;right:32px;width:64px;height:64px;border-radius:50%;background:var(--red);color:#fff;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:5000;box-shadow:0 8px 32px rgba(217,35,45,0.5);transition:all 0.4s var(--ease);animation:pulsePlay 3s ease-in-out infinite; }
.admin-fab:hover { transform:scale(1.1) rotate(15deg);box-shadow:0 16px 48px rgba(217,35,45,0.6); }
.admin-fab svg { width:24px;height:24px;fill:none;stroke:#fff;stroke-width:2.5; }
.admin-fab-label { position:absolute;right:70px;background:#111;color:#fff;font-family:var(--font-sans);font-size:11px;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;padding:6px 12px;border-radius:4px;white-space:nowrap;opacity:0;pointer-events:none;transition:opacity 0.3s ease; }
.admin-fab:hover .admin-fab-label { opacity:1; }

.admin-overlay { position:fixed;inset:0;background:rgba(5,5,5,0.85);backdrop-filter:blur(8px);z-index:5001;display:flex;align-items:center;justify-content:center;padding:24px;opacity:0;pointer-events:none;transition:opacity 0.4s ease; }
.admin-overlay.open { opacity:1;pointer-events:auto; }
.admin-panel { background:#0d0d0f;border:1px solid rgba(255,255,255,0.1);border-radius:20px;width:100%;max-width:900px;max-height:90vh;display:flex;flex-direction:column;box-shadow:0 50px 100px rgba(0,0,0,0.8);transform:scale(0.95) translateY(20px);transition:transform 0.4s var(--ease); }
.admin-overlay.open .admin-panel { transform:scale(1) translateY(0); }
.admin-header { padding:28px 36px;border-bottom:1px solid rgba(255,255,255,0.07);display:flex;align-items:center;justify-content:space-between; }
.admin-title { font-family:var(--font-d);font-size:28px;color:#fff;letter-spacing:0.04em; }
.admin-subtitle { font-family:var(--font-sans);font-size:13px;color:#555;margin-top:2px; }
.admin-close { width:40px;height:40px;border-radius:8px;background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.08);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all 0.3s ease; }
.admin-close:hover { background:rgba(217,35,45,0.2);border-color:rgba(217,35,45,0.3); }
.admin-close svg { width:18px;height:18px;stroke:#aaa;fill:none;stroke-width:2.5; }
.admin-body { flex:1;overflow-y:auto;padding:28px 36px; }

.admin-add-btn { display:flex;align-items:center;gap:10px;background:rgba(217,35,45,0.1);border:1px dashed rgba(217,35,45,0.4);border-radius:12px;padding:18px 24px;width:100%;cursor:pointer;transition:all 0.3s ease;margin-bottom:24px;font-family:var(--font-sans);font-size:13px;font-weight:700;letter-spacing:0.1em;color:var(--red); }
.admin-add-btn:hover { background:rgba(217,35,45,0.15);border-color:var(--red); }
.admin-add-btn svg { width:18px;height:18px;stroke:var(--red);fill:none;stroke-width:2.5; }

.admin-job-item { background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.07);border-radius:12px;padding:20px 24px;display:flex;align-items:center;gap:16px;margin-bottom:12px; }
.admin-job-drag { color:#333;cursor:grab;padding:4px; }
.admin-job-info { flex:1; }
.admin-job-title { font-family:var(--font-sans);font-size:15px;font-weight:700;color:#fff;margin-bottom:4px; }
.admin-job-meta { font-family:var(--font-sans);font-size:12px;color:#555; }
.toggle-switch { appearance:none;width:44px;height:24px;background:#222;border-radius:12px;cursor:pointer;position:relative;border:1px solid rgba(255,255,255,0.1);outline:none; }
.toggle-switch::before { content:'';position:absolute;top:3px;left:3px;width:16px;height:16px;border-radius:50%;background:#555;transition:all 0.3s ease; }
.toggle-switch:checked { background:rgba(217,35,45,0.3);border-color:var(--red); }
.toggle-switch:checked::before { left:23px;background:var(--red); }
.admin-job-actions { display:flex;gap:8px; }
.admin-btn-icon { width:36px;height:36px;border-radius:8px;border:1px solid rgba(255,255,255,0.1);background:transparent;cursor:pointer;display:flex;align-items:center;justify-content:center; }
.admin-btn-icon svg { width:15px;height:15px;stroke:#555;fill:none;stroke-width:2; }
.admin-btn-icon.edit:hover { background:rgba(59,130,246,0.15);border-color:rgba(59,130,246,0.4); }
.admin-btn-icon.edit:hover svg { stroke:#3b82f6; }
.admin-btn-icon.delete:hover { background:rgba(217,35,45,0.15);border-color:rgba(217,35,45,0.4); }
.admin-btn-icon.delete:hover svg { stroke:var(--red); }

/* Edit Form */
.edit-form-overlay { position:fixed;inset:0;background:rgba(5,5,5,0.9);backdrop-filter:blur(10px);z-index:6000;display:flex;align-items:center;justify-content:center;padding:24px;opacity:0;pointer-events:none;transition:opacity 0.3s ease; }
.edit-form-overlay.open { opacity:1;pointer-events:auto; }
.edit-form-panel { background:#0d0d0f;border:1px solid rgba(255,255,255,0.1);border-radius:20px;width:100%;max-width:640px;padding:40px;box-shadow:0 50px 100px rgba(0,0,0,0.8); }
.edit-form-title { font-family:var(--font-d);font-size:28px;color:#fff;letter-spacing:0.04em;margin-bottom:32px; }
.form-label { display:block;font-family:var(--font-sans);font-size:11px;font-weight:800;letter-spacing:0.15em;text-transform:uppercase;color:#555;margin-bottom:8px; }
.form-control { width:100%;background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.1);border-radius:8px;padding:14px 18px;font-family:var(--font-sans);font-size:14px;color:#fff;outline:none; }
.form-control:focus { border-color:var(--red); }
textarea.form-control { min-height:100px;resize:vertical; }
select.form-control option { background:#111; }
.edit-form-actions { display:flex;gap:12px;justify-content:flex-end;margin-top:28px;padding-top:24px;border-top:1px solid rgba(255,255,255,0.07); }
.btn-cancel { padding:12px 28px;border-radius:8px;background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.1);color:#888;font-weight:700;cursor:pointer; }
.btn-save { padding:12px 32px;border-radius:8px;background:var(--red);border:none;color:#fff;font-weight:700;cursor:pointer;box-shadow:0 8px 20px rgba(217,35,45,0.3); }









/* ══════════════════════════════════════════════════════
   MAIN PAGE: LOCKED GRID & FADE TEASER
══════════════════════════════════════════════════════ */
.reviews-grid-wrapper {
  position: relative;
  max-height: 850px; /* Permanently locks the main page grid to ~2 rows */
  overflow: hidden;
}

.reviews-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 350px;
  background: linear-gradient(to bottom, rgba(245,245,245,0) 0%, rgba(245,245,245,1) 85%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  z-index: 10;
}

.reviews-grid-wrapper.no-fade { max-height: none !important; }
.reviews-grid-wrapper.no-fade .reviews-fade { display: none !important; }

/* THEATER MODE BUTTON */
.btn-load-more {
  display: inline-flex; align-items: center; gap: 10px;
  background: #0a0a0a; color: #fff; padding: 16px 40px; border-radius: 100px;
  font-family: var(--font-sans); font-size: 12px; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; border: 1px solid rgba(0,0,0,0.1);
  cursor: pointer; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.btn-load-more:hover { background: var(--red); border-color: var(--red); transform: translateY(-4px); box-shadow: 0 15px 40px rgba(217,35,45,0.3); }
.btn-load-more svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2.5; transition: transform 0.3s ease; }
.btn-load-more:hover svg { transform: translateX(4px); } /* Sideways kinetic motion */

/* ══════════════════════════════════════════════════════
   THEATER MODE: FULL-SCREEN VAULT OVERLAY
══════════════════════════════════════════════════════ */
.review-vault-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(5,5,5,0.95); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex; justify-content: center;
}

.review-vault-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }

.review-vault-container {
  width: 100%; max-width: 1400px; height: 100vh;
  display: flex; flex-direction: column; padding: 40px 5% 0;
}

.rv-vault-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); flex-shrink: 0;
}

.rv-vault-title {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 44px); color: #fff; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.rv-vault-title span {
  font-family: var(--font-sans); font-size: 11px; font-weight: 800; letter-spacing: 0.2em;
  color: var(--red); background: rgba(217,35,45,0.1); padding: 6px 12px; border-radius: 100px; border: 1px solid rgba(217,35,45,0.2);
}

.rv-vault-close {
  width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; flex-shrink: 0;
}
.rv-vault-close:hover { background: var(--red); border-color: var(--red); transform: rotate(90deg); }
.rv-vault-close svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2; fill: none; }

/* The internal scrolling grid */
.rv-vault-grid {
  flex: 1; overflow-y: auto; padding: 40px 0 100px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  scrollbar-width: none; /* Hide scrollbar Firefox */
}
.rv-vault-grid::-webkit-scrollbar { display: none; } /* Hide scrollbar Chrome/Safari */

/* Ensure dark cards look good in the dark vault */
.review-vault-overlay .review-card { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.08); }
.review-vault-overlay .review-card .rv-text { color: rgba(255,255,255,0.7); }
.review-vault-overlay .review-card .rv-name { color: #fff; }

@media (max-width: 1024px) {
  .rv-vault-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid-wrapper { max-height: 900px; }
}
@media (max-width: 640px) {
  .rv-vault-grid { grid-template-columns: 1fr; }
  .rv-vault-title { font-size: 28px; gap: 8px; }
  .review-vault-container { padding: 24px 20px 0; }
}

/* ══════════════════════════════════════════════════════
   THEATER MODE: MILLION-DOLLAR TEXT CONTRAST OVERRIDES
══════════════════════════════════════════════════════ */
.review-vault-overlay .review-card {
  background: linear-gradient(145deg, #111, #0a0a0a) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Force paragraph text to bright silver */
.review-vault-overlay .review-card .rv-text {
  color: rgba(255, 255, 255, 0.85) !important; 
}

/* Force names to pure white */
.review-vault-overlay .review-card .rv-name {
  color: #ffffff !important;
}

/* Force roles to brand red */
.review-vault-overlay .review-card .rv-role {
  color: var(--red) !important;
}

/* Force the giant background quote mark to be visible */
.review-vault-overlay .review-card .rv-quote {
  color: rgba(217, 35, 45, 0.15) !important; 
}

/* Ensure avatar borders look premium in the dark */
.review-vault-overlay .review-card .rv-avatar {
  border-color: var(--red) !important;
}
/* ══════════════════════════════════════════════════════
   THEATER MODE: NUCLEAR TEXT VISIBILITY OVERRIDES
══════════════════════════════════════════════════════ */
.review-vault-overlay .review-card {
  background: linear-gradient(145deg, #111, #0a0a0a) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  height: max-content !important; /* Prevents cards from clipping content */
}

/* Force paragraph text to bright silver */
.review-vault-overlay .review-card .rv-text {
  color: rgba(255, 255, 255, 0.85) !important; 
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Force names to pure white */
.review-vault-overlay .review-card .rv-name {
  color: #ffffff !important;
  display: block !important;
}

/* Force roles to brand red */
.review-vault-overlay .review-card .rv-role {
  color: var(--red) !important;
  display: block !important;
}

/* Force the giant background quote mark to be visible */
.review-vault-overlay .review-card .rv-quote {
  color: rgba(217, 35, 45, 0.25) !important; 
  display: block !important;
}

/* Ensure the author row layout remains intact */
.review-vault-overlay .review-card .rv-author {
  display: flex !important;
  align-items: center !important;
}

.review-vault-overlay .review-card .rv-avatar {
  border-color: var(--red) !important;
  display: block !important;
}