/* =============================================================
   XLNC VISA & TRAVEL CONSULTANTS — DESIGN SYSTEM
   Palette: Navy #0F2A52 · Gold #C79A3B · White #FFFFFF
            Light BG #F7F8FC · Dark Text #222222
   Type: Poppins (display/headings) · Open Sans (body)
   Signature motif: the boarding-pass stub — a dashed perforation
   with a punched circle, used on cards to root the whole system
   in the world of travel documents without leaning on cliché
   airplane iconography.
   ============================================================= */

:root{
  --navy: #0F2A52;
  --navy-deep: #081832;
  --gold: #C79A3B;
  --gold-soft: #E4C888;
  --white: #FFFFFF;
  --bg-light: #F7F8FC;
  --bg-tint: #EDF0F8;
  --text-dark: #222222;
  --text-muted: #5B6472;
  --line: #DEE3EE;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-soft: 0 10px 30px -12px rgba(15,42,82,0.18);
  --shadow-card: 0 6px 20px -8px rgba(15,42,82,0.14);
  --container: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text-dark);
  background:var(--white);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--navy);
  margin:0 0 .5em;
  line-height:1.18;
  font-weight:700;
}
p{ margin:0 0 1em; color:var(--text-muted); }
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 32px;
}
section{ padding:96px 0; }
@media (max-width:768px){
  section{ padding:64px 0; }
  .container{ padding:0 20px; }
}

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

/* -------- eyebrow / labels -------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:12.5px;
  letter-spacing:2.2px;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:16px;
}
.eyebrow::before{
  content:"";
  width:26px;
  height:2px;
  background:var(--gold);
  display:inline-block;
}
.section-head{
  max-width:640px;
  margin:0 0 56px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(28px,3.4vw,38px); }

/* -------- buttons -------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:14.5px;
  letter-spacing:.3px;
  padding:15px 30px;
  border-radius:999px;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn-primary{
  background:var(--gold);
  color:var(--navy-deep);
  box-shadow:0 10px 24px -10px rgba(199,154,59,.65);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 14px 28px -10px rgba(199,154,59,.75); }
.btn-outline{
  background:transparent;
  border-color:rgba(255,255,255,.55);
  color:var(--white);
}
.btn-outline:hover{ background:rgba(255,255,255,.12); border-color:var(--white); }
.btn-outline-navy{
  background:transparent;
  border-color:var(--navy);
  color:var(--navy);
}
.btn-outline-navy:hover{ background:var(--navy); color:var(--white); }
.btn-block{ width:100%; }

/* -------- header -------- */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
}
.logo{
  font-family:var(--font-display);
  font-weight:700;
  font-size:21px;
  color:var(--navy);
  display:flex;
  align-items:center;
  gap:10px;
  letter-spacing:.2px;
}
.logo img{
  height:46px;
  width:auto;
  display:block;
}
.logo .mark{
  width:38px;height:38px;
  border-radius:10px;
  background:linear-gradient(145deg,var(--navy),var(--navy-deep));
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);
  font-size:16px;
  font-weight:700;
}
.logo .sub{
  display:block;
  font-family:var(--font-body);
  font-weight:600;
  font-size:10.5px;
  letter-spacing:1.6px;
  color:var(--gold);
  text-transform:uppercase;
  margin-top:1px;
}
.footer-grid .logo img{
  height:44px;
  background:var(--white);
  padding:8px 14px;
  border-radius:10px;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:34px;
}
.nav-links a{
  font-family:var(--font-display);
  font-size:14.5px;
  font-weight:600;
  color:var(--navy);
  position:relative;
  padding:6px 0;
}
.nav-links a.active,.nav-links a:hover{ color:var(--gold); }
.nav-cta{ display:flex; align-items:center; gap:18px; }
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;border:none;cursor:pointer;padding:6px;
}
.nav-toggle span{ width:24px; height:2px; background:var(--navy); }

@media (max-width:960px){
  .nav-links{
    position:absolute; top:100%; left:0; right:0;
    background:var(--white);
    flex-direction:column;
    align-items:flex-start;
    padding:20px 24px 28px;
    gap:16px;
    border-bottom:1px solid var(--line);
    display:none;
  }
  .nav-links.open{ display:flex; }
  .nav-toggle{ display:flex; }
  .nav-cta .btn{ padding:12px 20px; font-size:13px; }
  .logo img{ height:36px; }
}

/* -------- hero -------- */
.hero{
  background:var(--bg-light);
  overflow:hidden;
  position:relative;
}
.hero .container{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:64px;
  align-items:center;
  padding-top:80px;
  padding-bottom:80px;
}
.hero h1{
  font-size:clamp(34px,4.6vw,54px);
  margin-bottom:22px;
}
.hero p.lead{ font-size:17px; max-width:480px; margin-bottom:34px; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }
.hero-visual{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  aspect-ratio:4/4.6;
}
.hero-visual img{ width:100%; height:100%; object-fit:cover; }
.hero-badge{
  position:absolute;
  left:-28px; bottom:32px;
  background:var(--white);
  border-radius:var(--radius-md);
  padding:18px 22px;
  box-shadow:var(--shadow-card);
  display:flex;
  align-items:center;
  gap:14px;
  max-width:230px;
}
.hero-badge .stamp{
  width:46px;height:46px;border-radius:50%;
  background:var(--navy);
  color:var(--gold);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display); font-weight:700; font-size:13px;
  border:2px dashed var(--gold-soft);
  flex-shrink:0;
}
.hero-badge strong{ display:block; color:var(--navy); font-family:var(--font-display); font-size:14px; }
.hero-badge span{ font-size:12.5px; color:var(--text-muted); }

@media (max-width:900px){
  .hero .container{ grid-template-columns:1fr; padding-top:48px; }
  .hero-visual{ order:-1; aspect-ratio:16/10; }
  .hero-badge{ left:16px; bottom:-24px; }
}

/* -------- page header banner (inner pages) -------- */
.page-banner{
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy-deep) 100%);
  padding:74px 0 64px;
  position:relative;
}
.page-banner .eyebrow{ color:var(--gold-soft); }
.page-banner .eyebrow::before{ background:var(--gold-soft); }
.page-banner h1{ color:var(--white); font-size:clamp(30px,4vw,44px); margin-bottom:14px; }
.page-banner p{ color:rgba(255,255,255,.72); max-width:560px; }
.breadcrumb{
  font-family:var(--font-display);
  font-size:13px;
  font-weight:600;
  color:rgba(255,255,255,.6);
  margin-bottom:18px;
  letter-spacing:.3px;
}
.breadcrumb span{ color:var(--gold-soft); }

/* -------- icon cards (why choose us) -------- */
.icon-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.icon-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:32px 28px;
  transition:box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.icon-card:hover{ box-shadow:var(--shadow-card); transform:translateY(-4px); border-color:transparent; }
.icon-card .ic{
  width:52px;height:52px;
  border-radius:14px;
  background:var(--bg-tint);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:20px;
  color:var(--navy);
}
.icon-card h3{ font-size:17.5px; margin-bottom:8px; }
.icon-card p{ font-size:14.5px; margin:0; }

@media (max-width:900px){ .icon-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .icon-grid{ grid-template-columns:1fr; } }

/* -------- services: boarding-pass stub cards (signature) -------- */
.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
}
.stub-card{
  position:relative;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:30px 26px 26px;
  overflow:hidden;
  transition:transform .2s ease, box-shadow .2s ease;
}
.stub-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-card); }
.stub-card::before{
  /* perforation row referencing a torn ticket stub */
  content:"";
  position:absolute;
  left:0; right:0; bottom:58px;
  height:0;
  border-top:2px dashed var(--line);
}
.stub-card::after{
  content:"";
  position:absolute;
  right:-9px; bottom:49px;
  width:18px; height:18px;
  border-radius:50%;
  background:var(--bg-light);
  border:1px solid var(--line);
}
.stub-card .num{
  font-family:var(--font-display);
  font-size:12px;
  font-weight:700;
  color:var(--gold);
  letter-spacing:1.5px;
  margin-bottom:14px;
  display:block;
}
.stub-card h3{ font-size:17px; margin-bottom:64px; }
.stub-card .tag{
  font-family:var(--font-display);
  font-size:11.5px;
  font-weight:600;
  color:var(--text-muted);
  letter-spacing:1px;
  text-transform:uppercase;
}
.stub-card .tag strong{ color:var(--navy); font-weight:700; }

@media (max-width:960px){ .services-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .services-grid{ grid-template-columns:1fr; } }

/* -------- process (a real 5-step sequence: numbering earned) -------- */
.process-strip{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:0;
  position:relative;
}
.process-strip::before{
  content:"";
  position:absolute;
  top:26px; left:6%; right:6%;
  height:2px;
  background:repeating-linear-gradient(to right,var(--gold-soft) 0 8px, transparent 8px 16px);
  z-index:0;
}
.process-step{
  position:relative;
  z-index:1;
  text-align:center;
  padding:0 16px;
}
.process-step .step-num{
  width:54px;height:54px;
  border-radius:50%;
  background:var(--navy);
  color:var(--gold-soft);
  font-family:var(--font-display); font-weight:700; font-size:18px;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 18px;
  border:3px solid var(--white);
  box-shadow:0 0 0 2px var(--line);
}
.process-step h4{ font-size:15.5px; margin-bottom:8px; color:var(--navy); font-family:var(--font-display); }
.process-step p{ font-size:13.5px; margin:0; }

@media (max-width:900px){
  .process-strip{ grid-template-columns:1fr 1fr; gap:36px 20px; }
  .process-strip::before{ display:none; }
}
@media (max-width:560px){ .process-strip{ grid-template-columns:1fr; } }

/* -------- testimonials -------- */
.testi-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.testi-card{
  background:var(--bg-light);
  border-radius:var(--radius-md);
  padding:32px 28px;
  position:relative;
}
.testi-card .quote-mark{
  font-family:var(--font-display);
  font-size:46px;
  color:var(--gold-soft);
  line-height:1;
  margin-bottom:6px;
  display:block;
}
.testi-card p{ font-size:14.5px; color:var(--text-dark); margin-bottom:20px; }
.testi-person{ display:flex; align-items:center; gap:12px; }
.testi-avatar{
  width:42px;height:42px;border-radius:50%;
  background:var(--navy);
  color:var(--gold-soft);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display); font-weight:700; font-size:14px;
}
.testi-person strong{ display:block; font-size:14px; color:var(--navy); font-family:var(--font-display); }
.testi-person span{ font-size:12.5px; color:var(--text-muted); }
.stars{ color:var(--gold); font-size:13px; margin-bottom:10px; letter-spacing:2px; }

@media (max-width:900px){ .testi-grid{ grid-template-columns:1fr; } }

/* -------- FAQ accordion -------- */
.faq-list{ max-width:820px; margin:0 auto; }
.faq-item{
  border-bottom:1px solid var(--line);
}
.faq-q{
  width:100%;
  background:none; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between;
  padding:22px 4px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:15.5px;
  color:var(--navy);
  text-align:left;
  gap:20px;
}
.faq-q .plus{
  flex-shrink:0;
  width:26px;height:26px;
  border-radius:50%;
  border:1.5px solid var(--gold);
  color:var(--gold);
  display:flex;align-items:center;justify-content:center;
  font-size:16px;
  transition:transform .25s ease;
}
.faq-item.open .faq-q .plus{ transform:rotate(45deg); }
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}
.faq-a p{ padding:0 34px 22px 4px; font-size:14.5px; margin:0; }

/* -------- contact banner -------- */
.contact-banner{
  background:linear-gradient(120deg,var(--navy) 0%, var(--navy-deep) 100%);
  border-radius:var(--radius-lg);
  padding:56px 60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
  position:relative;
  overflow:hidden;
}
.contact-banner::after{
  content:"";
  position:absolute;
  right:-40px; top:-40px;
  width:220px; height:220px;
  border:2px dashed rgba(199,154,59,.35);
  border-radius:50%;
}
.contact-banner h2{ color:var(--white); margin-bottom:6px; font-size:26px; }
.contact-banner p{ color:rgba(255,255,255,.68); margin:0; }

/* -------- footer -------- */
.site-footer{
  background:var(--navy-deep);
  color:rgba(255,255,255,.7);
  padding-top:72px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:48px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-grid h4{
  color:var(--white);
  font-size:14.5px;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:20px;
}
.footer-grid .logo{ color:var(--white); margin-bottom:16px; }
.footer-grid p{ color:rgba(255,255,255,.55); font-size:14px; max-width:280px; }
.footer-grid ul li{ margin-bottom:12px; }
.footer-grid ul li a{ font-size:14px; color:rgba(255,255,255,.65); transition:color .18s; }
.footer-grid ul li a:hover{ color:var(--gold-soft); }
.footer-contact li{ display:flex; gap:10px; font-size:14px; color:rgba(255,255,255,.65); align-items:flex-start; }
.footer-contact li svg{ flex-shrink:0; margin-top:3px; color:var(--gold); }
.social-row{ display:flex; gap:10px; margin-top:20px; }
.social-row a{
  width:36px;height:36px;border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  display:flex;align-items:center;justify-content:center;
  transition:background .2s, border-color .2s;
}
.social-row a:hover{ background:var(--gold); border-color:var(--gold); color:var(--navy-deep); }
.footer-bottom{
  padding:22px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  font-size:13px;
  color:rgba(255,255,255,.45);
}
.footer-bottom a{ color:rgba(255,255,255,.55); }
.footer-bottom a:hover{ color:var(--gold-soft); }

@media (max-width:900px){
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .contact-banner{ padding:40px 28px; flex-direction:column; align-items:flex-start; }
}
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }

/* -------- generic content page blocks -------- */
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}
@media (max-width:900px){ .two-col{ grid-template-columns:1fr; gap:36px; } }

.image-frame{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
@media (max-width:900px){ .values-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .values-grid{ grid-template-columns:1fr; } }

.value-card{
  background:var(--bg-light);
  border-radius:var(--radius-md);
  padding:26px;
  text-align:center;
}
.value-card .ic{
  width:48px;height:48px;
  border-radius:50%;
  background:var(--navy);
  color:var(--gold-soft);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 16px;
}
.value-card h3{ font-size:15.5px; margin-bottom:6px; }
.value-card p{ font-size:13.5px; margin:0; }

.bg-tint{ background:var(--bg-light); }

.list-check{ margin:0 0 24px; }
.list-check li{
  display:flex; gap:12px; align-items:flex-start;
  font-size:15px; color:var(--text-dark);
  margin-bottom:14px;
}
.list-check li svg{ color:var(--gold); flex-shrink:0; margin-top:3px; }

/* service detail rows */
.service-rows{ display:flex; flex-direction:column; gap:0; }
.service-row{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:24px;
  align-items:center;
  padding:30px 0;
  border-bottom:1px solid var(--line);
}
.service-row:first-child{ padding-top:0; }
.service-row .ic{
  width:56px;height:56px;
  border-radius:14px;
  background:var(--bg-tint);
  color:var(--navy);
  display:flex;align-items:center;justify-content:center;
}
.service-row h3{ font-size:18px; margin-bottom:4px; }
.service-row p{ margin:0; font-size:14.5px; }
.service-row .arrow{ color:var(--gold); font-size:20px; }

/* blog cards */
.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
@media (max-width:900px){ .blog-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .blog-grid{ grid-template-columns:1fr; } }
.blog-card{
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  overflow:hidden;
  transition:box-shadow .2s, transform .2s;
}
.blog-card:hover{ box-shadow:var(--shadow-card); transform:translateY(-4px); }
.blog-card img{ height:190px; width:100%; object-fit:cover; }
.blog-card .body{ padding:24px; }
.blog-cat{
  font-family:var(--font-display);
  font-size:11px; font-weight:700; letter-spacing:1.2px;
  color:var(--gold); text-transform:uppercase; margin-bottom:10px; display:block;
}
.blog-card h3{ font-size:16.5px; margin-bottom:10px; }
.blog-card .meta{ font-size:12.5px; color:var(--text-muted); margin-top:14px; }

/* contact page */
.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:56px;
}
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-info-card{
  background:var(--navy);
  border-radius:var(--radius-lg);
  padding:40px 34px;
  color:rgba(255,255,255,.85);
}
.contact-info-card h3{ color:var(--white); font-size:19px; }
.contact-info-list li{
  display:flex; gap:14px; padding:16px 0; border-bottom:1px solid rgba(255,255,255,.12);
}
.contact-info-list li:last-child{ border-bottom:none; }
.contact-info-list .ic{
  width:38px;height:38px;border-radius:10px;
  background:rgba(255,255,255,.08);
  color:var(--gold-soft);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.contact-info-list strong{ display:block; color:var(--white); font-size:14px; font-family:var(--font-display); }
.contact-info-list span{ font-size:13.5px; color:rgba(255,255,255,.65); }

.form-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:40px;
  box-shadow:var(--shadow-card);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom:18px; }
.field label{
  display:block; font-size:13px; font-weight:600; font-family:var(--font-display);
  color:var(--navy); margin-bottom:7px;
}
.field input, .field select, .field textarea{
  width:100%;
  padding:13px 15px;
  border:1.5px solid var(--line);
  border-radius:var(--radius-sm);
  font-family:var(--font-body);
  font-size:14.5px;
  color:var(--text-dark);
  background:var(--bg-light);
  transition:border-color .18s;
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;
  border-color:var(--gold);
  background:var(--white);
}
.field textarea{ resize:vertical; min-height:120px; }
.map-frame{
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--line);
  margin-top:56px;
}
.map-frame iframe{ width:100%; height:360px; border:0; display:block; }

/* legal pages */
.legal-body h2{ font-size:21px; margin-top:40px; }
.legal-body p, .legal-body li{ font-size:15px; color:var(--text-muted); }
.legal-body ul{ margin:0 0 20px 20px; list-style:disc; }
.legal-body ul li{ margin-bottom:8px; }
.legal-body{ max-width:820px; }
.updated-note{
  font-size:13px; color:var(--text-muted); font-style:italic; margin-bottom:36px;
}

/* utility */
.mt-0{ margin-top:0; }
.text-center{ text-align:center; }
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }

@media (max-width:900px){
  .icon-grid, .services-grid, .testi-grid{ }
}

/* ========== BACKGROUND VIDEO (full page) ========== */
html, body {
  min-height: 100%;
}
body {
  background: transparent !important;
}

.bg-video-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1.08);
  object-fit: cover;
  filter: blur(6px);
}

.bg-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 42, 82, 0.25); /* lower = video more visible */
}

/* Header stays readable on top of video */
.site-header {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(4px);
}
