/* ===== Base ===== */
:root{
  --bg:#0b0f16;
  --panel:#111827;
  --panel2:#0f172a;
  --text:#0b1220;
  --muted:#586174;
  --white:#ffffff;
  --line:rgba(255,255,255,.08);
  --line2:rgba(15,23,42,.10);
  --red:#e11d2e;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#0b1220;
  background:#fff;
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.92}
img{max-width:100%;display:block}

.container{width:min(1160px,92%);margin:0 auto}

/* ===== Header ===== */
.site-header{
  position:sticky;top:0;z-index:100;
  background:linear-gradient(180deg, rgba(10,12,16,.92), rgba(10,12,16,.80));
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav-bar{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:12px 0}
.logo{height:42px;filter: drop-shadow(0 6px 16px rgba(0,0,0,.25))}
.nav{display:flex;gap:18px;align-items:center}
.nav a{color:rgba(255,255,255,.88);font-weight:600;font-size:14px}
.nav a.active{color:#fff;text-decoration:underline;text-underline-offset:6px}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:11px 16px;border-radius:12px;font-weight:800}
.btn-primary{background:var(--red);color:#fff;box-shadow:0 10px 22px rgba(225,29,46,.25)}
.btn-outline{border:1px solid rgba(255,255,255,.22);color:#fff;background:rgba(255,255,255,.06)}
.btn-ghost{border:1px solid rgba(255,255,255,.14);color:#fff;background:transparent}

/* ===== Hero ===== */
.hero{
  position:relative;
  min-height:72vh;
  display:flex;
  align-items:flex-end;
  padding:64px 0 56px;
  background-size:cover;
  background-position:center;
  background-color:#0b0f16;
  overflow:hidden;
}
.hero--short{
  min-height:520px;
  padding:56px 0 48px;
}
@media (max-width: 900px){
  .hero--short{min-height:440px}
}
.hero-overlay{
  position:absolute;inset:0;
  background:
    radial-gradient(1200px 500px at 15% 30%, rgba(0,0,0,.12), rgba(0,0,0,.62)),
    linear-gradient(180deg, rgba(0,0,0,.38), rgba(0,0,0,.78));
}
.hero-inner{position:relative;z-index:2;max-width:860px}
.hero-kicker{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.90);
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.07);
}
.hero h1{
  margin:14px 0 10px;
  color:#fff;
  font-size:48px;
  line-height:1.05;
  letter-spacing:-.02em;
  text-shadow:0 18px 60px rgba(0,0,0,.55);
}
.hero p{
  margin:0;
  color:rgba(255,255,255,.90);
  font-size:16px;
  max-width:650px;
  text-shadow:0 18px 60px rgba(0,0,0,.55);
}
.hero-line{
  position:absolute;left:-10%;right:-10%;bottom:0;height:12px;
  background: linear-gradient(90deg, rgba(225,29,46,0), rgba(225,29,46,.75), rgba(59,130,246,.55), rgba(225,29,46,0));
  background-size:200% 200%;
  animation:moveLine 6s linear infinite;
  opacity:.9;
}
@keyframes moveLine{0%{background-position:0% 50%}100%{background-position:200% 50%}}
@media (prefers-reduced-motion:reduce){.hero-line{animation:none}}

/* ===== Sections ===== */
.section{padding:56px 0} /* tightened */
.section-light{background:#fff}
.section-light.alt{background:#f6f7fb}
.section-dark{background:linear-gradient(180deg, #070a10, #0b0f16);color:#fff}
/* Tech section: reduce "black hole" + add room before footer */
.section-dark-tight{
  padding:44px 0 64px; /* extra bottom padding */
}

.section-head{max-width:780px;margin:0 auto 22px;text-align:center}
.section-head h2{margin:0 0 8px;font-size:34px;letter-spacing:-.02em}
.section-head p{margin:0;color:#5a6477;font-size:15px;line-height:1.55}
.section-dark .section-head p{color:rgba(255,255,255,.72)}

/* ===== Split Panels (used for Branded/Unbranded) ===== */
.split{display:grid;grid-template-columns:1fr 1fr;gap:18px;align-items:stretch}
.panel{
  border-radius:18px;
  border:1px solid var(--line2);
  background:#fff;
  box-shadow:0 16px 50px rgba(2,6,23,.08);
  padding:20px;
}
.panel-dark{
  background:#0f1217;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 55px rgba(0,0,0,.35);
}
.panel-top{display:flex;gap:14px;align-items:center}
.panel h3{margin:0 0 6px;font-size:18px}
.panel p{margin:0;color:#566074}
.panel-dark h3{color:#fff}
.panel-dark p{color:rgba(255,255,255,.78)}

/* equal logo size (Valero + Super S) */
.brand-logo{
  width:120px;
  height:72px;
  object-fit:contain;
  padding:10px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
}

/* ===== Tech ===== */
.two-col{display:grid;grid-template-columns:1.1fr .9fr;gap:22px;align-items:center}
.eyebrow{
  display:inline-block;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.70);
  margin-bottom:10px;
}
.section-dark h2{margin:0 0 10px;font-size:36px;letter-spacing:-.02em}
.section-dark p{margin:0 0 18px;color:rgba(255,255,255,.78)}

.media-card{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 60px rgba(0,0,0,.35);
}
.media-card img{width:100%;height:auto}

/* ===== Cards (Wholesale Fuel Solutions) ===== */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(2,6,23,.08);
  box-shadow:0 16px 50px rgba(2,6,23,.07);
}
.card img{width:100%;height:210px;object-fit:cover}
.card-body{padding:14px 14px 16px}
.card-body h3{margin:0 0 6px;font-size:18px}
.card-body p{margin:0;color:#566074}

/* premium dark variant (Option B) */
.cards-dark .card-dark{
  background:#0f1217;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 55px rgba(0,0,0,.35);
}
.cards-dark .card-dark .card-body h3{color:#fff}
.cards-dark .card-dark .card-body p{color:rgba(255,255,255,.78)}
/* ===== Logo Cards (Valero / Super S) ===== */

.logo-card-wrap{
  height:160px;              /* controls visual space */
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
}

.logo-card{
  max-width:200px;
  max-height:120px;
  width:auto;
  height:auto;
  object-fit:contain;
}
/* ===== Fuel Supply: card media (image + logo) ===== */
.card-media{
  width:100%;
  height:210px;                 /* same height as other card images */
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border-bottom:1px solid rgba(2,6,23,.08);
}

.card-media img{
  width:100%;
  height:100%;
  object-fit:cover;             /* normal images fill */
  display:block;
}

/* Logo version (Valero) */
.card-media--logo img{
  width:78%;
  height:78%;
  object-fit:contain;           /* logos must NOT crop */
}
/* ===== Footer ===== */
.site-footer{
  background:#070a10;color:#fff;
  padding:22px 0;
  border-top:1px solid rgba(255,255,255,.08);
}

/* styled like header + adds separation from tech */
.site-footer.footer-bar{
  background:linear-gradient(180deg, rgba(10,12,16,.92), rgba(10,12,16,.84));
  backdrop-filter: blur(10px);
  margin-top:18px; /* space between technology and footer */
  box-shadow:0 -16px 60px rgba(0,0,0,.35); /* soft separation */
}

.footer-clean{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;

  /* font polish */
  font-weight:700;           /* was 800 */
  letter-spacing:.01em;
}

.footer-brand{
  font-weight:800;
  color:rgba(255,255,255,.92);
}

.footer-links{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  font-size:14px;
  color:rgba(255,255,255,.82);
}

.footer-links a{
  color:rgba(255,255,255,.92);
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.20);
}
.footer-links a:hover{border-bottom-color:rgba(255,255,255,.70)}
.dot{opacity:.55}

/* ===== Responsive ===== */
@media (max-width: 960px){
  .nav{display:none}
  .hero{min-height:64vh}
  .hero h1{font-size:38px}
  .split{grid-template-columns:1fr}
  .two-col{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
}
/* ===== Map ===== */
.map-wrap{
  max-width: 700px;   /* controls size */
  margin: 0 auto;     /* center */
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(2,6,23,.10);
  box-shadow:0 16px 50px rgba(2,6,23,.08);
  background:#fff;
}

.map-wrap img{
  width:100%;
  height:auto;
  display:block;
}
/* =========================
   Premium Motion Effects
   ========================= */

/* Hero slow zoom */
.hero--bg {
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { background-size: 100%; }
  to   { background-size: 110%; }
}

/* Scroll reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children animation */
[data-reveal] .card,
[data-reveal] .panel {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s ease;
}

[data-reveal].is-visible .card,
[data-reveal].is-visible .panel {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal].is-visible .card:nth-child(2) {
  transition-delay: .1s;
}
[data-reveal].is-visible .card:nth-child(3) {
  transition-delay: .2s;
}

/* Card hover lift */
.card,
.panel {
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover,
.panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}

/* Logo subtle glow */
.logo {
  transition: filter .4s ease;
}

.logo:hover {
  filter: drop-shadow(0 8px 24px rgba(225,29,46,.45));
}

/* Reduce motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero--bg { animation: none; }
  [data-reveal],
  .card,
  .panel { transition: none; }
}
/* =============================
   HIGH-END ANIMATION PACK
   ============================= */

/* HERO PARALLAX + ZOOM */
.hero {
  background-attachment: fixed;
}

.hero--bg {
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { background-size: 100%; }
  to { background-size: 115%; }
}

/* ENERGY LINE UNDER HERO */
.hero-line {
  height: 14px;
  background: linear-gradient(
    90deg,
    transparent,
    #e11d2e,
    #3b82f6,
    #e11d2e,
    transparent
  );
  background-size: 200% 100%;
  animation: moveLine 5s linear infinite;
  opacity: .9;
}

@keyframes moveLine {
  0% { background-position: 0% }
  100% { background-position: 200% }
}

/* SECTION DIVIDER */
.section-divider {
  height: 2px;
  margin: 70px auto;
  width: 90%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(225,29,46,.9),
    rgba(59,130,246,.8),
    transparent
  );
  background-size: 200% 100%;
  animation: dividerMove 6s linear infinite;
}

@keyframes dividerMove {
  0% { background-position: 0% }
  100% { background-position: 200% }
}

/* SCROLL REVEAL */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* STAGGER CARDS */
[data-reveal].is-visible .card:nth-child(2) {
  transition-delay: .15s;
}
[data-reveal].is-visible .card:nth-child(3) {
  transition-delay: .3s;
}

/* CARD 3D HOVER */
.card,
.panel {
  transform-style: preserve-3d;
  transition: transform .35s ease, box-shadow .35s ease;
}

.card:hover,
.panel:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

/* IMAGE ZOOM */
.card img,
.media-card img {
  transition: transform .5s ease;
}

.card:hover img,
.media-card:hover img {
  transform: scale(1.08);
}

/* BUTTON SHINE EFFECT */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.35),
    transparent
  );
  transform: translateX(-100%);
}

.btn-primary:hover::after {
  animation: shine 1.2s ease;
}

@keyframes shine {
  100% { transform: translateX(100%); }
}

/* LOGO GLOW */
.logo {
  transition: filter .4s ease;
}

.logo:hover {
  filter: drop-shadow(0 10px 30px rgba(225,29,46,.5));
}

/* BACKGROUND FLOAT PARTICLES */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .15;
  animation: floatParticles 30s linear infinite;
}

@keyframes floatParticles {
  0% { transform: translateY(0); }
  100% { transform: translateY(-200px); }
}

/* REDUCED MOTION SAFETY */
@media (prefers-reduced-motion: reduce) {
  .hero,
  .hero--bg,
  .section-divider,
  .hero-line {
    animation: none;
  }
}
/* Prevent hero background from being affected by animations */
.hero,
.hero--home,
.hero--short {
  transform: none !important;
  animation: none !important;
}

/* Ensure background stays stable */
.hero {
  background-size: cover !important;
  background-position: center !important;
}
.hero *,
.hero::before,
.hero::after {
  transform: none !important;
}
/* ===== Base ===== */
:root{
  --bg:#0b0f16;
  --panel:#111827;
  --panel2:#0f172a;
  --text:#0b1220;
  --muted:#586174;
  --white:#ffffff;
  --line:rgba(255,255,255,.08);
  --line2:rgba(15,23,42,.10);
  --red:#e11d2e;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#0b1220;
  background:#fff;
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.92}
img{max-width:100%;display:block}

.container{width:min(1160px,92%);margin:0 auto}

/* ===== Header ===== */
.site-header{
  position:sticky;top:0;z-index:100;
  background:linear-gradient(180deg, rgba(10,12,16,.92), rgba(10,12,16,.80));
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav-bar{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:12px 0}
.logo{height:42px;filter: drop-shadow(0 6px 16px rgba(0,0,0,.25))}
.nav{display:flex;gap:18px;align-items:center}
.nav a{color:rgba(255,255,255,.88);font-weight:600;font-size:14px}
.nav a.active{color:#fff;text-decoration:underline;text-underline-offset:6px}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:11px 16px;border-radius:12px;font-weight:800}
.btn-primary{background:var(--red);color:#fff;box-shadow:0 10px 22px rgba(225,29,46,.25)}
.btn-outline{border:1px solid rgba(255,255,255,.22);color:#fff;background:rgba(255,255,255,.06)}
.btn-ghost{border:1px solid rgba(255,255,255,.14);color:#fff;background:transparent}

/* ===== Hero ===== */
.hero{
  position:relative;
  min-height:72vh;
  display:flex;
  align-items:flex-end;
  padding:64px 0 56px;
  background-size:cover;
  background-position:center;
  background-color:#0b0f16;
  overflow:hidden;
}
.hero--short{
  min-height:520px;
  padding:56px 0 48px;
}
@media (max-width: 900px){
  .hero--short{min-height:440px}
}
.hero-overlay{
  position:absolute;inset:0;
  background:
    radial-gradient(1200px 500px at 15% 30%, rgba(0,0,0,.12), rgba(0,0,0,.62)),
    linear-gradient(180deg, rgba(0,0,0,.38), rgba(0,0,0,.78));
}
.hero-inner{position:relative;z-index:2;max-width:860px}
.hero-kicker{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.90);
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.07);
}
.hero h1{
  margin:14px 0 10px;
  color:#fff;
  font-size:48px;
  line-height:1.05;
  letter-spacing:-.02em;
  text-shadow:0 18px 60px rgba(0,0,0,.55);
}
.hero p{
  margin:0;
  color:rgba(255,255,255,.90);
  font-size:16px;
  max-width:650px;
  text-shadow:0 18px 60px rgba(0,0,0,.55);
}
.hero-line{
  position:absolute;left:-10%;right:-10%;bottom:0;height:12px;
  background: linear-gradient(90deg, rgba(225,29,46,0), rgba(225,29,46,.75), rgba(59,130,246,.55), rgba(225,29,46,0));
  background-size:200% 200%;
  animation:moveLine 6s linear infinite;
  opacity:.9;
}
@keyframes moveLine{0%{background-position:0% 50%}100%{background-position:200% 50%}}
@media (prefers-reduced-motion:reduce){.hero-line{animation:none}}

/* ===== Sections ===== */
.section{padding:56px 0} /* tightened */
.section-light{background:#fff}
.section-light.alt{background:#f6f7fb}
.section-dark{background:linear-gradient(180deg, #070a10, #0b0f16);color:#fff}
/* Tech section: reduce "black hole" + add room before footer */
.section-dark-tight{
  padding:44px 0 64px; /* extra bottom padding */
}

.section-head{max-width:780px;margin:0 auto 22px;text-align:center}
.section-head h2{margin:0 0 8px;font-size:34px;letter-spacing:-.02em}
.section-head p{margin:0;color:#5a6477;font-size:15px;line-height:1.55}
.section-dark .section-head p{color:rgba(255,255,255,.72)}

/* ===== Split Panels (used for Branded/Unbranded) ===== */
.split{display:grid;grid-template-columns:1fr 1fr;gap:18px;align-items:stretch}
.panel{
  border-radius:18px;
  border:1px solid var(--line2);
  background:#fff;
  box-shadow:0 16px 50px rgba(2,6,23,.08);
  padding:20px;
}
.panel-dark{
  background:#0f1217;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 55px rgba(0,0,0,.35);
}
.panel-top{display:flex;gap:14px;align-items:center}
.panel h3{margin:0 0 6px;font-size:18px}
.panel p{margin:0;color:#566074}
.panel-dark h3{color:#fff}
.panel-dark p{color:rgba(255,255,255,.78)}

/* equal logo size (Valero + Super S) */
.brand-logo{
  width:120px;
  height:72px;
  object-fit:contain;
  padding:10px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
}

/* ===== Tech ===== */
.two-col{display:grid;grid-template-columns:1.1fr .9fr;gap:22px;align-items:center}
.eyebrow{
  display:inline-block;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.70);
  margin-bottom:10px;
}
.section-dark h2{margin:0 0 10px;font-size:36px;letter-spacing:-.02em}
.section-dark p{margin:0 0 18px;color:rgba(255,255,255,.78)}

.media-card{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 60px rgba(0,0,0,.35);
}
.media-card img{width:100%;height:auto}

/* ===== Cards (Wholesale Fuel Solutions) ===== */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(2,6,23,.08);
  box-shadow:0 16px 50px rgba(2,6,23,.07);
}
.card img{width:100%;height:210px;object-fit:cover}
.card-body{padding:14px 14px 16px}
.card-body h3{margin:0 0 6px;font-size:18px}
.card-body p{margin:0;color:#566074}

/* premium dark variant (Option B) */
.cards-dark .card-dark{
  background:#0f1217;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 55px rgba(0,0,0,.35);
}
.cards-dark .card-dark .card-body h3{color:#fff}
.cards-dark .card-dark .card-body p{color:rgba(255,255,255,.78)}
/* ===== Logo Cards (Valero / Super S) ===== */

.logo-card-wrap{
  height:160px;              /* controls visual space */
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
}

.logo-card{
  max-width:200px;
  max-height:120px;
  width:auto;
  height:auto;
  object-fit:contain;
}
/* ===== Fuel Supply: card media (image + logo) ===== */
.card-media{
  width:100%;
  height:210px;                 /* same height as other card images */
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border-bottom:1px solid rgba(2,6,23,.08);
}

.card-media img{
  width:100%;
  height:100%;
  object-fit:cover;             /* normal images fill */
  display:block;
}

/* Logo version (Valero) */
.card-media--logo img{
  width:78%;
  height:78%;
  object-fit:contain;           /* logos must NOT crop */
}
/* ===== Footer ===== */
.site-footer{
  background:#070a10;color:#fff;
  padding:22px 0;
  border-top:1px solid rgba(255,255,255,.08);
}

/* styled like header + adds separation from tech */
.site-footer.footer-bar{
  background:linear-gradient(180deg, rgba(10,12,16,.92), rgba(10,12,16,.84));
  backdrop-filter: blur(10px);
  margin-top:18px; /* space between technology and footer */
  box-shadow:0 -16px 60px rgba(0,0,0,.35); /* soft separation */
}

.footer-clean{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;

  /* font polish */
  font-weight:700;           /* was 800 */
  letter-spacing:.01em;
}

.footer-brand{
  font-weight:800;
  color:rgba(255,255,255,.92);
}

.footer-links{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  font-size:14px;
  color:rgba(255,255,255,.82);
}

.footer-links a{
  color:rgba(255,255,255,.92);
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.20);
}
.footer-links a:hover{border-bottom-color:rgba(255,255,255,.70)}
.dot{opacity:.55}

/* ===== Responsive ===== */
@media (max-width: 960px){
  .nav{display:none}
  .hero{min-height:64vh}
  .hero h1{font-size:38px}
  .split{grid-template-columns:1fr}
  .two-col{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
}
/* ===== Map ===== */
.map-wrap{
  max-width: 700px;   /* controls size */
  margin: 0 auto;     /* center */
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(2,6,23,.10);
  box-shadow:0 16px 50px rgba(2,6,23,.08);
  background:#fff;
}

.map-wrap img{
  width:100%;
  height:auto;
  display:block;
}
/* =========================
   MOTION (CLEAN + SAFE)
   Keeps: hero-line + scroll reveal + hover lift + button shine + logo glow
   Removes: hero zoom + parallax + particle overlay
   ========================= */

/* NO parallax (prevents "zoomed/cropped" hero look) */
.hero{
  background-attachment: scroll;
}

/* HERO LINE (keep) */
.hero-line{
  height: 12px;
  background: linear-gradient(
    90deg,
    rgba(225,29,46,0),
    rgba(225,29,46,.85),
    rgba(59,130,246,.65),
    rgba(225,29,46,.85),
    rgba(225,29,46,0)
  );
  background-size: 200% 100%;
  animation: moveLine 6s linear infinite;
  opacity: .9;
}

@keyframes moveLine{
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* SCROLL REVEAL */
[data-reveal]{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
  will-change: opacity, transform;
}
[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* STAGGER (cards/panels inside reveal containers) */
[data-reveal].is-visible .card,
[data-reveal].is-visible .panel{
  transition-delay: 0s;
}
[data-reveal].is-visible .card:nth-child(2),
[data-reveal].is-visible .panel:nth-child(2){
  transition-delay: .12s;
}
[data-reveal].is-visible .card:nth-child(3),
[data-reveal].is-visible .panel:nth-child(3){
  transition-delay: .24s;
}

/* HOVER LIFT (subtle) */
.card, .panel{
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover, .panel:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}

/* IMAGE ZOOM (subtle) */
.card img, .media-card img{
  transition: transform .5s ease;
}
.card:hover img, .media-card:hover img{
  transform: scale(1.06);
}

/* BUTTON SHINE */
.btn-primary{
  position: relative;
  overflow: hidden;
}
.btn-primary::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform: translateX(-110%);
}
.btn-primary:hover::after{
  animation: shine 1.1s ease;
}
@keyframes shine{
  100% { transform: translateX(110%); }
}

/* LOGO GLOW */
.logo{
  transition: filter .35s ease;
}
.logo:hover{
  filter: drop-shadow(0 10px 28px rgba(225,29,46,.45));
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce){
  .hero-line{ animation: none; }
  [data-reveal], .card, .panel, .card img, .media-card img{ transition: none; }
}