/* ═══════════════════════════════════════════════════
   ARISH STEEL — NETFLIX-TIER CINEMATIC UI v5.0
   Dark, immersive, scroll-forcing industrial design
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=DM+Sans:wght@400;500;700&display=swap');

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

/* ── SPA ROUTING (CRITICAL) ── */
.page { display: none; }
.page.active { display: block; animation: pageFade 0.5s ease forwards; }
@keyframes pageFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── DESIGN TOKENS ─────────────────────── */
:root {
  /* The Palette — Deep industrial cinematic */
  --bg-deep: #020617; /* Even deeper navy */
  --bg-dark: #0f172a;
  --bg-mid: #1e293b;
  --bg-surface: #0f172a;
  --primary: #0ca5e9; /* Vibrant Medical Cyan */
  --primary-glow: rgba(12, 165, 233, 0.4);
  --primary-deep: #0284c7;
  --accent: #7dd3fc;
  --text-main: #f8fafc;
  --text-dim: #94a3b8;
  --text-dark: #0f172a;
  --border-glass: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(15, 23, 42, 0.8);

  /* Typography */
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Elevation & Glows */
  --shadow-card: 0 12px 40px -12px rgba(0, 0, 0, 0.5);
  --shadow-lift: 0 30px 60px -12px rgba(0, 0, 0, 0.7);
  --glow-primary: 0 0 30px rgba(12, 165, 233, 0.15);

  /* Radius */
  --r-xl: 24px;
  --r-lg: 16px;
  --r-md: 12px;
  --r-sm: 8px;

  /* Layout & Gaps */
  --container: 1280px;
  --section-gap: clamp(6rem, 12vw, 10rem);

  /* Legacy Mappings (FIX) */
  --blue: var(--primary);
  --muted: var(--text-dim);
  --text: var(--text-dark);
  --bg: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── LAYOUT ────────────────────────────── */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.sec { padding: clamp(5rem, 10vw, 8rem) 0; position: relative; }
.sec-light { background: #ffffff; color: var(--text-dark); }
.sec-offwhite { background: #f8fafc; color: var(--text-dark); }
.sec-dark { background: var(--bg-dark); }
.sec-mid {
  background: var(--bg-mid);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}
.sec-blue {
  background: radial-gradient(circle at 0% 0%, #0369a1 0%, #020617 100%);
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border-glass);
}
.sec-blue::after {
  content: ""; position: absolute; top: -10%; right: -10%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(12, 165, 233, 0.15) 0%, transparent 70%);
  filter: blur(80px); pointer-events: none;
}
.sec-blue::before {
  content: ""; position: absolute; inset: -100px;
  background: radial-gradient(ellipse at 30% 50%, rgba(56, 189, 248, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

/* ── TYPOGRAPHY ─────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--text-dark);
}
h1 { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 900; }
h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; margin-bottom: 0.75rem; }
.sec-blue h1, .sec-blue h2, .sec-blue h3, .sec-blue h4 { color: #ffffff; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; }

.on-light { color: var(--text-dark); }
.on-dark { color: var(--text-main); }

.tag {
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--primary-deep);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 8px 18px;
  background: rgba(2, 132, 199, 0.05);
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: 4px;
}
.tag-light { color: var(--accent); background: rgba(165, 243, 252, 0.06); border-color: rgba(165, 243, 252, 0.12); }
.tag-pill { border-radius: 2rem; }

.bar {
  width: 50px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 2rem;
}
.bar-blue { background: var(--primary); }
.bar-blue-l { background: var(--accent); margin-left: auto; margin-right: auto; }
.bar-center { margin-left: auto; margin-right: auto; }
.sec-title-wrap { text-align: center; margin-bottom: 30px; }
.sec-title-wrap .bar { margin-left: auto; margin-right: auto; }

.lead { font-size: 1.15rem; color: var(--text-dim); max-width: 600px; line-height: 1.7; }
.lead-light { color: rgba(255,255,255,0.7); }
.sec-light .lead { color: #64748b; }

/* ── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.06em;
}
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ── SECTIONS ───────────────────────────── */
.sec { 
  padding: var(--section-gap) 0; 
  position: relative; 
  z-index: 10;
}
.sec-light { background: #ffffff; }
.sec-soft { 
  background: #f8fafc; 
  border-top: 1px solid #f1f5f9;
}

/* Engineering/Technical grid for soft sections */
.sec-soft::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(#0284c7 0.8px, transparent 0.8px),
                    radial-gradient(#0284c7 0.8px, transparent 0.8px);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
  opacity: 0.04;
  pointer-events: none;
}

.btn-blue {
  background: var(--primary-deep);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.2);
}
.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.3);
  background: #0369a1;
}

.btn-ghost {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline {
  padding: 12px 28px;
  background: transparent;
  color: var(--text-dark);
  border: 2px solid rgba(0,0,0,0.15);
}
.btn-outline:hover {
  background: var(--text-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--bg-dark);
  color: #fff;
  border: 1px solid var(--border-glass);
}
.btn-dark:hover { background: #000; transform: translateY(-2px); }

.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── NAV ────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: 90px;
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  height: 76px;
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
nav.scrolled a { color: var(--text-main); }
nav.scrolled.nav-light-mode {
  background: #0D1428 !important;
}

nav.scrolled .logo-text-name { color: #ffffff; }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto; width: 100%; padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrap {
  display: flex; align-items: center; cursor: pointer;
}
.logo-capsule {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.brand-img {
  height: 48px;
  width: auto;
  display: block;
}
.logo-text-name {
  font-family: var(--font-heading); font-size: 1.6rem;
  font-weight: 800; line-height: 0.95; letter-spacing: 0.04em;
  color: #fff;
}
.logo-text-tag {
  font-size: 0.58rem; font-weight: 700;
  color: #0ca5e9; letter-spacing: 0.35em; margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  color: #475569;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--r-sm);
  transition: 0.3s;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary-deep); background: rgba(2, 132, 199, 0.05); }
.nav-cta {
  background: var(--primary-deep) !important;
  color: #ffffff !important;
  border-radius: 4px !important;
  margin-left: 10px;
}
.nav-cta:hover { background: var(--text-dark) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; z-index: 1002; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: 0.3s; }
nav.scrolled .hamburger span { background: #ffffff; }

/* Mobile Nav */
.mob-nav {
  position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
  background: #ffffff; z-index: 1001; transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  padding: 100px 30px; display: flex; flex-direction: column; gap: 8px;
  box-shadow: -15px 0 45px rgba(0,0,0,0.1);
  border-left: 1px solid #e2e8f0;
}
.mob-nav.open { right: 0; }
.mob-nav a {
  color: #1e293b;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 12px 0;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-heading);
}
.mob-nav a:hover, .mob-nav a.active { color: var(--primary-deep); }
.mob-cta {
  margin-top: 24px; text-align: center;
  background: var(--primary-deep) !important; color: #ffffff !important;
  padding: 16px; border-radius: 8px; font-weight: 800; font-size: 1rem !important;
}

/* ── HERO REDESIGN (MEDICAL MANUFACTURING FOCUS) ── */
.home-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 100px;
  background: 
    linear-gradient(to right, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.7) 40%, rgba(2, 6, 23, 0.3) 100%),
    url('hospital_hero_bg.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-glass);
}
.home-hero::before {
  content: ""; position: absolute; top: -20%; left: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(12, 165, 233, 0.08) 0%, transparent 70%);
  filter: blur(100px); animation: ambientSwell 12s infinite alternate ease-in-out;
  pointer-events: none;
}
@keyframes ambientSwell {
  from { transform: translate(0, 0) scale(1); opacity: 0.5; }
  to { transform: translate(100px, 50px) scale(1.2); opacity: 0.8; }
}

.hero-bg-accent {
  position: absolute;
  top: 0; right: 0; width: 60%; height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(12, 165, 233, 0.08) 0%, transparent 70%);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  text-align: left;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 700; color: var(--primary-deep);
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 24px;
  padding: 8px 16px; background: rgba(2, 132, 199, 0.08); border-radius: 4px;
}

.hero-h1 { 
  margin-bottom: 24px;
  line-height: 0.95;
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-h1 em {
  font-style: normal;
  color: var(--primary);
  position: relative;
}

.hero-sub {
  font-size: 1.25rem; color: #94a3b8;
  line-height: 1.6; max-width: 580px;
  margin-bottom: 40px;
}

.hero-btns { display: flex; gap: 20px; margin-bottom: 48px; }

.home-hero .btn-outline {
  color: #ffffff;
  border-color: rgba(255,255,255,0.3);
}
.home-hero .btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: #ffffff;
}

.hero-stats {
  display: flex; gap: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto; /* Push to bottom of content block but keep padding-bottom safe */
}
.hero-stat-item {
  display: flex; flex-direction: column;
}
.hero-stat-val { 
  font-family: var(--font-heading); 
  font-size: 2.8rem; 
  font-weight: 800; 
  color: #ffffff; 
  line-height: 1; 
  text-shadow: 0 0 20px rgba(12, 165, 233, 0.2);
}
.hero-stat-lbl { 
  font-size: 0.8rem; 
  font-weight: 700; 
  color: #94a3b8; 
  text-transform: uppercase; 
  letter-spacing: 0.15em; 
  margin-top: 8px; 
}

.hero-glass-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  position: relative;
  z-index: 10;
}

.hero-glass-card {
  background: rgba(15, 25, 45, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-md);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  min-width: 380px;
  max-width: 440px;
  transform: translateX(0) translateY(0);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.hero-glass-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0.3;
  transition: opacity 0.4s ease;
}
.hero-glass-card::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px circle at 50% 50%, rgba(12,165,233,0.1), transparent 70%);
  opacity: 0; transition: opacity 0.5s ease; pointer-events: none;
}
.hero-glass-card:hover::after { opacity: 1; }

.hero-glass-card:hover {
  transform: translateX(-12px) scale(1.02);
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(12, 165, 233, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(12, 165, 233, 0.15);
}

.hero-glass-card:hover::before { opacity: 0.8; background: linear-gradient(90deg, transparent, rgba(12, 165, 233, 0.8), transparent); }

.hero-glass-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s ease;
}
.hero-glass-card:hover .hero-glass-icon {
  background: var(--primary-deep);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.1) rotate(5deg);
}

.hero-glass-icon svg { width: 26px; height: 26px; }

.hero-glass-text h4 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.hero-glass-card:hover .hero-glass-text h4 {
  color: var(--accent);
}

.hero-glass-text p {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.5;
  transition: color 0.3s ease;
}
.hero-glass-card:hover .hero-glass-text p {
  color: #f1f5f9;
}

@media (max-width: 900px) {
  .home-hero { 
    padding-top: 110px; 
    padding-bottom: 70px; 
    min-height: auto; 
    text-align: center;
    background: 
      linear-gradient(to bottom, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.8) 50%, rgba(2, 6, 23, 0.9) 100%),
      url('hospital_hero_bg.png') center/cover no-repeat;
  }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-content { align-items: center; padding: 0; }
  .hero-h1 { font-size: clamp(2.2rem, 10vw, 3.4rem); line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.01em; }
  .hero-sub { margin: 0 auto 40px; font-size: 1.15rem; color: #cbd5e1; line-height: 1.6; max-width: 100%; }
  .hero-h1 br, .hero-sub br { display: none; }
  .hero-bg-accent { display: none; }
  
  .hero-btns { 
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 56px;
  }
  .hero-btns .btn { width: 100%; padding: 18px 24px; font-size: 1.05rem; }
  
  .hero-stats { 
    display: flex;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 40px;
  }
  .hero-stat-item { flex: 1; text-align: center; }
  .hero-stat-val { font-size: 2.2rem; line-height: 1; }
  .hero-stat-lbl { font-size: 0.65rem; margin-top: 6px; letter-spacing: 0.12em; color: #94a3b8; }

  .hero-glass-cards {
    width: 100%;
    align-items: center;
    gap: 20px;
    padding: 0;
  }
  .hero-glass-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 24px;
    text-align: left;
    transform: none !important;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.4);
  }
}

@media (max-width: 600px) {
  .home-hero { padding-top: 100px; padding-bottom: 60px; }
  .hero-h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1.05rem; margin-bottom: 32px; }
  .hero-stats { padding: 18px 0; margin-bottom: 32px; gap: 12px; }
  .hero-stat-val { font-size: 1.8rem; }
  .hero-stat-lbl { font-size: 0.58rem; }
  .hero-glass-card { padding: 20px; gap: 16px; }
  .hero-glass-icon { width: 44px; height: 44px; flex-shrink: 0; }
  .hero-glass-icon svg { width: 22px; height: 22px; }
  .hero-glass-text h4 { font-size: 1.05rem; }
  .hero-glass-text p { font-size: 0.88rem; }
}


/* ── INTERNAL PAGE HERO ────────────────── */
.pg-hero {
  padding: 140px 0 80px;
  background: 
    radial-gradient(ellipse at 80% 0%, rgba(56, 189, 248, 0.05) 0%, transparent 40%),
    var(--bg-dark);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
}

.pg-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40' fill='%2338bdf8' fill-opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
}

.pg-hero-inner {
  max-width: 900px;
  text-align: left;
}

.pg-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 12px 0 20px;
  background: linear-gradient(to bottom, #fff 30%, var(--text-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pg-hero p {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 600px;
  line-height: 1.6;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--text-dim);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
}

.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { opacity: 0.5; }
#det-bc-category { color: var(--primary-deep); opacity: 1; font-weight: 700; }

/* ── SCROLL REVEAL ──────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BULLET LIST (FIXED) ───────────────── */
.usp-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.usp-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: inherit;
  position: relative;
  padding-left: 22px;
}
/* Hide the broken div-based dots entirely */
.usp-list li .usp-dot {
  display: none !important;
}
/* Use pseudo-element bullets instead — immune to flex/grid stretching */
.usp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary-glow);
}

/* Light mode list color */
.sec-light .usp-list li { color: #334155; }

/* SEO body paragraphs */
.seo-body { max-width: 800px; }
.seo-body p { font-size: 1.1rem; color: #475569; line-height: 1.8; margin-bottom: 20px; }
.seo-body h3 { color: var(--text-dark); margin: 32px 0 16px; font-size: 1.6rem; }
.seo-body .usp-list { margin-bottom: 20px; }

/* ── SERVICE CARDS ──────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.svc-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--r-xl);
  padding: 48px 40px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  z-index: 10;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.svc-card::before {
  content: ""; position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(12, 165, 233, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 165, 233, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0; transform: scale(1.1);
  transition: all 0.5s ease;
  pointer-events: none;
}

.svc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(12, 165, 233, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(12, 165, 233, 0.1);
}

.svc-card:hover::before { opacity: 1; transform: scale(1); }

.svc-ico {
  width: 68px; height: 68px;
  background: #f8fafc;
  color: var(--primary-deep);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.svc-ico-blue { background: rgba(2, 132, 199, 0.08); color: var(--primary-deep) !important; border-color: rgba(2, 132, 199, 0.15); }

.svc-card:hover .svc-ico { 
  transform: translateY(-4px) scale(1.05); 
  background: var(--primary-deep) !important; 
  color: #fff !important;
  border-color: var(--primary-deep) !important;
  box-shadow: 0 10px 20px rgba(2, 132, 199, 0.25);
}

.svc-title {
  font-family: var(--font-heading);
  font-size: 1.6rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.02em;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.svc-desc { font-size: 0.95rem; color: #64748b; line-height: 1.7; margin-bottom: 24px; }

.svc-arrow {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 0.85rem; color: var(--primary-deep);
  text-transform: uppercase; letter-spacing: 0.1em;
  transition: gap 0.3s ease;
}

.svc-card:hover .svc-arrow { gap: 14px; }

/* Dark theme overrides for cards in dark sections */
.sec-blue .svc-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}
.sec-blue .svc-title { color: #fff; }
.sec-blue .svc-desc { color: var(--text-dim); }
.sec-blue .svc-card:hover { background: rgba(255, 255, 255, 0.06); }

/* ── PREMIUM WHY US CARDS ──────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 56px;
}
.why-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-glass);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: 60px 40px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
}

.why-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12, 165, 233, 0.05) 0%, transparent 100%);
  opacity: 0; transition: opacity 0.4s ease;
}

.why-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at top left, rgba(2, 132, 199, 0.06), transparent 70%);
  opacity: 0; transition: opacity 0.4s ease;
}

.why-card:hover {
  transform: translateY(-20px) scale(1.02);
  border-color: var(--primary);
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.8), 0 0 30px rgba(12, 165, 233, 0.15);
}

.why-card:hover::after { opacity: 1; }

.why-n {
  font-family: var(--font-heading); 
  font-size: 8rem;
  font-weight: 900; 
  position: absolute;
  top: -10px; right: -10px;
  color: #ffffff;
  -webkit-text-stroke: 1px rgba(255,255,255,0.05);
  -webkit-text-fill-color: transparent;
  line-height: 1;
  transition: all 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.why-card:hover .why-n { 
  transform: translate(-30px, 20px); 
  -webkit-text-stroke: 1px var(--primary);
  opacity: 0.2; 
}

.why-t {
  font-family: var(--font-heading); font-size: 1.8rem;
  font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px; color: #ffffff;
  position: relative;
  z-index: 5;
}
.why-p { 
  font-size: 1rem; color: var(--text-dim); line-height: 1.7; 
  position: relative; z-index: 5;
}

.why-d { font-size: 1rem; color: #94a3b8; line-height: 1.8; }

/* ── WORK GRID & PORTFOLIO ────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.work-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.work-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}
.work-item:hover img { transform: scale(1.08); filter: brightness(0.7); }
.work-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4, 6, 11, 0.95) 0%, transparent 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 24px;
  opacity: 0; transition: opacity 0.4s ease;
}
.work-item:hover .work-ov { opacity: 1; }
.work-ov-t {
  font-size: 1.3rem; font-family: var(--font-heading);
  font-weight: 700; color: #fff; margin-bottom: 4px;
  text-transform: uppercase;
}
.work-ov-s {
  font-size: 0.8rem; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700;
}

/* Filter Row */
.filter-row {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 8px;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 10px 22px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  transition: all 0.3s ease;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: var(--bg-deep);
  border-color: var(--primary);
  box-shadow: 0 4px 16px -4px var(--primary-glow);
}

/* ── PRODUCT CATEGORY CARDS ─────────────── */
.prod-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.prod-cat-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.prod-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -8px rgba(0,0,0,0.12);
  border-color: rgba(56, 189, 248, 0.3);
}
.prod-cat-img { height: 200px; overflow: hidden; }
.prod-cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.prod-cat-card:hover .prod-cat-img img { transform: scale(1.06); }
.prod-cat-info {
  padding: 22px; flex-grow: 1;
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(0,0,0,0.04);
}
.prod-cat-info h3 { font-size: 1.3rem; margin-bottom: 6px; color: var(--text-dark); }
.prod-cat-info p { color: #64748b; font-size: 0.9rem; margin-bottom: 12px; flex-grow: 1; }
.prod-cat-count {
  font-weight: 700; color: var(--primary);
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.08em;
}
.prod-cat-featured { border: 2px solid rgba(56, 189, 248, 0.2); }

/* ── PRODUCT GRID ───────────────────────── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

/* ── PREMIUM PRODUCT CARDS ──────────────── */
.prod-card {
  background: #ffffff;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid #eef2f6;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-card);
}

.prod-card:hover {
  transform: translateY(-16px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lift), 0 0 20px rgba(12, 165, 233, 0.1);
}

.prod-card-img { 
  height: 240px; 
  overflow: hidden; 
  position: relative;
  background: #f8fafc;
}

.prod-card-img img { 
  width: 100%; height: 100%; 
  object-fit: cover; 
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); 
}

.prod-card:hover .prod-card-img img { transform: scale(1.08); }

.prod-card-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--bg-surface); color: var(--primary);
  font-size: 0.65rem; font-weight: 800;
  padding: 6px 12px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.1em;
  z-index: 5;
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(8px);
}
.prod-card-body { padding: 40px 32px; flex-grow: 1; display: flex; flex-direction: column; }
.prod-card-cat { 
  font-size: 0.75rem; font-weight: 800; text-transform: uppercase; 
  letter-spacing: 0.12em; color: var(--primary); margin-bottom: 12px; 
}
.prod-card-body h3 { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 14px; font-family: var(--font-heading); font-weight: 900; text-transform: uppercase; }
.prod-card-body p { font-size: 1rem; color: #475569; line-height: 1.7; flex-grow: 1; margin-bottom: 24px; }
.prod-card-footer {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 18px;
  border-top: 1px solid #f1f5f9;
}
.prod-card-tag {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: #94a3b8;
}
.prod-card-btn {
  font-size: 0.8rem; font-weight: 800; color: var(--primary-deep);
  font-family: var(--font-heading); text-transform: uppercase;
  letter-spacing: 0.08em; cursor: pointer; text-decoration: none;
  transition: all 0.3s;
}
.prod-card-btn:hover { color: var(--text-dark); transform: translateX(4px); }
.prod-card-hospital { border: 1px solid rgba(56, 189, 248, 0.15); }

/* Catalogue Banner */
.catalogue-banner {
  margin-top: 48px; padding: 36px 40px;
  background: linear-gradient(135deg, rgba(56,189,248,0.06) 0%, rgba(2,132,199,0.04) 100%);
  border: 1px solid rgba(56,189,248,0.12);
  border-radius: var(--r-lg);
}
.catalogue-banner-content {
  display: flex; justify-content: space-between;
  align-items: center; gap: 30px; flex-wrap: wrap;
}
.catalogue-banner h3 { font-size: 1.4rem; color: var(--text-dark); margin-bottom: 6px; }
.catalogue-banner p { color: #64748b; font-size: 0.95rem; }
.catalogue-banner-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── PRODUCT DETAIL PAGES ──────────────── */
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.pd-img-wrap { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.pd-img-wrap img { width: 100%; height: 400px; object-fit: cover; }
.pd-img-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--primary); color: var(--bg-deep);
  font-size: 0.72rem; font-weight: 700;
  padding: 6px 14px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.pd-highlight {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; color: #334155;
  background: #f1f5f9; padding: 8px 14px; border-radius: var(--r-sm);
}
.pd-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 48px; }
.pd-spec-table { width: 100%; border-collapse: collapse; }
.pd-spec-table th, .pd-spec-table td {
  text-align: left; padding: 12px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem;
}
.pd-spec-table th { font-weight: 700; color: var(--text-dark); background: #f8fafc; }
.pd-spec-table td { color: #475569; }
@media (max-width: 900px) { .pd-grid, .pd-details-grid { grid-template-columns: 1fr; } }

.story-content h2 { 
  margin-bottom: 2.5rem; 
  border-left: 6px solid var(--primary); 
  padding-left: 32px;
  line-height: 0.9;
}
.story-content p { color: #475569; font-size: 1.15rem; line-height: 1.85; margin-bottom: 2rem; }
.story-content .lead { color: #020617; font-weight: 800; font-size: 1.5rem; margin-bottom: 1.5rem; line-height: 1.4; }
.text-secondary { 
  color: var(--primary-deep); 
  font-weight: 900;
  display: inline-block;
  transform: skewX(-5deg); /* Dynamic forward-leaning aesthetic */
}

/* Existing Premium Story Grid styles below... */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px; /* Expansive luxury gap */
  align-items: center;
}

@media (max-width: 1000px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
}

.story-content { position: relative; z-index: 5; }

.story-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding: 40px; /* Space for the bleeding badge and accent grid */
}

.story-img-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(0,0,0,0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.story-visual:hover .story-img-card { transform: perspective(1000px) rotateY(0deg); }

.story-img-card img { width: 100%; height: 500px; object-fit: cover; }

.story-badge {
  position: absolute;
  bottom: 60px; /* Adjusted for better alignment now it's outside */
  left: -20px;
  background: var(--primary-deep);
  color: #fff;
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  z-index: 30; /* Ensure it is above the image-card and its perspective */
  transition: all 0.4s ease;
}

.story-visual:hover .story-badge { transform: scale(1.05) translateX(-10px); }

@media (max-width: 600px) { .story-badge { left: 20px; bottom: 20px; } }

.badge-n { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 900; line-height: 1; }
.badge-l { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.9; }

.story-accent-grid {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
  background-size: 20px 20px;
  z-index: 1;
  opacity: 0.4;
}

.text-secondary { color: var(--primary-deep); }

/* ── WORKSHOP ──────────────────────────── */
.workshop-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center;
}
@media (max-width: 900px) { .workshop-grid { grid-template-columns: 1fr; } }
.wk-img img { border-radius: var(--r-lg); box-shadow: var(--shadow-card); }
.wk-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.wk-item { display: flex; gap: 16px; align-items: flex-start; }
.wk-ico {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(56, 189, 248, 0.08);
  color: var(--primary); border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(56, 189, 248, 0.12);
}
.wk-text h4 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 4px; }
.wk-text p { color: #64748b; font-size: 0.92rem; line-height: 1.6; }

/* ── TESTIMONIALS ──────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}

@media (max-width: 1000px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}
/* ── PREMIUM TESTIMONIAL CARDS ────────── */
.tm-card {
  padding: 56px 40px;
  background: var(--glass-bg);
  border: 1px solid var(--border-glass);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.tm-card:nth-child(2) { transform: translateY(40px); }

.tm-card:hover {
  background: rgba(15, 23, 42, 0.95);
  border-color: var(--primary);
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-lift), 0 0 40px rgba(12, 165, 233, 0.1);
  z-index: 20;
}
.tm-card:nth-child(2):hover { transform: translateY(20px) scale(1.02); }

.tm-card::after {
  content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
  background: var(--primary-deep);
  transform: scaleX(0); transition: transform 0.4s ease;
  transform-origin: left;
}

.tm-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.tm-card:hover::after { transform: scaleX(1); }

.tm-quote {
  font-family: var(--font-heading);
  font-size: 8rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.1;
  position: absolute;
  top: -10px;
  left: 20px;
  pointer-events: none;
  -webkit-text-stroke: 1px var(--primary);
  -webkit-text-fill-color: transparent;
  transition: all 0.5s ease;
  z-index: 1;
}

.tm-card:hover .tm-quote { opacity: 0.3; transform: scale(1.1) rotate(-5deg); }

.tm-text {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.8;
  color: #f1f5f9;
  margin-bottom: 32px;
  flex-grow: 1;
  position: relative;
  z-index: 5;
}

.tm-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 5;
}

.tm-author img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-deep);
  padding: 2px; background: #fff;
}

.tm-name {
  font-family: var(--font-heading);
  font-size: 1.05rem; font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.tm-role {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sec-light .tm-card {
  background: #ffffff;
  border-color: #e2e8f0;
  backdrop-filter: none;
}
.sec-light .tm-text { color: #475569; }
.sec-light .tm-name { color: var(--text-dark); }
.sec-light .tm-card:hover { background: #f8fafc; border-color: var(--primary-deep); }

/* Light theme overrides */
.sec-light .tm-card {
  background: #fff; border-color: rgba(0,0,0,0.06);
}
.sec-light .tm-card:hover { border-color: var(--primary); box-shadow: 0 16px 32px -8px rgba(0,0,0,0.08); }
.sec-light .tm-text { color: #475569; }
.sec-light .tm-name { color: var(--text-dark); }

/* ── FAQ ─────────────────────────────────── */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--r-md);
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-item:hover { border-color: rgba(56, 189, 248, 0.3); }
.faq-q {
  font-family: var(--font-heading); font-size: 1.15rem;
  color: var(--text-dark); font-weight: 700;
  display: flex; justify-content: space-between;
  align-items: center; text-transform: uppercase;
}
.faq-q svg { transition: transform 0.3s ease; color: var(--primary); flex-shrink: 0; margin-left: 12px; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  color: #64748b; font-size: 0.95rem; line-height: 1.7;
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-item.open .faq-a { max-height: 200px; margin-top: 14px; }

/* ── ABOUT PAGE ─────────────────────────── */
.about-2col, .contact-2col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
@media (max-width: 900px) { .about-2col, .contact-2col { grid-template-columns: 1fr; } }
.about-body p { margin-bottom: 18px; color: #475569; font-size: 1.05rem; line-height: 1.8; }

/* ── CONTACT & FORMS ────────────────────── */
.ci-item { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 28px; }
.ci-ico {
  width: 48px; height: 48px; background: var(--primary);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 8px 20px -4px var(--primary-glow);
}
.ci-lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: #94a3b8; margin-bottom: 2px; font-weight: 700; }
.ci-val { font-size: 1.2rem; font-family: var(--font-heading); font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.ci-sub { font-size: 0.9rem; color: #64748b; }

.form-grid, .modal-body { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--r-sm); font-family: var(--font-body);
  font-size: 0.95rem; color: var(--text-dark); background: #fff;
  transition: all 0.3s ease;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.12);
}

/* ── MODALS ────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: all 0.4s ease;
  padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal-card {
  background: #ffffff !important;
  width: 100%; max-width: 580px;
  border-radius: 20px;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.3);
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative; overflow: hidden;
  border: none;
}
.modal-overlay.open .modal-card { transform: translateY(0); }

.modal-header { padding: 48px 48px 10px; text-align: left; }
.modal-header h2 { font-size: 2rem; color: #1e293b !important; margin-bottom: 4px; font-weight: 800; font-family: var(--font-heading); }
.modal-header p { color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; }

.modal-body { padding: 24px 48px 48px; display: flex; flex-direction: column; gap: 18px; }

/* Special form styling for White Modal */
.modal-card .fg label { color: #475569 !important; font-weight: 700; font-size: 0.85rem; }
.modal-card .fg input, .modal-card .fg textarea { 
  background: #f8fafc !important; 
  border: 1px solid #e2e8f0 !important; 
  color: #1e293b !important; 
}
.modal-card .fg input::placeholder { color: #94a3b8; }

.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 38px; height: 38px; border-radius: 50%;
  border: none; background: #f1f5f9;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s ease; color: #64748b;
  z-index: 10;
}
.modal-close:hover { background: #fee2e2; color: #ef4444; transform: scale(1.1); }

.modal-success-state {
  text-align: center; padding: 40px 20px;
}
.modal-success-state svg { width: 64px; height: 64px; color: #10b981; margin-bottom: 16px; }



/* ── PAGE HEADERS ──────────────────────── */
.pg-hero {
  background: var(--bg-deep);
  padding: 140px 0 70px;
  text-align: center;
  border-bottom: 1px solid var(--border-glass);
  position: relative;
}
.pg-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(56, 189, 248, 0.05) 0%, transparent 60%);
}
.pg-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  font-size: 0.82rem; color: var(--text-dim);
  margin-bottom: 16px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.breadcrumb a { color: var(--primary); text-decoration: none; cursor: pointer; margin-right: 8px; }
.breadcrumb span { margin-right: 8px; opacity: 0.4; }
.pg-hero h1 { margin-bottom: 16px; font-size: clamp(2.5rem, 5vw, 4rem); }
.pg-hero p { max-width: 560px; margin: 0 auto; color: var(--text-dim); font-size: 1.1rem; line-height: 1.7; }

.stats-strip { 
  padding: 40px 0 100px; 
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; text-align: center; }
.stat-n { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.stat-l { font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.82rem; opacity: 0.85; }

/* ── CTA STRIP ──────────────────────────── */
.cta-strip { 
  padding: 120px 0; 
  text-align: center; 
  background: var(--primary-deep); /* Fallback */
  background: radial-gradient(circle at 50% 50%, #0369a1 0%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.4;
}
.cta-strip h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  line-height: 0.95;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}
.cta-strip p {
  max-width: 600px;
  margin: 0 auto 36px;
  color: #bae6fd;
  font-size: 1.15rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  opacity: 0.9;
}
.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cta-strip .btn-dark {
  background: #fff;
  color: #0c4a6e;
  border: 1px solid #fff;
}
.cta-strip .btn-dark:hover {
  background: transparent;
  color: #fff;
}
.cta-strip .btn-ghost {
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}
.cta-strip .btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* ── MISSION & VISION ──────────────────── */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.mv-card {
  background: rgba(255,255,255,0.03); padding: 36px;
  border-radius: var(--r-lg); border: 1px solid var(--border-glass);
  transition: all 0.4s ease;
}
.mv-card:hover { border-color: rgba(56, 189, 248, 0.2); }
.mv-title { font-family: var(--font-heading); font-size: 1.8rem; color: var(--text-main); margin-bottom: 12px; }
.mv-desc { font-size: 1rem; color: var(--text-dim); line-height: 1.7; }
@media (max-width: 800px) { .mv-grid { grid-template-columns: 1fr; } }



/* ── SERVICES DETAIL ─────────────────────── */
.sd-wrap { margin-bottom: 100px; }
.sd-wrap:last-child { margin-bottom: 0; }
.sd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sd-grid.rev { direction: rtl; }
.sd-grid.rev > div { direction: ltr; }
@media (max-width: 900px) {
  .sd-grid { grid-template-columns: 1fr; gap: 40px; }
  .sd-grid.rev { direction: ltr; }
}
.sd-tag { 
  font-size: 0.75rem; 
  text-transform: uppercase; 
  letter-spacing: 0.15em; 
  color: var(--primary); 
  font-weight: 700; 
  margin-bottom: 8px; 
}
.sd-title { 
  font-family: var(--font-heading); 
  font-size: 2.5rem; 
  color: var(--text-dark); 
  line-height: 1.1; 
  margin-bottom: 20px; 
}
.sd-desc { 
  font-size: 1.05rem; 
  color: #64748b; 
  line-height: 1.8; 
  margin-bottom: 24px; 
}

/* ── FOOTER ─────────────────────────────── */
footer {
  padding: 72px 0 36px;
  background: #000;
  border-top: 1px solid var(--border-glass);
}
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-tagline { color: var(--text-dim); font-size: 0.92rem; line-height: 1.7; margin-top: 8px; }
.fci { display: flex; gap: 10px; align-items: center; margin-bottom: 8px; }
.footer-col h4 {
  color: var(--primary); margin-bottom: 12px;
  font-family: var(--font-heading); font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-dim); text-decoration: none; transition: color 0.3s; font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }
.fci span { color: rgba(255,255,255,0.45); font-size: 0.88rem; }

.footer-bottom {
  margin-top: 48px; padding-top: 28px;
  border-top: 1px solid var(--border-glass);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.82rem; }
.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.footer-bottom a:hover {
  color: var(--primary-deep);
}
.footer-badges { display: flex; gap: 8px; }
.fb {
  font-size: 0.7rem; padding: 4px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-glass);
  border-radius: 100px; color: var(--text-dim);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── WHATSAPP FAB ──────────────────────── */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px;
  background: #25d366; color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  z-index: 999; text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5); }
.wa-fab span { display: none; }
.wa-pulse { display: none; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 500px; margin: 36px auto 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero-visual { display: none; }
  .sec { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .prod-cat-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .about-2col, .contact-2col { grid-template-columns: 1fr; }
  h1 { font-size: 2.8rem; }
  .pg-hero { padding: 120px 0 50px; }
  .pg-hero h1 { font-size: 2.2rem; }
  .pg-hero p { font-size: 1rem; }
}

/* ── MISC LEGACY MAPPINGS ────────────────── */
.sec-darker { background: var(--bg-dark); }
.on-light { color: var(--text-dark); }
.on-dark { color: var(--text-main); }
.tag-pill { border-radius: 2rem; }