﻿/* =============================================
   SHREEL MARKETING — style.css
   Premium Dark Luxury Theme
   ============================================= */

/* === CSS VARIABLES === */
:root {
  --primary: #0E0A08;
  --secondary: #F5E6D0;
  --accent: #FF6B00;
  --accent-2: #E8B800;
  --accent-3: #C8003A;
  --white: #FFF4E8;
  --muted: rgba(245, 230, 208, 0.45);
  --muted-2: rgba(245, 230, 208, 0.07);
  --border: rgba(255, 107, 0, 0.15);
  --border-hover: rgba(255, 107, 0, 0.5);
  --gradient-fire: linear-gradient(135deg, #E8B800 0%, #FF6B00 45%, #C8003A 100%);

  --font-display: Poppins ;
  --font-body: Poppins ;

  --nav-h: 80px;
  --ann-h: 36px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ============================================
     LOGO SIZES — edit these to resize all logos
     ============================================
     --logo-nav-max-h    → desktop navbar logo max-height
                           (logo scales UP until it hits this,
                            width adjusts automatically)
     --logo-nav-max-w    → desktop navbar logo max-width cap
     --logo-mobile-h     → mobile hamburger overlay height
     --logo-mobile-max-w → mobile hamburger overlay max-width
     --logo-footer-h     → footer logo height
     --logo-footer-max-w → footer logo max-width
     --logo-hero-h       → hero section stamp height
     ============================================ */
  --logo-nav-max-h:    60px;    /* fits inside 80px navbar with padding */
  --logo-nav-max-w:    280px;   /* allows wide horizontal logos like Shreel */
  --logo-mobile-h:     38px;
  --logo-mobile-max-w: 180px;
  --logo-footer-h:     54px;
  --logo-footer-max-w: 200px;
  --logo-hero-h:       52px;
}

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--primary);
  color: var(--secondary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* === SECTION COMMON === */
.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.label-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--secondary);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 60px;
  line-height: 1.7;
}

/* =============================================
   SECTION 1: ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--ann-h);
  background: rgba(35, 31, 32, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-track {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-content {
  display: flex;
  gap: 0;
  animation: marquee-scroll 35s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.marquee-content span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--secondary);
  opacity: 0.8;
  padding: 0 48px;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   SECTION 2: NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: var(--ann-h);
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--nav-h);
  overflow: hidden;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.navbar.scrolled {
  background: rgba(35, 31, 32, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  overflow: hidden;
}

.nav-left {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.3s var(--ease-out);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.35s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-center {
  display: flex;
  justify-content: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* picture wrapper inside nav-logo must not add extra height */
.nav-logo picture {
  display: flex;
  align-items: center;
}

/* ── DESKTOP HEADER LOGO ── */
/* To resize: change --logo-nav-max-h or --logo-nav-max-w in :root */
.logo-img-full {
  width: auto;
  height: auto;
  max-height: var(--logo-nav-max-h);
  max-width: var(--logo-nav-max-w);
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.35));
  transition: filter 0.3s, transform 0.3s var(--ease-bounce);
}

.nav-logo:hover .logo-img-full {
  filter: drop-shadow(0 0 16px rgba(255, 107, 0, 0.65));
  transform: scale(1.04);
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255, 107, 0, 0.5));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-dot {
  color: var(--accent);
  font-size: 0.5rem;
  margin-top: 2px;
}

/* ── MOBILE OVERLAY LOGO ── */
/* To change: update src in nav.js under "MOBILE MENU LOGO" comment */
.mobile-overlay-logo {
  height: var(--logo-mobile-h);
  max-width: var(--logo-mobile-max-w);
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.4));
}


.nav-right {
  display: flex;
  justify-content: flex-end;
}

/* Nav CTA Button */
.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gradient-fire);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s var(--ease-out), background 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-nav:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(255, 107, 0, 0.4);
}

.btn-nav:hover::before {
  opacity: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--muted);
  transition: color 0.3s, transform 0.3s var(--ease-bounce);
  display: block;
  padding: 6px 0;
}

.mobile-nav-link:hover {
  color: var(--secondary);
  transform: translateX(8px);
}

.btn-mobile-cta {
  margin-top: 24px;
  padding: 14px 36px;
  background: var(--gradient-fire);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  display: inline-block;
  transition: transform 0.3s var(--ease-bounce);
}

.btn-mobile-cta:hover {
  transform: scale(1.04);
}

.mobile-overlay-footer {
  position: absolute;
  bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* =============================================
   SECTION 3: HERO
   ============================================= */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--ann-h) + var(--nav-h) + 60px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Floating Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.18;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #FF6B00, transparent 70%);
  top: -100px;
  right: -100px;
  animation: blob-float-1 12s ease-in-out infinite;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #C8003A, transparent 70%);
  bottom: 0;
  left: -80px;
  animation: blob-float-2 15s ease-in-out infinite;
}

.blob-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #E8B800, transparent 70%);
  top: 40%;
  left: 45%;
  animation: blob-float-3 10s ease-in-out infinite;
  opacity: 0.08;
}

@keyframes blob-float-1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-30px, 40px) scale(1.08); }
}

@keyframes blob-float-2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.06); }
}

@keyframes blob-float-3 {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(-20px, 20px); }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

/* Hero brand stamp — full logo above headline */
.hero-brand-stamp {
  margin-bottom: 28px;
  opacity: 0;
  animation: fade-in-up 0.8s var(--ease-out) 0.1s forwards;
}

.hero-logo {
  height: var(--logo-hero-h);
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.4));
  transition: filter 0.4s var(--ease-out), transform 0.4s var(--ease-bounce);
}

.hero-logo:hover {
  filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.7));
  transform: scale(1.04);
}

/* Keep eyebrow styles in case reused elsewhere */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(255, 107, 0, 0); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  overflow: hidden;
}

.hero-headline .line {
  display: block;
  opacity: 0;
  transform: translateY(60px);
  animation: reveal-line 0.8s var(--ease-out) forwards;
}

.hero-headline .line:nth-child(1) { animation-delay: 0.15s; }
.hero-headline .line:nth-child(2) { animation-delay: 0.3s; }
.hero-headline .line:nth-child(3) { animation-delay: 0.45s; }

.accent-line {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

@keyframes reveal-line {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fade-in-up 0.8s var(--ease-out) 0.6s forwards;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fade-in-up 0.8s var(--ease-out) 0.75s forwards;
}

/* Primary Button */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--gradient-fire);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s var(--ease-out);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.45);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.5s var(--ease-out);
}

.btn-primary:hover .btn-shine {
  left: 150%;
}

/* Ghost Button */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--secondary);
  opacity: 0.7;
  transition: opacity 0.3s, gap 0.3s var(--ease-bounce);
}

.btn-ghost:hover {
  opacity: 1;
  gap: 12px;
}

/* Hero Badges */
.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: fade-in-up 0.8s var(--ease-out) 0.9s forwards;
}

.hero-badge {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.badge-label {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Right */
.hero-media-frame {
  position: relative;
}

.hero-media-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.15), transparent 70%);
  pointer-events: none;
}

.hero-gif-placeholder {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--muted-2);
  aspect-ratio: 10/7;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: rgba(35, 31, 32, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.card-1 {
  bottom: -20px;
  left: -30px;
  animation: float-card-1 5s ease-in-out infinite;
}

.card-2 {
  top: -20px;
  right: -24px;
  animation: float-card-2 6s ease-in-out infinite;
}

@keyframes float-card-1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes float-card-2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.fc-icon { font-size: 1.4rem; }
.fc-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}
.fc-label {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fade-in-up 0.8s var(--ease-out) 1.2s forwards;
}

.scroll-wheel {
  width: 22px;
  height: 36px;
  border: 1.5px solid var(--muted);
  border-radius: 100px;
  position: relative;
}

.scroll-wheel::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scroll-wheel-anim 2s ease-in-out infinite;
}

@keyframes scroll-wheel-anim {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  80% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* Reveal Animations */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible {
  opacity: 1;
  transform: none;
}

@keyframes fade-in-up {
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   SECTION 4: FUN FACTS
   ============================================= */
.fun-facts {
  padding: 120px 0;
  position: relative;
}

.fun-facts::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 107, 0, 0.07), transparent);
  pointer-events: none;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.counter-card {
  padding: 44px 28px;
  background: var(--muted-2);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease-out), background 0.3s;
  cursor: default;
}

.counter-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-fire);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.counter-card:hover {
  border-color: var(--border-hover);
  background: rgba(232, 230, 218, 0.05);
}

.counter-card:hover::before {
  transform: scaleX(1);
}

.counter-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 20px;
  color: var(--accent);
  opacity: 0.8;
}

.counter-icon svg {
  width: 100%;
  height: 100%;
}

.counter-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.counter-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* =============================================
   SECTION 5: SERVICES
   ============================================= */
.services {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.services-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

/* Service Nav Buttons */
.service-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
  text-align: left;
}

.service-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--muted-2);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-btn:hover::before,
.service-btn.active::before {
  opacity: 1;
}

.service-btn.active {
  border-color: var(--accent);
}

.sb-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  min-width: 24px;
  transition: color 0.3s;
}

.service-btn.active .sb-num {
  color: var(--accent);
}

.sb-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  flex: 1;
  transition: color 0.3s;
}

.service-btn.active .sb-name,
.service-btn:hover .sb-name {
  color: var(--secondary);
}

.sb-arrow {
  font-size: 1rem;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out), color 0.3s;
}

.service-btn.active .sb-arrow,
.service-btn:hover .sb-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--accent);
}

/* Service Panels */
.services-content {
  position: relative;
  /* Height is set by JS to match tallest panel on desktop */
  min-height: 420px;
}

.service-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  visibility: hidden;
}

.service-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  position: absolute;
}

.sp-header h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--secondary);
}

.sp-header p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}

.sp-clients-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.sp-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.sp-logo-item {
  background: var(--muted-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: border-color 0.3s, color 0.3s;
}

.sp-logo-item:hover {
  border-color: var(--border-hover);
  color: var(--secondary);
}

.sp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sp-tags span {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.sp-tags span:hover {
  border-color: var(--accent);
  color: var(--secondary);
  background: rgba(200, 169, 110, 0.08);
}

/* =============================================
   SECTION 6: EXPERTISE ACCORDION
   ============================================= */
.expertise {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.accordion {
  margin-top: 60px;
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  padding: 28px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
  transition: opacity 0.3s;
}

.accordion-trigger:hover {
  opacity: 0.8;
}

.acc-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  min-width: 28px;
}

.acc-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--secondary);
  flex: 1;
  transition: color 0.3s;
}

.acc-icon {
  color: var(--muted);
  transition: transform 0.4s var(--ease-out), color 0.3s;
  flex-shrink: 0;
}

.accordion-item.open .acc-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}

.accordion-item.open .accordion-body {
  max-height: 400px;
}

.accordion-body > * {
  padding-bottom: 28px;
}

.acc-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 640px;
  padding-left: 52px;
}

.acc-why {
  padding-left: 52px;
  padding-top: 0;
}

.acc-why h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.acc-why p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
}

/* =============================================
   SECTION 7: CLIENTS MARQUEE
   ============================================= */
.clients {
  padding: 120px 0 60px;
  border-top: 1px solid var(--border);
}

.clients-marquee-wrapper {
  margin-top: 48px;
  overflow: hidden;
  position: relative;
}

.clients-marquee-wrapper::before,
.clients-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.clients-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--primary), transparent);
}

.clients-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--primary), transparent);
}

.marquee-logos {
  display: flex;
  gap: 0;
  animation: logos-scroll 30s linear infinite;
  will-change: transform;
}

.clients-marquee:hover .marquee-logos {
  animation-play-state: paused;
}

@keyframes logos-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 56px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--muted);
  filter: grayscale(1) opacity(0.4);
  border-right: 1px solid var(--border);
  white-space: nowrap;
  transition: filter 0.4s var(--ease-out), color 0.4s;
  min-width: 160px;
}

.client-logo:hover {
  filter: grayscale(0) opacity(1);
  color: var(--secondary);
}

/* =============================================
   SECTION 8: CONTACT
   ============================================= */
.contact {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 16px;
  margin-bottom: 40px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.ci-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
  opacity: 0.8;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
  margin-bottom: 28px;
}

.form-group.floating input,
.form-group.floating select,
.form-group.floating textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--secondary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 20px 0 10px;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
  resize: none;
}

.form-group.floating select option {
  background: #2a2526;
  color: var(--secondary);
}

.form-group.floating label {
  position: absolute;
  top: 20px;
  left: 0;
  font-size: 0.88rem;
  color: var(--muted);
  pointer-events: none;
  transition: top 0.3s var(--ease-out), font-size 0.3s, color 0.3s;
}

.form-group.floating input:focus ~ label,
.form-group.floating input:not(:placeholder-shown) ~ label,
.form-group.floating select:focus ~ label,
.form-group.floating textarea:focus ~ label,
.form-group.floating textarea:not(:placeholder-shown) ~ label,
.form-group.floating select.has-value ~ label {
  top: 2px;
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1.5px;
  width: 0;
  background: var(--accent);
  transition: width 0.4s var(--ease-out);
}

.form-group.floating input:focus ~ .form-line,
.form-group.floating select:focus ~ .form-line,
.form-group.floating textarea:focus ~ .form-line {
  width: 100%;
}

.form-group.floating input::placeholder,
.form-group.floating textarea::placeholder {
  color: transparent;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

/* Submit Button */
.btn-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--gradient-fire);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s var(--ease-out);
  align-self: flex-start;
  margin-top: 12px;
  cursor: pointer;
}

.btn-submit:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.45);
}

.btn-submit-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s var(--ease-out);
}

.btn-submit:hover .btn-submit-shine {
  left: 150%;
}

.btn-arrow {
  transition: transform 0.3s var(--ease-bounce);
}

.btn-submit:hover .btn-arrow {
  transform: translateX(4px);
}

/* Success Message */
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 10px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 16px;
  animation: fade-in-up 0.5s var(--ease-out) forwards;
}

.form-success.show {
  display: flex;
}

/* Field Error */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: rgba(220, 80, 80, 0.6);
}

.form-error-msg {
  font-size: 0.68rem;
  color: rgba(220, 80, 80, 0.8);
  position: absolute;
  bottom: -18px;
  left: 0;
}

/* =============================================
   SECTION 9: FOOTER
   ============================================= */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  background: rgba(20, 18, 18, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 20px;
}

/* ── FOOTER LOGO ── */
/* To change: update src in nav.js under "FOOTER LOGO" comment */
.footer-logo-full {
  height: var(--logo-footer-h);
  max-width: var(--logo-footer-max-w);
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 6px rgba(255, 107, 0, 0.3));
  transition: filter 0.3s var(--ease-out), transform 0.3s var(--ease-bounce);
}

.footer-logo-full:hover {
  filter: drop-shadow(0 0 14px rgba(255, 107, 0, 0.6));
  transform: scale(1.02);
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.footer-address svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
  opacity: 0.7;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.3s, padding-left 0.3s var(--ease-out);
}

.footer-nav a:hover {
  color: var(--secondary);
  padding-left: 6px;
}

/* Social Icons */
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease-bounce), background 0.3s;
}

.social-icon svg {
  width: 17px;
  height: 17px;
}

.social-icon:hover {
  border-color: var(--border-hover);
  color: var(--accent);
  transform: translateY(-3px);
  background: rgba(200, 169, 110, 0.06);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.6;
}

/* =============================================
   REVEAL DELAYS
   ============================================= */
[data-delay="50"] { transition-delay: 0.05s; }
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .hero-inner { gap: 40px; }
  .hero-headline { font-size: clamp(2.4rem, 5vw, 3.5rem); }
  .counters-grid { grid-template-columns: repeat(3, 1fr); }
  .services-layout { grid-template-columns: 280px 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }
  .hero-left { text-align: center; }
  .hero-cta-row { justify-content: center; }
  .hero-badge-row { justify-content: center; }
  .hero-sub { margin: 0 auto 40px; }

  /* ── SERVICES: tablet/portrait stack ── */
  .services-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Nav buttons: horizontal pill tabs that scroll */
  .services-nav {
    display: flex;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
    margin-bottom: 28px;
    /* prevent shrink on flex parent */
    flex-shrink: 0;
  }
  .services-nav::-webkit-scrollbar { display: none; }

  .service-btn {
    flex-shrink: 0;
    width: auto;
    padding: 12px 20px;
    border-radius: 100px;
    margin-bottom: 0;
    gap: 8px;
    white-space: nowrap;
  }

  /* Hide number and arrow on pill tabs */
  .sb-num { display: none; }
  .sb-arrow { display: none; }

  /* Container: no fixed height on mobile/tablet */
  .services-content {
    min-height: 0 !important;
    height: auto !important;
  }

  /* All panels collapse to zero height when inactive */
  .service-panel {
    position: static !important;
    inset: auto;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: none !important;
    visibility: visible !important;
    transition: opacity 0.35s var(--ease-out), max-height 0.45s var(--ease-out);
    pointer-events: none;
  }

  /* Active panel opens fully */
  .service-panel.active {
    opacity: 1;
    max-height: 900px;
    pointer-events: auto;
    position: static !important;
    visibility: visible !important;
    transform: none !important;
  }

  .sp-header h3 { font-size: 1.5rem; }
  .sp-header p { max-width: 100%; margin-bottom: 24px; }
  .sp-logo-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .sp-logo-item { padding: 12px 8px; font-size: 0.68rem; }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 680px) {
  :root {
    --ann-h: 30px;
    --nav-h: 70px;
  }

  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }

  .nav-left, .nav-right { display: none; }
  .hamburger { display: flex; }
  .nav-inner { grid-template-columns: 1fr auto auto; }
  .nav-center { justify-content: flex-start; }

  /* Scale down nav logo on mobile */
  .logo-img-full { width: auto; height: auto; max-height: 44px; max-width: 160px; }
  .hero-logo { height: 40px; max-width: 160px; }
  .footer-logo-full { height: 40px; max-width: 160px; }
  .mobile-overlay-logo { height: 40px; max-width: 160px; }

  .hero { padding-top: calc(var(--ann-h) + var(--nav-h) + 40px); padding-bottom: 60px; }
  .hero-inner { padding: 0 20px; }

  .hero-headline { font-size: 2.4rem; }
  .hero-badge-row { gap: 16px; flex-wrap: wrap; }
  .hero-cta-row { flex-direction: column; align-items: center; gap: 14px; }

  .floating-card { display: none; }

  .fun-facts, .services, .expertise, .clients, .contact { padding: 72px 0; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .counters-grid .counter-card:last-child { grid-column: 1 / -1; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section-title { font-size: 1.8rem; }

  /* ── SERVICES: mobile-specific ── */
  .services-layout {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 32px;
  }

  /* Horizontal scrolling pill tabs */
  .services-nav {
    display: flex;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 0 4px 0;
    margin-bottom: 24px;
    flex-shrink: 0;
  }
  .services-nav::-webkit-scrollbar { display: none; }

  .service-btn {
    flex-shrink: 0;
    width: auto;
    padding: 10px 18px;
    border-radius: 100px;
    margin-bottom: 0;
    gap: 6px;
    white-space: nowrap;
  }

  .sb-num { display: none; }
  .sb-arrow { display: none; }

  /* Panels: max-height collapse for smooth open/close */
  .service-panel {
    position: static !important;
    inset: auto;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: none !important;
    visibility: visible !important;
    transition: opacity 0.35s var(--ease-out), max-height 0.45s var(--ease-out);
    pointer-events: none;
  }

  .service-panel.active {
    opacity: 1;
    max-height: 1000px;
    pointer-events: auto;
    position: static !important;
    transform: none !important;
    visibility: visible !important;
  }

  .services-content {
    min-height: 0 !important;
    height: auto !important;
  }

  .sp-header h3 { font-size: 1.35rem; margin-bottom: 10px; }
  .sp-header p {
    font-size: 0.9rem;
    max-width: 100%;
    margin-bottom: 20px;
    line-height: 1.65;
  }

  .sp-clients-label { margin-bottom: 12px; }

  /* 2×2 grid for client logos on mobile */
  .sp-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;
  }

  .sp-logo-item {
    padding: 14px 10px;
    font-size: 0.68rem;
    border-radius: 8px;
  }

  .sp-tags {
    gap: 6px;
  }

  .sp-tags span {
    font-size: 0.72rem;
    padding: 5px 12px;
  }
}

@media (max-width: 420px) {
  .hero-headline { font-size: 2rem; }

  .service-btn {
    padding: 9px 14px;
    font-size: 0.82rem;
  }

  .sb-name { font-size: 0.82rem; }
}

/* =============================================
   GRAIN TEXTURE OVERLAY — Premium feel
   ============================================= */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  opacity: 0.028;
  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)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* =============================================
   SERVICE BUTTON — fire glow active state
   ============================================= */
.service-btn.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255,107,0,0.2), 0 4px 24px rgba(255,107,0,0.12);
}

.service-btn:hover {
  box-shadow: 0 4px 20px rgba(255,107,0,0.08);
}

/* Service panel tag hover — fire tint */
.sp-tags span:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 107, 0, 0.08);
}

/* sp-logo-item fire hover */
.sp-logo-item:hover {
  border-color: rgba(255,107,0,0.4);
  color: var(--accent);
  background: rgba(255,107,0,0.05);
}

/* =============================================
   COUNTER ICON — fire colour
   ============================================= */
.counter-icon {
  color: var(--accent);
}

/* =============================================
   SECTION LABEL DOT — pulsing fire
   ============================================= */
.label-dot {
  background: var(--accent);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.5); }
  50%       { box-shadow: 0 0 0 7px rgba(255, 107, 0, 0); }
}

/* =============================================
   HERO — left-align logo on mobile too
   ============================================= */
@media (max-width: 900px) {
  .hero-brand-stamp { display: flex; justify-content: center; }
}

/* =============================================
   ACCORDION — fire accent active item
   ============================================= */
.accordion-item.open .acc-title {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   NAV — 4-link spacing fix
   ============================================= */
.nav-left { gap: 28px; }

/* =============================================
   FOOTER NAV — add Services link support
   ============================================= */
.footer-nav a:hover { color: var(--accent); }

/* =============================================
   SOCIAL ICON — fire hover
   ============================================= */
.social-icon:hover {
  border-color: rgba(255,107,0,0.5);
  color: var(--accent);
  background: rgba(255,107,0,0.06);
  box-shadow: 0 4px 16px rgba(255,107,0,0.15);
}

/* =============================================
   HERO BADGE NUM — fire gradient text
   ============================================= */
.badge-num {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   CLIENT LOGO — fire on hover
   ============================================= */
.client-logo:hover {
  color: var(--accent);
  filter: grayscale(0) opacity(1) drop-shadow(0 0 8px rgba(255,107,0,0.3));
}

/* =============================================
   FLOATING CARDS — fire border
   ============================================= */
.floating-card {
  border-color: rgba(255,107,0,0.2);
}

.fc-val {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   FORM FOCUS LINE — fire colour (already set via --accent)
   ============================================= */
.form-group.floating input:focus ~ label,
.form-group.floating select:focus ~ label,
.form-group.floating textarea:focus ~ label,
.form-group.floating select.has-value ~ label,
.form-group.floating input:not(:placeholder-shown) ~ label,
.form-group.floating textarea:not(:placeholder-shown) ~ label {
  color: var(--accent);
}

/* =============================================
   SCROLL WHEEL — fire colour
   ============================================= */
.scroll-wheel::before {
  background: var(--accent);
}

/* =============================================
   PREFERS REDUCED MOTION — Accessibility
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-content, .marquee-logos { animation: none; }
  #butterfly-cursor { display: none !important; }
  body { cursor: auto !important; }
}

/* =============================================
   SELECTION COLOUR — fire brand
   ============================================= */
::selection {
  background: rgba(255, 107, 0, 0.3);
  color: var(--secondary);
}

/* =============================================
   HERO GIF FRAME — subtle fire border glow
   ============================================= */
.hero-gif-placeholder {
  box-shadow: 0 0 0 1px rgba(255,107,0,0.15), 0 24px 80px rgba(255,107,0,0.1);
}

/* =============================================
   CONTACT SECTION HEADING — fire on "scale"
   ============================================= */
.contact .section-title span {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   BTN NAV svg arrow — inherit white
   ============================================= */
.btn-nav svg { flex-shrink: 0; }

/* =============================================
   COUNTER CARD first:last-child fix (5 items, 5-col grid)
   ============================================= */
@media (min-width: 681px) and (max-width: 1024px) {
  .counters-grid { grid-template-columns: repeat(3, 1fr); }
  .counters-grid .counter-card:nth-child(4),
  .counters-grid .counter-card:nth-child(5) { }
}

/* =============================================
   MULTI-PAGE: PAGE HERO (About / Services / Contact)
   ============================================= */
.page-hero {
  min-height: 52vh;
  padding-top: calc(var(--ann-h) + var(--nav-h) + 80px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--secondary);
  margin-bottom: 20px;
  opacity: 0;
  animation: fade-in-up 0.8s var(--ease-out) 0.2s forwards;
}

.page-hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
  opacity: 0;
  animation: fade-in-up 0.8s var(--ease-out) 0.4s forwards;
}

/* ── ABOUT PAGE ── */
.about-story {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-body {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-story-left .section-title {
  margin-bottom: 20px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-value-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--muted-2);
  transition: border-color 0.3s, transform 0.3s var(--ease-bounce);
}

.about-value-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.avc-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 12px;
}

.about-value-card h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}

.about-value-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Team section */
.about-team {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.team-card {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--muted-2);
  text-align: center;
  transition: border-color 0.3s, transform 0.3s var(--ease-bounce), background 0.3s;
}

.team-card:hover {
  border-color: var(--border-hover);
  background: rgba(255,107,0,0.04);
  transform: translateY(-6px);
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-fire);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 4px 20px rgba(255,107,0,0.3);
}

.team-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* ── CTA STRIP ── */
.cta-strip {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  background: rgba(255,107,0,0.03);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-strip-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.cta-strip-sub {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ── SERVICES CTA ROW ── */
.services-cta-row {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
}

/* ── CONTACT PAGE EXTRAS ── */
.contact-quick-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.cq-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--muted-2);
  transition: border-color 0.3s, background 0.3s;
}

.cq-card:hover {
  border-color: var(--border-hover);
  background: rgba(255,107,0,0.04);
}

.cq-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.cq-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 2px;
}

.cq-sub {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── RESPONSIVE — page-specific ── */
@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 680px) {
  .page-hero { padding-top: calc(var(--ann-h) + var(--nav-h) + 48px); padding-bottom: 48px; min-height: auto; }
  .page-hero-title { font-size: 2rem; }
  .about-values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .about-story, .about-team, .cta-strip { padding: 72px 0; }
  .services-cta-row { justify-content: center; }
  .contact-quick-cards { gap: 10px; }
}

@media (max-width: 420px) {
  .team-grid { grid-template-columns: 1fr; }
}