/* ============================================================
   LOBO OFFSHORE — Advanced Stylesheet (Sky Blue & White Theme)
   ============================================================ */

/* ── 0. CSS Custom Properties ─────────────────────────────── */
:root {
  /* Brand Palette — Sky Blue & White */
  --navy:          #0077B6;
  --navy-deep:     #023E8A;
  --navy-soft:     #0096C7;
  --navy-mid:      #0090C0;
  --gold:          #00B4D8;
  --gold-soft:     #48CAE4;
  --gold-pale:     #ADE8F4;
  --gold-dark:     #0077B6;
  --white:         #FFFFFF;
  --ink:           #1B2638;
  --mist:          #F0F8FF;
  --mist-2:        #E0F2FE;
  --slate:         #5A6478;
  --slate-light:   #8A97AB;

  /* Semantic */
  --line:          rgba(0,180,216,0.22);
  --line-light:    rgba(255,255,255,0.18);
  --glass:         rgba(255,255,255,0.10);
  --glass-hover:   rgba(255,255,255,0.18);
  --overlay:       rgba(2,62,138,0.72);

  /* Shadows */
  --shadow-sm:     0 4px 16px rgba(0,119,182,0.12);
  --shadow:        0 20px 60px rgba(0,119,182,0.18);
  --shadow-lg:     0 32px 80px rgba(0,119,182,0.22);
  --shadow-gold:   0 12px 40px rgba(0,180,216,0.30);

  /* Easing */
  --ease:          cubic-bezier(.22,.61,.36,1);
  --ease-spring:   cubic-bezier(.34,1.56,.64,1);
  --ease-in:       cubic-bezier(.55,0,1,.45);

  /* Spacing Scale */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-7: 28px;  --sp-8: 32px;
  --sp-10: 40px; --sp-12: 48px; --sp-16: 64px;

  /* Border Radius */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  32px;
  --r-pill: 999px;

  /* Type Scale */
  --text-xs:   11.5px;
  --text-sm:   13px;
  --text-base: 15.5px;
  --text-md:   17px;
  --text-lg:   20px;
  --text-xl:   24px;
  --text-2xl:  32px;
  --text-3xl:  clamp(28px, 3.8vw, 42px);
  --text-hero: clamp(38px, 6vw, 70px);
}

/* ── 1. Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,h5 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--navy-deep);
  letter-spacing: -0.015em;
  line-height: 1.12;
}

a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ── 2. Layout Utilities ──────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--sp-7);
}

section { padding: 112px 0; position: relative; }

@media (max-width: 768px) { section { padding: 72px 0; } }
@media (max-width: 480px) { section { padding: 56px 0; } }

/* ── 3. Typography Components ─────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-xs);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: var(--sp-4);
  font-family: 'Inter', sans-serif;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border-radius: 2px;
  flex-shrink: 0;
}

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

.section-head h2 { font-size: var(--text-3xl); }
.section-head p  { color: var(--slate); margin-top: 14px; font-size: 16.5px; line-height: 1.7; }

/* ── 4. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .025em;
  border: 1.5px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition:
    transform .35s var(--ease),
    box-shadow .35s var(--ease),
    background .35s,
    color .35s,
    border-color .35s;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.22) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .5s var(--ease);
}
.btn:hover::after { transform: translateX(100%); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(0,180,216,.32);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,180,216,.50);
}

.btn-outline {
  border-color: rgba(255,255,255,.52);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.18);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* ── 5. Scroll Reveal Animations ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity .8s var(--ease),
    transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-left.in { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-right.in { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-scale.in { opacity: 1; transform: scale(1); }

.stagger > * { transition-delay: calc(var(--i,0) * 90ms); }

/* ── 6. NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition:
    background .5s var(--ease),
    padding .5s var(--ease),
    box-shadow .5s;
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,62,138,0.60) 0%, transparent 100%);
  opacity: 1;
  transition: opacity .5s;
  pointer-events: none;
}

.navbar.scrolled {
  background: rgba(0,119,182,0.97);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  padding: 12px 0;
  box-shadow: 0 8px 40px rgba(0,0,0,.18), 0 1px 0 rgba(0,180,216,.28);
}

.navbar.scrolled::before { opacity: 0; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  z-index: 2;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform .4s var(--ease), filter .4s;
  filter: drop-shadow(0 2px 10px rgba(0,180,216,.25));
}
.brand:hover .brand-logo-img {
  transform: scale(1.06);
  filter: drop-shadow(0 4px 18px rgba(0,180,216,.55));
}

.brand-text {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .01em;
  line-height: 1.2;
}
.brand-text small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 500;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,.88);
  font-size: 13.5px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  letter-spacing: .01em;
  transition: color .3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border-radius: 2px;
  transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

/* Nav CTA */
.nav-cta { display: flex; gap: 12px; align-items: center; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  padding: 4px;
}
.burger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .3s, width .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform .55s var(--ease);
  overflow: hidden;
}

.mobile-menu::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(ellipse at 30% 30%, rgba(0,180,216,.14), transparent 55%);
  pointer-events: none;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  color: rgba(255,255,255,.88);
  font-size: 26px;
  font-family: 'Fraunces', serif;
  padding: 10px 0;
  position: relative;
  transition: color .3s;
}
.mobile-menu a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width .35s var(--ease);
}
.mobile-menu a:hover { color: var(--gold-soft); }
.mobile-menu a:hover::after { width: 60%; }

.mobile-close {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(255,255,255,.7);
  font-size: 28px;
  cursor: pointer;
  transition: color .3s, transform .3s;
}
.mobile-close:hover { color: var(--gold-soft); transform: rotate(90deg); }

@media (max-width: 920px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
}

/* ── 7. HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 52%, var(--navy-soft) 100%);
  overflow: hidden;
  color: var(--white);
  padding-top: 140px;
  padding-bottom: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 55% at 15% 18%, rgba(0,180,216,.18), transparent),
    radial-gradient(ellipse 55% 50% at 88% 78%, rgba(72,202,228,.10), transparent),
    radial-gradient(ellipse 40% 35% at 60% 10%, rgba(2,62,138,.8), transparent);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Ccircle cx='1' cy='1' r='.5' fill='rgba(255,255,255,.03)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

#particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(0,180,216,.40);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--gold-pale);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .3s, border-color .3s, transform .3s var(--ease);
}
.badge:hover {
  background: rgba(0,180,216,.15);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.badge i { color: var(--gold-soft); font-size: 11px; }

/* Headings */
.hero h1 {
  font-size: var(--text-hero);
  color: var(--white);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.04;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-soft) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p.lead {
  margin-top: 24px;
  font-size: 17.5px;
  color: rgba(255,255,255,.80);
  max-width: 560px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 38px;
  flex-wrap: wrap;
}

/* Hero contact row */
.hero-contact {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 13.5px;
  color: rgba(255,255,255,.68);
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.hero-contact a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.85);
  transition: color .3s;
}
.hero-contact a:hover { color: var(--gold-soft); }
.hero-contact i { color: var(--gold-soft); font-size: 13px; }

/* Glass service cards */
.expertise-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.glass-card {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-lg);
  padding: 24px 26px;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition:
    transform .4s var(--ease),
    background .4s,
    border-color .4s,
    box-shadow .4s;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,180,216,.6), transparent);
  opacity: 0;
  transition: opacity .4s;
}

.glass-card:hover {
  transform: translateX(-10px);
  background: rgba(255,255,255,.16);
  border-color: rgba(0,180,216,.5);
  box-shadow: 0 12px 40px rgba(0,0,0,.20);
}
.glass-card:hover::before { opacity: 1; }

.glass-card .ic {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 19px;
  box-shadow: 0 6px 20px rgba(0,180,216,.30);
  transition: transform .4s var(--ease-spring);
}
.glass-card:hover .ic { transform: scale(1.1) rotate(-6deg); }

.glass-card h4 { color: var(--white); font-size: 16.5px; }
.glass-card p  { color: rgba(255,255,255,.65); font-size: 13px; margin-top: 3px; }

/* ── 8. ABOUT ─────────────────────────────────────────────── */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.about-visual { position: relative; }

.about-photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--navy-deep), var(--navy-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to bottom, transparent 50%, rgba(2,62,138,.5) 100%);
}

.about-photo svg { width: 78%; position: relative; z-index: 1; }

/* Floating stat card */
.about-float {
  position: absolute;
  bottom: -32px;
  right: -32px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--mist-2);
  z-index: 2;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.about-float:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.about-float .num {
  font-family: 'Fraunces', serif;
  font-size: 34px;
  color: var(--navy);
  font-weight: 700;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.about-float .lbl { font-size: 12px; color: var(--slate); max-width: 120px; line-height: 1.35; }

@media (max-width: 560px) { .about-float { right: 0; bottom: -20px; padding: 14px 18px; } }

/* About copy */
.about-copy p  { color: var(--slate); margin-bottom: 16px; font-size: var(--text-base); line-height: 1.75; }

.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: var(--mist);
  color: var(--navy-deep);
  border: 1px solid var(--mist-2);
  letter-spacing: .02em;
  transition: background .3s, border-color .3s, transform .3s var(--ease);
}
.tag:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

/* ── 9. VISION / MISSION ──────────────────────────────────── */
.vm {
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-soft) 100%);
  color: var(--white);
  overflow: hidden;
}

.vm::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(0,180,216,.12);
  top: -200px; right: -150px;
  pointer-events: none;
}
.vm::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(0,180,216,.08);
  bottom: -180px; left: -100px;
  pointer-events: none;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 800px) { .vm-grid { grid-template-columns: 1fr; } }

.vm-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(0,180,216,.28);
  border-radius: var(--r-xl);
  padding: 48px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: transform .45s var(--ease), background .45s, border-color .45s;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .45s;
}

.vm-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,.14);
  border-color: rgba(0,180,216,.55);
}
.vm-card:hover::before { opacity: 1; }

.vm-card .ic {
  width: 58px; height: 58px;
  border-radius: var(--r-md);
  background: rgba(0,180,216,.16);
  border: 1px solid rgba(0,180,216,.32);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  font-size: 22px;
  margin-bottom: 24px;
  transition: background .4s, transform .4s var(--ease-spring);
}
.vm-card:hover .ic { background: rgba(0,180,216,.28); transform: scale(1.1); }

.vm-card h3 { color: var(--white); font-size: var(--text-xl); margin-bottom: 14px; }
.vm-card p  { color: rgba(255,255,255,.76); font-size: 15.5px; line-height: 1.72; }

/* ── 10. BENEFITS ─────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .benefits-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px)  { .benefits-grid { grid-template-columns: 1fr; } }

.benefit-card {
  background: var(--mist);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition:
    transform .45s var(--ease),
    box-shadow .45s,
    border-color .45s,
    background .45s;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold-soft), var(--gold));
  transition: height .45s var(--ease);
  border-radius: 0 2px 2px 0;
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,.10), transparent 65%);
  opacity: 0;
  transition: opacity .5s;
}

.benefit-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow);
  background: var(--white);
  border-color: var(--mist-2);
}
.benefit-card:hover::before { height: 100%; }
.benefit-card:hover::after  { opacity: 1; }

.benefit-card .ic {
  width: 54px; height: 54px;
  border-radius: var(--r-md);
  background: var(--navy);
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 22px;
  transition: transform .4s var(--ease-spring), background .4s;
}
.benefit-card:hover .ic { transform: scale(1.12) rotate(-6deg); }

.benefit-card h4 { font-size: 17px; margin-bottom: 10px; }
.benefit-card p  { font-size: 13.5px; color: var(--slate); line-height: 1.7; }

/* ── 11. MILESTONES ───────────────────────────────────────── */
.milestones {
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 100%);
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.milestones::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,180,216,.16), transparent),
    radial-gradient(ellipse 40% 40% at 10% 110%, rgba(0,180,216,.08), transparent);
  pointer-events: none;
}

.milestones::after {
  content: '';
  position: absolute;
  top: 50%; left: -100%;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,180,216,.25), transparent);
  animation: sweep 7s ease-in-out infinite;
}

@keyframes sweep {
  0%   { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) { .stat-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px)  { .stat-grid { grid-template-columns: 1fr; } }

.stat {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,.12);
  position: relative;
  transition: background .35s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(0,180,216,.08); }

@media (max-width: 900px) {
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
}

.stat .num {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 56px);
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-soft) 50%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.stat .lbl {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,.65);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── 12. DIRECTOR ─────────────────────────────────────────── */
.director-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .director-grid { grid-template-columns: 1fr; } }

.director-card {
  background: linear-gradient(155deg, var(--navy-deep), var(--navy-soft));
  border-radius: var(--r-xl);
  padding: 44px 36px;
  color: var(--white);
  position: sticky;
  top: 110px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,180,216,.20);
  overflow: hidden;
}

.director-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,.12), transparent 60%);
}

.director-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 34px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 22px;
  box-shadow: 0 8px 30px rgba(0,180,216,.35);
  position: relative;
}

.director-avatar::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(0,180,216,.50);
}

.director-card h3  { color: var(--white); font-size: 22px; }
.director-card .role {
  color: var(--gold-soft);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 600;
}

.director-quals { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.director-quals li {
  display: flex;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,.80);
  align-items: flex-start;
  line-height: 1.5;
}
.director-quals i { color: var(--gold-soft); margin-top: 3px; flex-shrink: 0; }

.director-copy p { font-size: var(--text-base); color: var(--slate); margin-bottom: 18px; line-height: 1.78; }

/* ── 13. CHIP GRID ────────────────────────────────────────── */
.chip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .chip-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px)  { .chip-grid { grid-template-columns: 1fr; } }

.chip {
  background: var(--white);
  border: 1px solid var(--mist-2);
  border-radius: var(--r-lg);
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition:
    transform .4s var(--ease),
    box-shadow .4s,
    border-color .4s,
    background .4s;
}

.chip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,180,216,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
}

.chip:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.chip:hover::after { opacity: 1; }

.chip .ic {
  width: 50px; height: 50px;
  border-radius: var(--r-md);
  background: var(--mist);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background .4s, color .4s, transform .4s var(--ease-spring);
}
.chip:hover .ic {
  background: var(--navy);
  color: var(--gold-soft);
  transform: scale(1.1) rotate(-8deg);
}

.chip h4 { font-size: 15px; transition: color .3s; }

.chip.more {
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  cursor: default;
}
.chip.more::after { display: none; }
.chip.more h4 { color: var(--white); }
.chip.more .ic { background: rgba(0,180,216,.18); color: var(--gold-soft); }

/* ── 14. Section Alt ──────────────────────────────────────── */
.section-alt { background: var(--mist); }

/* ── 15. LOCATIONS ────────────────────────────────────────── */
.loc-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.loc-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
@media (max-width: 900px) { .loc-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .loc-list { grid-template-columns: 1fr; } }

.loc-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--mist-2);
  border-radius: var(--r-md);
  padding: 13px 16px;
  font-size: 13.5px;
  font-weight: 500;
  transition: border-color .3s, background .3s, transform .3s var(--ease), box-shadow .3s;
}
.loc-pill:hover {
  border-color: var(--gold);
  background: var(--mist);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}
.loc-pill i { color: var(--gold); font-size: 12px; flex-shrink: 0; }

/* ── 16. PROCESS TIMELINE ─────────────────────────────────── */
.timeline-scroll {
  overflow-x: auto;
  padding-bottom: 20px;
  margin: 0 -28px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--mist-2);
}
.timeline-scroll::-webkit-scrollbar { height: 4px; }
.timeline-scroll::-webkit-scrollbar-track { background: var(--mist-2); }
.timeline-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

.timeline {
  display: flex;
  gap: 0;
  padding: 10px 28px 10px;
  min-width: max-content;
}

.tl-step {
  width: 230px;
  flex: none;
  position: relative;
  padding: 0 20px 0 0;
}

.tl-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 5px var(--white), 0 0 0 7px var(--mist-2);
  transition: transform .4s var(--ease-spring), box-shadow .4s;
}
.tl-step:hover .tl-num {
  transform: scale(1.12);
  box-shadow: 0 0 0 5px var(--white), 0 0 0 8px var(--gold), var(--shadow-gold);
}

.tl-line {
  position: absolute;
  top: 28px;
  left: 56px;
  right: -20px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px);
  z-index: 1;
  opacity: .5;
}
.tl-step:last-child .tl-line { display: none; }

.tl-step h4 { margin-top: 20px; font-size: 14.5px; line-height: 1.3; }
.tl-step p  { font-size: 13px; color: var(--slate); margin-top: 6px; }
.tl-step ul { margin-top: 6px; font-size: 12px; color: var(--slate); padding-left: 14px; }
.tl-step li { list-style: disc; margin-bottom: 2px; }

/* ── 17. PARTNERS ─────────────────────────────────────────── */
.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
@media (max-width: 900px) { .partners-grid { grid-template-columns: 1fr; } }

.partner-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }

.partner-pill {
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--mist-2);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-deep);
  transition: background .3s, border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.partner-pill:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.partner-quote {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 38px;
  position: relative;
  margin-top: 24px;
  border: 1px solid rgba(0,180,216,.22);
  overflow: hidden;
}
.partner-quote::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(0,180,216,.14), transparent 65%);
}
.partner-quote i.fa-quote-left { color: var(--gold-soft); font-size: 24px; margin-bottom: 14px; display: block; }
.partner-quote p { font-size: 15.5px; font-style: italic; color: rgba(255,255,255,.90); line-height: 1.75; }

/* ── 18. CLIENTELE MARQUEE ────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.marquee {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollX 38s linear infinite;
}
.marquee-wrap:hover .marquee { animation-play-state: paused; }
.marquee.rev { animation-direction: reverse; }

@keyframes scrollX {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-card {
  flex: none;
  width: 192px; height: 84px;
  background: var(--white);
  border: 1px solid var(--mist-2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy-deep);
  font-size: 13px;
  text-align: center;
  padding: 12px;
  transition: border-color .3s, box-shadow .3s, color .3s;
}
.client-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  color: var(--navy);
}

/* ── 19. CONTACT ──────────────────────────────────────────── */
.contact {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 60%);
  color: var(--white);
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.office-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg);
  padding: 30px 32px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: background .4s, border-color .4s;
}
.office-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--gold-soft), var(--gold));
}
.office-card:hover { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.22); }

.office-card h4 {
  color: var(--gold-soft);
  font-size: var(--text-md);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.office-card h4 i { color: var(--gold-soft); }

.office-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,.80);
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.55;
}
.office-card p i { color: var(--gold-soft); margin-top: 3px; flex-shrink: 0; font-size: 12px; }

/* Overseas Partners */
.overseas-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 10px; }

.overseas-pill {
  background: rgba(0,180,216,.10);
  border: 1px solid rgba(0,180,216,.28);
  border-radius: var(--r-md);
  padding: 14px 20px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  flex: 1;
  min-width: 180px;
  transition: background .3s, border-color .3s;
}
.overseas-pill:hover { background: rgba(0,180,216,.18); border-color: rgba(0,180,216,.55); }
.overseas-pill b { color: var(--gold-soft); display: block; margin-bottom: 4px; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; }

/* Contact Form */
.form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 42px;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.form-card h3 { font-size: var(--text-xl); margin-bottom: 6px; }
.form-card p.sub { color: var(--slate); font-size: 14px; margin-bottom: 26px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: .03em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  border: 1.5px solid #C8E8F5;
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  background: var(--mist);
  color: var(--ink);
  transition: border-color .3s, background .3s, box-shadow .3s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,180,216,.14);
}

.field input::placeholder,
.field textarea::placeholder { color: #AABACF; }

.field textarea { resize: vertical; min-height: 110px; }

/* ── 20. FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.70);
  padding: 76px 0 28px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,180,216,.5), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h5 {
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-size: 15.5px;
  margin-bottom: 18px;
}

.footer-grid ul { display: flex; flex-direction: column; gap: 10px; }

.footer-grid a {
  font-size: 13.5px;
  color: rgba(255,255,255,.62);
  transition: color .3s, padding-left .3s;
}
.footer-grid a:hover { color: var(--gold-soft); padding-left: 4px; }

.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,.58);
  margin: 18px 0 22px;
  max-width: 300px;
  line-height: 1.7;
}

/* Social icons */
.social-row { display: flex; gap: 12px; }

.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,.72);
  transition: background .35s var(--ease), color .3s, transform .35s var(--ease-spring), border-color .3s;
}
.social-row a:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-4px) scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12.5px;
}

/* ── 21. FLOATING BUTTONS ─────────────────────────────────── */
.float-btns {
  position: fixed;
  bottom: 26px;
  right: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}

.fbtn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
  cursor: pointer;
  border: none;
  transition: transform .35s var(--ease-spring), box-shadow .35s;
}
.fbtn:hover { transform: scale(1.12); box-shadow: 0 16px 36px rgba(0,0,0,.32); }

.fbtn.wa { background: #25D366; }
.fbtn.wa:hover { background: #1EBE57; }

.fbtn.top {
  background: var(--navy);
  opacity: 0;
  pointer-events: none;
  transform: scale(.7) translateY(20px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.fbtn.top.show {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.fbtn.top:hover { background: var(--navy-mid); }

/* ── 22. ACCESSIBILITY & FOCUS ────────────────────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── 23. REDUCED MOTION ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── 24. SELECTION ────────────────────────────────────────── */
::selection {
  background: rgba(0,180,216,.28);
  color: var(--navy-deep);
}

/* ── 25. SCROLLBAR ────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--mist); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--navy-mid); }

/* ── 26. REQUIREMENTS GALLERY ─────────────────────────────── */
.req-upload-zone { margin-bottom: 36px; }

.req-dropbox {
  border: 2px dashed rgba(0,180,216,.45);
  border-radius: var(--r-lg);
  padding: 44px 28px;
  text-align: center;
  background: var(--mist);
  transition: background .3s, border-color .3s;
  cursor: pointer;
}
.req-dropbox.drag-over {
  background: rgba(0,180,216,.08);
  border-color: var(--gold);
}
.req-dropbox i {
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.req-dropbox p {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 6px;
}
.req-dropbox span {
  font-size: 12px;
  color: var(--slate);
  display: block;
  margin-bottom: 20px;
}

.req-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.req-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--slate-light);
}
.req-empty i { font-size: 52px; margin-bottom: 16px; display: block; color: var(--mist-2); }
.req-empty p { font-size: 15px; }

.req-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--mist);
  border: 1px solid var(--mist-2);
  cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .4s;
  box-shadow: var(--shadow-sm);
}
.req-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.req-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.req-item:hover img { transform: scale(1.05); }

.req-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,62,138,.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.req-item:hover .req-item-overlay { opacity: 1; }

.req-item-overlay span {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.req-item-overlay i { color: var(--gold-soft); }

.req-item-del {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(220,38,38,.85);
  color: white;
  border: none;
  font-size: 13px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background .3s, transform .3s;
  z-index: 5;
}
.req-item:hover .req-item-del { display: flex; }
.req-item-del:hover { background: #b91c1c; transform: scale(1.1); }

/* Lightbox */
.req-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.req-lightbox.open { display: flex; }

.req-lb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2,62,138,.92);
  backdrop-filter: blur(8px);
}

.req-lb-content {
  position: relative;
  z-index: 2001;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 90vw;
  max-height: 90vh;
}

.req-lb-content img {
  max-width: 80vw;
  max-height: 85vh;
  border-radius: var(--r-lg);
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
  object-fit: contain;
  display: block;
}

.req-lb-close {
  position: fixed;
  top: 20px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: white;
  border: 1px solid rgba(255,255,255,.3);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, transform .3s;
}
.req-lb-close:hover { background: rgba(255,255,255,.28); transform: rotate(90deg); }

.req-lb-prev, .req-lb-next {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: white;
  border: 1px solid rgba(255,255,255,.3);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s, transform .3s var(--ease);
}
.req-lb-prev:hover { background: rgba(255,255,255,.28); transform: translateX(-4px); }
.req-lb-next:hover { background: rgba(255,255,255,.28); transform: translateX(4px); }

@media (max-width: 600px) {
  .req-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .req-lb-prev, .req-lb-next { width: 36px; height: 36px; font-size: 14px; }
  .req-lb-content img { max-width: 88vw; }
}