/* ============================================================
   Speedlight Prints — style.css
   Dark, bold, premium — Navy & Silver brand palette
   ============================================================ */

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

:root {
  /* Backgrounds */
  --bg-white:    #ffffff;
  --bg-light:    #f4f6fb;
  --bg-subtle:   #eceffe;
  --bg-dark:     #0f0f28;
  --bg-navy:     #1a1a2e;

  /* Text */
  --text-dark:   #0f0f28;
  --text-body:   #3a3b5c;
  --text-muted:  rgba(58,59,92,0.55);
  --text-white:  #ffffff;

  /* Brand */
  --navy:        #2d2e6b;
  --navy-mid:    #3d3f8f;
  --navy-bright: #5558b0;
  --navy-light:  #eceffe;

  /* Borders */
  --border:      rgba(45,46,107,0.12);
  --border-dark: rgba(255,255,255,0.1);

  /* Legacy aliases — keep for backward compat */
  --black:       #ffffff;
  --off-black:   #f4f6fb;
  --dark:        #eceffe;
  --dark-mid:    #dde0f0;
  --white:       #0f0f28;
  --white-dim:   rgba(15,15,40,0.55);
  --white-faint: rgba(15,15,40,0.06);
  --gold:        #2d2e6b;
  --gold-dim:    rgba(45,46,107,0.12);
  --gold-glow:   rgba(45,46,107,0.06);
  --accent:      #2d2e6b;

  /* Radii */
  --radius-sm:   6px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-xl:   40px;

  /* Fonts */
  --font-display: 'Montserrat', sans-serif;
  --font-serif:   'DM Serif Display', serif;
  --font-sans:    'Montserrat', sans-serif;
  --font-body:    'Montserrat', sans-serif;

  /* Easing */
  --transition:   cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg-white);
  color: var(--text-dark);
  font-family: var(--font-body);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Custom Cursor ── */
/* Custom cursor — desktop/mouse only */
.cursor,
.cursor-trail {
  display: none;
}

@media (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    width: 12px;
    height: 12px;
    background: #2d2e6b;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    top: 0;
    left: 0;
    /* JS drives transform & opacity — only transition size/color here */
    transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
    opacity: 1;
    /* Start offscreen so it doesn't flash at 0,0 on page load */
    transform: translate(-999px, -999px);
    will-change: transform;
  }
  .cursor-trail {
    display: block;
    position: fixed;
    width: 36px;
    height: 36px;
    border: 2px solid rgba(45,46,107,0.55);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    top: 0;
    left: 0;
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
    opacity: 0.55;
    transform: translate(-999px, -999px);
    will-change: transform;
  }
  body {
    cursor: none;
  }
  button, a, [role="button"] {
    cursor: none;
  }
  body.cursor-hovering .cursor {
    width: 20px;
    height: 20px;
    background: var(--navy-bright);
  }
  body.cursor-hovering .cursor-trail {
    width: 52px;
    height: 52px;
    border-color: rgba(85,88,176,0.4);
    opacity: 0.3;
  }
}

/* ── Section Labels ── */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.section-label.centered { justify-content: center; }
.label-num {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--navy-bright);
  font-weight: 700;
  opacity: 1;
}
.label-text {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--navy);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(45,46,107,0.25);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy-mid);
  transform: translateX(-101%);
  transition: transform 0.4s var(--transition);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(45,46,107,0.35); transform: translateY(-2px); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary svg { width: 18px; height: 18px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 0;
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(45,46,107,0.2);
  transition: all 0.3s var(--ease-out);
}
.btn-ghost:hover { color: var(--navy); border-color: var(--navy); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.35s var(--ease-out);
}
.btn-outline:hover {
  background: var(--navy);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,46,107,0.25);
}

/* ============================================================
   NAVIGATION — Fully Responsive
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 60px;
  background: #ffffff;
  border-bottom: 1px solid rgba(45,46,107,0.10);
  box-shadow: 0 2px 16px rgba(45,46,107,0.06);
  transition: padding 0.4s var(--ease-out), box-shadow 0.4s;
  min-height: 68px;
}
.nav.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  padding: 12px 60px;
  border-bottom: 1px solid rgba(45,46,107,0.12);
  box-shadow: 0 4px 24px rgba(45,46,107,0.10);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1101;
  text-decoration: none;
}
.logo-img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(14%) sepia(54%) saturate(800%) hue-rotate(210deg) brightness(85%);
  transition: opacity 0.3s, filter 0.3s;
  display: block;
}
.logo-img:hover { opacity: 0.8; }
.footer-logo-img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 12px;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 600;
  transition: color 0.25s;
  position: relative;
  white-space: nowrap;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--navy);
  transition: width 0.3s var(--ease-out);
  border-radius: 2px;
}
.nav-link:hover { color: var(--navy); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-sans);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  background: var(--navy);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(45,46,107,0.22);
}
.nav-cta:hover {
  background: var(--navy-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45,46,107,0.3);
}

/* Hamburger button — hidden on desktop */
.nav-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 1101;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  flex-shrink: 0;
  transition: background 0.2s;
}
.nav-menu-btn:hover { background: rgba(45,46,107,0.06); }
.nav-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.35s var(--ease-out);
  transform-origin: center;
  border-radius: 2px;
}
.nav-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Full-Screen Overlay ── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: #fafbff;
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-overlay.open {
  transform: translateX(0);
  visibility: visible;
}

/* Overlay inner scroll container */
.mobile-overlay-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 100px 40px 50px;
}

.mobile-links {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.mobile-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(15,15,40,0.30);
  line-height: 1.15;
  padding: 10px 0;
  border-bottom: 1px solid rgba(45,46,107,0.07);
  transition: color 0.25s, padding-left 0.25s;
  position: relative;
}
.mobile-link:last-child { border-bottom: none; }
.mobile-link .mobile-link-num {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--navy-bright);
  display: block;
  margin-bottom: 2px;
  opacity: 0.7;
}
.mobile-link:hover,
.mobile-link:active {
  color: var(--navy);
  padding-left: 8px;
}

.mobile-bottom {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(45,46,107,0.1);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-bottom p { margin: 0; font-weight: 500; }
.mobile-bottom a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}
.mobile-bottom a:hover { color: var(--navy-bright); }

/* ── Responsive Breakpoints ── */

/* Large tablet / small desktop — tighten spacing */
@media (max-width: 1200px) {
  .nav { padding: 16px 40px; }
  .nav.scrolled { padding: 12px 40px; }
  .nav-links { gap: 28px; }
}

/* Tablet — switch to hamburger */
@media (max-width: 900px) {
  .nav { padding: 14px 24px; min-height: 62px; }
  .nav.scrolled { padding: 10px 24px; }
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }
}

/* Small mobile */
@media (max-width: 480px) {
  .nav { padding: 12px 20px; min-height: 58px; }
  .nav.scrolled { padding: 10px 20px; }
  .logo-img { height: 34px; }
  .mobile-overlay-inner { padding: 90px 28px 44px; }
  .mobile-link { font-size: clamp(30px, 7vw, 48px); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  /* 100vh fallback, then 100dvh for mobile browsers that account for address bar */
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #f0f2fc 0%, #e8eaff 40%, #f5f3ff 100%);
  /* Prevent momentum scroll overshooting on iOS */
  -webkit-overflow-scrolling: auto;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  padding-top: 120px;
  padding-bottom: 160px;
  max-width: 1200px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--navy-bright);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.2s forwards;
}
.eyebrow-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  margin-bottom: 32px;
  overflow: hidden;
}
.headline-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #1a1a2e;
  opacity: 0;
  transform: translateY(60px);
  animation: lineReveal 1s var(--ease-out) forwards;
  will-change: transform, opacity;
}
.headline-line:nth-child(1) { animation-delay: 0.3s; }
.headline-line:nth-child(2) { animation-delay: 0.45s; color: var(--navy-bright); font-family: var(--font-serif); font-style: italic; }
.headline-line:nth-child(3) { animation-delay: 0.6s; }

.hero-sub {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.8s forwards;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1s forwards;
}

/* Hero Ticker */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  overflow: hidden;
  border-top: 1px solid rgba(45,46,107,0.12);
  padding: 14px 0;
  z-index: 3;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
}
.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.ticker-track .sep { color: var(--gold); }

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 58px;
  right: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.4s forwards;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--navy));
  animation: scrollPulse 2s ease-in-out infinite;
}


/* ── Hero mobile fixes ── */
@media (max-width: 900px) {
  .hero {
    /* Use fixed height equal to viewport — no min-height overflow on mobile */
    min-height: 100vh;
    min-height: 100svh; /* small viewport height — excludes browser chrome */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 0;
    /* Ensure no transform bleed from parallax (disabled in JS but belt+braces) */
    transform: none !important;
  }
  .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 40px;
    padding-left: 24px;
    padding-right: 24px;
    /* Prevent parallax transform on mobile */
    transform: none !important;
    opacity: 1 !important;
  }
  .hero-ticker {
    /* Static — part of flex flow, never moves independently */
    position: relative;
    flex-shrink: 0;
    bottom: auto;
    left: auto;
    right: auto;
    border-top: 1px solid rgba(45,46,107,0.12);
    /* No transform from parallax */
    transform: none !important;
  }
  .hero-scroll-indicator {
    display: none;
  }
  .hero-canvas {
    /* Disable heavy canvas animation on mobile for performance */
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 70px;
    padding-bottom: 32px;
  }
  .headline-line {
    font-size: clamp(52px, 14vw, 80px);
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--bg-white);
  padding: 140px 60px;
  border-top: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

/* Visual boxes */
.about-visual {
  position: relative;
  height: 500px;
}
.av-box {
  position: absolute;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.6s var(--ease-out);
}
.av-box:hover { transform: scale(1.06); box-shadow: 0 24px 64px rgba(45,46,107,0.35); }
.av-inner { text-align: center; padding: 20px; }
.av-year, .av-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.av-caption {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

.av-box--1 {
  top: 0; left: 0;
  width: 55%; height: 55%;
  background: linear-gradient(135deg, #1a1a38, #2d2e6b);
  box-shadow: 0 20px 60px rgba(45,46,107,0.30);
}
.av-box--2 {
  top: 10%; right: 0;
  width: 40%; height: 36%;
  background: linear-gradient(135deg, #5558b0, #3d3f8f);
  box-shadow: 0 16px 48px rgba(85,88,176,0.35);
}
.av-box--2 .av-num { color: #ffffff; font-size: clamp(34px, 5vw, 52px); }
.av-box--2 .av-caption { color: rgba(255,255,255,0.7); }
.av-box--3 {
  bottom: 0; left: 10%;
  width: 70%; height: 38%;
  background: linear-gradient(135deg, #0f0f28, #1e1e50);
  box-shadow: 0 16px 48px rgba(15,15,40,0.25);
}

.av-orb {
  position: absolute;
  bottom: 15%; right: 5%;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: 0.12;
  filter: blur(20px);
  animation: orbFloat 6s ease-in-out infinite;
}

/* Right column */
.about-headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.2;
  margin-bottom: 28px;
  color: var(--text-dark);
}
.about-headline em { color: var(--navy-bright); font-style: italic; }

.about-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 20px;
}
.about-body strong { color: var(--navy); font-weight: 700; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ============================================================
   SERVICES
   ============================================================ */
/* ── Services Panels ── */
.services {
  padding: 100px 0 0;
  background: var(--bg-light);
}
.services-header {
  max-width: 1300px;
  margin: 0 auto 60px;
  padding: 0 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.services-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
}
.services-headline em { color: var(--navy-bright); font-style: italic; font-family: var(--font-serif); }

/* Accordion panel strip — like the reference image */
/* 5×2 accordion grid — two rows of 5 panels each */
.services-panels {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
}

.svc-row {
  display: flex;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.svc-row + .svc-row {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.svc-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.55s cubic-bezier(0.76, 0, 0.24, 1);
  border-right: 1px solid rgba(255,255,255,0.12);
}
.svc-panel:last-child { border-right: none; }

/* Background image */
.svc-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  filter: brightness(0.30) saturate(0.7);
  transition: filter 0.5s, transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
}
.svc-panel:hover::before {
  filter: brightness(0.52) saturate(1.1);
  transform: scale(1.05);
}

/* Navy overlay gradient */
.svc-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,70,0.95) 0%, rgba(15,15,70,0.45) 55%, rgba(15,15,70,0.1) 100%);
  transition: opacity 0.4s;
}

.svc-panel-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-panel-icon {
  width: 30px;
  height: 30px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s 0.08s, transform 0.35s 0.08s;
}
.svc-panel-icon svg { width: 100%; height: 100%; }

.svc-panel h3 {
  font-family: var(--font-display);
  font-size: clamp(12px, 1.15vw, 17px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.01em;
}

.svc-panel p {
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s var(--ease-out), opacity 0.35s;
  margin-bottom: 0;
}

.svc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  padding: 0 12px;
  border-radius: 40px;
  transition: max-height 0.45s var(--ease-out), opacity 0.35s 0.08s, background 0.25s, padding 0.45s;
  white-space: nowrap;
  text-decoration: none;
  align-self: flex-start;
}
.svc-btn:hover { background: rgba(255,255,255,0.28); }

/* Hover — expand panel within its row */
.svc-panel:hover { flex: 3.2; }
.svc-panel:hover .svc-panel-icon { opacity: 1; transform: translateY(0); }
.svc-panel:hover p   { max-height: 80px; opacity: 1; margin-bottom: 10px; }
.svc-panel:hover .svc-btn { max-height: 36px; opacity: 1; padding: 7px 12px; }
.svc-panel:hover h3  { white-space: normal; }

/* Mobile: single column stacked */
@media (max-width: 900px) {
  .services-panels { gap: 0; }
  .svc-row {
    flex-direction: column;
    height: auto;
  }
  .svc-panel {
    height: 72px;
    flex: none;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: height 0.45s cubic-bezier(0.76, 0, 0.24, 1);
  }
  .svc-panel:hover { height: 220px; flex: none; }
  .svc-panel-content { padding: 16px 20px; }
  .svc-panel h3 { font-size: 15px; }
  .services-header { padding: 0 30px; }
}

/* ============================================================
   WORK / PORTFOLIO
   ============================================================ */
.work {
  background: var(--bg-white);
  padding: 140px 60px;
  background: var(--off-black);
  border-top: 1px solid var(--border);
}

.work-header {
  max-width: 1300px;
  margin: 0 auto 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.work-headline {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
}
.work-headline em { color: var(--navy-bright); font-style: italic; }

/* ── Portfolio Grid ── */
.portfolio-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 320px;
  gap: 20px;
}

/* Card sizes */
.pf-card                { grid-column: span 4; grid-row: span 1; }
.pf-card--large         { grid-column: span 8; grid-row: span 2; }
.pf-card--tall          { grid-column: span 4; grid-row: span 2; }
.pf-card--wide          { grid-column: span 8; grid-row: span 1; }

.pf-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark);
  border: 1px solid var(--border);
  cursor: none;
  /* Remove opacity dependency on JS - always visible */
  opacity: 1;
  transform: none;
  animation: pfFadeIn 0.6s var(--ease-out) both;
}
.pf-card:nth-child(1) { animation-delay: 0.05s; }
.pf-card:nth-child(2) { animation-delay: 0.10s; }
.pf-card:nth-child(3) { animation-delay: 0.15s; }
.pf-card:nth-child(4) { animation-delay: 0.20s; }
.pf-card:nth-child(5) { animation-delay: 0.25s; }
.pf-card:nth-child(6) { animation-delay: 0.30s; }
.pf-card:nth-child(7) { animation-delay: 0.35s; }

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

.pf-card:hover {
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.pf-img-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.pf-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s var(--ease-out), filter 0.5s;
}
.pf-card:hover .pf-img-wrap img {
  transform: scale(1.06);
  filter: brightness(0.5);
}

/* Overlay — hidden until hover */
.pf-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(to top, rgba(8,8,16,0.95) 0%, rgba(8,8,16,0.3) 55%, transparent 100%);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  z-index: 2;
}
.pf-card:hover .pf-overlay {
  opacity: 1;
  transform: translateY(0);
}
.pf-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  border-radius: 40px;
  padding: 4px 12px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.pf-overlay .pf-title {
  font-family: var(--font-sans);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.pf-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--white-dim);
  max-width: 380px;
}

/* Bottom bar — always visible, fades on hover */
.pf-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(8,8,16,0.95), transparent);
  z-index: 1;
  transition: opacity 0.3s;
}
.pf-card:hover .pf-bar { opacity: 0; }
.pf-bar-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.pf-cat {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.pf-year {
  font-size: 10px;
  color: var(--white-dim);
}
.pf-bar-title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.work-cta {
  max-width: 1300px;
  margin: 60px auto 0;
  text-align: center;
}

/* Responsive portfolio */
@media (max-width: 1100px) {
  .portfolio-grid { grid-template-columns: repeat(6, 1fr); }
  .pf-card        { grid-column: span 3; }
  .pf-card--large { grid-column: span 6; grid-row: span 2; }
  .pf-card--tall  { grid-column: span 3; grid-row: span 2; }
  .pf-card--wide  { grid-column: span 6; }
}
@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .pf-card, .pf-card--large, .pf-card--tall, .pf-card--wide {
    grid-column: span 1 !important; grid-row: span 1 !important;
  }
  .pf-overlay { opacity: 1 !important; transform: none !important; }
  .pf-bar { display: none; }
}

/* ============================================================
   WHY US

   ============================================================ */
.why {
  background: var(--bg-light);
  padding: 140px 60px;
  border-top: 1px solid var(--border);
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.why-headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--text-dark);
}
.why-headline em { color: var(--navy-bright); font-style: italic; }

.why-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 48px;
}

.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-card {
  padding: 32px 28px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(45,46,107,0.06);
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.why-card:hover { transform: translateY(-6px); background: var(--navy); box-shadow: 0 16px 40px rgba(45,46,107,0.2); }
.why-card:hover::before { transform: scaleX(1); }

.why-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--navy-bright);
  transition: color 0.4s;
}
.why-card-icon svg { width: 100%; height: 100%; }

.why-card h4 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  transition: color 0.4s;
}
.why-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-body);
  transition: color 0.4s;
}
.why-card:hover h4,
.why-card:hover .why-card-icon { color: #ffffff; }
.why-card:hover p { color: rgba(255,255,255,0.72); }

/* ============================================================
   PARTNERS / CLIENTS
   ============================================================ */
.partners {
  padding: 120px 60px;
  overflow: hidden;
  background: #f4f5fa;
  position: relative;
}
.partners::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, var(--gold-glow), transparent);
  pointer-events: none;
}
.partners-header {
  text-align: center;
  margin-bottom: 70px;
}
.partners-headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--text-dark);
  margin-bottom: 16px;
}
.partners-headline em { color: var(--navy-bright); font-style: italic; }
.partners-sub {
  color: var(--text-body);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto;
}

.partners-track-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.partners-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.partners-fade--left  { left: 0;  background: linear-gradient(to right, var(--bg-light), transparent); }
.partners-fade--right { right: 0; background: linear-gradient(to left,  var(--bg-light), transparent); }

.partners-row {
  overflow: hidden;
  width: 100%;
}
.partners-slide {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: partnersScrollLeft 30s linear infinite;
}
.partners-row--reverse .partners-slide {
  animation: partnersScrollRight 30s linear infinite;
}
.partners-slide:hover { animation-play-state: paused; }

@keyframes partnersScrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes partnersScrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.partner-logo {
  flex-shrink: 0;
  width: 200px;
  height: 100px;
  background: #ffffff;
  border: 1px solid rgba(45,46,107,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out);
  cursor: default;
}
.partner-logo:hover {
  border-color: var(--navy-bright);
  background: var(--navy-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45,46,107,0.12);
}
.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.partner-logo:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}


.partners-count {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 64px;
  text-align: center;
}
.pc-num {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
  letter-spacing: 0.05em;
}
.pc-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .partners { padding: 80px 20px; }
  .partner-logo { width: 150px; height: 80px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--bg-white);
  padding: 140px 60px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.testimonials-headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.2;
  margin-bottom: 60px;
  color: var(--text-dark);
}
.testimonials-headline em { color: var(--navy-bright); font-style: italic; }

.testimonial-track {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slides { position: relative; }

.testimonial-slide {
  display: none;
  animation: fadeSlide 0.5s var(--ease-out);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  text-align: left;
  box-shadow: 0 8px 40px rgba(45,46,107,0.08);
}
.testimonial-slide.active { display: block; }

.testimonial-slide blockquote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
  font-style: normal;
  border-left: 3px solid var(--navy-bright);
  padding-left: 16px;
  margin: 0;
}
.testimonial-slide blockquote::before {
  content: '"';
  position: absolute;
  top: -20px; left: 0;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.testimonial-author strong {
  display: block;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
}
.testimonial-author span {
  display: block;
  font-size: 12px;
  color: var(--white-dim);
  text-align: left;
  margin-top: 2px;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}
.tc-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--white-dim);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.tc-btn:hover { background: var(--navy); color: #ffffff; border-color: var(--navy); transform: scale(1.05); }

.tc-dots { display: flex; gap: 8px; align-items: center; }
.tc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s;
}
.tc-dot.active { background: var(--gold); transform: scale(1.3); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: linear-gradient(150deg, #0f0f28 0%, #1a1a50 50%, #2d2e6b 100%);
  padding: 140px 60px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
}

.contact-headline {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.15;
  margin-bottom: 20px;
}
.contact-headline em { color: rgba(255,255,255,0.65); font-style: italic; }

/* Left column section label override for dark bg */
.contact .section-label .label-num { color: rgba(255,255,255,0.45); }
.contact .section-label .label-text { color: rgba(255,255,255,0.4); }
.contact .section-label::before { background: rgba(255,255,255,0.3); }

.contact-body {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
}

.contact-details { display: flex; flex-direction: column; gap: 24px; }
.cd-item { display: flex; flex-direction: column; gap: 4px; }
.cd-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.cd-value {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s;
}
a.cd-value:hover { color: #ffffff; }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  color: #ffffff;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-group select::placeholder { color: rgba(255,255,255,0.28); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.12);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  background-color: rgba(255,255,255,0.07);
  padding-right: 44px;
  cursor: pointer;
}
.form-group select option {
  background: #1a1a50;
  color: #ffffff;
}

.btn-submit {
  align-self: flex-start;
  position: relative;
}
.btn-loading { display: none; }
.contact-form.submitting .btn-text { display: none; }
.contact-form.submitting .btn-loading { display: inline; }


/* Events Printing panel — no special overlay */

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1a1a2e;
  border-top: 3px solid #2d2e6b;
  overflow: hidden;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 80px 60px;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 0.15em;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  max-width: 260px;
  line-height: 1.7;
  margin-top: 8px;
}

.footer-nav {
  display: flex;
  gap: 80px;
}
.fn-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fn-col h5 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5558b0;
  margin-bottom: 4px;
  font-weight: 700;
}
.fn-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}
.fn-col a:hover { color: #ffffff; }

.footer-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  background: rgba(45,46,107,0.3);
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: tickerScroll 20s linear infinite;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4);
}
.marquee-track .sep { color: #5558b0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-legal {
  display: flex;
  gap: 28px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color 0.3s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lineReveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered reveals */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { height: 360px; }
  .why-inner { grid-template-columns: 1fr; gap: 60px; }
  .contact-inner { grid-template-columns: 1fr; gap: 60px; }
  .work-card--large { grid-column: span 12; }
  .work-card--medium { grid-column: span 6; }
  .work-card--offset { grid-column: span 12; }
}

@media (max-width: 900px) {

  .hero-content { padding: 0 30px; padding-top: 140px; }
  .hero-scroll-indicator { right: 30px; }

  .about { padding: 100px 30px; }
  .services { padding: 100px 30px; }
  .work { padding: 100px 30px; }
  .why { padding: 100px 30px; }
  .testimonials { padding: 100px 30px; }
  .contact { padding: 100px 30px; }
  .footer-top { padding: 60px 30px; flex-direction: column; }
  .footer-bottom { padding: 24px 30px; }

  .services-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  .work-header { flex-direction: column; gap: 16px; align-items: flex-start; }

  .service-item { grid-template-columns: 60px 1fr auto; gap: 20px; }
  .service-bg-num { right: 20px; font-size: 80px; }
  .work-card--medium { grid-column: span 12; }

  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .why-right { grid-template-columns: 1fr 1fr; }
  .footer-nav { gap: 40px; }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .why-right { grid-template-columns: 1fr; }
  .footer-nav { flex-direction: column; gap: 32px; }
  .service-item { grid-template-columns: 1fr; gap: 12px; }
  .service-item { padding: 28px 0; }
  .service-bg-num { display: none; }
  .service-arrow { display: none; }
  .work-card--large,
  .work-card--medium,
  .work-card--offset { grid-column: span 12; }
  .testimonial-slide blockquote { padding: 0 20px; font-size: 18px; }
  .footer-nav { gap: 24px; }
  .mobile-bottom { flex-direction: column; gap: 8px; }
}

/* ── WhatsApp Float Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  padding: 14px 22px 14px 16px;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.15);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background 0.3s;
  animation: waBounce 2.5s ease-in-out 3s 3;
  cursor: pointer;
}
.whatsapp-float:hover {
  background: #20ba5a;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 40px rgba(37,211,102,0.5), 0 4px 12px rgba(0,0,0,0.15);
}
.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.whatsapp-float span {
  white-space: nowrap;
}
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}
@media (max-width: 600px) {
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 16px; border-radius: 50%; }
}

/* Showcase cards — use contain so full image shows */
.pf-card--showcase .pf-img-wrap img {
  object-fit: contain;
  background: #f0f0f0;
  padding: 12px;
}

/* ── Google Review Card Styles ── */
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.review-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.review-meta strong {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
}
.review-meta span {
  font-size: 12px;
  color: var(--text-muted);
}
.google-badge {
  margin-left: auto;
  opacity: 0.85;
}
.review-stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.review-time {
  font-size: 12px;
  color: rgba(26,26,46,0.45);
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-body);
}
.testimonial-slide blockquote {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(26,26,46,0.8);
  font-style: normal;
  border-left: 3px solid var(--navy-bright);
  padding-left: 16px;
  margin: 0;
}


/* ══════════════════════════════════════════════════════════
   GLOBAL ENHANCEMENTS — Design Polish Pass
   ══════════════════════════════════════════════════════════ */

/* Improved selection colour */
::selection { background: rgba(85,88,176,0.2); color: var(--navy); }

/* Better focus styles */
:focus-visible { outline: 2px solid var(--navy-bright); outline-offset: 3px; border-radius: 4px; }

/* ── Hero diagonal accent ── */
.hero::after {
  content: '';
  position: absolute;
  bottom: 56px; right: 0;
  width: 40%;
  height: 70%;
  background: radial-gradient(ellipse at 80% 50%, rgba(85,88,176,0.08), transparent 70%);
  pointer-events: none;
}

/* ── About section — stat divider colour ── */
.about-stats { border-top-color: rgba(45,46,107,0.12); }

/* ── Services headline emphasis ── */
.services-headline em {
  color: var(--navy-bright);
  font-style: italic;
  font-family: var(--font-serif);
}

/* ── Work section CTA button context ── */
.work-cta .btn-outline {
  border-color: var(--navy);
  color: var(--navy);
}

/* ── Portfolio tag and title on overlay ── */
.pf-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  background: rgba(45,46,107,0.6);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-block;
  margin-bottom: 10px;
}
.pf-title {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.pf-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
}

/* ── Partner section radial bg ── */
.partners {
  background: var(--bg-light);
}
.partners::before {
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(85,88,176,0.04), transparent);
}

/* contact-form select arrow handled in .form-group select above */

/* ── Why us section label ── */
.why-left .section-label .label-num { color: var(--navy-bright); }

/* ── Testimonials track bg ── */
.testimonial-track { background: transparent; }

/* ── Improved mobile overlay ── */
.mobile-overlay {
  background: #fafbff;
}
.mobile-bottom {
  margin-top: auto;
  padding-top: 40px;
  border-top: 1px solid rgba(45,46,107,0.1);
}
.mobile-bottom p {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 8px;
}
.mobile-bottom a { color: var(--navy); font-weight: 600; }

/* ── Ensure section headers have consistent max-width ── */
.about-grid, .why-inner, .contact-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.portfolio-grid, .work-header {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.partners-header, .partners-track-wrap, .partners-count {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Improve nav logo size ── */
.logo-img { height: 40px; }

/* ── Services header consistent ── */
.services-header {
  max-width: 1300px;
  margin: 0 auto 50px;
  padding: 0 60px;
}

/* ── Footer contact email style ── */
.footer-brand a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer-brand a:hover { color: #ffffff; }

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 8999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(45,46,107,0.30);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.35s var(--ease-out),
              visibility 0.35s,
              transform 0.35s var(--ease-out),
              background 0.25s,
              box-shadow 0.25s;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--navy-bright);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45,46,107,0.40);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  padding: 14px 22px 14px 16px;
  box-shadow: 0 8px 30px rgba(37,211,102,0.40), 0 2px 8px rgba(0,0,0,0.12);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease-out),
              box-shadow 0.3s,
              background 0.25s;
  animation: waBounce 2.5s ease-in-out 1.5s 3;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 40px rgba(37,211,102,0.50), 0 4px 12px rgba(0,0,0,0.12);
}
.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.whatsapp-float span { white-space: nowrap; }

@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(-10px); }
  60%       { transform: translateY(-5px); }
}

@media (max-width: 600px) {
  .whatsapp-float { padding: 15px; border-radius: 50%; }
  .whatsapp-float span { display: none; }
  .back-to-top { bottom: 28px; left: 20px; width: 44px; height: 44px; }
  .whatsapp-float { bottom: 28px; right: 20px; }
}

/* ============================================================
   FOOTER SIGNATURE
   ============================================================ */
.footer-signature {
  text-align: center;
  padding: 14px 60px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.signature-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.3s;
}
.signature-link:hover {
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   FOOTER BOTTOM (copyright bar)
   ============================================================ */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
.footer-legal {
  display: flex;
  gap: 28px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
  text-decoration: none;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    padding: 24px 24px;
    text-align: center;
  }
  .footer-signature { padding: 12px 24px 18px; }
}

/* ============================================================
   CONTACT FORM — SUCCESS STATE
   ============================================================ */
.form-success {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 48px 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  animation: fadeUp 0.6s var(--ease-out) forwards;
}
.form-success.visible {
  display: flex;
}
.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.form-success-icon svg {
  width: 26px;
  height: 26px;
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  color: #ffffff;
  line-height: 1.2;
}
.form-success p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  max-width: 420px;
}

/* ── Active nav link (current page highlight) ── */
.nav-link--active {
  color: var(--navy-bright) !important;
  font-weight: 700;
}
.nav-link--active::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy-bright);
  border-radius: 2px;
  margin-top: 2px;
}
