/* ═══════════════════════════════════════════════════════
   AICC – Almeria International Construction Corporation
   Modern Corporate Redesign  |  style.css
   Brand: Blue #1A3B82 · Orange #E87722
   ═══════════════════════════════════════════════════════ */

/* ── Reset & Variables ─────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --blue-deep:   #071428;
  --blue-dark:   #0F2558;
  --blue:        #1A3B82;
  --blue-mid:    #2355A0;
  --blue-text:   #2E6DB4;
  --orange:      #E87722;
  --orange-lt:   #F09240;
  --white:       #ffffff;
  --off-white:   #F3F7FF;
  --gray-100:    #F0F4FB;
  --gray-200:    #DDE5F4;
  --gray-400:    #8FA3C8;
  --gray-600:    #4A5E7F;
  --text:        #0d1e3a;
  --text-muted:  #5a6e8a;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 12px rgba(10,30,80,.08);
  --shadow:    0 8px 40px rgba(10,30,80,.14);
  --shadow-lg: 0 24px 80px rgba(10,30,80,.22);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Raleway', sans-serif;
  --font-body:    'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

body.preloading { overflow: hidden; }

img { max-width:100%; display:block; }
a   { text-decoration:none; color:inherit; }
ul  { list-style:none; }
em  { font-style:normal; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

/* ── Utility ────────────────────────────────────────── */
.text-orange { color: var(--orange); }
.section-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--orange); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-title { margin: 0 auto 16px; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 50px;
  padding: 14px 32px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,119,34,.35);
}
.btn-primary:hover {
  background: var(--orange-lt);
  box-shadow: 0 8px 32px rgba(232,119,34,.45);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.8);
}
.btn-nav {
  background: var(--orange);
  color: var(--white);
  font-size: .8rem;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
}
.btn-nav:hover { background: var(--orange-lt); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 13px 32px;
}
.btn-outline:hover { background: var(--blue); color: var(--white); }
.play-c {
  display: inline-flex;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.6);
  align-items: center;
  justify-content: center;
  font-size: .6rem;
}
.full-w { width:100%; justify-content:center; }


/* ══════════════════════════════════════════════════════
   PRELOADER
   ══════════════════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--blue);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform .9s cubic-bezier(.76,0,.24,1),
              opacity .4s ease;
}

#preloader.pre-out {
  transform: translateY(-100%);
}

.pre-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Logo image wrap */
.pre-graphic-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Real AICC logo – white tint on blue bg via brightness+invert, then scale in */
.pre-logo-img {
  width: 320px;
  max-width: 80vw;
  height: auto;
  filter: brightness(0) invert(1);          /* all-white on the blue background */
  opacity: 0;
  animation: preLogoIn 1s cubic-bezier(.22,1,.36,1) .35s forwards;
}

@keyframes preLogoIn {
  0%   { opacity: 0; transform: scale(.78) translateY(20px); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes preTextUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Tagline */
.pre-tagline {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  opacity: 0;
  animation: preTextUp .5s ease 1.35s forwards;
}

/* Progress bar */
.pre-bar-wrap {
  width: 240px;
  height: 2px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: preTextUp .4s ease 1.3s forwards;
}

.pre-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--orange);
  border-radius: 2px;
  animation: preBarFill 2.2s cubic-bezier(.4,0,.2,1) 1.3s forwards;
}
@keyframes preBarFill { to { width: 100%; } }

/* Radial glow behind preloader logo */
#preloader::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(35,85,160,.5) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { transform: scale(1); opacity:.6; }
  50%      { transform: scale(1.15); opacity:1; }
}


/* ══════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════ */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition),
              padding var(--transition),
              box-shadow var(--transition);
}
.nav-wrapper.scrolled {
  background: rgba(7,20,40,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo { display:flex; align-items:center; }
.nav-logo-img {
  height: 44px;
  width: auto;
  /* Show the real full-colour logo; boost brightness a touch on dark nav */
  filter: brightness(1.1) drop-shadow(0 1px 4px rgba(0,0,0,.35));
  transition: var(--transition);
}
.nav-wrapper.scrolled .nav-logo-img {
  filter: brightness(1.05) drop-shadow(0 1px 3px rgba(0,0,0,.25));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .02em;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover       { color: var(--white); }
.nav-links a:hover::after{ width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }


/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Slideshow */
.hero-slides { position:absolute; inset:0; z-index:0; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlide 21s infinite;
  transform: scale(1.08);
}
.hero-slide.s1 { animation-delay: 0s; }
.hero-slide.s2 { animation-delay: 7s; }
.hero-slide.s3 { animation-delay: 14s; }

@keyframes heroSlide {
  0%          { opacity:0; transform:scale(1.08); }
  5%          { opacity:1; transform:scale(1.08); }
  28%         { opacity:1; transform:scale(1.0); }
  35%         { opacity:0; transform:scale(1.0); }
  100%        { opacity:0; transform:scale(1.08); }
}

.hero-overlay {
  position: absolute; inset:0; z-index:1;
  background: linear-gradient(
    135deg,
    rgba(7,20,40,.85) 0%,
    rgba(15,37,88,.7) 50%,
    rgba(7,20,40,.6) 100%
  );
}

.hero-grid-lines {
  position: absolute; inset:0; z-index:2;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: dotBlink 2s ease-in-out infinite;
}
@keyframes dotBlink { 0%,100%{opacity:1;} 50%{opacity:.3;} }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 720px;
}
.hero-title .text-orange {
  position: relative;
  display: inline-block;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* Hero stats bar — pinned to bottom of hero */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(7,20,40,.55);
  border-top: 1px solid rgba(255,255,255,.1);
  border-radius: 0;
  padding: 18px 40px;
  backdrop-filter: blur(20px);
  width: 100%;
  flex-wrap: nowrap;
  z-index: 4;
}
.hs-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 28px;
}
.hs-item:first-child { padding-left:0; }
.hs-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hs-suf { font-size:.9em; font-weight:900; color:var(--white); vertical-align:super; line-height:1; }
.hs-lbl { font-size: .7rem; font-weight:600; color:rgba(255,255,255,.55); letter-spacing:.06em; text-transform:uppercase; }
.hs-div { width:1px; height:36px; background:rgba(255,255,255,.15); }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: scrollBob 2.5s ease-in-out infinite;
}
@keyframes scrollBob { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(5px);} }

.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-wheel {
  width: 3px; height: 7px;
  background: rgba(255,255,255,.6);
  border-radius: 2px;
  animation: wheelScroll 2s ease-in-out infinite;
}
@keyframes wheelScroll { 0%,100%{transform:translateY(0);opacity:1;} 80%{transform:translateY(10px);opacity:0;} }


/* ══════════════════════════════════════════════════════
   MARQUEE
   ══════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--blue-dark);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeRoll 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.marquee-track em {
  color: var(--orange);
  font-size: .65rem;
}
@keyframes marqueeRoll { from{transform:translateX(0)} to{transform:translateX(-50%)} }


/* ══════════════════════════════════════════════════════
   COMPANY VIDEO SECTION
   ══════════════════════════════════════════════════════ */
.video-section {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.video-bg-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--blue-deep) 0%, var(--blue-dark) 55%, #0a2040 100%);
}
.video-bg-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.video-bg-layer::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,119,34,.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.video-section-inner { position: relative; z-index: 1; }

.video-section-header {
  text-align: center;
  margin-bottom: 52px;
}
.video-section-header .section-title { margin-bottom: 14px; }
.video-section-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Video player wrapper ── */
.video-player-wrap {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto 52px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06);
  background: #000;
  aspect-ratio: 16/9;
}

.company-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Play overlay ── */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,20,40,.75) 0%, rgba(15,37,88,.65) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity .5s ease;
  z-index: 2;
}
.video-overlay.hidden { opacity: 0; pointer-events: none; }

.video-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Pulsing play button */
.video-play-btn {
  position: relative;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(232,119,34,.5);
  transition: transform .25s ease, background .25s ease;
  animation: playPulse 2.2s ease-out infinite;
}
.video-play-btn:hover { transform: scale(1.1); background: var(--orange-lt); }
.video-play-btn:hover { animation: none; }

.play-triangle {
  font-size: 2rem;
  color: var(--white);
  margin-left: 5px; /* optical centering */
  line-height: 1;
}

@keyframes playPulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,119,34,.55); }
  70%  { box-shadow: 0 0 0 28px rgba(232,119,34,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,119,34,0); }
}

.video-overlay-label {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}

/* Decorative corner accents */
.vcorner {
  position: absolute;
  width: 28px; height: 28px;
  border-color: var(--orange);
  border-style: solid;
  opacity: .7;
}
.vc-tl { top:18px; left:18px;  border-width:2px 0 0 2px; }
.vc-tr { top:18px; right:18px; border-width:2px 2px 0 0; }
.vc-bl { bottom:18px; left:18px;  border-width:0 0 2px 2px; }
.vc-br { bottom:18px; right:18px; border-width:0 2px 2px 0; }

/* ── Custom controls bar ── */
.video-controls {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
  z-index: 3;
}
.video-player-wrap:hover .video-controls,
.video-controls.visible { opacity: 1; transform: translateY(0); }

.vc-play-pause,
.vc-mute,
.vc-fullscreen {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .85;
  transition: opacity .2s, transform .2s;
  flex-shrink: 0;
}
.vc-play-pause:hover,
.vc-mute:hover,
.vc-fullscreen:hover { opacity: 1; transform: scale(1.12); }
.vc-play-pause svg, .vc-mute svg, .vc-fullscreen svg { width:20px; height:20px; }

.vc-progress-wrap {
  flex: 1;
  padding: 8px 0;
  cursor: pointer;
}
.vc-progress-bar {
  position: relative;
  height: 3px;
  background: rgba(255,255,255,.25);
  border-radius: 3px;
  overflow: visible;
}
.vc-progress-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 3px;
  width: 0%;
  transition: width .1s linear;
}
.vc-progress-thumb {
  position: absolute;
  top: 50%; right: 0;
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
  transform: translate(50%, -50%) scale(0);
  transition: transform .15s ease;
  box-shadow: 0 0 6px rgba(232,119,34,.6);
}
.vc-progress-wrap:hover .vc-progress-thumb { transform: translate(50%, -50%) scale(1); }
.vc-progress-wrap:hover .vc-progress-bar { height: 5px; }

.vc-time {
  font-size: .72rem;
  color: rgba(255,255,255,.75);
  font-weight: 600;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

/* ── Video stats row ── */
.video-stats-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px 40px;
  max-width: 980px;
  margin: 0 auto;
  backdrop-filter: blur(12px);
}
.vs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
}
.vs-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  font-family: var(--font-heading);
}
.vs-suf { font-size: 1.1rem; font-weight: 700; color: var(--orange); }
.vs-lbl { font-size: .65rem; font-weight: 600; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-top: 6px; text-align: center; }
.vs-div { width: 1px; height: 44px; background: rgba(255,255,255,.15); justify-self: center; }

@media (max-width: 768px) {
  .video-stats-row {
    grid-template-columns: 1fr 1px 1fr;
    grid-template-rows: auto auto;
    padding: 20px 16px;
    gap: 16px 0;
  }
  /* Hide the 3 dividers on mobile and reposition 4th stat */
  .vs-div { display: none; }
  .vs-item { padding: 0 8px; }
  .video-play-btn { width:68px; height:68px; }
  .play-triangle { font-size: 1.5rem; }
}


/* ══════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════ */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-media { position: relative; }

.about-img-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-img-main img {
  width:100%; height:100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.about-img-main:hover img { transform: scale(1.04); }

.about-yr-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 90px; height: 90px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow);
}
.about-yr-badge strong { font-size:1.15rem; font-weight:900; line-height:1; }
.about-yr-badge span   { font-size:.65rem; font-weight:700; opacity:.85; letter-spacing:.08em; }

.about-img-sub {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 210px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.9);
  box-shadow: 0 8px 32px rgba(7,20,40,.35);
  backdrop-filter: blur(2px);
}
.about-img-sub img { width:100%; height:100%; object-fit:cover; aspect-ratio:4/3; display:block; }

.about-body { padding-left: 0; }

.about-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.mv-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px;
  background: var(--gray-100);
  border-radius: var(--radius);
  border-top: 3px solid var(--orange);
  transition: var(--transition);
}
.mv-card:hover { background: var(--off-white); box-shadow: var(--shadow-sm); transform: translateY(-2px); }

.mv-icon { font-size:1.6rem; line-height:1; }

.mv-card strong {
  display: block;
  font-size: .92rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: .01em;
}
.mv-card p { font-size: .84rem; color: var(--text-muted); line-height:1.65; margin:0; }


/* ══════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════ */
.services-section { background: var(--gray-100); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.svc-card::before {
  content: attr(data-n);
  position: absolute;
  top: 24px; right: 28px;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
  transition: var(--transition);
}
.svc-card::after {
  content: '';
  position: absolute;
  inset:0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: var(--transition);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-card:hover::after { border-color: var(--orange); }
.svc-card:hover::before { color: rgba(232,119,34,.12); }

.svc-featured {
  background: var(--blue);
  border-color: var(--blue);
}
.svc-featured::before   { color: rgba(255,255,255,.1); }
.svc-featured h3        { color: var(--white); }
.svc-featured p         { color: rgba(255,255,255,.72); }
.svc-featured .svc-icon { background:rgba(255,255,255,.12); color:var(--white); }
.svc-featured:hover::after { border-color:var(--orange); }

.svc-icon {
  width: 54px; height: 54px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--blue);
  transition: var(--transition);
}
.svc-icon svg { width:28px; height:28px; }
.svc-card:hover .svc-icon { background:var(--orange); color:var(--white); }
.svc-featured:hover .svc-icon { background:var(--orange); }

.svc-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.svc-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ══════════════════════════════════════════════════════
   PROJECTS
   ══════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════
   PROJECTS GALLERY
   ══════════════════════════════════════════════════════ */
.projects-section { background: var(--bg-alt); }

/* ── Shared card base ── */
.pgcard {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
}
.pgcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ── Cover photo ── */
.pgcard-cover {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: background-position .6s ease;
}
.pgcard-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,20,40,.88) 0%, rgba(7,20,40,.35) 55%, transparent 100%);
}
.pgcard:hover .pgcard-cover { background-position: center 45%; }

/* ── Overlay info ── */
.pgcard-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 22px;
  z-index: 2;
}
.pgcard-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.pg-badge {
  display: inline-block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 50px;
  color: var(--white);
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
}
.pg-badge-star { background: var(--orange); border-color: var(--orange); }
.pg-badge-ongoing { background: rgba(34,197,94,.25); border-color: rgba(34,197,94,.5); color: #86efac; }

.pgcard-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
}
.pgcard-loc {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
}
.pgcard-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pgcard-stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pgcard-stats span {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  backdrop-filter: blur(8px);
}
.pgcard-stats b { font-size: .82rem; color: var(--white); font-weight: 700; line-height: 1.2; }
.pgcard-stats small { font-size: .58rem; color: rgba(255,255,255,.55); letter-spacing: .06em; text-transform: uppercase; }

/* sm overlay (grid cards — minimal info) */
.pgcard-overlay-sm .pgcard-title { font-size: 1.05rem; }
.pgcard-overlay-sm .pgcard-loc   { margin-bottom: 0; }

/* ── Thumbnail strip ── */
.pgcard-thumbstrip {
  display: grid;
  gap: 3px;
  padding: 3px;
  background: var(--white);
}
.pgcard-featured .pgcard-thumbstrip { grid-template-columns: repeat(5, 1fr); }
.pgrid .pgcard-thumbstrip           { grid-template-columns: repeat(5, 1fr); }

.pg-thumb {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform .25s ease, filter .25s ease;
  border-radius: 4px;
  overflow: hidden;
}
.pg-thumb:hover { transform: scale(1.06); filter: brightness(1.1); }

/* ── Featured card ── */
.pgcard-featured { margin-bottom: 20px; }
.pgcard-featured .pgcard-cover { height: 480px; }

/* ── 3-col project grid ── */
.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pgrid .pgcard-cover { height: 240px; }

/* ══════════════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════════════ */
.lb-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lb-modal.lb-open {
  opacity: 1;
  pointer-events: all;
}
.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,10,22,.95);
  backdrop-filter: blur(12px);
}
.lb-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
}
.lb-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: 1.2rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.lb-close:hover { background: var(--orange); border-color: var(--orange); }

.lb-imgwrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  padding: 60px 80px 0;
}
.lb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  transition: opacity .2s ease;
}
.lb-img.lb-fade { opacity: 0; }

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-nav:hover { background: var(--orange); border-color: var(--orange); }
.lb-nav:disabled { opacity: .25; pointer-events: none; }

.lb-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  padding: 14px 0 8px;
  color: var(--white);
}
.lb-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; }
.lb-counter { font-size: .78rem; color: rgba(255,255,255,.5); }

.lb-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding-bottom: 16px;
}
.lb-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: var(--transition);
}
.lb-dot.active { background: var(--orange); transform: scale(1.3); }


/* ══════════════════════════════════════════════════════
   ACCREDITATIONS
   ══════════════════════════════════════════════════════ */
.accred-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.accred-bg-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-dark) 60%, var(--blue) 100%);
}
.accred-bg-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.accred-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.accred-left .section-title { margin-bottom:24px; }
.accred-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 420px;
}

.accred-logo-row {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.accred-logo-img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .75;
}

/* Accreditation badge image – mix-blend-mode:screen knocks out black background */
.accred-badges-img {
  width: 100%;
  max-width: 520px;
  mix-blend-mode: screen;
  filter: brightness(1.15) contrast(1.05);
}

.accred-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accred-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.accred-card::before {
  content: '';
  position: absolute;
  left:0; top:0; bottom:0;
  width: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}
.accred-card:hover { background:rgba(255,255,255,.09); }
.accred-card:hover::before { transform: scaleY(1); }

.ac-num {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.ac-icon { font-size:1.4rem; flex-shrink:0; }
.accred-card strong {
  display:block;
  font-size:.95rem;
  font-weight:700;
  color:var(--white);
  margin-bottom:6px;
}
.accred-card p { font-size:.85rem; color:rgba(255,255,255,.6); line-height:1.65; }

/* ── Certificates Gallery ── */
.certs-gallery-section {
  padding-top: 64px;
  padding-bottom: 20px;
}
.certs-gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.certs-gallery-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin: 0;
  line-height: 1.15;
}
.certs-gallery-sub {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  margin: 0;
}

/* Horizontal scroll wrapper */
.certs-scroll-wrap {
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: thin;
  scrollbar-color: rgba(232,119,34,.5) rgba(255,255,255,.08);
  padding-bottom: 28px;
  cursor: grab;
}
.certs-scroll-wrap:active { cursor: grabbing; }
.certs-scroll-wrap::-webkit-scrollbar { height: 4px; }
.certs-scroll-wrap::-webkit-scrollbar-track { background: rgba(255,255,255,.06); border-radius: 4px; }
.certs-scroll-wrap::-webkit-scrollbar-thumb { background: rgba(232,119,34,.5); border-radius: 4px; }

.certs-gallery {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 8px 4px 4px;
}

/* Individual certificate card */
.cert-card {
  width: 210px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.35), 0 2px 8px rgba(0,0,0,.2);
  cursor: pointer;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease;
  position: relative;
}
.cert-card:hover {
  transform: translateY(-10px) rotate(-0.8deg) scale(1.02);
  box-shadow: 0 28px 70px rgba(0,0,0,.5), 0 4px 16px rgba(0,0,0,.25);
}
.cert-card:nth-child(even):hover { transform: translateY(-10px) rotate(0.8deg) scale(1.02); }

.cert-accent {
  height: 6px;
  width: 100%;
  flex-shrink: 0;
}

.cert-thumb {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .4s ease;
}
.cert-card:hover .cert-thumb { transform: scale(1.04); }

.cert-info {
  padding: 14px 16px 16px;
  border-top: 1px solid #f0f2f5;
}
.cert-issuer-label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8898aa;
  margin-bottom: 4px;
}
.cert-name {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.2;
  margin-bottom: 4px;
}
.cert-standards {
  font-size: .7rem;
  color: #6b7280;
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════
   EVENTS & GALLERY
   ══════════════════════════════════════════════════════ */
.events-section {
  background: var(--white);
}

/* ── Event Card ── */
.ev-card {
  background: var(--white);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-top: 56px;
}

/* ── Card Header ── */
.ev-header {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 36px 44px 28px;
  background: linear-gradient(135deg, var(--navy) 0%, #1A3B82 100%);
  color: var(--white);
}

.ev-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  background: var(--orange);
  border-radius: var(--radius);
  padding: 10px 14px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(232,119,34,.4);
}
.ev-month { font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; opacity: .9; }
.ev-day   { font-size: 2rem; font-weight: 900; line-height: 1; font-family: var(--font-heading); }
.ev-year  { font-size: .65rem; font-weight: 700; opacity: .85; }

.ev-meta  { flex: 1; }
.ev-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,.2);
}
.ev-title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}

/* ── Card Body ── */
.ev-body {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
}

.ev-text-col {
  padding: 36px 40px;
  border-right: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ev-desc {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

/* ── Embedded video ── */
.ev-video-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  margin-top: 8px;
  box-shadow: var(--shadow);
}
.ev-video {
  width: 100%;
  display: block;
  max-height: 240px;
  object-fit: cover;
}
.ev-video-label {
  font-size: .75rem;
  color: var(--text-muted);
  padding: 8px 12px;
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
}

.ev-credit {
  font-size: .78rem;
  color: var(--text-muted);
  opacity: .8;
  line-height: 1.6;
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid var(--gray-200);
}
.ev-post-date { font-weight: 600; }

/* ── Anniversary card gold variant ── */
.ev-header--gold {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1A3B82 100%);
  position: relative;
  overflow: hidden;
}
.ev-header--gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(212,175,55,.18) 0%, transparent 65%);
  pointer-events: none;
}
.ev-date-badge--gold {
  background: linear-gradient(135deg, #c9a227 0%, #f0d060 50%, #c9a227 100%);
  color: #1a1a2e;
  box-shadow: 0 4px 20px rgba(201,162,39,.45);
}
.ev-date-badge--gold .ev-day { font-size: 1.4rem; letter-spacing: .04em; }

/* ── RunRio dark variant ── */
.ev-header--dark {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 60%, #2d1b4e 100%);
}
.ev-date-badge--orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,119,34,.4);
}

/* ── RunRio 2-photo layout ── */
.ev-photo-feature--half { min-height: 240px; }
.ev-photo-grid--single-row {
  display: grid;
  grid-template-columns: 1fr;
}
.ev-photo-grid--single-row .ev-photo { aspect-ratio: 16/9; }

/* ── Military / Groundbreaking variant ── */
.ev-header--military {
  background: linear-gradient(135deg, #1a2a1a 0%, #2d4a2d 50%, #3a5a3a 100%);
}
.ev-date-badge--military {
  background: linear-gradient(135deg, #4a7c59 0%, #6aaa79 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(74,124,89,.4);
}

/* ── We Heal as One / Medical variant ── */
.ev-header--medical {
  background: linear-gradient(135deg, #0d2a3a 0%, #0a4060 50%, #0d6b8a 100%);
}
.ev-date-badge--medical {
  background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(230,57,70,.4);
  min-width: 80px;
}
.ev-date-badge--medical .ev-month { font-size: .7rem; letter-spacing: .08em; }
.ev-date-badge--medical .ev-day   { font-size: 1rem; font-weight: 900; line-height: 1.2; }
.ev-date-badge--medical .ev-year  { font-size: .6rem; }

/* ── Full-width video-only layout ── */
.ev-body-full {
  padding: 32px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ev-text-col--wide {
  padding: 0;
  border: none;
  max-width: 680px;
}
.ev-video-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 16px;
  align-items: start;
}
.ev-video-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}
.ev-video-item--featured .ev-video { max-height: 360px; }
.ev-video-pair {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ev-video-pair .ev-video { max-height: 160px; }

/* ── PCA / Teal variant ── */
.ev-header--teal {
  background: linear-gradient(135deg, #0d3349 0%, #0e6b8a 60%, #1a9fc0 100%);
  flex-wrap: wrap;
  gap: 20px;
}
.ev-date-badge--teal {
  background: #1ab8e0;
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,184,224,.4);
}
.ev-org-logo {
  height: 56px;
  width: auto;
  margin-left: auto;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  padding: 6px 10px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* ── Single-photo layout ── */
.ev-body--single {
  grid-template-columns: 1fr 1.3fr;
}
.ev-gallery--single { cursor: pointer; }
.ev-photo-hero {
  background-size: cover;
  background-position: center top;
  min-height: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  transition: filter .3s ease;
  cursor: pointer;
}
.ev-photo-hero:hover { filter: brightness(1.06); }
.ev-photo-view-hint {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(7,20,40,.65);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .3s;
}
.ev-photo-hero:hover .ev-photo-view-hint { opacity: 1; }

/* ── Photo gallery side ── */
.ev-gallery {
  display: grid;
  grid-template-rows: 1fr auto;
  cursor: pointer;
}

.ev-photo-feature {
  background-size: cover;
  background-position: center;
  min-height: 280px;
  position: relative;
  transition: filter .3s ease;
}
.ev-photo-feature:hover { filter: brightness(1.08); }

.ev-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.ev-photo {
  background-size: cover;
  background-position: center;
  aspect-ratio: 1/1;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: filter .3s ease, transform .3s ease;
}
.ev-photo:hover { filter: brightness(1.12); transform: scale(1.04); z-index: 1; }

.ev-photo-last::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7,20,40,.45);
  transition: background .3s;
}
.ev-photo-last:hover::after { background: rgba(7,20,40,.25); }
.ev-photo-more {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════
   OFFICE GALLERY (inside Contact section)
   ══════════════════════════════════════════════════════ */
.office-gallery-wrap {
  padding-top: 80px;
  padding-bottom: 64px;
}

.office-gallery-header {
  text-align: center;
  margin-bottom: 40px;
}
.office-gallery-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin: 0;
}

.office-gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 12px;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
}

.og-item {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.og-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7,20,40,.18);
  transition: background 0.3s ease;
}
.og-item:hover { transform: scale(1.015); box-shadow: 0 12px 36px rgba(0,0,0,.22); z-index:1; }
.og-item:hover::after { background: rgba(7,20,40,.05); }

.og-feature {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
}

.og-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.og-grid .og-item {
  aspect-ratio: 1/1;
}
.og-item-wide {
  grid-column: 1 / -1;
  aspect-ratio: 2/1 !important;
}

/* ══════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════ */
.contact-section { background: var(--gray-100); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.contact-lead {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-items { display:flex; flex-direction:column; gap:28px; }

.ci {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ci-icon {
  width:44px; height:44px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  display: flex; align-items:center; justify-content:center;
  font-size:1.1rem;
  flex-shrink:0;
  box-shadow: var(--shadow-sm);
}
.ci strong { display:block; font-size:.9rem; font-weight:700; color:var(--text); margin-bottom:4px; }
.ci p { font-size:.88rem; color:var(--text-muted); line-height:1.65; }
.ci a { color: var(--blue-text); font-weight:500; }
.ci a:hover { color:var(--orange); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.contact-form { display:flex; flex-direction:column; gap:20px; }

.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }

.form-group { display:flex; flex-direction:column; gap:8px; }

.form-group label {
  font-size:.8rem;
  font-weight:700;
  color:var(--text);
  letter-spacing:.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-text);
  box-shadow: 0 0 0 3px rgba(46,109,180,.12);
}
.form-group textarea { resize:vertical; min-height:120px; }
.form-group select   { cursor:pointer; appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A5E7F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 16px center; padding-right:40px; }


/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.footer { background: var(--blue-deep); color: var(--white); }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-top: 72px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-logo { height:56px; width:auto; filter:brightness(1.15) drop-shadow(0 1px 6px rgba(0,0,0,.4)); margin-bottom:16px; }
.footer-brand p { font-size:.88rem; color:rgba(255,255,255,.5); line-height:1.7; margin-bottom:24px; }

.footer-socials { display:flex; gap:12px; }
.footer-socials a {
  width:38px; height:38px;
  border-radius:50%;
  border:1.5px solid rgba(255,255,255,.15);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.6);
  transition:var(--transition);
}
.footer-socials a svg { width:16px; height:16px; }
.footer-socials a:hover { background:var(--orange); border-color:var(--orange); color:var(--white); }

.footer-col h4 {
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.4);
  margin-bottom:20px;
}
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col a { font-size:.88rem; color:rgba(255,255,255,.6); transition:var(--transition); }
.footer-col a:hover { color:var(--orange); padding-left:4px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size:.8rem; color:rgba(255,255,255,.35); }
.footer-legal { display:flex; gap:24px; }
.footer-legal a { font-size:.8rem; color:rgba(255,255,255,.35); transition:var(--transition); }
.footer-legal a:hover { color:rgba(255,255,255,.7); }


/* ══════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }


/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width:1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top    { grid-template-columns: 1fr 1fr; gap:40px; }
}

@media (max-width:900px) {
  .about-grid     { grid-template-columns: 1fr; gap:60px; }
  .about-media    { order:2; }
  .about-body     { order:1; padding-left:0; }
  .mv-grid        { grid-template-columns: 1fr; }
  .about-img-sub  { right: 12px; width: 170px; }
  .accred-layout  { grid-template-columns: 1fr; gap:48px; }
  .contact-layout { grid-template-columns: 1fr; gap:48px; }
  .pgrid { grid-template-columns: 1fr 1fr; }
  .pgcard-featured .pgcard-cover { height: 380px; }
  .office-gallery { grid-template-columns: 1fr; }
  .og-feature { aspect-ratio: 16/9; }
  .ev-body { grid-template-columns: 1fr; }
  .ev-text-col { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .ev-photo-feature { min-height: 220px; }
  .ev-video-grid { grid-template-columns: 1fr; }
  .ev-body--single { grid-template-columns: 1fr; }
}

@media (max-width:768px) {
  .nav-links, .btn-nav { display:none; }
  .hamburger { display:flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top:0; left:0; right:0; bottom:0;
    background: rgba(7,20,40,.98);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 999;
  }
  .nav-links.open a { font-size:1.6rem; color:var(--white); }

  .hero-title { font-size:2.4rem; }
  .hero-stats { padding:14px 24px; }
  .hs-item    { padding:0 16px; }
  .scroll-cue { bottom: 80px; }

  .section    { padding:72px 0; }

  .services-grid    { grid-template-columns: 1fr; }
  .pgrid { grid-template-columns: 1fr; }
  .pgcard-featured .pgcard-cover { height: 280px; }
  .pgrid .pgcard-cover { height: 200px; }
  .pgcard-featured .pgcard-thumbstrip,
  .pgrid .pgcard-thumbstrip { grid-template-columns: repeat(5, 1fr); }

  .footer-top { grid-template-columns: 1fr; gap:32px; }
  .footer-bottom { flex-direction:column; text-align:center; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding:28px 20px; }

  .pre-logo-img { width: 220px; }
}

@media (max-width:480px) {
  .hero-title  { font-size:2rem; }
  .hero-ctas   { flex-direction:column; }
  .hero-stats  { display:none; }
  .about-img-sub { display:none; }
}
