/* ============================================
   LINKING BRIDGES TRANSPORTATION — PREMIUM CSS
   ============================================ */

:root {
  --primary: #0f172a; /* Navy Blue */
  --primary-dark: #020617;
  --primary-glow: rgba(15, 23, 42, 0.25);
  --gold: #e11d48; /* Red accent */
  --gold-soft: rgba(225, 29, 72, 0.15);
  --dark: #0f172a; /* Navy Blue */
  --dark-2: #1e293b; /* Lighter Navy */
  --text: #1e293b;
  --text-secondary: #475569;
  --muted: #94a3b8;
  --surface: #ffffff;
  --surface-warm: #f8fafc;
  --surface-cool: #f1f5f9;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.06);
  --shadow: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.12);
  --shadow-xl: 0 40px 80px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: min(1200px, calc(100% - 2.5rem));
  --transition: cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-loading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 7rem 0;
}

.section-sm {
  padding: 4.5rem 0;
}

.section-title {
  font-size: clamp(2rem, 2.8vw, 3rem);
  margin: 0 0 1rem;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 800;
}

.section-intro {
  max-width: 740px;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 1.15rem;
  line-height: 1.7;
}

/* ============================================
   LOADER
   ============================================ */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  transition: opacity 500ms ease, visibility 500ms ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loader-hexagon {
  width: 60px;
  height: 60px;
  position: relative;
  border-left: 4px solid #ffffff;
  border-right: 4px solid #ffffff;
  border-radius: 5px;
  animation: spinPulse 1.5s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
}

.loader-hexagon::before,
.loader-hexagon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-left: 4px solid #ffffff;
  border-right: 4px solid #ffffff;
  border-radius: 5px;
}

.loader-hexagon::before {
  transform: rotate(60deg);
}

.loader-hexagon::after {
  transform: rotate(-60deg);
}

@keyframes spinPulse {
  0% { transform: rotate(0deg) scale(0.8); opacity: 0.5; }
  50% { transform: rotate(180deg) scale(1.1); opacity: 1; }
  100% { transform: rotate(360deg) scale(0.8); opacity: 0.5; }
}

.loader-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-align: center;
}

.loader-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   GRADIENT TEXT & BUTTONS
   ============================================ */

.gradient-text {
  background: linear-gradient(120deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 400ms var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 300ms ease;
}

.btn:hover::after {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(-1px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 6px 20px var(--primary-glow), 0 2px 8px rgba(0,0,0,0.1);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn-primary:hover {
  box-shadow: 0 12px 32px var(--primary-glow), 0 4px 12px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dark);
  border-radius: 6px;
  padding: 0.9rem 2rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 400ms var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  background: transparent;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-outline:hover {
  background: var(--dark);
  color: white !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-secondary {
  color: var(--dark);
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: var(--shadow);
}

.btn-ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: fixed !important;
  top: 2rem !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 92% !important;
  max-width: 1400px !important;
  background: rgba(26, 32, 44, 0.6) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
  z-index: 9999 !important; /* Force to top */
}
.site-header .container {
  max-width: 100% !important;
  padding: 0 1.5rem !important;
}
.site-header .container {
  max-width: 100% !important;
  padding: 0 1.5rem !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.8rem 1.5rem;
  gap: 3.5rem;
}

@media (max-width: 1024px) {
  .header-inner {
    justify-content: space-between !important;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: white;
  flex-shrink: 0;
}

.brand-wordmark {
  display: block;
  max-height: 55px;
  min-height: 40px;
  width: auto;
  object-fit: contain;
}

.brand-wordmark-loader {
  max-height: 72px;
  min-height: 52px;
  margin: 0 auto 0.5rem;
}

@media (max-width: 640px) {
  .brand-wordmark {
    max-height: 40px;
    min-height: 32px;
  }
  .brand-wordmark-loader {
    max-height: 56px;
    min-height: 40px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.5rem 0;
  position: relative;
  transition: color 220ms ease;
  white-space: nowrap;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transition: width 300ms var(--transition);
  border-radius: 2px;
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
  width: 100%;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active {
  color: var(--primary);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 0.6rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 250ms var(--transition);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  margin-top: 1rem;
}

.dropdown-menu a {
  display: block;
  padding: 0.8rem 1.1rem;
  border-radius: 8px;
  color: rgba(255,255,255,0.8);
  transition: all 200ms ease;
  font-size: 0.95rem;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.35rem;
}

/* ============================================
   HERO SECTION — DESKTOP
   ============================================ */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--text);
  isolation: isolate;
  overflow: hidden;
  background: var(--dark);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 1;
  transition: transform 0.1s linear;
  will-change: transform;
}

@keyframes zoomBg {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(255,255,255,0.98) 0%,
    rgba(255,255,255,0.92) 30%,
    rgba(255,255,255,0.6) 50%,
    transparent 70%
  );
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 45vw;
  margin: 0;
  padding: 6rem 0 6rem 4vw;
}

.hero-content > * {
  max-width: 100%;
}

.hero .eyebrow {
  display: inline-block;
  color: var(--primary);
  background: var(--primary-glow);
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  border: none;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.hero h1,
.hero-headline {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: clamp(2.4rem, 4.2vw, 5.2rem);
  line-height: 1.1;
  max-width: 900px;
  margin: 0;
  letter-spacing: -0.03em;
  font-weight: 900;
  text-transform: none;
  color: var(--dark);
  white-space: nowrap;
}

.hero-headline span {
  color: var(--primary);
  display: block;
  position: relative;
}

.hero p {
  font-size: 1.1rem;
  max-width: 520px;
  color: var(--text-secondary);
  font-weight: 450;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-badges i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  font-weight: 600;
}

.hero-scroll-indicator::after {
  content: '';
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  border-radius: 2px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   HERO — MOBILE (Premium Cinematic)
   ============================================ */

@media (max-width: 900px) {
  .hero {
    min-height: 55vh;
    flex-direction: column;
    align-items: stretch;
    background: var(--dark);
    overflow: hidden;
  }

  /* Cinematic dark gradient overlay on mobile */
  .hero::before {
    display: block;
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.6) 0%,
      rgba(0,0,0,0.3) 40%,
      rgba(0,0,0,0.7) 100%
    );
    z-index: 1;
  }

  .hero::after {
    display: block;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--dark), transparent);
    z-index: 1;
  }

  /* Image stays as absolute full-bleed background */
  .hero-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 80% center; /* Focus on the truck on the right side */
    opacity: 0;
    animation: zoomInHero 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }

  @keyframes zoomInHero {
    from {
      opacity: 0;
      transform: scale(1.15);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Text overlaid on image */
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    padding: 6rem 1.8rem 3rem !important;
    margin: 0 !important;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 55vh;
  }

  .hero h1,
  .hero-headline {
    font-size: clamp(2rem, 9vw, 3rem);
    white-space: normal;
    color: #ffffff;
    text-shadow: none;
    margin-bottom: 0;
  }

  .hero-headline span {
    color: var(--primary);
  }

  .hero-scroll-indicator {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 60vh;
  }
  .hero-content {
    padding: 5rem 1.4rem 2rem !important;
    min-height: 60vh;
  }

  .hero h1,
  .hero-headline {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }
}

/* ============================================
   STAT STRIP
   ============================================ */

.stat-strip {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #ffffff;
  border-top: 4px solid var(--primary);
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.stat-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  pointer-events: none;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card {
  padding: 1.5rem 0.5rem;
  text-align: center;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.stat-card strong {
  display: block;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.4rem;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card span {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ============================================
   CARDS — PREMIUM DESIGN
   ============================================ */

.card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  transition: all 500ms var(--transition);
  overflow: hidden;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms var(--transition);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.03);
  border-color: rgba(196,30,30,0.2);
}

.service-card,
.feature-card,
.info-card,
.gallery-card {
  padding: 2.5rem;
}

.feature-card {
  padding: 1.8rem;
  text-align: left;
}

.feature-card .icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(196,30,30,0.08), rgba(200,163,95,0.08));
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
  transition: all 300ms var(--transition);
}

.card:hover .feature-card .icon-wrapper,
.feature-card:hover .icon-wrapper {
  background: linear-gradient(135deg, rgba(196,30,30,0.15), rgba(200,163,95,0.15));
  transform: scale(1.05);
}

.feature-card .icon {
  font-size: 1.5rem;
  color: var(--primary);
  display: block;
}

.service-card .icon {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(196,30,30,0.08), rgba(200,163,95,0.06));
  border-radius: 16px;
  color: var(--primary);
  transition: all 400ms var(--transition-spring);
}

.service-card .icon svg {
  stroke: var(--primary);
}

.service-card:hover .icon {
  transform: translateY(-5px) scale(1.1);
  background: linear-gradient(135deg, rgba(196,30,30,0.15), rgba(200,163,95,0.12));
  box-shadow: 0 10px 20px rgba(196,30,30,0.1);
}

.service-card h3,
.feature-card h3,
.info-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.3rem;
  color: var(--dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.service-card p,
.feature-card p,
.info-card p {
  color: var(--text-secondary);
  margin: 0 0 1.5rem 0;
  line-height: 1.7;
  font-size: 1rem;
}

/* ============================================
   OPERATIONS PAGE STYLES
   ============================================ */

.ops-grid-section {
  align-items: center;
  gap: 4rem;
  margin-bottom: 3rem;
}

.ops-grid-reverse {
  direction: rtl;
}

.ops-grid-reverse > * {
  direction: ltr;
}

.ops-section-heading {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.ops-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  line-height: 0;
}

.ops-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 500ms ease;
}

.ops-image-wrap:hover img {
  transform: scale(1.03);
}

@media (max-width: 960px) {
  .ops-grid-section {
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .ops-grid-reverse {
    direction: ltr;
  }

  .ops-section-heading {
    font-size: 1.4rem;
  }
}

.service-card a {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.08em;
  transition: all 300ms ease;
  gap: 0.3rem;
}

.service-card a:hover {
  color: var(--dark);
  gap: 0.6rem;
}

/* ============================================
   VISUALS & IMAGES
   ============================================ */

.about-visual img,
.operations-visual img,
.fleet-visual img,
.gallery-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 600ms var(--transition);
}

.about-visual {
  position: relative;
}

.premium-image-group {
  position: relative;
  display: block;
  padding-bottom: 2rem;
}

.premium-image-group .img-main {
  width: 85%;
  margin-left: 0;
  position: relative;
  z-index: 1;
  border: 1px solid var(--border);
}

.premium-image-group .img-secondary {
  position: absolute;
  width: 55%;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 8px solid #ffffff;
  box-shadow: var(--shadow-lg);
}

.about-visual::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, rgba(196,30,30,0.04), rgba(200,163,95,0.04));
  border-radius: var(--radius-xl);
  z-index: -1;
}

/* ============================================
   BANNER / CTA
   ============================================ */

.banner {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 50%, var(--dark) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 6rem 3rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  text-align: center;
  border-left: none;
  border: 1px solid rgba(255,255,255,0.05);
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
}

.banner::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  z-index: 1;
}

.banner strong {
  display: block;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.02em;
}

.banner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 2;
}

.banner .btn {
  position: relative;
  z-index: 2;
}

/* ============================================
   QUOTE PANEL / FORM
   ============================================ */

.quote-panel {
  background: var(--surface);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.quote-panel h3 {
  font-size: 1.8rem;
  margin: 0 0 1rem;
  color: var(--dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.quote-panel p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.quote-form {
  display: grid;
  gap: 1.5rem;
}

.quote-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 300ms var(--transition);
  background: var(--surface-warm);
  color: var(--text);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--surface);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.quote-form textarea {
  min-height: 120px;
  resize: vertical;
}

.quote-form .btn {
  margin-top: 0.5rem;
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.gallery-card img {
  height: 280px;
  transition: transform 700ms var(--transition);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: none;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card .caption {
  padding: 1.8rem;
  background: white;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border-light);
}

/* ============================================
   AFFILIATIONS CAROUSEL
   ============================================ */

.affiliations-carousel {
  overflow: hidden;
  width: 100%;
  padding: 3rem 0;
  position: relative;
  margin-bottom: 2rem;
  background: transparent;
}

.affiliations-carousel::before,
.affiliations-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.affiliations-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--surface) 20%, transparent);
}

.affiliations-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--surface) 20%, transparent);
}

.affiliations-track {
  display: flex;
  align-items: center;
  gap: 5rem;
  width: max-content;
  animation: scrollMarquee 35s linear infinite;
}

.affiliations-track:hover {
  animation-play-state: paused;
}

.affiliations-track img {
  width: 200px;
  height: 90px;
  object-fit: contain;
  transition: all 400ms var(--transition);
  cursor: pointer;
  opacity: 1;
  filter: none;
}

.affiliations-track img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.08));
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 2.5rem)); }
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: linear-gradient(180deg, var(--dark) 0%, #050505 100%);
  color: #ffffff;
  padding: 6rem 0 0;
  border-top: 4px solid var(--primary);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(ellipse at top center, var(--primary-glow) 0%, transparent 70%);
  pointer-events: none;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background: linear-gradient(135deg, #25d366, #128C7E);
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 400ms var(--transition);
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.55), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

@media (max-width: 768px) {
  .pdf-hero { 
    display: flex; 
    flex-direction: column; 
    padding: 7rem 0 0 0 !important; 
    min-height: auto;
  }
  .pdf-hero-content { 
    position: relative; 
    order: 1; 
    padding: 0 1.5rem 2rem 1.5rem !important; 
    width: 100%; 
    margin-top: 0 !important; 
  }
  .pdf-hero-bg { 
    position: relative !important; 
    order: 2; 
    height: 45vh !important; 
    min-height: 300px; 
    width: 100%;
  }
  .pdf-hero-bg::after { 
    display: none !important; 
  }
  .pdf-hero-bg img { 
    object-fit: contain !important; 
    object-position: center !important; 
  }
  .pdf-hero-headline {
    font-size: 2.5rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.01em;
  }
  .pdf-services-grid { grid-template-columns: 1fr; }
  .pdf-trust-features { grid-template-columns: 1fr; gap: 1rem; }
  .pdf-stats { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-grid h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-grid h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 2px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.footer-grid a {
  color: rgba(255,255,255,0.6);
  transition: all 250ms ease;
  font-weight: 500;
  font-size: 0.95rem;
}

.footer-grid a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.newsletter {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.newsletter input {
  flex: 1 1 220px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  transition: all 300ms ease;
}

.newsletter input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.7);
  margin-left: 0.3rem;
  transition: color 200ms ease;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.contact-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.copyright {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
}

/* ============================================
   ANIMATIONS & REVEALS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms var(--transition), transform 800ms var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveals for cards */
.grid-3 .reveal:nth-child(2) { transition-delay: 100ms; }
.grid-3 .reveal:nth-child(3) { transition-delay: 200ms; }
.grid-3 .reveal:nth-child(4) { transition-delay: 300ms; }
.grid-3 .reveal:nth-child(5) { transition-delay: 400ms; }
.grid-3 .reveal:nth-child(6) { transition-delay: 500ms; }

.grid-2 .reveal:nth-child(2) { transition-delay: 150ms; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes loading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(220%); }
}

.counter {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}

/* ============================================
   BREADCRUMB & PAGE HERO
   ============================================ */

.breadcrumb {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.breadcrumb a {
  color: var(--primary);
  transition: color 200ms ease;
}

.breadcrumb a:hover {
  color: var(--primary-dark);
}

/* ============================================
   CINEMATIC PAGE HERO — shared across all pages
   ============================================ */
.cin-hero {
  position: relative;
  width: 100%;
  /* Break out of .container padding so it goes edge-to-edge */
  margin-left: calc(-1 * var(--container-pad, 2rem));
  margin-right: calc(-1 * var(--container-pad, 2rem));
  width: calc(100% + 2 * var(--container-pad, 2rem));
  min-height: 35vh;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.cin-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cin-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35) !important;
  transition: transform 12s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: scale(1.08);
  animation: bgZoomOut 2.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes bgZoomOut {
  from { transform: scale(1.15); filter: brightness(0); }
  to { transform: scale(1.08); filter: brightness(0.35); }
}

.cin-hero:hover .cin-hero-bg img {
  transform: scale(1.03);
}

/* Gradient reinforcement at bottom */
.cin-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 12, 16, 0.95) 0%,
    rgba(10, 12, 16, 0.4) 40%,
    transparent 100%
  );
}

.cin-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem var(--container-pad, 2rem) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cin-hero-content .breadcrumb {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.75rem;
  animation: heroFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
  transform: translateY(20px);
  animation-delay: 0.1s;
}

.cin-hero-content .breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.cin-hero-content .breadcrumb a:hover {
  color: white;
}

.cin-hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.8rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 800px;
  animation: heroFadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
  animation-delay: 0.2s;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.cin-hero-content .cin-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0;
  line-height: 1.6;
  animation: heroFadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
  animation-delay: 0.3s;
}

/* Eyebrow pill above h1 */
.cin-hero-content .cin-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), #a61212);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  animation: heroFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
  transform: translateY(20px);
  animation-delay: 0.15s;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .cin-hero {
    min-height: 380px;
    height: auto;
    margin-left: -1.2rem;
    margin-right: -1.2rem;
    width: calc(100% + 2.4rem);
    border-radius: 0 0 1.5rem 1.5rem;
  }

  .cin-hero-content {
    padding: 6rem 1.2rem 2.5rem;
  }

  .cin-hero-content h1 {
    font-size: 1.7rem;
  }

  .cin-hero-content .cin-hero-sub {
    font-size: 0.95rem;
  }
}

.page-hero {
  display: grid;

  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 0 4rem;
}

.page-hero-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.page-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
  pointer-events: none;
}

.page-hero-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: none;
  transition: transform 600ms var(--transition);
}

.page-hero-image:hover img {
  transform: scale(1.03);
}

.page-hero .hero-copy {
  max-width: 100%;
}

.page-hero .eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: inline-block;
  background: var(--primary-glow);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  margin: 0 0 1.2rem;
  color: var(--dark);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-transform: none;
}

.page-hero p.section-intro {
  margin-bottom: 0;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Subtle image enhancement for non-logo images */
img:not(.brand-wordmark):not([src*="logo"]):not([src*="ops/"]) {
  filter: saturate(1.15) contrast(1.05);
}

/* ============================================
   CHECK LISTS
   ============================================ */

.list-check {
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
  color: var(--text);
}

.list-check li {
  position: relative;
  padding-left: 2rem;
}

.list-check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  background: rgba(196, 30, 30, 0.08);
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.8rem;
}

/* ============================================
   RESPONSIVE — TABLET & MOBILE
   ============================================ */

@media (max-width: 960px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero {
    min-height: 60vh;
  }

  .grid-2 {
    gap: 3rem;
  }

  .site-header {
    width: 100%;
    margin: 0;
    top: 0;
  }

  .nav-links {
    gap: 1rem;
  }
}

@media (max-width: 1200px) {
  .site-header {
    width: 100%;
    margin: 0;
    top: 0;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .header-inner {
    padding: 0.5rem 1rem;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 0.5rem;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 1201;
    transition: all 200ms ease;
  }

  .nav-toggle:hover {
    background: var(--surface-warm);
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 999px;
    transition: transform 300ms var(--transition), opacity 300ms ease;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 1rem 2rem 2.5rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow-xl);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav-links.open {
    display: flex;
    animation: slideDown 0.3s var(--transition) forwards;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-links li:last-child {
    border-bottom: none;
    margin-top: 1.5rem;
  }

  .nav-links a:not(.btn) {
    display: flex;
    width: 100%;
    color: var(--dark);
    padding: 1.2rem 0;
    margin: 0;
    border-radius: 0;
    background: transparent;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 220ms ease;
  }

  .nav-links a:not(.btn)::after {
    display: none;
  }

  .nav-links a:not(.btn):hover,
  .nav-links a:not(.btn).active {
    color: var(--primary);
    transform: translateX(8px);
  }

  .nav-links .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 1.2rem;
    border-radius: 8px;
    transform: none;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0.5rem 1rem;
    display: none;
    background: transparent;
    backdrop-filter: none;
  }

  .dropdown.open .dropdown-menu {
    display: grid;
  }

  .dropdown-menu a {
    margin: 0;
    padding: 0.8rem 0;
    background: transparent;
    border-radius: 0;
    color: var(--muted);
    font-size: 1rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .gallery-grid,
  .stat-grid,
  .page-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .header-inner {
    padding: 0.8rem 0;
  }

  .hero-content {
    padding: 5rem 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* Premium scroll-driven parallax class applied via JS */
.parallax-hero-img {
  will-change: transform;
  transition: transform 0.08s linear;
}

/* ============================================
   SERVICES PHOTO CAROUSEL — PREMIUM
   ============================================ */

.sc-section {
  overflow: hidden;
}

/* ---- Wrapper ---- */
.services-carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 0 4rem; /* space for arrows on desktop */
  box-sizing: border-box;
}

/* ---- Track ---- */
.services-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 650ms cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
  cursor: grab;
  user-select: none;
  align-items: stretch;
}

.services-carousel-track.is-dragging {
  cursor: grabbing;
  transition: none;
}

/* ---- Desktop: 3 slides visible at once ---- */
.sc-slide {
  position: relative;
  /* Show 3 per view with gaps: (100% - 2*gap) / 3 */
  flex: 0 0 calc(33.333% - 1rem);
  min-width: calc(33.333% - 1rem);
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 400ms var(--transition), box-shadow 400ms var(--transition);
  flex-shrink: 0;
}

.sc-slide:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.sc-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.sc-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms cubic-bezier(0.25, 0.8, 0.25, 1);
  filter: none !important;
}

/* Zoom on hover (card level, not just active) */
.sc-slide:hover .sc-image-wrap img {
  transform: scale(1.06);
}

/* ---- Overlay / Caption — visible on hover per card ---- */
.sc-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.2rem 1.8rem;
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 0.9) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    transparent 100%
  );
  color: white;
  transform: translateY(6px);
  opacity: 0;
  transition: all 450ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Always visible on active (JS-toggled) slide AND on hover */
.sc-slide.is-active .sc-overlay,
.sc-slide:hover .sc-overlay {
  transform: translateY(0);
  opacity: 1;
}

.sc-tag {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.7rem;
}

.sc-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.sc-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  margin: 0;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- Arrow Buttons (sides of wrapper) ---- */
.sc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 300ms var(--transition);
  box-shadow: var(--shadow-sm);
}

.sc-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 24px var(--primary-glow);
}

.sc-arrow-prev {
  left: 0.5rem;
}

.sc-arrow-next {
  right: 0.5rem;
}

/* ---- Dot Indicators (below cards) ---- */
.sc-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.8rem;
  z-index: 10;
}

.sc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: all 350ms var(--transition);
  padding: 0;
}

.sc-dot.is-active {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.35);
}

.sc-dot:hover:not(.is-active) {
  background: rgba(196,30,30,0.35);
  border-color: var(--primary);
}

/* ---- Slide counter badge ---- */
.sc-counter {
  display: none; /* hide on desktop multi-card view — dots are enough */
}

/* ---- Mobile: single full-width slide ---- */
@media (max-width: 900px) {
  .services-carousel-wrapper {
    padding: 0;
  }

  .sc-slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: 60vw;
    min-height: 280px;
    max-height: 420px;
    border-radius: 0;
  }

  .sc-overlay {
    padding: 1.8rem 1.4rem;
    opacity: 1;
    transform: translateY(0);
  }

  .sc-title {
    font-size: 1.2rem;
  }

  .sc-desc {
    font-size: 0.85rem;
  }

  .sc-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    top: 40%;
  }

  .sc-arrow-prev { left: 0.6rem; }
  .sc-arrow-next { right: 0.6rem; }

  .sc-dots {
    margin-top: 1rem;
  }

  .sc-dot {
    border-color: rgba(0,0,0,0.25);
  }

  .sc-dot.is-active {
    background: var(--primary);
    border-color: var(--primary);
  }
}

/* ============================================
   PDF REDESIGN CSS
   ============================================ */

.text-red {
  color: #E63946 !important;
}

.btn-white {
  background-color: #fff;
  color: #000;
  border-radius: 50px;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-white:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}
.btn-outline-white {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-outline-white:hover {
  border-color: #fff;
  background-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background-color: transparent;
  color: #000;
  border: 1px solid rgba(0,0,0,0.3);
  border-radius: 50px;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-outline-dark:hover {
  border-color: #000;
  background-color: rgba(0,0,0,0.05);
}

body.dark-page .btn-outline-dark {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
body.dark-page .btn-outline-dark:hover {
  border-color: #fff;
  background-color: rgba(255,255,255,0.1);
}
.btn-white-full {
  background-color: #fff;
  color: #000;
  border-radius: 50px;
  padding: 1rem 1.8rem;
  font-weight: 600;
  border: none;
  width: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* HERO */
.pdf-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #0f131a;
  overflow: hidden;
}
.pdf-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}
.pdf-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.pdf-hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(13,17,26,0.92) 0%, rgba(13,17,26,0.75) 30%, rgba(13,17,26,0.3) 50%, rgba(13,17,26,0) 60%);
}
.pdf-hero-content {
  position: relative;
  z-index: 3;
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 12rem 1.5rem 5rem 1.5rem;
  color: #fff;
}
.pdf-hero-content > * {
  max-width: 500px;
}
.pdf-hero-eyebrow {
  color: #a0aab5;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0px;
  margin-bottom: 1rem;
}
.pdf-hero-headline {
  font-size: 2.8rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.pdf-hero-sub {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.pdf-hero-desc {
  font-size: 0.95rem;
  color: #cbd3e1;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 500px;
  font-weight: 400;
}
.pdf-hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.pdf-hero-tags {
  display: flex;
  gap: 1rem;
}
.pdf-hero-tags span {
  font-size: 0.85rem;
  color: #cbd3e1;
  background: rgba(255,255,255,0.08);
  padding: 0.5rem 1rem;
  border-radius: 50px; /* Pill shaped tags */
  border: 1px solid rgba(255,255,255,0.1);
}

/* STATS */
.pdf-stats {
  position: relative;
  z-index: 10;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pdf-stat-box {
  padding: 2rem;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.pdf-stat-box.dark { background: #1a1e29; color: #fff; }
.pdf-stat-box.red { background: #E63946; color: #fff; }
.pdf-stat-box.glass { background: rgba(255,255,255,0.8); backdrop-filter: blur(10px); color: #000; }
.pdf-stat-box.glass-light { background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); color: #000; }
.pdf-stat-box h2 { font-size: 3rem; margin: 0; font-weight: 800; line-height: 1; }
.pdf-stat-box p { margin: 0.5rem 0 0; font-weight: 600; opacity: 0.8; }

/* PARTNER SECTION */
.pdf-partner {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  padding: 6rem 0;
}
.pdf-partner-content {
  flex: 1;
}
.pdf-section-label {
  font-size: 0.85rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.pdf-section-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  color: #000;
  margin-bottom: 1.5rem;
}
.pdf-section-desc {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.pdf-partner-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
}
.pdf-partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* AFFILIATIONS */
.pdf-affiliations {
  background: #f8f9fa;
  padding: 4rem 0;
}

body.dark-page .pdf-affiliations {
  background: var(--dark) !important;
}
body.dark-page .pdf-affiliations .pdf-section-title {
  color: #ffffff !important;
}
body.dark-page .pdf-affiliations .pdf-section-label {
  color: #94a3b8 !important;
}
.pdf-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.pdf-logo-item {
  height: 40px;
  opacity: 0.5;
  filter: none;
  transition: all 0.3s ease;
}
.pdf-logo-item.active-logo {
  height: 60px;
  opacity: 1;
  filter: none;
  background: #fff;
  padding: 1rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.pdf-logo-item.active-logo img {
  height: 100%;
}

/* CORE SERVICES */
.pdf-services {
  padding: 6rem 0;
}
.pdf-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pdf-service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 350px;
}
.pdf-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pdf-service-card:hover img {
  transform: scale(1.05);
}
.pdf-service-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,12,16,0.95), rgba(10,12,16,0.5), transparent);
  padding: 2rem 1.5rem;
  color: #fff;
}
.pdf-service-num {
  font-size: 1.5rem;
  font-weight: 300;
  opacity: 0.7;
}
.pdf-service-overlay h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0.5rem 0;
}
.pdf-service-overlay p {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pdf-service-overlay a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

/* TRUST SECTION */
.pdf-trust {
  position: relative;
  background: #111;
  color: #fff;
  padding: 6rem 0;
  overflow: hidden;
}
.pdf-trust-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.3;
  z-index: 1;
}
.pdf-trust-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdf-trust-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4rem;
}
.pdf-trust-content {
  flex: 1;
}
.pdf-trust-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.pdf-trust-content p {
  font-size: 1.1rem;
  color: #bbb;
  line-height: 1.6;
}
.pdf-trust-form-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  width: 400px;
  border: 1px solid rgba(255,255,255,0.1);
}
.pdf-trust-form-box h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.pdf-form-group {
  margin-bottom: 1.5rem;
}
.pdf-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #ccc;
}
.pdf-form-group input,
.pdf-form-group textarea {
  width: 100%;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 1rem;
  border-radius: 8px;
  color: #fff;
}
.pdf-form-group textarea {
  height: 100px;
  resize: none;
}
.pdf-trust-features {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 5rem;
}
.pdf-t-feature {
  padding: 2rem;
  border-radius: 16px;
  color: #fff;
}
.pdf-t-feature.dark { background: #1a1e29; }
.pdf-t-feature.red { background: #E63946; }
.pdf-t-feature.light { background: #cbd3e1; color: #111; }
.pdf-tf-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.pdf-tf-top h2 { font-size: 2rem; margin: 0; }
.pdf-tf-top svg { opacity: 0.5; }
.pdf-t-feature p { font-size: 1.1rem; font-weight: 600; margin: 0; line-height: 1.3; }

/* CTA BANNER */
.pdf-cta {
  position: relative;
  padding: 8rem 0;
  color: #fff;
  overflow: hidden;
}
.pdf-cta-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}
.pdf-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdf-cta-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,12,16,0.8);
}
.pdf-cta-content {
  position: relative;
  z-index: 2;
}
.pdf-section-label-light {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.pdf-cta h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.pdf-cta p {
  font-size: 1.1rem;
  color: #bbb;
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .pdf-hero-content {
  position: relative;
  z-index: 3;
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 12rem 1.5rem 5rem 1.5rem;
  color: #fff;
}
.pdf-hero-content > * {
  max-width: 500px;
}
  .pdf-hero-truck { top: auto; bottom: 0; right: 0; width: 80%; }
  .pdf-stats { grid-template-columns: repeat(2, 1fr); margin-top: 2rem; }
  .pdf-partner { flex-direction: column; }
  .pdf-services-grid { grid-template-columns: repeat(2, 1fr); }
  .pdf-trust-container { flex-direction: column; }
  .pdf-trust-form-box { width: 100%; }
  .pdf-trust-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .pdf-hero-headline {
  font-size: 2.8rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: -0.01em;
}
  .pdf-services-grid { grid-template-columns: 1fr; }
  .pdf-trust-features { grid-template-columns: 1fr; }
  .pdf-stats { grid-template-columns: 1fr; }
}


/* ============================================
   LOGO CAROUSEL
   ============================================ */

.logo-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2rem 0 1rem;
}

/* Fade edges for futuristic feel */
.logo-carousel::before,
.logo-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #f5f7fa 0%, transparent 100%);
}
.logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #f5f7fa 0%, transparent 100%);
}
body.dark-page .logo-carousel::before {
  background: linear-gradient(90deg, var(--dark) 0%, transparent 100%);
}
body.dark-page .logo-carousel::after {
  background: linear-gradient(270deg, var(--dark) 0%, transparent 100%);
}

.logo-carousel-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: logoScroll 35s linear infinite;
}

.logo-carousel-track img {
  height: 80px;
  width: 250px;
  object-fit: contain;
  filter: none !important;
  opacity: 1;
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  flex-shrink: 0;
  box-sizing: content-box;
}

.logo-carousel-track img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Individual Logo Sizing Adjustments */
.logo-carousel-track img.logo-alpha-star,
.logo-carousel-track img.logo-partner-1,
.logo-carousel-track img.logo-partner-4,
.logo-carousel-track img.logo-partner-5,
.logo-carousel-track img.logo-partner-img {
  /* Reduce padding to give the inner logo more room to scale up, keeping outer card size the same (310x120) */
  padding: 0 10px;
  width: 290px;
  height: 120px;
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.logo-carousel:hover .logo-carousel-track {
  animation-play-state: paused;
}

/* ============================================
   HEADER OVERRIDE FOR PDF DESIGN
   ============================================ */

.site-header {
  position: fixed !important;
  top: 1.5rem !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 92% !important;
  max-width: 1400px !important;
  background: rgba(20, 25, 40, 0.35) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 16px !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
  z-index: 9999 !important;
  padding: 0.5rem 0 !important;
}

.site-header .container {
  max-width: 100% !important;
  padding: 0 2rem !important;
  display: flex !important;
  align-items: center !important;
}

.site-header .brand-wordmark {
  height: 120px !important;
  max-height: 120px !important;
  max-width: none !important;
  width: auto !important;
  object-fit: contain !important;
  margin-top: -30px !important;
  margin-bottom: -30px !important;
  margin-right: -80px !important;
  transform: translateX(-120px) !important;
}

.site-header .nav-links a:not(.btn) {
  color: rgba(255,255,255,0.85) !important;
  text-transform: capitalize !important;
  font-weight: 500 !important;
  font-size: 1.15rem !important;
  letter-spacing: 0.3px !important;
  position: relative !important;
  padding-bottom: 6px !important;
  text-decoration: none !important;
}

.site-header .nav-links a:not(.btn):hover,
.site-header .nav-links a:not(.btn).active {
  color: #ffffff !important;
}

.site-header .nav-links a:not(.btn):hover::after,
.site-header .nav-links a:not(.btn).active::after {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 2px !important;
  background: #3b82f6 !important;
  border-radius: 2px !important;
}

.site-header .btn-primary {
  background: #ffffff !important;
  color: #000000 !important;
  border-radius: 50px !important;
  padding: 0.7rem 1.8rem !important;
  box-shadow: none !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
}
.site-header .btn-primary:hover {
  background: #f0f0f0 !important;
  transform: translateY(-2px) !important;
}


@media (max-width: 768px) {
  .site-header { width: 95% !important; top: 1rem !important; border-radius: 12px !important; }
  .site-header .container { padding: 0 1.5rem !important; }
  .site-header .brand-wordmark { 
    height: 70px !important; 
    max-height: 70px !important; 
    max-width: 250px !important; 
    transform: translateX(-30px) !important; 
  }
  .mobile-menu-btn { padding: 0.25rem !important; }
  .mobile-menu-btn svg { width: 24px !important; height: 24px !important; }
}

@media (max-width: 1440px) {
  .site-header .header-inner {
    gap: 0.5rem !important;
  }
  .site-header .nav-links {
    gap: 0.75rem !important;
  }
  .site-header .nav-links a:not(.btn) {
    font-size: 0.8rem !important;
    padding-bottom: 2px !important;
  }
  .site-header .btn-primary {
    padding: 0.5rem 1rem !important;
    font-size: 0.85rem !important;
  }
  .site-header .brand-wordmark {
    margin-right: -20px !important;
    transform: translateX(-40px) !important;
  }
}

/* ==============================================
   PREMIUM DARK SUBPAGE THEME
   ============================================== */

/* Dark page base */
body.dark-page {
  background: #0a0e17;
  color: #cbd5e1;
  position: relative;
}

/* Subtle background texture - thin diagonal strokes, NOT overwhelming */
body.dark-page::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      135deg,
      transparent,
      transparent 100px,
      rgba(59, 130, 246, 0.025) 100px,
      rgba(59, 130, 246, 0.025) 101px
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 150px,
      rgba(59, 130, 246, 0.018) 150px,
      rgba(59, 130, 246, 0.018) 151px
    ),
    radial-gradient(ellipse 800px 600px at 15% 10%, rgba(30, 64, 175, 0.06), transparent),
    radial-gradient(ellipse 600px 400px at 85% 70%, rgba(30, 58, 138, 0.04), transparent);
}
/* Removed body.dark-page > * rule that broke fixed header */
/* ---- NAV TOGGLE FIX (hamburger invisible on dark) ---- */
body.dark-page .nav-toggle span {
  background: #ffffff !important;
}

body.dark-page .nav-links a {
  color: #e2e8f0;
}

/* ---- HERO TEXT FIX — WHITE, not blue ---- */
body.dark-page .cin-hero-content h1 {
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #ffffff !important;
  background-clip: unset !important;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5) !important;
}

body.dark-page .cin-hero-sub {
  color: rgba(255,255,255,0.8);
}

body.dark-page .breadcrumb {
  color: rgba(255,255,255,0.6) !important;
}

body.dark-page .breadcrumb a {
  color: rgba(255,255,255,0.8) !important;
}

body.dark-page .breadcrumb a:hover {
  color: #ffffff !important;
}

body.dark-page .cin-eyebrow {
  background: linear-gradient(135deg, #b0914f, #d6b86d) !important;
  color: #0b0e14 !important;
  box-shadow: 0 4px 20px rgba(214, 184, 109, 0.2) !important;
}

/* ---- SECTION TITLES — clean white with gold accent ---- */
body.dark-page .pdf-section-title,
body.dark-page .section-title,
body.dark-page main h2 {
  color: #ffffff;
}

body.dark-page .pdf-section-title::after,
body.dark-page .section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #d6b86d, #b0914f);
  margin-top: 0.75rem;
  border-radius: 2px;
}

body.dark-page main h3 {
  color: #f1f5f9;
}

body.dark-page main p {
  color: #94a3b8;
}

body.dark-page main strong {
  color: #e2e8f0;
}

/* ---- CARDS — dark glass, subtle borders, NO heavy blue ---- */
body.dark-page .card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

body.dark-page .card:hover {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

body.dark-page .card h3 {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

body.dark-page .card p {
  color: #94a3b8;
}

/* Service card icons — subtle, not neon */
body.dark-page .card .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(214, 184, 109, 0.08);
  border: 1px solid rgba(214, 184, 109, 0.15);
  border-radius: 14px;
  margin-bottom: 1.5rem;
  color: #d6b86d;
  transition: all 0.3s ease;
}

body.dark-page .card:hover .icon {
  background: rgba(214, 184, 109, 0.12);
  border-color: rgba(214, 184, 109, 0.3);
}

/* Gallery cards */
body.dark-page .gallery-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.dark-page .gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

body.dark-page .gallery-card:hover img {
  transform: scale(1.05);
}

body.dark-page .gallery-card .caption {
  padding: 1.5rem;
}

body.dark-page .gallery-card .caption h3 {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

body.dark-page .gallery-card .caption p {
  color: #94a3b8;
  font-size: 0.95rem;
}

/* Gradient link text — gold accent, not blue */
body.dark-page .gradient-text {
  background: linear-gradient(135deg, #d6b86d, #e8cc85);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 1rem;
  transition: opacity 0.3s ease;
}

body.dark-page .gradient-text:hover {
  opacity: 0.8;
}

/* pdf-stat-box on dark pages */
body.dark-page .pdf-stat-box {
  background: rgba(15, 23, 42, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border-radius: var(--radius-lg) !important;
  padding: 2rem !important;
  transition: all 0.4s var(--transition) !important;
}

body.dark-page .pdf-stat-box:hover {
  background: rgba(15, 23, 42, 0.7) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4) !important;
  transform: translateY(-4px) !important;
}

body.dark-page .pdf-stat-box h3 {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

body.dark-page .pdf-stat-box p {
  color: #94a3b8;
}

/* Partner section images */
body.dark-page .pdf-partner-content h2 {
  color: #ffffff;
}

body.dark-page .pdf-partner-content p {
  color: #94a3b8;
}

body.dark-page .pdf-partner-image img {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* Forms (contact page) */
body.dark-page .quote-form {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

body.dark-page input,
body.dark-page textarea,
body.dark-page select {
  background: rgba(10, 14, 23, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #e2e8f0 !important;
  border-radius: var(--radius) !important;
  padding: 0.85rem 1.2rem !important;
  transition: border-color 0.3s ease;
}

body.dark-page input:focus,
body.dark-page textarea:focus,
body.dark-page select:focus {
  border-color: rgba(214, 184, 109, 0.3) !important;
  box-shadow: 0 0 0 3px rgba(214, 184, 109, 0.08) !important;
  outline: none;
}

body.dark-page input::placeholder,
body.dark-page textarea::placeholder {
  color: #64748b;
}

body.dark-page label {
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Gallery images */
body.dark-page .gallery-grid img {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

body.dark-page .gallery-grid img:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

/* Section divider — subtle golden line */
body.dark-page section + section::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 184, 109, 0.3), transparent);
}

/* Lists */
body.dark-page ul, body.dark-page ol {
  color: #94a3b8;
}

/* Footer on dark page */
body.dark-page .site-footer {
  background: #060911 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Mobile nav on dark pages */
@media (max-width: 1024px) {
  body.dark-page .nav-links {
    background: #0f172a !important;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  body.dark-page .nav-links a {
    color: #e2e8f0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  body.dark-page .nav-links a:hover,
  body.dark-page .nav-links a.active {
    color: #d6b86d !important;
  }

  body.dark-page .dropdown-menu {
    background: #1e293b !important;
  }

  body.dark-page .dropdown-menu a {
    color: #cbd5e1 !important;
  }
}

/* Responsive */
@media (max-width: 768px) {
  body.dark-page .card {
    padding: 1.5rem;
  }

  body.dark-page .pdf-stat-box {
    padding: 1.5rem !important;
  }

  body.dark-page .quote-form {
    padding: 1.5rem;
  }

  body.dark-page .gallery-card img {
    height: 180px;
  }
}



/* ==============================================
   DARK PAGE: SERVICE PAGE HERO & CONTENT FIXES
   ============================================== */

/* Page hero text — these pages use .page-hero, .hero-copy, .eyebrow */
body.dark-page .page-hero h1 {
  color: #ffffff !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

body.dark-page .hero-copy p,
body.dark-page .section-intro {
  color: #94a3b8 !important;
}

body.dark-page .eyebrow {
  background: linear-gradient(135deg, #b0914f, #d6b86d) !important;
  color: #0b0e14 !important;
  box-shadow: 0 4px 15px rgba(214, 184, 109, 0.2);
  border: none;
}

body.dark-page .page-hero-image img {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}

/* Content paragraphs and h3s in service detail pages */
body.dark-page .pdf-partner-content p,
body.dark-page .pdf-partner-content li {
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  line-height: 1.7;
}

body.dark-page .pdf-partner-content h3,
body.dark-page .section-sm h3 {
  color: #ffffff !important;
  letter-spacing: 0.05em;
}

/* List items in service detail pages */
body.dark-page .list-check li {
  color: #cbd5e1;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

body.dark-page .list-check li strong {
  color: #ffffff;
}

/* List check bullet styling */
body.dark-page .list-check li::marker {
  color: #d6b86d;
}

/* Banner CTA section at bottom */
body.dark-page .banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

body.dark-page .banner strong {
  color: #ffffff;
  font-size: 1.3rem;
}

body.dark-page .banner p {
  color: #94a3b8 !important;
}

/* Responsive fix for page-hero on mobile */
@media (max-width: 768px) {
  body.dark-page .page-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 0 2rem;
  }
}



/* ==============================================
   DARK PAGE: GALLERY CARD & CAPTION FIX
   ============================================== */

/* Override .card white background on dark pages */
body.dark-page .card {
  background: rgba(15, 23, 42, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
}

/* Override .caption white background on dark pages */
body.dark-page .caption {
  background: rgba(15, 23, 42, 0.7) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}

body.dark-page .caption h3 {
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

body.dark-page .caption p {
  color: #94a3b8 !important;
}


/* ==============================================
   SERVICES GRID (PREMIUM LAYOUT)
   ============================================== */

body.dark-page .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

body.dark-page .svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.5s var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.dark-page .svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(214, 184, 109, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

body.dark-page .svc-card:hover {
  transform: translateY(-8px);
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(214, 184, 109, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(214, 184, 109, 0.05);
}

body.dark-page .svc-card:hover::before {
  opacity: 1;
}

body.dark-page .svc-card > * {
  position: relative;
  z-index: 1;
}

body.dark-page .svc-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: #d6b86d;
  margin-bottom: 2rem;
  transition: all 0.5s ease;
}

body.dark-page .svc-card:hover .svc-card-icon {
  background: rgba(214, 184, 109, 0.1);
  border-color: rgba(214, 184, 109, 0.3);
  transform: scale(1.05);
}

body.dark-page .svc-card-num {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  transition: all 0.5s ease;
  font-family: 'Poppins', sans-serif;
  z-index: 0;
}

body.dark-page .svc-card:hover .svc-card-num {
  color: rgba(214, 184, 109, 0.08);
  transform: scale(1.1) translate(-10px, 10px);
}

body.dark-page .svc-card h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

body.dark-page .svc-card p {
  color: #94a3b8;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

body.dark-page .svc-card-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: #d6b86d;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

body.dark-page .svc-card:hover .svc-card-link {
  color: #ffffff;
  letter-spacing: 0.15em;
}

@media (max-width: 768px) {
  body.dark-page .svc-card {
    padding: 2.5rem 2rem;
  }
}


/* ==============================================
   CONTACT PAGE FIXES
   ============================================== */

/* Fix the large white background on the quote panel */
body.dark-page .quote-panel {
  background: rgba(15, 23, 42, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4) !important;
}

body.dark-page .quote-panel h3 {
  color: #ffffff !important;
}

body.dark-page .quote-panel p {
  color: #94a3b8 !important;
}

/* Fix the nested quote-form (remove the redundant styling we accidentally put on it) */
body.dark-page .quote-form {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* Style the info-cards on the right */
body.dark-page .info-card {
  background: rgba(15, 23, 42, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-top: 2px solid rgba(214, 184, 109, 0.6) !important; /* Gold border instead of red/pink */
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25) !important;
}

body.dark-page .info-card:hover {
  background: rgba(15, 23, 42, 0.6) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  border-top: 2px solid rgba(214, 184, 109, 1) !important;
}

body.dark-page .info-card h3 {
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
}

body.dark-page .info-card p,
body.dark-page .info-card a {
  color: #94a3b8 !important;
  line-height: 1.8 !important;
}

body.dark-page .info-card a:hover {
  color: #d6b86d !important;
}

/* Refine the input fields inside the dark panel */
body.dark-page .quote-panel label {
  color: #cbd5e1 !important;
  margin-bottom: 0.5rem;
  display: block;
}

body.dark-page .quote-panel input,
body.dark-page .quote-panel textarea,
body.dark-page .quote-panel select {
  width: 100%;
  background: rgba(0, 0, 0, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}

body.dark-page .quote-panel input:focus,
body.dark-page .quote-panel textarea:focus,
body.dark-page .quote-panel select:focus {
  border-color: rgba(214, 184, 109, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(214, 184, 109, 0.1) !important;
}



/* ==============================================
   CRISP PREMIUM LIGHT THEME (SUBPAGES)
   ============================================== */

body.premium-light {
  background-color: #fcfcfd;
  color: #334155;
  background-image: 
    radial-gradient(circle at 0% 0%, rgba(214, 184, 109, 0.05), transparent 40%),
    linear-gradient(rgba(15, 23, 42, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 60px 60px, 60px 60px;
  background-attachment: fixed;
}

/* Ensure the hero section remains cinematic (dark background image needs white text) */
body.premium-light .cin-hero-content h1,
body.premium-light .page-hero h1 {
  color: #ffffff !important;
  text-shadow: 0 4px 25px rgba(0,0,0,0.5);
}

body.premium-light .cin-hero-sub,
body.premium-light .section-intro {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

body.premium-light .breadcrumb,
body.premium-light .breadcrumb a {
  color: rgba(255, 255, 255, 0.8) !important;
}

body.premium-light .breadcrumb a:hover {
  color: #ffffff !important;
}

body.premium-light .cin-eyebrow,
body.premium-light .eyebrow {
  background: linear-gradient(135deg, #d6b86d, #b0914f) !important;
  color: #0b0e14 !important;
  box-shadow: 0 4px 15px rgba(214, 184, 109, 0.4) !important;
  border: none;
}

/* Typography on light background */
body.premium-light main h2,
body.premium-light .section-title,
body.premium-light .pdf-section-title {
  color: #0f172a;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
}

body.premium-light main h3 {
  color: #1e293b;
}

body.premium-light main p {
  color: #475569;
  line-height: 1.8;
}

body.premium-light main strong {
  color: #0f172a;
}

/* Premium White Cards */
body.premium-light .card,
body.premium-light .info-card,
body.premium-light .gallery-card,
body.premium-light .pdf-stat-box,
body.premium-light .quote-panel {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

body.premium-light .card:hover,
body.premium-light .info-card:hover,
body.premium-light .pdf-stat-box:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}

body.premium-light .info-card {
  border-top: 3px solid #d6b86d !important;
}

/* Service Grids */
body.premium-light .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

body.premium-light .svc-card {
  position: relative;
  display: block;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.5s var(--transition);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

body.premium-light .svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(214, 184, 109, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

body.premium-light .svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 20px rgba(214, 184, 109, 0.05);
  border-color: rgba(214, 184, 109, 0.2);
}

body.premium-light .svc-card:hover::before {
  opacity: 1;
}

body.premium-light .svc-card > * {
  position: relative;
  z-index: 1;
}

body.premium-light .svc-card-icon,
body.premium-light .card .icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  color: #b0914f;
  margin-bottom: 2rem;
  transition: all 0.5s ease;
}

body.premium-light .svc-card:hover .svc-card-icon,
body.premium-light .card:hover .icon {
  background: rgba(214, 184, 109, 0.08);
  border-color: rgba(214, 184, 109, 0.2);
  transform: scale(1.05);
}

body.premium-light .svc-card-num {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  transition: all 0.5s ease;
  font-family: 'Poppins', sans-serif;
  z-index: 0;
}

body.premium-light .svc-card:hover .svc-card-num {
  color: rgba(214, 184, 109, 0.1);
  transform: scale(1.1) translate(-10px, 10px);
}

body.premium-light .svc-card h3 {
  color: #0f172a;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1rem;
}

body.premium-light .svc-card p {
  color: #475569;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

body.premium-light .svc-card-link {
  display: inline-flex;
  align-items: center;
  color: #b0914f;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

body.premium-light .svc-card:hover .svc-card-link {
  color: #0f172a;
  letter-spacing: 0.15em;
}

body.premium-light .gradient-text {
  background: linear-gradient(135deg, #b0914f, #d6b86d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 1rem;
  transition: opacity 0.3s ease;
}

/* Forms (Contact Page) */
body.premium-light .quote-form {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

body.premium-light .quote-panel label {
  color: #334155 !important;
  font-weight: 600;
}

body.premium-light input,
body.premium-light textarea,
body.premium-light select {
  background: #f8fafc !important;
  border: 1px solid rgba(0,0,0,0.1) !important;
  color: #0f172a !important;
}

body.premium-light input:focus,
body.premium-light textarea:focus,
body.premium-light select:focus {
  border-color: #d6b86d !important;
  box-shadow: 0 0 0 3px rgba(214, 184, 109, 0.15) !important;
  background: #ffffff !important;
}

body.premium-light input::placeholder,
body.premium-light textarea::placeholder {
  color: #94a3b8 !important;
}

/* Gallery and Partner specific */
body.premium-light .caption {
  background: #ffffff !important;
  border-top: 1px solid rgba(0,0,0,0.05) !important;
}

body.premium-light .caption h3 {
  color: #0f172a !important;
}

body.premium-light .gallery-card img,
body.premium-light .pdf-partner-image img {
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Lists */
body.premium-light .list-check li {
  color: #475569;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

body.premium-light .list-check li strong {
  color: #0f172a;
}

body.premium-light .list-check li::marker {
  color: #b0914f;
}

/* Nav Toggle & Header overrides if needed */
body.premium-light .nav-toggle span {
  background: #0f172a !important;
}

/* Divider Lines */
body.premium-light .pdf-section-title::after,
body.premium-light .section-title::after {
  background: linear-gradient(90deg, #d6b86d, #b0914f);
}

body.premium-light section + section::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: rgba(214, 184, 109, 0.4);
}

/* Banners */
body.premium-light .banner {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.05) !important;
  box-shadow: 0 15px 50px rgba(0,0,0,0.06) !important;
}

body.premium-light .banner strong {
  color: #0f172a !important;
}

body.premium-light .banner p {
  color: #475569 !important;
}

/* Footer on Light Pages */
body.premium-light .site-footer {
  background: #0f172a !important;
  border-top: none;
}

/* Fix text color for side-by-side hero on service pages in premium-light */
body.premium-light .page-hero h1 {
  color: #0f172a !important;
  text-shadow: none !important;
}

body.premium-light .page-hero .section-intro {
  color: #475569 !important;
  text-shadow: none !important;
}

body.premium-light .page-hero .breadcrumb,
body.premium-light .page-hero .breadcrumb a {
  color: #64748b !important;
}

body.premium-light .page-hero .breadcrumb a:hover {
  color: #d6b86d !important;
}

/* FIX MOBILE MENU FOR LIGHT PAGES / INDEX */
@media (max-width: 768px) {
  body:not(.dark-page) .nav-links {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-top: 1px solid rgba(0,0,0,0.1) !important;
  }
  body:not(.dark-page) .nav-links a:not(.btn) {
    color: #0f172a !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
  }
  body:not(.dark-page) .nav-links a:not(.btn):hover {
    color: #d6b86d !important;
  }
  
  /* Also fix it for premium-light specifically to be safe */
  body.premium-light .nav-links {
    background: rgba(255, 255, 255, 0.98) !important;
  }
  body.premium-light .nav-links a:not(.btn) {
    color: #0f172a !important;
  }
}

/* ==============================================
   ULTIMATE MOBILE MENU FIX (DARK & ELEGANT)
   ============================================== */
@media (max-width: 768px) {
  body .nav-links,
  body.premium-light .nav-links,
  body:not(.dark-page) .nav-links {
    background: rgba(15, 23, 42, 0.98) !important; /* Premium dark navy */
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  
  body .nav-links li,
  body.premium-light .nav-links li,
  body:not(.dark-page) .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  }
  
  body .nav-links a:not(.btn),
  body.premium-light .nav-links a:not(.btn),
  body:not(.dark-page) .nav-links a:not(.btn) {
    color: #ffffff !important; /* Pure white text */
  }

  body .nav-links a:not(.btn):hover,
  body.premium-light .nav-links a:not(.btn):hover,
  body:not(.dark-page) .nav-links a:not(.btn):hover {
    color: #d6b86d !important; /* Gold on hover */
  }
}

/* ==============================================
   RESPONSIVE MOBILE CONTROLS & TOGGLE FIX
   ============================================== */

/* Fix mobile menu toggle icon colors */
.nav-toggle span {
  background: #ffffff !important; /* White lines on dark index.html */
}
.nav-toggle {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

body.premium-light .nav-toggle span {
  background: #0f172a !important; /* Dark lines on light subpages */
}
body.premium-light .nav-toggle {
  border-color: rgba(15, 23, 42, 0.15) !important;
}

/* Stacking CTA buttons on mobile to prevent overlapping and truncation */
@media (max-width: 576px) {
  .pdf-hero-actions {
    flex-direction: column !important;
    gap: 1rem !important;
    width: 100% !important;
    padding: 0 1rem !important;
  }
  .pdf-hero-actions .btn {
    width: 100% !important;
    text-align: center !important;
    margin: 0 !important;
  }
  
  /* Fine-tune WhatsApp position on mobile to prevent clipping */
  .whatsapp-float {
    bottom: 30px !important;
    right: 20px !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4) !important;
  }
}

/* ==============================================
   DOWNLOAD PROFILE BUTTON
   ============================================== */
.btn-download {
  display: inline-flex !important;
  align-items: center !important;
  background: transparent !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
  padding: 0.7rem 1.4rem !important;
  border-radius: 8px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
}
.btn-download:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  transform: translateY(-1px) !important;
}
.btn-download svg {
  flex-shrink: 0;
}

body.premium-light .btn-download {
  border-color: rgba(15, 23, 42, 0.2) !important;
  color: #0f172a !important;
}
body.premium-light .btn-download:hover {
  background: rgba(15, 23, 42, 0.05) !important;
  border-color: rgba(15, 23, 42, 0.4) !important;
}

/* ==============================================
   MODERN STAT BOXES (OVERRIDE)
   ============================================== */
.pdf-stats {
  gap: 1.5rem !important;
}

.pdf-stat-box {
  border-radius: 20px !important;
  padding: 2.5rem 2rem !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease !important;
}

.pdf-stat-box:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* Subtle top border highlight */
.pdf-stat-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, rgba(255,255,255,0.4), transparent);
  opacity: 0.6;
}

/* Background glowing orb for 3D depth */
.pdf-stat-box::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pdf-stat-box h2 {
  font-size: 3.5rem !important;
  margin: 0 0 0.5rem 0 !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.pdf-stat-box p {
  font-size: 1.05rem !important;
  letter-spacing: 0.03em !important;
  margin: 0 !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Theme variations */
.pdf-stat-box.dark {
  background: linear-gradient(145deg, #1e293b, #0f172a) !important;
  border-color: rgba(255,255,255,0.08) !important;
}

.pdf-stat-box.red {
  background: linear-gradient(145deg, #ef4444, #b91c1c) !important;
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255,255,255,0.2) !important;
}
.pdf-stat-box.red::before {
  background: linear-gradient(90deg, rgba(255,255,255,0.6), transparent);
}

.pdf-stat-box.glass, .pdf-stat-box.glass-light {
  background: linear-gradient(145deg, #ffffff, #f1f5f9) !important;
  border-color: rgba(0,0,0,0.05) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
}

.pdf-stat-box.glass h2, .pdf-stat-box.glass-light h2 {
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pdf-stat-box.glass p, .pdf-stat-box.glass-light p {
  color: #475569 !important;
}

.pdf-stat-box.glass::after, .pdf-stat-box.glass-light::after {
  background: radial-gradient(circle, rgba(15,23,42,0.04) 0%, transparent 70%);
}
.pdf-stat-box.glass::before, .pdf-stat-box.glass-light::before {
  background: linear-gradient(90deg, rgba(15,23,42,0.05), transparent);
}

/* ==============================================
   MODERN STATS DASHBOARD (NEW)
   ============================================== */
.modern-stats-section {
  margin-top: 4rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}

.modern-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.modern-stat-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.modern-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.1);
}

.stat-icon-box {
  background: #f1f5f9;
  color: #0f172a;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.modern-stat-card:hover .stat-icon-box {
  background: #0f172a;
  color: #ffffff;
  transform: scale(1.05) rotate(-5deg);
}

.stat-icon-box svg {
  width: 28px;
  height: 28px;
}

.stat-icon-box.success {
  background: #ecfdf5;
  color: #059669;
}
.modern-stat-card:hover .stat-icon-box.success {
  background: #10b981;
  color: #ffffff;
}

.card-accent {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.2);
}

.card-accent .stat-icon-box {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.card-accent:hover .stat-icon-box {
  background: #ffffff;
  color: #dc2626;
}

.stat-info {
  flex-grow: 1;
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 0.25rem 0;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.card-accent .stat-value {
  color: #ffffff;
}

.stat-value span {
  font-size: 1.25rem;
  font-weight: 600;
  opacity: 0.6;
  margin-left: 2px;
}

.stat-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1rem 0;
}
.card-accent .stat-label {
  color: rgba(255, 255, 255, 0.85);
}

/* Progress bars */
.stat-progress {
  width: 100%;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.progress-fill {
  height: 100%;
  background: #0f172a;
  border-radius: 2px;
  transition: width 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fill-success {
  background: #10b981;
}

/* Pulse indicator for 24/7 */
.pulse-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  position: relative;
}
.pulse-dot::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #4ade80;
  animation: pulse-ring 2s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes pulse-ring {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 992px) {
  .modern-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .modern-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================================
   MODERN TRUST FEATURES (NEW)
   ============================================== */
.modern-trust-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 10;
}

.m-trust-card {
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.m-trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.m-trust-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease;
}

.m-trust-card:hover .m-trust-icon {
  transform: scale(1.1) rotate(5deg);
}

.m-trust-content {
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.m-trust-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
}

.m-trust-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
  margin: 0;
}

.m-trust-number {
  position: absolute;
  bottom: -15px;
  right: 10px;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.04;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.m-trust-card:hover .m-trust-number {
  opacity: 0.08;
}

/* Theme: Dark */
.m-trust-card.dark-theme {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border-color: rgba(255, 255, 255, 0.08);
}
.m-trust-card.dark-theme .m-trust-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.m-trust-card.dark-theme .m-trust-title { color: #ffffff; }
.m-trust-card.dark-theme .m-trust-desc { color: #cbd5e1; }
.m-trust-card.dark-theme .m-trust-number { color: #ffffff; }

/* Theme: Accent (Red) */
.m-trust-card.accent-theme {
  background: linear-gradient(145deg, #ef4444, #b91c1c);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.25);
}
.m-trust-card.accent-theme .m-trust-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.m-trust-card.accent-theme .m-trust-title { color: #ffffff; }
.m-trust-card.accent-theme .m-trust-desc { color: #f87171; color: rgba(255,255,255,0.9); }
.m-trust-card.accent-theme .m-trust-number { color: #ffffff; }

/* Theme: Light */
.m-trust-card.light-theme {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border-color: rgba(0, 0, 0, 0.06);
}
.m-trust-card.light-theme .m-trust-icon {
  background: rgba(15, 23, 42, 0.05);
  color: #0f172a;
}
.m-trust-card.light-theme .m-trust-title { color: #0f172a; }
.m-trust-card.light-theme .m-trust-desc { color: #475569; }
.m-trust-card.light-theme .m-trust-number { color: #0f172a; opacity: 0.03; }
.m-trust-card.light-theme:hover .m-trust-number { opacity: 0.06; }

/* Decorative top highlight for depth */
.m-trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  opacity: 0.6;
}
.m-trust-card.dark-theme::before { background: linear-gradient(90deg, rgba(255,255,255,0.3), transparent); }
.m-trust-card.accent-theme::before { background: linear-gradient(90deg, rgba(255,255,255,0.5), transparent); }
.m-trust-card.light-theme::before { background: linear-gradient(90deg, rgba(15,23,42,0.1), transparent); }

/* ==============================================
   DUAL PARTNER IMAGES (NEW)
   ============================================== */
.pdf-partner-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
}

.pdf-partner-images .partner-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pdf-partner-images .partner-img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

@media (max-width: 992px) {
  .pdf-partner-images {
    grid-template-columns: 1fr;
  }
  .pdf-partner-images .partner-img {
    height: 300px;
  }
}

/* ==============================================
   PREMIUM FEATURES GRID (ABOUT PAGE)
   ============================================== */
.premium-features-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.premium-feature-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  text-align: left;
}

@media (min-width: 768px) {
  .premium-feature-card.horizontal {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
  .premium-feature-card.horizontal .card-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .premium-feature-card.horizontal .card-content {
    flex-grow: 1;
  }
}

.premium-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #141928, #E63946);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.premium-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(20, 25, 40, 0.1), 0 0 20px rgba(230, 57, 70, 0.05);
  border-color: rgba(230, 57, 70, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.premium-feature-card:hover::before {
  opacity: 1;
}

.premium-feature-card .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(20, 25, 40, 0.03);
  border-radius: 14px;
  margin-bottom: 1.5rem;
  color: #E63946;
  transition: all 0.4s ease;
}

.premium-feature-card:hover .card-icon {
  background: rgba(230, 57, 70, 0.1);
  transform: scale(1.1);
}

.premium-feature-card h3,
body.dark-page main .premium-feature-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #141928 !important;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
}

.premium-feature-card p,
body.dark-page main .premium-feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5568 !important;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .premium-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .premium-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================================
   TYPOGRAPHY STATS REDESIGN
   ============================================== */
.typography-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.typo-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 0;
  gap: 0.5rem;
}

.typo-bg-number {
  font-size: 8rem;
  font-weight: 900;
  /* Premium Brand Gradient (Faint) */
  background: linear-gradient(135deg, rgba(20, 25, 40, 0.08), rgba(230, 57, 70, 0.08));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* Fallback */
  -webkit-text-stroke: none;
  font-family: inherit;
  white-space: nowrap;
  user-select: none;
  letter-spacing: -0.05em;
  transition: all 0.4s ease;
  line-height: 1;
}

body.dark-page .typo-bg-number {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.typo-bg-number .counter {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  background: inherit;
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: inherit;
}

.typo-stat-item:hover .typo-bg-number {
  background: linear-gradient(135deg, rgba(20, 25, 40, 0.15), rgba(230, 57, 70, 0.15));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateY(-8px);
}

body.dark-page .typo-stat-item:hover .typo-bg-number {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.typo-label {
  font-size: 1.25rem;
  font-weight: 800;
  color: #141928;
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 1024px) {
  .typography-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 4rem;
  }
}

@media (max-width: 640px) {
  .typography-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Adjust header to bring links closer to logo on desktop */
@media (min-width: 1025px) {
  .site-header .header-inner {
    justify-content: flex-start !important;
    gap: 3.5rem !important;
  }
  .site-header .nav-links {
    flex: 1 !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
  }
  .site-header .container {
    padding-right: 0.5rem !important;
  }
}
