/* ============================================================
   ITCity.ae — Main Stylesheet
   Theme: Editorial Red & White — PDF Catalog Edition
   Primary: #C8102E | White: #FFFFFF | Dark: #111111
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  /* Brand Red — exact PDF color */
  --red:           #C8102E;
  --red-dark:      #A50D26;
  --red-light:     #E01535;
  --red-ultra:     #F01A3A;

  /* Legacy aliases (used throughout HTML) */
  --navy:          #111827;
  --navy-mid:      #1F2937;
  --navy-light:    #1C1C2E;
  --blue:          #C8102E;
  --blue-light:    #E01535;
  --blue-dark:     #A50D26;
  --cyan:          #C8102E;
  --cyan-dark:     #A50D26;
  --gold:          #C8102E;
  --gold-light:    #E01535;
  --gold-dark:     #A50D26;

  /* Neutrals */
  --white:         #FFFFFF;
  --off-white:     #F8F8F8;
  --gray-50:       #F5F5F5;
  --gray-100:      #EBEBEB;
  --gray-200:      #DEDEDE;
  --gray-400:      #999999;
  --gray-600:      #666666;
  --gray-800:      #333333;
  --black:         #111111;

  /* Text */
  --text-dark:     #111111;
  --text-mid:      #444444;
  --text-light:    #777777;

  /* Gradients */
  --gradient-blue: linear-gradient(135deg, #C8102E 0%, #E01535 100%);
  --gradient-gold: linear-gradient(135deg, #C8102E 0%, #E01535 100%);
  --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #0F0F1A 100%);
  --gradient-hero: linear-gradient(135deg, #C8102E 0%, #B00E28 50%, #A50D26 100%);

  /* Shadows */
  --shadow-sm:     0 2px 8px rgba(0,0,0,.08);
  --shadow-md:     0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.16);
  --shadow-glow:   0 0 40px rgba(200,16,46,.35);
  --shadow-gold:   0 0 30px rgba(200,16,46,.30);

  /* Borders */
  --border:        1px solid var(--gray-200);
  --border-red:    1px solid rgba(200,16,46,.25);

  /* Spacing / Shape */
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     40px;
  --transition:    all .3s cubic-bezier(.4,0,.2,1);

  /* Fonts */
  --font-primary:  'Plus Jakarta Sans', sans-serif;
  --font-secondary:'Inter', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-secondary);
  color: var(--text-mid);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  line-height: 1.15;
  color: var(--text-dark);
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { line-height: 1.75; }

.text-gradient {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gold {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-red { color: var(--red); }

/* On red-background page heroes, gradient text must be white to stay readable */
.page-hero .text-gold,
.page-hero .text-gradient {
  background: none;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.82);
  color: rgba(255, 255, 255, 0.82);
}

/* ---------- Utility ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

/* Section label — PDF style "— 01 · SECTION" */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.section-label.white { color: rgba(255,255,255,.75); }
.section-label.white::before { background: rgba(255,255,255,.75); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.badge-blue {
  background: rgba(200,16,46,.08);
  color: var(--red);
  border: 1px solid rgba(200,16,46,.2);
}
.badge-gold {
  background: rgba(200,16,46,.08);
  color: var(--red);
  border: 1px solid rgba(200,16,46,.2);
}
.badge-white {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.section-header .badge { margin-bottom: 14px; }
.section-header .section-label { justify-content: center; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }
.section-header.white h2 { color: var(--white); }
.section-header.white p { color: rgba(255,255,255,.65); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .03em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200,16,46,.35);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,16,46,.45);
}
.btn-gold {
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--white);
}
.btn-gold:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--red);
  transform: translateY(-2px);
}
.btn-outline-blue {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline-blue:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: .95rem; }
.btn i { font-size: .9em; transition: transform .3s; }
.btn:hover i { transform: translateX(3px); }

/* ============================================================
   HEADER & NAVIGATION — Transparent on dark hero, white on scroll
   ============================================================ */

/* ---- Site Header ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: box-shadow .3s ease;
}
.site-header.transparent .header-inner {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header.scrolled .header-inner {
  background: #FFFFFF;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  border-bottom: 1px solid #EBEBEB;
}
/* On scroll: dark nav links */
.site-header.scrolled .nav-link { color: #333333; }
.site-header.scrolled .nav-link:hover { color: #C8102E; }
.site-header.scrolled .nav-link::after { background: #C8102E; }
/* On scroll: invert logo to black */
.site-header.scrolled .logo-img { filter: brightness(0); }
/* On scroll: dark nav CTA elements */
.site-header.scrolled .nav-phone { color: #333333; }
.site-header.scrolled .nav-phone i { background: #C8102E; color: white; }
.site-header.scrolled .nav-divider { background: #DEDEDE; }
.site-header.scrolled .hamburger span { background: #111111; }
/* Quote button inverts on scroll */
.site-header.scrolled .nav-quote-btn { background: #C8102E; color: white; border-color: #C8102E; }
.site-header.scrolled .nav-quote-btn:hover { background: #A50D26; }
/* WhatsApp adapts on scroll */
.site-header.scrolled .nav-wa-btn { background: rgba(200,16,46,.08); border-color: rgba(200,16,46,.2); color: #C8102E; }

/* ---- Header Inner ---- */
.header-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 76px;
  gap: 0;
  transition: var(--transition);
}

/* ---- Logo ---- */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 40px;
}
.logo-img {
  height: 50px;
  width: auto;
  display: block;
  transition: opacity .3s;
}
.logo:hover .logo-img { opacity: .82; }

/* ---- Main Nav ---- */
.main-nav { display: flex; align-items: center; flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  height: 76px;
}
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 16px;
  height: 100%;
  color: rgba(255,255,255,.82);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .25s;
  white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px;
  background: var(--white);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--white); }
.nav-link i.chevron { font-size: .58rem; opacity: .7; transition: transform .25s; }
.nav-item:hover > .nav-link .chevron { transform: rotate(180deg); }

/* ---- Mega Menu ---- */
.mega-menu {
  position: fixed;
  top: 76px;
  left: 0; right: 0;
  background: var(--white);
  border-top: 2px solid var(--red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  z-index: 990;
  box-shadow: 0 16px 50px rgba(0,0,0,.13);
}
.nav-item:hover .mega-menu,
.mega-menu:hover { opacity: 1; visibility: visible; transform: translateY(0); }

.mega-menu-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 340px;
  gap: 0;
}

/* Service columns */
.mm-grid {
  display: contents;
}
.mm-col {
  padding: 32px 32px 32px 0;
  border-right: 1px solid var(--gray-100);
}
.mm-col:first-child { padding-left: 0; }
.mm-col-label {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mm-col-label::before {
  content: '';
  display: inline-block;
  width: 18px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.mm-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--text-mid);
  transition: all .2s ease;
  margin-bottom: 2px;
  text-decoration: none;
}
.mm-link:hover {
  background: rgba(200,16,46,.05);
  transform: translateX(3px);
}
.mm-link-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .9rem;
  color: var(--red);
  transition: all .2s;
}
.mm-link-icon-outline {
  background: transparent;
  border-style: dashed;
}
.mm-link:hover .mm-link-icon {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.mm-link-body { flex: 1; min-width: 0; }
.mm-link-body strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
  transition: color .2s;
}
.mm-link:hover .mm-link-body strong { color: var(--red); }
.mm-link-body span {
  display: block;
  font-size: .75rem;
  color: var(--text-light);
  line-height: 1.4;
}
.mm-arrow {
  font-size: .65rem;
  color: var(--gray-400);
  opacity: 0;
  transition: all .2s;
  flex-shrink: 0;
}
.mm-link:hover .mm-arrow { opacity: 1; color: var(--red); }
.mm-link-subtle { opacity: .7; }
.mm-link-subtle:hover { opacity: 1; }

/* Right panel */
.mm-panel {
  padding: 32px 0 32px 36px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.mm-panel-eyebrow {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 10px;
}
.mm-panel-heading {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 8px;
}
.mm-panel-sub {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}
.mm-panel-contacts { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.mm-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 7px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  transition: all .2s;
  text-decoration: none;
}
.mm-contact-row:hover {
  background: rgba(200,16,46,.06);
  border-color: rgba(200,16,46,.2);
  color: var(--red);
}
.mm-contact-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem;
  flex-shrink: 0;
}
.mm-contact-wa .mm-contact-icon { background: #25D366; }
.mm-panel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--red);
  color: var(--white);
  border-radius: 6px;
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  margin-bottom: 20px;
}
.mm-panel-btn:hover { background: var(--red-dark); transform: translateY(-1px); }
.mm-panel-btn i { font-size: .78rem; transition: transform .2s; }
.mm-panel-btn:hover i { transform: translateX(3px); }
.mm-panel-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  overflow: hidden;
}
.mm-pstat {
  flex: 1;
  text-align: center;
  padding: 10px 8px;
  border-right: 1px solid var(--gray-100);
}
.mm-pstat:last-child { border-right: none; }
.mm-pstat strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 3px;
}
.mm-pstat span {
  font-size: .65rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ---- Nav CTA area ---- */
.nav-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 24px;
}
/* WhatsApp icon button */
.nav-wa-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: all .2s;
  flex-shrink: 0;
}
.nav-wa-btn:hover {
  background: #25D366;
  border-color: #25D366;
  transform: scale(1.08);
}
/* Divider */
.nav-divider {
  width: 1px; height: 24px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
  margin: 0 4px;
}
/* Phone */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.88);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: color .2s;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--white); }
.nav-phone i {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem;
  flex-shrink: 0;
}
/* Quote button */
.nav-quote-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: var(--white);
  color: var(--red);
  border-radius: 5px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
  margin-left: 8px;
  border: 2px solid var(--white);
}
.nav-quote-btn:hover {
  background: transparent;
  color: var(--white);
}
.nav-quote-btn i { font-size: .7rem; transition: transform .2s; }
.nav-quote-btn:hover i { transform: translateX(3px); }

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
  border-radius: 6px;
  transition: background .2s;
}
.hamburger:hover { background: rgba(255,255,255,.1); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
.hamburger span:nth-child(2) { width: 16px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile Nav ---- */
.mobile-nav {
  position: fixed;
  top: 76px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 988;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-section-label {
  padding: 14px 20px 8px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: var(--text-dark);
  font-size: .95rem;
  font-weight: 600;
  border-bottom: 1px solid var(--gray-100);
  transition: all .2s;
  text-decoration: none;
}
.mobile-nav-link:hover { color: var(--red); background: rgba(200,16,46,.03); padding-left: 26px; }
.mobile-nav-link i { color: var(--red); width: 18px; text-align: center; font-size: .88rem; }
.mobile-nav-cta {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 2px solid var(--gray-100);
  margin-top: 8px;
}
.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}
.mobile-cta-call {
  background: var(--red);
  color: var(--white);
}
.mobile-cta-call:hover { background: var(--red-dark); }
.mobile-cta-wa {
  background: #25D366;
  color: var(--white);
}
.mobile-cta-wa:hover { background: #1da851; }

/* ============================================================
   HERO SECTION — Dark near-black bg (#0F1117)
   ============================================================ */
.hero {
  min-height: 100vh;
  background: #0F1117;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

/* Subtle texture overlay */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .25;
  animation: floatOrb 10s ease-in-out infinite;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,16,46,.6) 0%, transparent 70%);
  top: -250px; right: -150px;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,16,46,.3) 0%, transparent 70%);
  bottom: -150px; left: 10%;
  animation-delay: -4s; opacity: .2;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,16,46,.2) 0%, transparent 70%);
  top: 30%; left: -80px;
  animation-delay: -7s; opacity: .15;
}
.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: rgba(255,255,255,.6);
  border-radius: 50%;
  animation: floatParticle 7s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.1;
}
.hero-text h1 .highlight {
  color: var(--white);
  font-style: italic;
  opacity: .85;
}
.hero-text p {
  color: rgba(255,255,255,.8);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-item { text-align: left; }
.hero-stat-num {
  display: block;
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-cards-stack { position: relative; width: 100%; max-width: 420px; }
.hero-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 24px;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-card-main { position: relative; z-index: 2; animation-delay: 0s; }
.hero-card-float-1 {
  position: absolute; top: -28px; right: -28px; width: 175px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-md); padding: 16px; z-index: 3; animation-delay: -1s;
}
.hero-card-float-2 {
  position: absolute; bottom: -20px; left: -20px; width: 155px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md); padding: 14px; z-index: 3; animation-delay: -2s;
}
.hero-card-icon {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1.1rem; margin-bottom: 12px;
}
.hero-card-title {
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 700; font-size: .95rem; margin-bottom: 6px;
}
.hero-card-sub { color: rgba(255,255,255,.65); font-size: .78rem; }
.hero-card-metric {
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1.5rem; font-weight: 800; display: block;
}
.hero-card-metric-label { color: rgba(255,255,255,.6); font-size: .73rem; }
.service-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.chip {
  padding: 4px 11px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  color: var(--white);
  font-size: .7rem; font-weight: 600;
}

/* ============================================================
   TRUSTED BY SECTION
   ============================================================ */
.trusted-by {
  background: #FFFFFF;
  padding: 28px 0;
  border-bottom: 1px solid #EBEBEB;
}
.trusted-by-inner {
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.trusted-label {
  font-size: .72rem; font-weight: 700; color: #999;
  letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; flex-shrink: 0;
}
.trusted-logos {
  display: flex; align-items: center; gap: 36px; flex-wrap: wrap; flex: 1;
}
.trusted-logo-item {
  display: flex; align-items: center; gap: 6px; opacity: .55;
  font-family: var(--font-primary); font-weight: 700; font-size: .92rem;
  color: #333; transition: opacity .3s; cursor: default;
}
.trusted-logo-item:hover { opacity: 1; }
.trusted-nav {
  color: #999; font-size: .8rem; cursor: pointer; flex-shrink: 0;
  width: 28px; height: 28px; border: 1px solid #EBEBEB; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.trusted-nav:hover { background: #C8102E; color: white; border-color: #C8102E; }

/* ============================================================
   SERVICES SECTION — intro left + 3-col cards right
   ============================================================ */
.services-section { background: var(--white); }

/* Top row: intro label + full-width heading */
.services-section > .container > .section-header { display: none; }

.services-intro-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}
.services-intro {
  padding-top: 4px;
  position: sticky;
  top: 100px;
}
.services-intro .section-label { margin-bottom: 20px; }
.services-intro h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  line-height: 1.25;
}
.services-intro h2 .text-red { display: block; }
.services-intro p {
  margin-top: 14px;
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media(max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 900px) {
  .services-intro-grid { grid-template-columns: 1fr; }
  .services-intro { position: static; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card-content { position: relative; z-index: 1; }

.service-icon {
  width: 52px; height: 52px;
  background: rgba(200,16,46,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: var(--transition);
}
.service-icon i { font-size: 1.3rem; color: var(--red); transition: color .3s; }
.service-card:hover .service-icon { background: var(--red); }
.service-card:hover .service-icon i { color: var(--white); }
.service-card h3 { margin-bottom: 12px; transition: color .3s; }
.service-card p { color: var(--text-light); font-size: .9rem; margin-bottom: 20px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.tag {
  padding: 3px 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: .7rem; font-weight: 600; color: var(--text-mid); transition: var(--transition);
}
.service-arrow {
  display: flex; align-items: center; gap: 6px;
  font-size: .84rem; font-weight: 700; color: var(--red); transition: var(--transition);
}
.service-arrow i { transition: transform .3s; }
.service-card:hover .service-arrow i { transform: translateX(4px); }

/* What We Offer */
.offer-section { background: var(--gray-50); }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.offer-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
}
.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.offer-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.offer-card:hover::before { transform: scaleX(1); }
.offer-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .95rem; margin-bottom: 16px;
}
.offer-card h4 { margin-bottom: 8px; font-size: 1rem; }
.offer-card p { color: var(--text-light); font-size: .84rem; line-height: 1.65; }

/* ============================================================
   STATS SECTION — Split: dark left 65% + red right CTA
   ============================================================ */
.stats-section {
  background: transparent;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 380px;
}
.stats-dark {
  background: #111111;
  padding: 72px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats-cta {
  background: #C8102E;
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stats-cta h3 { color: white; font-size: 1.6rem; font-weight: 800; margin-bottom: 16px; line-height: 1.25; }
.stats-cta .btn-gold { color: #C8102E; background: #FFFFFF; border: 2px solid #FFFFFF; }
.stats-cta .btn-gold:hover { background: transparent; color: #FFFFFF; }
@media(max-width: 900px) {
  .stats-section { grid-template-columns: 1fr; }
  .stats-dark { grid-template-columns: repeat(2, 1fr); padding: 48px 24px; }
  .stats-cta { padding: 40px 24px; }
}
.stat-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
  transition: var(--transition);
}
.stat-card::after {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  height: 60%; width: 1px;
  background: rgba(255,255,255,.2);
}
.stat-card:last-child::after { display: none; }
.stat-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem;
  margin: 0 auto 16px;
}
.stat-num {
  font-family: var(--font-primary);
  font-size: 3.5rem; font-weight: 800;
  color: var(--white);
  line-height: 1; margin-bottom: 6px;
}
.stat-suffix { font-size: 2.5rem; color: var(--white); }
.stat-label {
  font-family: var(--font-primary);
  font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase; letter-spacing: .1em;
}

/* ============================================================
   WHY CHOOSE US — White bg, numbered list like PDF page 12
   ============================================================ */
.why-section {
  background: var(--white);
  position: relative;
}
.why-bg-glow { display: none; }
.why-section::before { display: none; }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-text { padding-top: 8px; }
.why-text .badge { margin-bottom: 16px; }
.why-text h2 { color: var(--text-dark); margin-bottom: 20px; }
.why-text > p { color: var(--text-light); margin-bottom: 36px; font-size: 1rem; }
.why-highlights { display: flex; flex-direction: column; gap: 0; }
.why-highlight-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-100);
}
.why-highlight-item:last-child { border-bottom: none; }
.why-check {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white); font-size: .8rem;
}
.why-highlight-text h4 { color: var(--text-dark); margin-bottom: 3px; font-size: .95rem; }
.why-highlight-text p { color: var(--text-light); font-size: .85rem; }

/* Why features grid */
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-feature-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.why-feature-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}
.why-feature-card:hover::before { transform: scaleX(1); }
.why-feat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(200,16,46,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1.1rem; margin-bottom: 12px;
}
.why-feature-card h4 { color: var(--text-dark); font-size: .92rem; margin-bottom: 6px; }
.why-feature-card p { color: var(--text-light); font-size: .8rem; line-height: 1.6; }

/* ============================================================
   PROCESS SECTION — Full solid red like PDF page 13
   ============================================================ */
.process-section {
  background: var(--red);
}
.process-section .section-header h2 { color: var(--white); }
.process-section .section-header p { color: rgba(255,255,255,.7); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}
.process-steps::before { display: none; }
.process-step {
  text-align: left;
  position: relative;
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,.15);
  transition: var(--transition);
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: rgba(255,255,255,.06); }
.step-num-wrap {
  font-family: var(--font-primary);
  font-size: 5rem; font-weight: 800;
  color: rgba(255,255,255,.15);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.step-num { display: block; }
.process-step h4 { color: var(--white); margin-bottom: 10px; font-size: 1.05rem; }
.process-step p { color: rgba(255,255,255,.65); font-size: .85rem; line-height: 1.6; }
.step-week {
  display: inline-block;
  margin-top: 16px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 12px;
  width: 100%;
}

/* ============================================================
   INDUSTRIES SECTION — White bg, grid table like PDF page 14
   ============================================================ */
.industries-section {
  background: var(--gray-50);
}
.industries-section .section-header h2 { color: var(--text-dark); }
.industries-section .section-header p { color: var(--text-light); }
.industry-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.industry-scroll::-webkit-scrollbar { display: none; }
.industry-pill {
  display: flex; align-items: center; gap: 9px;
  padding: 12px 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  white-space: nowrap;
  color: var(--text-mid);
  font-size: .88rem; font-weight: 600;
  transition: var(--transition);
  cursor: default; flex-shrink: 0;
}
.industry-pill i { color: var(--red); }
.industry-pill:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.industry-pill:hover i { color: var(--white); }

/* ============================================================
   TESTIMONIALS — White bg, bordered cards like PDF page 15
   ============================================================ */
.testimonials-section { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 16px; right: 20px;
  font-size: 4rem; line-height: 1;
  color: var(--red); opacity: .12;
  font-family: Georgia, serif; pointer-events: none;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--red);
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars i { color: var(--red); font-size: .82rem; }
.testimonial-card p {
  color: var(--text-mid); font-size: .9rem; line-height: 1.7;
  margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-primary); font-weight: 700;
  font-size: .88rem; flex-shrink: 0;
}
.author-name { display: block; font-weight: 700; font-size: .88rem; color: var(--text-dark); }
.author-role { display: block; font-size: .76rem; color: var(--text-light); }
.testimonial-result {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  font-size: .78rem; font-weight: 700;
  color: var(--red); letter-spacing: .04em; text-transform: uppercase;
}

/* ============================================================
   CTA SECTION — Solid red, like PDF back cover
   ============================================================ */
.cta-section {
  background: var(--red);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section .hero-bg { opacity: .3; }
.cta-inner { position: relative; z-index: 2; }
.cta-inner h2 { color: var(--white); margin-bottom: 20px; }
.cta-inner p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* CTA contact strip */
.cta-strip {
  background: rgba(255,255,255,.08);
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 24px 0;
  margin-top: 48px;
}
.cta-strip-inner {
  display: flex; gap: 48px; justify-content: center; flex-wrap: wrap;
}
.cta-strip-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.85); font-size: .9rem;
}
.cta-strip-item i { color: rgba(255,255,255,.6); font-size: 1rem; }
.cta-strip-item strong { color: var(--white); }

/* ============================================================
   FOOTER — Dark charcoal, clean
   ============================================================ */
.site-footer {
  background: #111111;
  color: rgba(255,255,255,.6);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand .logo-img { height: 48px; }
.footer-brand p {
  font-size: .86rem; color: rgba(255,255,255,.45);
  line-height: 1.7; margin-bottom: 24px; max-width: 290px;
}
.footer-socials { display: flex; gap: 8px; }
.social-btn {
  width: 34px; height: 34px; border-radius: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: .82rem; transition: var(--transition);
}
.social-btn:hover {
  background: var(--red); border-color: transparent;
  color: var(--white); transform: translateY(-2px);
}
.footer-col-title {
  color: var(--white); font-family: var(--font-primary);
  font-weight: 700; font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,.45); font-size: .86rem;
  transition: color .3s; display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; font-size: .86rem; color: rgba(255,255,255,.45);
}
.footer-contact-item i { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item strong { color: rgba(255,255,255,.75); }
.footer-bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: .8rem; color: rgba(255,255,255,.3); transition: color .3s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.65); }

/* ============================================================
   PAGE HERO (interior service pages)
   ============================================================ */
.page-hero {
  min-height: 52vh;
  background: var(--red);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.page-hero .hero-bg { opacity: .5; }
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 72px 24px; text-align: center;
}
.page-hero-content .badge { margin-bottom: 16px; }
.page-hero-content h1 { color: var(--white); margin-bottom: 20px; }
.page-hero-content p {
  color: rgba(255,255,255,.8); font-size: 1.1rem;
  max-width: 620px; margin: 0 auto 30px;
}
.page-hero-content .hero-actions { justify-content: center; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  justify-content: center; font-size: .8rem;
  color: rgba(255,255,255,.5); margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color .3s; }
.breadcrumb a:hover { color: rgba(255,255,255,.9); }
.breadcrumb i { font-size: .62rem; }

/* ============================================================
   SERVICE DETAIL SECTIONS
   ============================================================ */
.service-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-content .badge { margin-bottom: 14px; }
.service-detail-content h2 { margin-bottom: 16px; }
.service-detail-content p { color: var(--text-light); margin-bottom: 24px; }
.detail-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.detail-feature { display: flex; gap: 14px; align-items: flex-start; }
.detail-feature-icon {
  width: 30px; height: 30px; border-radius: 7px;
  background: rgba(200,16,46,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: .82rem; flex-shrink: 0;
}
.detail-feature-text h5 { font-size: .92rem; margin-bottom: 3px; }
.detail-feature-text p { font-size: .83rem; margin-bottom: 0; }

/* Service Visual Mockup */
.service-visual {
  background: var(--red);
  border-radius: var(--radius-lg);
  padding: 36px; position: relative; overflow: hidden;
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.service-visual::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  pointer-events: none;
}
.service-visual-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 14px;
}
.sv-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm); padding: 14px;
}
.sv-card-icon {
  width: 30px; height: 30px; border-radius: 7px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .78rem; margin-bottom: 8px;
}
.sv-card-title { color: rgba(255,255,255,.9); font-size: .8rem; font-weight: 600; margin-bottom: 3px; }
.sv-card-val { color: var(--white); font-size: 1.15rem; font-weight: 700; }
.sv-bar-wrap { background: rgba(255,255,255,.1); border-radius: 3px; height: 5px; margin-top: 6px; }
.sv-bar { height: 100%; border-radius: 3px; background: rgba(255,255,255,.6); }

/* Service Packages */
.packages-section { background: var(--gray-50); }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.package-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px 26px; position: relative; transition: var(--transition);
}
.package-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(200,16,46,.08);
}
.package-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.package-card.featured:hover { transform: translateY(-4px); }
.package-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: var(--white);
  padding: 4px 16px; border-radius: 50px;
  font-size: .7rem; font-weight: 700; white-space: nowrap;
}
.package-name {
  font-family: var(--font-primary); font-weight: 700;
  font-size: .9rem; color: var(--text-light);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px;
}
.package-title { font-size: 1.25rem; margin-bottom: 14px; }
.package-desc { color: var(--text-light); font-size: .86rem; margin-bottom: 26px; }
.package-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.package-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: .86rem; color: var(--text-mid);
}
.package-feature i { color: var(--red); font-size: .78rem; flex-shrink: 0; }

/* Sub-services list */
.sub-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.sub-service-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200); transition: var(--transition);
}
.sub-service-item:hover {
  background: var(--white); box-shadow: var(--shadow-sm); border-color: var(--red);
}
.sub-service-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(200,16,46,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: .82rem; flex-shrink: 0;
}
.sub-service-item h5 { font-size: .88rem; margin-bottom: 3px; }
.sub-service-item p { font-size: .78rem; color: var(--text-light); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -30px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(.95); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes floatParticle {
  0%, 100% { transform: translate(0, 0); opacity: .5; }
  25%       { transform: translate(20px, -30px); opacity: .9; }
  50%       { transform: translate(-10px, -50px); opacity: .3; }
  75%       { transform: translate(-25px, -20px); opacity: .6; }
}
@keyframes shimmer {
  0%   { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(200%) rotate(45deg); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(200,16,46,.4); }
  50%       { box-shadow: 0 0 40px rgba(200,16,46,.7); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.9); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Custom animation classes */
[data-animate] {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
[data-animate="fade-up"]    { transform: translateY(30px); }
[data-animate="fade-left"]  { transform: translateX(-30px); }
[data-animate="fade-right"] { transform: translateX(30px); }
[data-animate="scale"]      { transform: scale(.92); }
[data-animate].animated { opacity: 1; transform: none; }

[data-stagger] > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-stagger].animated > *:nth-child(1) { opacity: 1; transform: none; transition-delay: .1s; }
[data-stagger].animated > *:nth-child(2) { opacity: 1; transform: none; transition-delay: .2s; }
[data-stagger].animated > *:nth-child(3) { opacity: 1; transform: none; transition-delay: .3s; }
[data-stagger].animated > *:nth-child(4) { opacity: 1; transform: none; transition-delay: .4s; }
[data-stagger].animated > *:nth-child(5) { opacity: 1; transform: none; transition-delay: .5s; }
[data-stagger].animated > *:nth-child(6) { opacity: 1; transform: none; transition-delay: .6s; }
[data-stagger].animated > *:nth-child(7) { opacity: 1; transform: none; transition-delay: .7s; }
[data-stagger].animated > *:nth-child(8) { opacity: 1; transform: none; transition-delay: .8s; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.4); font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; z-index: 2; animation: fadeInUp 1s .8s both;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 11px; display: flex; justify-content: center; padding-top: 5px;
}
.scroll-dot {
  width: 4px; height: 7px;
  background: rgba(255,255,255,.6);
  border-radius: 2px; animation: scrollDown 1.5s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* ============================================================
   FLOATING CONTACT BUTTON
   ============================================================ */
.float-cta { position: fixed; bottom: 28px; right: 28px; z-index: 900; }
.float-btn {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.25rem;
  box-shadow: 0 4px 20px rgba(200,16,46,.5);
  transition: var(--transition);
  animation: pulseGlow 2.5s infinite;
}
.float-btn:hover { transform: scale(1.1); background: var(--red-dark); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .process-step:nth-child(2n) { border-right: none; }
  .mega-menu-inner { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-grid.reverse { direction: ltr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mega-menu { display: none; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card::after { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .sub-services { grid-template-columns: 1fr; }
  .hero-stat-num { font-size: 1.5rem; }
  .stat-num { font-size: 2.5rem; }
  .section-pad { padding: 70px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content { padding: 60px 16px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-strip-inner { flex-direction: column; align-items: center; gap: 16px; }
}
