/* ===================================================
   INDEX.CSS — Tezco Services · index page
   Updated: full-bleed hero bg image, text overlay,
   mobile text above image, hamburger menu fixed
   =================================================== */

/* ── PAGE LOAD CURTAIN ──────────────────────────── */
#page-curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #08101e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  animation: curtainLift 0.55s cubic-bezier(.77,0,.18,1) 1.3s forwards;
  pointer-events: none;
}
#page-curtain .curtain-logo {
  height: 90px;
  width: auto;
  opacity: 0;
  transform: translateY(16px);
  animation: curtainLogoIn 0.5s ease 0.2s forwards;
}
#page-curtain .curtain-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  opacity: 0;
  animation: curtainLogoIn 0.5s ease 0.45s forwards;
}
#page-curtain .curtain-bar {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00C8FF, #0055CC);
  border-radius: 2px;
  animation: curtainBar 0.9s ease 0.5s forwards;
}
@keyframes curtainLogoIn { to { opacity: 1; transform: translateY(0); } }
@keyframes curtainBar    { to { width: 180px; } }
@keyframes curtainLift   { to { transform: translateY(-100%); } }

/* ── NAVBAR ─────────────────────────────────────── */
#navbar { height: auto !important; }
.nav-inner {
  height: auto !important;
  min-height: 72px;
  padding: 8px 0;
}
.nav-logo-img {
  height: 68px !important;
  width: auto;
  object-fit: contain;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-text > span:first-child {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00C8FF 0%, #0055CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #4a5568 !important;
  -webkit-text-fill-color: #4a5568 !important;
}

/* ══════════════════════════════════════════════════
   HERO SECTION — full-bleed image background
══════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #050a15;
  z-index: 1;
}

/* ── Image Slider — full background ── */
.hero-img-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.hero-img-slider img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s ease, transform 8s ease;
}
.hero-img-slider img.active {
  opacity: 1;
  transform: scale(1.0);
}

/* ── Multi-layer shadow / vignette overlay ── */
.hero-img-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Left text protection + bottom vignette + subtle right darkening */
  background:
    linear-gradient(to right,  rgba(5,10,21,.92) 0%,  rgba(5,10,21,.75) 38%,  rgba(5,10,21,.30) 65%,  rgba(5,10,21,.20) 100%),
    linear-gradient(to top,    rgba(5,10,21,.70) 0%,  transparent 35%),
    linear-gradient(to bottom, rgba(5,10,21,.50) 0%,  transparent 20%);
  z-index: 1;
  pointer-events: none;
}

/* Shimmer on hover */
.hero-img-slider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.04) 50%, transparent 60%);
  background-size: 200% 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s;
}
.hero-img-slider:hover::before {
  opacity: 1;
  animation: shimmerSlide 1.2s ease forwards;
}
@keyframes shimmerSlide {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Grid lines ── */
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 2;
}
.hero-bg-gradient { display: none; }

/* ── Floating orbs ── */
.orb-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,255,.12), transparent 70%);
  bottom: -100px; left: 5%;
  pointer-events: none;
  z-index: 3;
  animation: orbFloat1 8s ease-in-out infinite;
  transition: transform .1s linear;
}
.orb-3 {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,85,204,.10), transparent 70%);
  top: 10%; right: 8%;
  pointer-events: none;
  z-index: 3;
  animation: orbFloat2 11s ease-in-out infinite;
  transition: transform .1s linear;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translateY(0px)  scale(1);    }
  50%       { transform: translateY(-28px) scale(1.04); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translateY(0px)  scale(1);    }
  50%       { transform: translateY(22px)  scale(0.97); }
}

/* ── Hero container — text sits above image ── */
.hero-container {
  position: relative;
  z-index: 10;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important; /* text left, image behind */
  width: 100%;
  padding-top: 120px;
  padding-bottom: 100px;
  min-height: 100vh;
}

/* ── Hero content text box ── */
.hero-content {
  flex: 0 0 auto;
  width: 55%;
  max-width: 680px;
  text-align: left;
  opacity: 0;
  transform: translateY(28px);
  animation: heroTextIn 0.9s cubic-bezier(.22,1,.36,1) 1.55s forwards;
}
@keyframes heroTextIn { to { opacity: 1; transform: translateY(0); } }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #63E2EE !important;
  margin-bottom: 20px;
}
.dot {
  width: 8px; height: 8px;
  background: linear-gradient(135deg, #00C8FF, #0055CC);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.5);opacity:.6} }

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem) !important;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #ffffff !important;
  text-shadow: 0 4px 32px rgba(0,0,0,.6);
  margin-bottom: 24px;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, #00C8FF, #0055CC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,.82) !important;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ── Ripple button ── */
.btn-ripple { position: relative; overflow: hidden; }
.ripple-wave {
  position: absolute;
  border-radius: 50%;
  width: 10px; height: 10px;
  margin: -5px 0 0 -5px;
  background: rgba(255,255,255,.35);
  transform: scale(0);
  animation: rippleAnim 0.65s ease-out forwards;
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(30); opacity: 0; } }

/* ── Arrow button ── */
.btn-arrow { gap: 6px; }
.btn-arrow svg { transition: transform .25s ease; }
.btn-arrow:hover svg { transform: translateX(5px); }

/* ── Stats bar ── */
.hero-stats {
  display: flex;
  gap: 0;
  padding: 20px 28px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  margin-top: 48px;
  align-items: center;
  background: rgba(5,10,21,.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  width: fit-content;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  opacity: 0;
  animation: heroTextIn 0.7s cubic-bezier(.22,1,.36,1) 2s forwards;
}
.stat-item { padding: 0 24px; text-align: center; }
.stat-item:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1;
}
.stat-num span { font-size: 1.3rem; }
.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  color: rgba(255,255,255,.55) !important;
  font-weight: 500;
  margin-top: 4px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* ── Scroll hint ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  transition: opacity .4s;
  pointer-events: none;
  animation: heroTextIn 0.6s ease 2.4s both;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 11px;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: rgba(255,255,255,.5);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%       { transform: translateY(8px); opacity: 0; }
}

/* ══════════════════════════════════════════════════
   HAMBURGER MENU — mobile nav
══════════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--clr-text, #0a0f1e);
  border-radius: 2px;
  transition: all .3s ease;
}
/* Animate to X when open */
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 88px;
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid #d8eaf8;
  padding: 16px 28px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,85,182,.14);
  /* Slide-down animation */
  transform: translateY(-10px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu a {
  padding: 13px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  color: #4a5568;
  border-bottom: 1px solid #d8eaf8;
  transition: color .2s, padding-left .2s;
}
.mobile-menu a:hover { color: #0077B6; padding-left: 6px; }
.mobile-menu a.active { color: #0077B6; }
.mobile-menu a:last-child { border-bottom: none; margin-top: 10px; }
.mobile-menu a.btn { padding: 13px 28px; border-bottom: none; text-align: center; justify-content: center; }

/* ══════════════════════════════════════════════════
   SECTIONS BELOW HERO
══════════════════════════════════════════════════ */
.companies-section,
#services,
.about-section,
.section,
.cta-band,
#footer {
  position: relative;
  z-index: 10;
  display: block !important;
}

/* ── MARQUEE ─────────────────────────────────────── */
.companies-section {
  background: var(--clr-bg2, #f0f6ff);
  padding: 48px 0;
  border-top: 1px solid var(--clr-border, #d8eaf8);
  border-bottom: 1px solid var(--clr-border, #d8eaf8);
}
.companies-label {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #4a5568;
  margin-bottom: 28px;
}
.marquee-outer { overflow: hidden; position: relative; }
.marquee-outer::before, .marquee-outer::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.marquee-outer::before { left: 0;  background: linear-gradient(to right, #f0f6ff, transparent); }
.marquee-outer::after  { right: 0; background: linear-gradient(to left,  #f0f6ff, transparent); }
.marquee-track {
  display: flex; gap: 40px; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.company-logo {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; background: #fff;
  border: 1px solid #d8eaf8; border-radius: 12px;
  white-space: nowrap; font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: .875rem; color: #4a5568;
  box-shadow: 0 2px 12px rgba(0,85,182,.08); transition: all .3s;
}
.company-logo:hover { border-color: #00C8FF; color: #0077B6; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,85,182,.14); }
.company-logo img { height: 22px; width: auto; object-fit: contain; }

/* ── SERVICES SECTION ────────────────────────────── */
#services { background: #ffffff; }
.section-header { margin-bottom: 56px; }

.service-showcase { display: flex; flex-direction: column; gap: 80px; margin-bottom: 80px; }
.service-showcase-item {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.service-showcase-item.reverse { direction: rtl; }
.service-showcase-item.reverse > * { direction: ltr; }

.service-showcase-img {
  position: relative; border-radius: 24px;
  overflow: hidden; height: 380px;
  box-shadow: 0 20px 60px rgba(0,85,182,.18);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
  will-change: transform;
}
.service-showcase-item:hover .service-showcase-img {
  box-shadow: 0 32px 80px rgba(0,85,182,.26);
}
.showcase-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,10,21,.30) 0%, transparent 50%);
  z-index: 1; pointer-events: none; transition: opacity .4s;
}
.service-showcase-item:hover .showcase-img-overlay { opacity: .5; }

/* Reset hero-specific img rules for content images */
.service-showcase-img img,
.about-img-wrap img,
.process-img,
.cta-bg-img img,
.tech-pill img,
.service-icon-lg img {
  position: static !important;
  opacity: 1 !important;
  animation: none !important;
  transform: none;
  transition: transform .6s ease;
}
.service-showcase-item:hover .service-showcase-img img { transform: scale(1.05) !important; }
.service-showcase-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.showcase-badge {
  position: absolute; top: 20px; left: 20px;
  background: linear-gradient(135deg, #00C8FF, #0055CC);
  color: #fff; font-family: 'DM Sans', sans-serif;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 6px 14px;
  border-radius: 100px; z-index: 2;
}

.service-showcase-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.9rem; font-weight: 800;
  margin: 16px 0; line-height: 1.2; color: #0a0f1e;
}
.service-showcase-content p {
  font-family: 'DM Sans', sans-serif; font-size: 1rem;
  color: #4a5568; line-height: 1.8; margin-bottom: 24px;
}
.service-icon-lg {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(0,200,255,.12), rgba(0,85,204,.12));
  border: 1px solid rgba(0,119,182,.18);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  transition: transform .3s, box-shadow .3s;
}
.service-showcase-item:hover .service-icon-lg {
  transform: rotate(-4deg) scale(1.08);
  box-shadow: 0 8px 24px rgba(0,85,204,.2);
}
.service-icon-lg img { width: 32px; height: 32px; object-fit: contain; }
.service-feature-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px;
}
.service-feature-list li {
  font-family: 'DM Sans', sans-serif; font-size: .9rem; color: #4a5568;
  display: flex; align-items: center; gap: 10px;
}
.service-feature-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, #00C8FF, #0055CC); flex-shrink: 0;
}

/* ── ABOUT ──────────────────────────────────────── */
.about-section { background: var(--clr-bg2, #f0f6ff); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: 24px; box-shadow: 0 20px 60px rgba(0,85,182,.18); display: block;
}
.about-img-badge {
  position: absolute; bottom: 24px; right: 24px;
  background: rgba(10,15,30,.92); backdrop-filter: blur(12px);
  border: 1px solid rgba(0,200,255,.25); border-radius: 16px;
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.badge-logo  { height: 36px; width: auto; }
.badge-year  { font-family: 'Playfair Display', Georgia, serif; font-size: 1.6rem; font-weight: 900; color: #fff; line-height: 1; }
.badge-text  { font-family: 'DM Sans', sans-serif; font-size: .72rem; color: rgba(255,255,255,.65); line-height: 1.4; margin-top: 2px; }
.about-values { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.value-item  { display: flex; gap: 16px; align-items: flex-start; }
.value-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0,200,255,.10), rgba(0,85,204,.10));
  border: 1px solid rgba(0,119,182,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
  transition: transform .3s, box-shadow .3s;
}
.value-item:hover .value-icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 6px 20px rgba(0,85,204,.18);
}
.value-item h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.value-item p  { font-family: 'DM Sans', sans-serif; font-size: .875rem; color: #4a5568; line-height: 1.65; }

/* ── TECH STACK ─────────────────────────────────── */
.tech-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 40px; }
.tech-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; background: #fff;
  border: 1px solid #d8eaf8; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: .875rem; font-weight: 500;
  transition: all .25s; box-shadow: 0 2px 12px rgba(0,85,182,.08);
}
.tech-pill:hover {
  border-color: #00C8FF; background: rgba(0,200,255,.04);
  transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,85,182,.14);
}
.tech-pill img { width: 22px; height: 22px; object-fit: contain; }

/* ── HOW WE WORK ────────────────────────────────── */
.process-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.process-text .section-title { margin-bottom: 16px; }
.process-text .section-subtitle { margin-bottom: 32px; }
.process-img {
  width: 100%; height: 260px; object-fit: cover;
  border-radius: 16px; box-shadow: 0 8px 32px rgba(0,85,182,.14);
  margin-top: 8px; display: block;
}
.process-steps { display: flex; flex-direction: column; }
.process-step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px 0; border-bottom: 1px solid #d8eaf8; transition: padding-left .3s;
}
.process-step:last-child { border-bottom: none; }
.process-step:hover { padding-left: 10px; }
.step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem; font-weight: 900;
  background: linear-gradient(135deg, #00C8FF, #0055CC);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; flex-shrink: 0; width: 56px;
}
.step-title { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 6px; color: #0a0f1e; }
.step-desc  { font-family: 'DM Sans', sans-serif; font-size: .875rem; color: #4a5568; line-height: 1.65; }

/* ── CTA BAND ───────────────────────────────────── */
.cta-band { position: relative; padding: 120px 0; text-align: center; overflow: hidden; }
.cta-bg-img { position: absolute; inset: 0; }
.cta-bg-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,30,80,.88) 0%, rgba(0,100,180,.82) 100%);
}
.cta-content { position: relative; z-index: 2; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* ── FOOTER ─────────────────────────────────────── */
#footer { background: #08101e; color: rgba(255,255,255,.65); padding: 80px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-img { height: 40px; width: auto; object-fit: contain; }
.footer-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.footer-logo-name { font-family: 'Playfair Display', Georgia, serif; font-size: 1.2rem; font-weight: 800; color: #fff; }
.footer-logo-sub  { font-family: 'DM Sans', sans-serif; font-size: .62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #00C8FF; }
.footer-brand p { font-family: 'DM Sans', sans-serif; font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.5); }
.footer-col h4  { font-family: 'DM Sans', sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.9); margin-bottom: 20px; }
.footer-col ul  { display: flex; flex-direction: column; gap: 10px; }
.footer-col a   { font-family: 'DM Sans', sans-serif; font-size: .875rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col a:hover { color: #00C8FF; }
.footer-bottom  { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-family: 'DM Sans', sans-serif; font-size: .8rem; color: rgba(255,255,255,.3); }
.footer-badge   { display: flex; align-items: center; gap: 6px; }
.social-links   { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: all .2s;
}
.social-link:hover { background: linear-gradient(135deg,#00C8FF,#0055CC); color: #fff; border-color: transparent; transform: translateY(-2px); }

/* ── SCROLL REVEAL ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .15s; }
.reveal-delay-2 { transition-delay: .3s; }
.reveal-delay-3 { transition-delay: .45s; }
.reveal-delay-4 { transition-delay: .6s; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 80px;
    justify-content: center !important;
  }
  .hero-content {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
  }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats   { justify-content: center; flex-wrap: wrap; width: auto; margin-left: auto; margin-right: auto; }
  .hero-scroll-hint { display: none; }
  .about-grid, .process-layout { grid-template-columns: 1fr; gap: 40px; }
  .service-showcase-item { grid-template-columns: 1fr; gap: 28px; }
  .service-showcase-item.reverse { direction: ltr; }
  .service-showcase-img { height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav */
  .nav-links, .nav-cta { display: none !important; }
  .nav-hamburger { display: flex !important; }

  /* Mobile menu top offset — adjust if your logo is taller */
  .mobile-menu { top: 88px; }

  /* Hero: text-first, then image visible in background */
  #hero { min-height: 100svh; align-items: flex-start; }

  .hero-container {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left;
    padding-top: calc(88px + 40px);
    padding-bottom: 60px;
    min-height: 100svh;
  }

  /* Stronger left-pull overlay so text stays legible on small screens */
  .hero-img-slider::after {
    background:
      linear-gradient(to right,  rgba(5,10,21,.96) 0%,  rgba(5,10,21,.88) 50%,  rgba(5,10,21,.65) 100%),
      linear-gradient(to top,    rgba(5,10,21,.80) 0%,  transparent 40%),
      linear-gradient(to bottom, rgba(5,10,21,.60) 0%,  transparent 25%);
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    text-align: left;
  }

  .hero-title { font-size: 2.4rem !important; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  .hero-stats {
    gap: 0;
    flex-wrap: wrap;
    padding: 14px 18px;
    margin-top: 32px;
    width: 100%;
    justify-content: center;
  }
  .stat-item { padding: 8px 14px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .service-showcase { gap: 48px; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-title { font-size: 2rem !important; }
  .hero-eyebrow { font-size: .7rem; }
  .hero-subtitle { font-size: .95rem; }
  .stat-divider { display: none; }
  .stat-item { padding: 8px 10px; }
}