/* =========================================
   BRIDGERTON INTERNATIONAL PVT LTD
   Global Design System — Light/Dark Themed
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- LIGHT MODE (default) — Indigo + Teal ---- */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f0f4f8; /* Very light cool blue */
  --bg-card: #ffffff;
  --bg-nav: #3c3b6e; /* Old Glory Blue */
  --accent-gold: #3c3b6e; /* Old Glory Blue */
  --accent-gold-bright: #4a4a9c;
  --accent-orange: #b22234; /* Old Glory Red */
  --text-heading: #3c3b6e;
  --text-body: #4a5568;
  --text-muted: #718096;
  --border-amber: #3c3b6e;
  --border-amber-hover: #b22234;
  --gradient-bg: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
  --gradient-cta: linear-gradient(135deg, #3c3b6e 0%, #b22234 100%);
  --gradient-card: linear-gradient(145deg, #ffffff, #f7fafc);
  --shadow-glow: 0 0 32px rgba(60, 59, 110, 0.15);
  --shadow-card: 0 10px 30px rgba(60, 59, 110, 0.08);
  --shadow-card-hover: 0 20px 50px rgba(178, 34, 52, 0.15);
  --shadow-nav: 0 4px 20px rgba(0, 0, 0, 0.15);
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --hero-grid-color: rgba(60, 59, 110, 0.05);
  --hero-glow: rgba(178, 34, 52, 0.08);
  --stat-bar-bg: #ffffff;
  --stat-divider: #e2e8f0;
}

/* ---- DARK MODE — Deep Midnight Navy ---- */
[data-theme="dark"] {
  --bg-primary: #0a0b1e; /* Deep Midnight Navy */
  --bg-secondary: #141635;
  --bg-card: #1c1e4a;
  --bg-nav: #0a0b1e;
  --accent-gold: #3c3b6e; /* Maintain Navy Blue for cards */
  --accent-gold-bright: #4a4a9c;
  --accent-orange: #b22234; /* Maintain Red for badges - NO WHITE BOXES */
  --text-heading: #ffffff;
  --text-body: #cbd5e0;
  --text-muted: #94a3b8;
  --border-amber: rgba(60, 59, 110, 0.4);
  --border-amber-hover: #b22234;
  --gradient-bg: linear-gradient(145deg, #0a0b1e 0%, #1c1e4a 100%);
  --gradient-cta: linear-gradient(135deg, #3c3b6e, #b22234);
  --gradient-card: linear-gradient(145deg, #1c1e4a, #141635);
  --stat-bar-bg: #0a0b1e;
  --stat-divider: rgba(255, 255, 255, 0.1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.35s ease;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); outline: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { font-size: 1rem; color: var(--text-body); }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 0.8rem;
  background: var(--accent-orange); /* Red background for visibility */
  padding: 6px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(185, 28, 28, 0.15);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* ---- Layout ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--accent-gold); /* Navy Blue */
  color: #fff;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.25);
}
.btn-primary:hover {
  background: var(--accent-orange); /* Heritage Red on Hover */
  box-shadow: 0 8px 30px rgba(185, 28, 28, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-heading);
  border: 1.5px solid var(--border-amber);
}
.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(29,78,216,0.06);
  transform: translateY(-2px);
}

/* Ripple */
.btn::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width 0.5s, height 0.5s, opacity 0.5s;
  opacity: 0;
}
.btn:active::after { width: 300px; height: 300px; opacity: 0; }

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(30, 58, 138, 0.25); }
  50% { box-shadow: 0 4px 35px rgba(185, 28, 28, 0.35), 0 0 0 8px rgba(185, 28, 28, 0.1); }
}
.btn-primary.pulse { animation: cta-pulse 2.5s ease-in-out infinite; }

/* ---- Divider ---- */
.divider {
  width: 64px; height: 3px;
  background: var(--gradient-cta);
  border-radius: 2px;
  margin: 16px auto 0;
}
.divider-left { margin-left: 0; }

/* =====================================================
   THEME TOGGLE
   ===================================================== */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  padding: 5px 12px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff !important;
  white-space: nowrap;
  flex-shrink: 0;
}
.theme-toggle:hover { 
  background: rgba(255, 255, 255, 0.2); 
  border-color: #ffffff;
}

.toggle-track {
  width: 36px; height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
[data-theme="dark"] .toggle-track { background: var(--accent-orange); border-color: var(--accent-orange); }

.toggle-thumb {
  width: 14px; height: 14px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 2px;
  transition: var(--transition);
}
[data-theme="dark"] .toggle-thumb { background: #ffffff; transform: translateX(16px); }

.toggle-icon { font-size: 0.85rem; }

/* =====================================================
   NAVBAR
   ===================================================== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(12, 26, 68, 0.85); /* Slightly transparent Navy */
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--accent-orange);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#navbar.scrolled {
  padding: 10px 0;
  background: rgba(12, 26, 68, 0.95);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

.nav-logo { display: flex; align-items: center; gap: 10px; }

.nav-logo-icon {
  width: 48px; height: 48px;
  background: #ffffff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 1.5px solid var(--accent-orange);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: var(--transition);
}

.nav-logo-icon:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.nav-logo-img {
  height: 75%;
  width: 75%;
  object-fit: contain;
}

.nav-logo-text { display: flex; flex-direction: column; }

.nav-logo-name {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 0.95rem; color: #ffffff; line-height: 1.1; 
  letter-spacing: -0.01em;
}

.nav-logo-tag {
  font-size: 0.7rem; color: rgba(255,255,255,0.7);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; margin-top: 2px;
}

.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-links a {
  font-size: 0.88rem; font-weight: 600; color: #ffffff;
  padding: 8px 14px; border-radius: 6px; transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: #ffffff; background: var(--accent-orange); }

.nav-cta {
  background: var(--accent-orange) !important;
  color: #fff !important;
  font-weight: 700 !important; padding: 8px 20px !important;
  border-radius: 6px !important;
  box-shadow: 0 4px 15px rgba(185, 28, 28, 0.3);
}
.nav-cta:hover { background: #8e1b29 !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(185, 28, 28, 0.4); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #ffffff; border-radius: 2px; transition: var(--transition);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--gradient-bg);
}

.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--hero-grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--hero-grid-color) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--hero-glow) 0%, transparent 60%);
  pointer-events: none;
}

#particles-canvas {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

.hero-content { position: relative; z-index: 2; padding: 120px 0 80px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(29,78,216,0.08);
  border: 1px solid var(--border-amber);
  border-radius: 100px; padding: 6px 16px;
  font-size: 0.8rem; font-weight: 600; color: var(--accent-gold);
  letter-spacing: 0.05em; margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 800;
  color: var(--text-heading); line-height: 1.08;
  margin-bottom: 24px; max-width: 800px;
}

.hero-description {
  font-size: 1.15rem; color: var(--text-body); max-width: 600px;
  margin-bottom: 40px; line-height: 1.85;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }

/* ---- Hero stats (FIXED: no wrapping +) ---- */
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }

.hero-stat {}

.hero-stat .stat-val {
  display: flex; align-items: baseline; gap: 2px;
  white-space: nowrap; /* FIX: prevents + from wrapping */
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat .stat-num {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 800;
  background: var(--gradient-cta);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .stat-plus {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800;
  background: var(--gradient-cta);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .stat-divider {
  width: 32px; height: 2px;
  background: var(--gradient-cta); border-radius: 2px; margin: 6px 0;
}

.hero-stat .stat-label {
  font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.05em;
}

/* =====================================================
   STATS BAR (FIXED)
   ===================================================== */
.stats-bar {
  background: var(--bg-primary);
  border-top: 2px solid var(--accent-orange);
  border-bottom: 2px solid var(--accent-gold);
  padding: 40px 0;
}

.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center; padding: 20px 24px;
  border-right: 1px solid var(--stat-divider);
}
.stat-item:last-child { border-right: none; }

/* FIX: the num+suffix nowrap wrapper */
.stat-val-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  white-space: nowrap;
  margin-bottom: 10px;
}

.stat-item .num {
  font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800;
  color: var(--accent-orange); line-height: 1;
}

.stat-item .suffix {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 800;
  color: var(--accent-orange); line-height: 1;
}

.stat-item .label {
  font-size: 0.85rem; color: var(--text-body); font-weight: 500; letter-spacing: 0.03em;
}

/* =====================================================
   SERVICE CARDS — REDESIGNED (premium, not boxy)
   ===================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  position: relative;
  background: #1c1e4a;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-amber);
  display: flex; flex-direction: column;
  padding: 40px 32px;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #ffffff;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: var(--shadow-card-hover), var(--shadow-glow); border-color: var(--accent-orange);
}

/* Top color band */
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  border-radius: var(--radius-md);
  background: var(--gradient-cta);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

/* Animated gradient border via outline */
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-amber);
  transition: border-color 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.service-card:hover::after { border-color: var(--accent-gold); opacity: 0.3; }

/* Icon strip */
.sc-icon-strip {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 16px; width: 100%;
}

.sc-icon {
  width: 60px; height: 60px;
  background: rgba(178, 34, 52, 0.15);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; flex-shrink: 0; color: var(--accent-orange);
  transition: var(--transition);
  border: 1px solid var(--accent-orange);
}
.service-card:hover .sc-icon { 
  background: var(--gradient-cta);
  color: #fff;
  transform: rotate(10deg);
  box-shadow: 0 8px 20px rgba(178, 34, 52, 0.3);
}

.sc-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: #ffffff; }
.sc-badge {
  margin-left: auto;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #ffffff;
  background: var(--accent-orange); padding: 5px 12px;
  border-radius: 100px; border: 1px solid var(--accent-orange);
  white-space: nowrap; flex-shrink: 0;
}

/* Card body */
.sc-body {
  display: flex; flex-direction: column; flex: 1;
  position: relative; z-index: 2; width: 100%;
}

.sc-body p {
  font-size: 0.9rem; color: rgba(255, 255, 255, 0.85); line-height: 1.75; margin-bottom: 18px;
}

.sc-features { margin-bottom: 22px; display: flex; flex-direction: column; gap: 7px; }
.sc-features li {
  font-size: 0.84rem; color: rgba(255, 255, 255, 0.85);
  display: flex; align-items: center; gap: 8px;
}
.sc-features li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-orange); flex-shrink: 0;
}

.sc-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 700; color: #93c5fd;
  transition: var(--transition); width: 100%;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sc-link:hover { gap: 12px; color: #ffffff; }
.sc-link i { font-size: 0.75rem; }

/* =====================================================
   WORLD MAP
   ===================================================== */
.world-map-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  position: relative; overflow: hidden;
}

.world-map-container {
  position: relative; max-width: 1000px; margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--accent-gold);
  box-shadow: var(--shadow-xl);
  background: #ffffff; 
}

.world-map-wrapper {
  position: relative;
  width: 100%;
}

.route-line {
  fill: none;
  stroke: var(--accent-gold);
  stroke-width: 1.2;
  stroke-dasharray: 8 4; /* Dashed line for air/sea paths */
  stroke-dashoffset: 1000;
  animation: drawRoute 20s linear infinite;
  opacity: 0.5;
}

@keyframes drawRoute {
  to { stroke-dashoffset: 0; opacity: 0.8; }
}

.pin {
  animation: pulsePin 2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes pulsePin {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.hq-ring {
  animation: hqPulse 2s infinite;
  transform-origin: center;
}

@keyframes hqPulse {
  0% { transform: scale(1); opacity: 0.8; stroke-width: 1.5; }
  100% { transform: scale(2.5); opacity: 0; stroke-width: 0.5; }
}

[data-theme="light"] .world-map-container {
  background: #f1f5f9;
}

[data-theme="light"] .world-map-container path {
  fill: #ffffff !important;
  stroke: #cbd5e1 !important;
  stroke-width: 0.8;
}

[data-theme="light"] .route-line {
  stroke: var(--accent-gold);
  opacity: 0.4;
}

.pin-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  fill: var(--text-heading);
}

[data-theme="dark"] .pin-label {
  fill: #fff;
}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px;
}

.why-item {
  display: flex; 
  flex-direction: column;
  gap: 20px; 
  align-items: flex-start;
  padding: 40px 32px;
  background: #1c1e4a;
  border: 1px solid var(--border-amber);
  border-radius: var(--radius-lg); 
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  position: relative;
  color: #ffffff;
}

.why-item h4 { color: #ffffff !important; font-size: 1.25rem; font-family: var(--font-heading); margin-bottom: 8px; }
.why-item p { color: rgba(255,255,255,0.9) !important; line-height: 1.7; font-size: 0.95rem; margin-bottom: 0px; }
.why-text h4 { color: #ffffff !important; margin-bottom: 8px; }
.why-text p { color: rgba(255,255,255,0.9) !important; }

.why-item::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 6px; height: 100%;
  background: var(--gradient-cta); opacity: 0; transition: var(--transition);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.why-item:hover { 
  border-color: var(--accent-orange); 
  box-shadow: 0 20px 40px rgba(0,0,0,0.05), var(--shadow-glow); 
  transform: translateY(-8px); 
}

.why-item:hover::before { opacity: 1; }

.why-icon {
  width: 60px; height: 60px;
  background: rgba(178, 34, 52, 0.15);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition);
  border: 1px solid var(--accent-orange);
  color: var(--accent-orange);
}

.why-item:hover .why-icon {
  background: var(--gradient-cta);
  color: #fff;
  transform: rotate(10deg);
  box-shadow: 0 8px 20px rgba(178, 34, 52, 0.3);
}

/* VALUE & CERT CARDS (REFINED) */
.values-grid, .certifications-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
  gap: 24px;
}

.value-card, .cert-card {
  padding: 40px 28px;
  background: var(--gradient-card);
  border: 1.5px solid var(--border-amber);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.value-card:hover, .cert-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06), var(--shadow-glow);
}

.value-icon, .cert-icon {
  width: 64px; height: 64px;
  background: rgba(37,99,235,0.08);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 24px;
  transition: var(--transition);
}

.value-card:hover .value-icon, .cert-card:hover .cert-icon {
  background: var(--gradient-cta);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

/* TEAM CARDS (REFINED) */
.team-card {
  background: var(--gradient-card); 
  border: 1.5px solid var(--border-amber);
  border-radius: var(--radius-lg); 
  padding: 48px 32px; 
  text-align: center;
  transition: var(--transition); 
  box-shadow: var(--shadow-card);
}

.team-card:hover { 
  border-color: var(--accent-gold); 
  box-shadow: 0 25px 50px rgba(37,99,235,0.1), var(--shadow-glow); 
  transform: translateY(-10px); 
}

.team-avatar {
  width: 100px; height: 100px; 
  border-radius: 28px; /* Squircle avatar */
  background: var(--gradient-cta); 
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: #fff;
  margin: 0 auto 24px; 
  border: 3px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.team-card:hover .team-avatar {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(37,99,235,0.25);
}

/* Cleaned up duplicate why-text styles */

/* =====================================================
   PHOTO GALLERY
   ===================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

.gallery-item {
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; aspect-ratio: 4/3;
  border: 1px solid var(--border-amber);
  box-shadow: var(--shadow-card);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 14px; opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: 0.82rem; font-weight: 600; }

/* =====================================================
   TEAM CARDS
   ===================================================== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }

.team-card {
  background: var(--bg-card); border: 1px solid var(--border-amber);
  border-radius: var(--radius-md); padding: 36px 28px; text-align: center;
  transition: var(--transition); box-shadow: var(--shadow-card);
}
.team-card:hover { border-color: var(--accent-gold); box-shadow: var(--shadow-glow), var(--shadow-card-hover); transform: translateY(-6px); }

.team-avatar {
  width: 100px; height: 100px; 
  border-radius: 28px;
  background: var(--gradient-cta); 
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: #fff;
  margin: 0 auto 24px; 
  border: 3px solid rgba(255,255,255,0.15);
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.15rem; color: var(--text-heading); margin-bottom: 4px; }

.team-role {
  font-size: 0.78rem; color: var(--accent-orange); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; display: block;
}
.team-card p { font-size: 0.87rem; color: var(--text-body); line-height: 1.7; margin-bottom: 20px; }

.team-contact { display: flex; justify-content: center; gap: 14px; margin-top: 10px; }
.team-contact a {
  padding: 10px 28px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 700; transition: var(--transition);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.team-whatsapp { 
  background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; 
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25); border: none;
}
.team-whatsapp:hover { 
  transform: translateY(-3px); box-shadow: 0 8px 16px rgba(37, 211, 102, 0.4); 
}
.team-phone { 
  background: var(--gradient-cta); color: #fff; 
  box-shadow: 0 4px 12px rgba(178, 34, 52, 0.25); border: none; 
}
.team-phone:hover { 
  transform: translateY(-3px); box-shadow: 0 8px 16px rgba(178, 34, 52, 0.4); 
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: #111827; /* Deep Navy US Heritage */
  color: #f3f4f6;
  padding: 80px 0 30px;
  border-top: 5px solid var(--accent-orange);
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 28px;
}

.footer-brand p { font-size: 0.9rem; color: #94a3b8; margin: 16px 0 24px; max-width: 300px; line-height: 1.8; }
.footer-brand .nav-logo-name { color: #ffffff !important; }

.footer-col h4 {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  color: #ffffff; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px;
}
.footer-col ul li a { font-size: 0.9rem; color: #cbd5e1; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent-orange); padding-left: 4px; }

.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; color: #cbd5e1; font-size: 0.9rem; }
.footer-contact-item i { color: var(--accent-orange); margin-top: 4px; }
.footer-contact-item a { color: #cbd5e1; }
.footer-contact-item a:hover { color: var(--accent-orange); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: #6b7280; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: #6b7280; transition: var(--transition); }
.footer-bottom-links a:hover { color: #ffffff; }

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px;
}
.page-hero .breadcrumb a { color: var(--accent-gold); transition: var(--transition); }
.page-hero .breadcrumb a:hover { color: var(--accent-orange); }

/* =====================================================
   FORMS
   ===================================================== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-heading); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px;
  background: var(--bg-primary); border: 1.5px solid var(--border-amber);
  border-radius: 8px; color: var(--text-heading); font-size: 0.94rem; transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent-gold); background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(29,78,216,0.12);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--bg-card); color: var(--text-heading); }
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea,
[data-theme="dark"] .form-group select {
  background: #141635;
  border-color: rgba(60,59,110,0.6);
  color: #ffffff;
}
[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus,
[data-theme="dark"] .form-group select:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(178,34,52,0.2);
  background: #1c1e4a;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  background: var(--bg-secondary);
  border-top: 2px solid var(--accent-gold);
  border-bottom: 2px solid var(--accent-orange);
  padding: 80px 0; text-align: center;
}
[data-theme="dark"] .cta-banner {
  background: linear-gradient(135deg, #0f1238 0%, #1c1e4a 100%);
  border-color: var(--accent-orange);
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { margin-bottom: 36px; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact-info-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin-bottom: 48px;
}
.contact-info-card {
  background: var(--bg-card); border: 1px solid var(--border-amber);
  border-radius: var(--radius-md); padding: 28px 24px; text-align: center;
  transition: var(--transition); box-shadow: var(--shadow-card);
}
.contact-info-card:hover { border-color: var(--accent-gold); box-shadow: var(--shadow-glow); }
.contact-info-card .icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(178, 34, 52, 0.15);
  border: 1px solid var(--accent-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--accent-orange); margin: 0 auto 16px;
}
.contact-info-card h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-heading); font-weight: 700; margin-bottom: 8px; }
.contact-info-card p, .contact-info-card a { font-size: 0.92rem; color: var(--text-heading); font-weight: 500; line-height: 1.6; }
.contact-info-card a:hover { color: var(--accent-gold); }

.map-container { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-amber); height: 400px; }
.map-container iframe { width: 100%; height: 100%; }

/* =====================================================
   MISC — Lane / Region / Value Cards
   ===================================================== */
.lane-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.lane-card {
  background: #1c1e4a; border: 1px solid var(--border-amber);
  border-radius: var(--radius-md); padding: 24px 22px; transition: var(--transition); box-shadow: var(--shadow-card);
  color: #ffffff;
}
.lane-card:hover { border-color: var(--accent-gold); box-shadow: var(--shadow-glow); transform: translateY(-4px); }
.lane-route { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.lane-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent-gold); flex-shrink: 0; box-shadow: 0 0 8px rgba(245,166,35,0.5); }
.lane-route span { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; color: #ffffff; }
.lane-card p { font-size: 0.87rem; color: rgba(255, 255, 255, 0.85); line-height: 1.7; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.value-card {
  background: var(--bg-card); border: 1px solid var(--border-amber);
  border-radius: var(--radius-md); padding: 28px 22px; text-align: center;
  transition: var(--transition); box-shadow: var(--shadow-card);
}
.value-card:hover { border-color: var(--accent-gold); box-shadow: var(--shadow-glow); transform: translateY(-6px); }
.value-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.value-card h4 { color: var(--text-heading); font-size: 1rem; margin-bottom: 10px; }
.value-card p { font-size: 0.84rem; color: var(--text-body); line-height: 1.65; }

.certifications-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.cert-card {
  background: var(--bg-card); border: 1px solid var(--border-amber); border-radius: var(--radius-md);
  padding: 28px 22px; text-align: center; transition: var(--transition); box-shadow: var(--shadow-card);
}
.cert-card:hover { border-color: var(--accent-gold); box-shadow: var(--shadow-glow); transform: translateY(-4px); }
.cert-icon { font-size: 2.4rem; margin-bottom: 12px; display: block; }
.cert-card h4 { color: var(--text-heading); font-size: 0.95rem; margin-bottom: 6px; }
.cert-card p { font-size: 0.82rem; color: var(--text-body); }

/* =====================================================
   FLOATING WHATSAPP
   ===================================================== */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 56px; height: 56px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition);
  animation: float-bounce 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }

@keyframes float-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Service detail pages */
.service-detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.service-detail-img { border-radius: var(--radius-md); overflow: hidden; height: 380px; border: 1px solid var(--border-amber); margin-bottom: 36px; box-shadow: var(--shadow-card); }
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-main h2 { font-size: 1.4rem; margin: 32px 0 16px; color: var(--text-heading); }
.service-detail-main p { font-size: 0.95rem; line-height: 1.85; margin-bottom: 16px; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.feature-box {
  background: var(--bg-card); border: 1px solid var(--border-amber); border-radius: 12px;
  padding: 20px; transition: var(--transition); box-shadow: var(--shadow-card);
}
.feature-box:hover { border-color: var(--accent-gold); box-shadow: var(--shadow-glow); }
.feature-box i { color: var(--accent-gold); font-size: 1.3rem; margin-bottom: 10px; display: block; }
.feature-box h4 { color: var(--text-heading); font-size: 0.95rem; margin-bottom: 6px; }
.feature-box p { font-size: 0.82rem; color: var(--text-body); }
.sidebar-card { background: var(--bg-card); border: 1px solid var(--border-amber); border-radius: var(--radius-md); padding: 28px; margin-bottom: 20px; box-shadow: var(--shadow-card); }
.sidebar-card h3 { font-size: 1rem; color: var(--text-heading); margin-bottom: 16px; }
.sidebar-links li { margin-bottom: 8px; }
.sidebar-links li a { font-size: 0.88rem; color: var(--text-body); display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 6px; transition: var(--transition); }
.sidebar-links li a:hover, .sidebar-links li a.current { color: var(--accent-gold); background: rgba(245,166,35,0.07); padding-left: 14px; }
.quick-contact a { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; transition: var(--transition); margin-bottom: 10px; }
.quick-contact a.email { background: rgba(245,166,35,0.10); color: var(--accent-gold); border: 1px solid var(--border-amber); }
.quick-contact a.email:hover { background: rgba(245,166,35,0.18); }
.quick-contact a.wa { background: #1a9e4b; color: #ffffff; border: 1px solid #15803d; font-weight: 700; }
.quick-contact a.wa:hover { background: #15803d; box-shadow: 0 4px 14px rgba(21,128,61,0.35); transform: translateY(-1px); }

/* Region cards */
.regions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; margin-bottom: 64px; }
.region-card { 
  background: var(--accent-gold); /* Deep Navy Blue */
  border: 1px solid var(--accent-orange); 
  border-radius: var(--radius-lg); padding: 32px 28px; transition: var(--transition); 
  box-shadow: var(--shadow-card); position: relative; overflow: hidden;
}
[data-theme="dark"] .region-card { border-color: rgba(255,255,255,0.15); }

.region-card:hover { border-color: var(--accent-orange); box-shadow: var(--shadow-xl); transform: translateY(-8px); }
.region-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.region-flag { font-size: 2.2rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); }
.region-header h3 { font-size: 1.25rem; color: #ffffff; margin-bottom: 2px; font-weight: 800; }
.region-header span { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 600; }
.region-card p { font-size: 0.92rem; color: rgba(255,255,255,0.9); margin-bottom: 24px; line-height: 1.8; }
.region-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.region-tag { 
  padding: 5px 14px; background: var(--accent-orange); border: 1px solid rgba(0,0,0,0.1); 
  border-radius: 100px; font-size: 0.78rem; color: #ffffff; font-weight: 800; 
  transition: var(--transition); box-shadow: 0 4px 10px rgba(185,28,28,0.2); 
}
.region-tag:hover { transform: scale(1.08); box-shadow: 0 6px 15px rgba(185,28,28,0.4); background: #991b1b; }

.coverage-stats { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--bg-card); border: 2px solid var(--accent-gold); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 56px; box-shadow: var(--shadow-xl); }
.coverage-stat { padding: 32px 20px; text-align: center; border-right: 1px solid var(--border-amber); transition: var(--transition); }
.coverage-stat:hover { background: rgba(245, 166, 35, 0.03); }
.coverage-stat:last-child { border-right: none; }
.coverage-stat .num { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800; color: var(--accent-gold); display: inline-block; line-height: 1; }
.coverage-stat .label { font-size: 0.9rem; font-weight: 600; color: var(--text-body); margin-top: 8px; display: block; text-transform: uppercase; letter-spacing: 0.05em; }

/* --- SERVICES FULL PAGE --- */
.service-full-card {
  background: var(--gradient-card); border: 1.5px solid var(--border-amber); border-radius: var(--radius-lg);
  padding: 64px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; transition: var(--transition); margin-bottom: 40px;
  position: relative; overflow: hidden; box-shadow: var(--shadow-card);
}
.service-full-card.reverse { direction: rtl; }
.service-full-card.reverse > * { direction: ltr; }
.service-full-img { border-radius: 10px; overflow: hidden; height: 320px; border: 1px solid var(--border-amber); }
.service-full-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-full-card:hover .service-full-img img { transform: scale(1.05); }
.service-full-body h3 { font-size: 1.8rem; margin-bottom: 16px; color: var(--text-heading); }
.service-icon { font-size: 2rem; margin-bottom: 15px; }
.service-number { position: absolute; top: 20px; right: 24px; font-family: var(--font-heading); font-size: 4rem; font-weight: 800; color: rgba(245,166,35,0.06); line-height: 1; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; list-style: none; }
.feature-list li { display: flex; gap: 10px; align-items: center; font-size: 0.92rem; color: var(--text-body); }
.feature-list li i { color: var(--accent-gold); font-size: 0.8rem; }

/* --- ABOUT PAGE --- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-image { border-radius: var(--radius-lg); overflow: hidden; height: 520px; border: 1px solid var(--border-amber); position: relative; box-shadow: var(--shadow-card); }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-image-badge { position: absolute; bottom: 24px; left: 24px; background: rgba(15, 23, 42, 0.9); border: 1.5px solid var(--accent-orange); border-radius: 12px; padding: 14px 20px; backdrop-filter: blur(10px); z-index: 10; box-shadow: 0 10px 25px rgba(0,0,0,0.4); }
.story-image-badge.pill { border-radius: 100px; padding: 8px 18px; bottom: 20px; left: 20px; display: flex; align-items: center; gap: 12px; }
.story-image-badge .num { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: #ffffff; display: block; line-height: 1; }
.story-image-badge.pill .num { font-size: 1.2rem; }
.story-image-badge .lbl { font-size: 0.7rem; color: rgba(255,255,255,0.7); text-transform: uppercase; font-weight: 700; letter-spacing: 0.1em; display: block; margin-top: 4px; }
.story-image-badge.pill .lbl { margin-top: 0; white-space: nowrap; }

@media (max-width: 768px) {
  .story-image-badge { bottom: auto; top: 16px; left: 16px; transform: scale(0.95); }
}

.google-badge { display: inline-flex; align-items: center; gap: 24px; background: var(--gradient-card); border: 1.5px solid var(--border-amber); border-radius: var(--radius-lg); padding: 24px 32px; margin-top: 32px; box-shadow: var(--shadow-card); }
.google-badge .rating-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--accent-gold); }

.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 12px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--accent-gold), transparent); }
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before { content: ''; position: absolute; left: -34px; top: 6px; width: 14px; height: 14px; background: var(--accent-gold); border-radius: 50%; box-shadow: 0 0 12px rgba(245,166,35,0.5); }
.timeline-item h4 { color: #ffffff; margin-bottom: 6px; font-size: 1rem; }
.timeline-item p { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; }

/* --- CONTACT PAGE --- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }
.contact-form-wrapper { background: var(--gradient-card); border: 1px solid var(--border-amber); border-radius: var(--radius-md); padding: 44px 36px; position: relative; overflow: hidden; }
.contact-form-wrapper::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-cta); }
.submit-btn { width: 100%; padding: 16px; background: var(--gradient-cta); color: #000; font-weight: 700; font-size: 1rem; border-radius: var(--radius-sm); cursor: pointer; border: none; font-family: var(--font-heading); transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px; }
.submit-btn:hover { box-shadow: 0 8px 30px rgba(245,166,35,0.4); transform: translateY(-2px); }
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-card-lg { background: var(--gradient-card); border: 1px solid var(--border-amber); border-radius: var(--radius-md); padding: 28px; transition: var(--transition); }
.contact-card-lg:hover { border-color: var(--accent-gold); box-shadow: var(--shadow-glow); }
.whatsapp-card { background: linear-gradient(135deg, rgba(37,211,102,0.12), rgba(37,211,102,0.05)); border: 1px solid rgba(37,211,102,0.25); border-radius: var(--radius-md); padding: 24px; text-align: center; transition: var(--transition); }
.whatsapp-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; background: #25d366; color: white; border-radius: 6px; font-weight: 700; font-size: 0.9rem; transition: var(--transition); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hours-item { padding: 10px; background: rgba(255,255,255,0.03); border-radius: 6px; border: 1px solid rgba(255,255,255,0.06); }

/* --- COVERAGE PAGE RE-STYLING --- */
.regions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-bottom: 64px; }
.region-card { background: #1c1e4a; border: 1px solid var(--border-amber); border-radius: var(--radius-md); padding: 32px 28px; transition: var(--transition); color: #ffffff; }
.region-card:hover { border-color: var(--accent-gold); box-shadow: var(--shadow-glow), var(--shadow-card); transform: translateY(-6px); }
.big-map-container { background: var(--gradient-card); border: 1px solid var(--border-amber); border-radius: var(--radius-md); padding: 32px; margin-bottom: 64px; overflow: hidden; }

/* =====================================================
   RESPONSIVE DESIGN (Enhanced Mobile Experience)
   ===================================================== */

/* Tablet & Large Mobile (1024px and down) */
@media (max-width: 1024px) {
  .section { padding: 80px 0; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { margin: 0 auto; max-width: 700px; padding-bottom: 40px; padding-top: 140px; }
  .floating-globe { display: none !important; }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* Specific Mobile Breakpoint (900px and down) */
@media (max-width: 900px) {
  .nav-inner { padding: 8px 0; }
  
  .nav-logo-icon { width: 42px; height: 42px; }
  .nav-logo-name { font-size: 0.9rem; white-space: normal; max-width: 150px; }
  .nav-logo-tag { display: none; }

  .hamburger { display: flex; z-index: 1000; }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background: var(--bg-nav);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    box-shadow: -15px 0 45px rgba(0,0,0,0.5);
    padding: 60px 40px;
  }
  
  .nav-links.open { right: 0; }
  .nav-links a { width: auto; font-size: 1.5rem; text-align: center; color: #ffffff !important; font-weight: 700; transition: 0.3s ease; }
  .nav-links a:active { transform: scale(0.95); opacity: 0.8; }
  .nav-cta { width: 100%; max-width: 250px; text-align: center; margin-top: 10px; }
  
  body.menu-open { overflow: hidden; }
  
  .theme-toggle { margin-left: auto; margin-right: 12px; z-index: 1000; }
  .theme-toggle .toggle-label { display: none; }
  
  /* Hero Overlap Fix */
  .hero-content { padding-top: 120px; text-align: center; }
  .hero-inner { padding-bottom: 60px; }
  
  .contact-layout { grid-template-columns: 1fr !important; }
}

/* standard Mobile (768px and down) */
@media (max-width: 768px) {
  .section-title { font-size: 2.2rem; }
  .hero-title { font-size: 2.8rem; }
  
  /* Layout Stacking */
  .stats-grid, 
  .services-grid, 
  .team-grid, 
  .footer-grid, 
  .regions-grid,
  .coverage-stats,
  .story-grid,
  .certifications-grid,
  .feature-list { 
    grid-template-columns: 1fr !important; 
    gap: 32px;
  }

  /* Inline styles & specifically structured grids */
  div[style*="display:grid"], 
  div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .service-full-card { 
    grid-template-columns: 1fr !important; 
    padding: 40px 24px; 
    direction: ltr !important;
  }
  .service-full-card > * { direction: ltr !important; }
  .service-full-img { height: 260px; }

  .story-image { height: 350px !important; }
  .world-map-container, 
  .big-map-container { 
    min-height: 320px !important;
  }
  
  .coverage-stat { border-right: none !important; border-bottom: 1px solid var(--border-amber); padding: 24px 16px !important; }
  .coverage-stat:last-child { border-bottom: none; }
  
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 20px; }
  
  .hero-ctas { flex-direction: column; gap: 16px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  
  /* Intro Screen */
  .intro-logo-outer { width: 130px; height: 130px; }
  .intro-title { font-size: 2.8rem; }
}

/* Small Device (480px and down) */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-title { font-size: 1.8rem; }
  .hero-title { font-size: 2.2rem; line-height: 1.2; }
  .hero-description { font-size: 0.95rem; line-height: 1.6; }
  
  .nav-logo-name { font-size: 0.85rem; max-width: 120px; }
  
  .stats-grid { grid-template-columns: 1fr !important; }
  .contact-form-wrapper { padding: 28px 18px; }
  .service-full-card { padding: 32px 16px; }
  
  .coverage-stat .num { font-size: 2.2rem; }
}




/* =====================================================
   HERO GLOBE — Premium 3D Animated Globe
   ===================================================== */
.floating-globe {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  z-index: 1;
}
@media (max-width: 1100px) { .floating-globe { display: none; } }

/* ---- Outer glow ring ---- */
.globe-shadow {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 320px; height: 40px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.35) 0%, transparent 75%);
  border-radius: 50%;
  filter: blur(12px);
}

/* ---- Sphere core ---- */
.globe-sphere {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.18) 0%, transparent 42%),
    radial-gradient(circle at 68% 72%, rgba(0,0,0,0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, #2563EB 0%, #1048C8 35%, #0A2D8A 65%, #04195A 100%);
  box-shadow:
    inset -18px -18px 40px rgba(0,0,0,0.35),
    inset 10px 10px 24px rgba(255,255,255,0.10),
    0 12px 50px rgba(37,99,235,0.50),
    0 0 80px rgba(8,145,178,0.22);
  overflow: hidden;
}

/* grid lines on sphere */
.globe-sphere::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(255,255,255,0.07) 29px),
    repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(255,255,255,0.05) 29px);
  border-radius: 50%;
}
/* Highlight shimmer */
.globe-sphere::after {
  content: '';
  position: absolute;
  top: 8%; left: 14%;
  width: 35%; height: 30%;
  background: radial-gradient(circle, rgba(255,255,255,0.22) 0%, transparent 80%);
  border-radius: 50%;
  filter: blur(6px);
}

/* ---- Continent shapes on sphere ---- */
.globe-continents {
  position: absolute; inset: 0; border-radius: 50%;
  overflow: hidden;
  animation: globe-rotate 22s linear infinite;
}
.globe-continents svg { width: 100%; height: 100%; }

@keyframes globe-rotate {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}

/* ---- Orbital rings ---- */
.globe-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1.5px solid transparent;
  transform-origin: center center;
}

/* Equatorial ring */
.globe-ring:nth-child(1) {
  width: 340px; height: 340px;
  margin: -170px 0 0 -170px;
  border-color: rgba(37,99,235,0.35);
  box-shadow: 0 0 12px rgba(37,99,235,0.15);
  animation: spin-eq 18s linear infinite;
}
/* Tilted meridian ring 1 */
.globe-ring:nth-child(2) {
  width: 320px; height: 320px;
  margin: -160px 0 0 -160px;
  border-color: rgba(8,145,178,0.30);
  border-style: dashed;
  animation: spin-m1 24s linear infinite reverse;
  transform: rotate(65deg) rotateX(72deg);
}
/* Tilted meridian ring 2 */
.globe-ring:nth-child(3) {
  width: 360px; height: 360px;
  margin: -180px 0 0 -180px;
  border-color: rgba(99,165,250,0.18);
  border-style: dashed;
  animation: spin-m2 32s linear infinite;
  transform: rotate(-45deg) rotateX(65deg);
}
/* Outer glow ring */
.globe-ring:nth-child(4) {
  width: 420px; height: 420px;
  margin: -210px 0 0 -210px;
  border-color: rgba(37,99,235,0.10);
  animation: spin-eq 40s linear infinite reverse;
}

@keyframes spin-eq {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes spin-m1 {
  from { transform: rotate(65deg) rotateX(72deg); }
  to   { transform: rotate(425deg) rotateX(72deg); }
}
@keyframes spin-m2 {
  from { transform: rotate(-45deg) rotateX(65deg); }
  to   { transform: rotate(315deg) rotateX(65deg); }
}

/* ---- Location pins ---- */
.globe-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.pin-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent-gold-bright);
  box-shadow: 0 0 0 0 rgba(37,99,235,0.7);
  animation: pin-pulse 2.5s ease-out infinite;
  flex-shrink: 0;
  position: relative;
}
.pin-dot.pin-hq {
  width: 14px; height: 14px;
  background: #F59E0B;
  border-color: #fff;
  box-shadow: 0 0 0 0 rgba(245,158,11,0.7);
  animation: pin-pulse-hq 2s ease-out infinite;
}

@keyframes pin-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,99,235,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(37,99,235,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}
@keyframes pin-pulse-hq {
  0%   { box-shadow: 0 0 0 0 rgba(245,158,11,0.8); }
  70%  { box-shadow: 0 0 0 14px rgba(245,158,11,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}

.pin-label {
  background: rgba(255,255,255,0.95);
  color: #0C1A44;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(37,99,235,0.18);
  box-shadow: 0 2px 8px rgba(37,99,235,0.12);
  white-space: nowrap;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
}
[data-theme="dark"] .pin-label {
  background: rgba(13,30,58,0.92);
  color: #E0EAFF;
  border-color: rgba(96,165,250,0.25);
}

/* Pin positions (relative to the 460x460 .floating-globe container) */
.pin-india  { top: 43%; left: 55%; animation-delay: 0s; }
.pin-usa    { top: 35%; left: 12%; animation-delay: 0.4s; }
.pin-europe { top: 22%; left: 40%; animation-delay: 0.8s; }
.pin-uae    { top: 50%; left: 46%; animation-delay: 1.2s; }
.pin-sg     { top: 58%; left: 62%; animation-delay: 1.6s; }
.pin-aus    { top: 70%; left: 56%; animation-delay: 2.0s; }

/* animate each pin in after page load */
.globe-pin {
  opacity: 0;
  animation: pin-appear 0.6s ease forwards;
}
.pin-india  { animation-delay: 1.2s; }
.pin-usa    { animation-delay: 1.6s; }
.pin-europe { animation-delay: 2.0s; }
.pin-uae    { animation-delay: 2.4s; }
.pin-sg     { animation-delay: 2.8s; }
.pin-aus    { animation-delay: 3.2s; }
@keyframes pin-appear {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Connection lines between pins (decorative SVG layer) */
.globe-connectors {
  position: absolute; inset: 0; pointer-events: none; z-index: 3;
}

/* ---- Globe core (hidden — replaced by .globe-sphere) ---- */
.globe-core { display: none; }

/* Big map container on coverage page */
.big-map-container { background: var(--bg-card); border: 1px solid var(--border-amber); border-radius: var(--radius-md); padding: 32px; margin-bottom: 64px; overflow: hidden; box-shadow: var(--shadow-card); }
/* =====================================================
   INTRO SCREEN ANIMATION
   ===================================================== */
body.intro-active {
  overflow: hidden;
}

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, #1e1b4b, #0f172a);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
  overflow: hidden;
}

.intro-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-content {
  text-align: center;
  position: relative;
  z-index: 2;
  animation: introPop 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-logo-outer {
  width: 160px;
  height: 160px;
  background: #ffffff;
  border-radius: 24px; /* Large Rounded Square */
  padding: 20px;
  margin: 0 auto 35px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--accent-orange);
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.intro-logo-outer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.intro-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-weight: 800;
  text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.intro-title span {
  color: #F5A623;
  font-size: 0.45em;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  opacity: 1;
  margin-top: 4px;
}

.intro-copy {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.intro-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 12rem);
  font-weight: 900;
  color: #ffffff;
  white-space: nowrap;
  user-select: none;
  letter-spacing: 0.1em;
}

@keyframes introPop {
  0% { transform: scale(0.8); opacity: 0; filter: blur(10px); }
  100% { transform: scale(1); opacity: 1; filter: blur(0); }
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.intro-logo-outer {
  animation: floatLogo 4s ease-in-out infinite;
}
