/* ====================================================
   ZEAL INTERNATIONAL - Main Stylesheet
   Premium Corporate Export B2B Website
   Golden Ratio Typography System
   ==================================================== */

/* ---- GOOGLE FONTS + ROOT VARIABLES ---- */
:root {
  /* Brand Colors */
  --navy: #1b2a4a;
  --navy-dark: #0f1d36;
  --navy-mid: #243552;
  --navy-light: #2e4470;
  --orange: #e8650a;
  --orange-light: #f07c2e;
  --gold: #c89b2a;
  --gold-light: #d4ae45;
  --white: #ffffff;
  --bg: #f8fafc;
  --bg-alt: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --border-dark: #cbd5e1;

  /* Golden Ratio Typography Scale (base: 16px × 1.618) */
  --fs-xs: 0.618rem; /* ~9.9px */
  --fs-sm: 0.764rem; /* ~12.2px */
  --fs-base: 1rem; /* 16px */
  --fs-md: 1.236rem; /* ~19.8px */
  --fs-lg: 1.618rem; /* ~25.9px */
  --fs-xl: 2.058rem; /* ~32.9px */
  --fs-2xl: 2.618rem; /* ~41.9px */
  --fs-3xl: 3.236rem; /* ~51.8px */
  --fs-4xl: 4.236rem; /* ~67.8px */
  --fs-hero: clamp(2rem, 3.8vw, 3.25rem);
  --fs-h1: clamp(2rem, 4vw, 3.236rem);
  --fs-h2: clamp(1.6rem, 3vw, 2.618rem);
  --fs-h3: clamp(1.25rem, 2vw, 2.058rem);
  --fs-h4: clamp(1.1rem, 1.5vw, 1.618rem);

  /* Spacing */
  --section-py-lg: 120px;
  --section-py-md: 100px;
  --section-py-sm: 70px;

  /* Radius */
  --radius-card: 20px;
  --radius-btn: 12px;
  --radius-sm: 8px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 29, 54, 0.06);
  --shadow-md: 0 8px 30px rgba(15, 29, 54, 0.1);
  --shadow-lg: 0 20px 60px rgba(15, 29, 54, 0.14);
  --shadow-xl: 0 30px 80px rgba(15, 29, 54, 0.18);

  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.25s ease;

  /* Fonts - Premium 3-font stack */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-heading:  'Outfit', system-ui, sans-serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
}

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-primary);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
  line-height: 1.85;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ====================================================
   HEADER / NAVIGATION
   ==================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 40px rgba(27, 42, 74, 0.1);
}

/* Top Bar */
.header-topbar {
  background: var(--navy-dark);
  padding: 7px 0;
  font-size: var(--fs-sm);
}

.topbar-link {
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition-fast);
}
.topbar-link:hover {
  color: var(--gold);
}
.topbar-link i {
  color: var(--gold);
}

.topbar-divider {
  color: rgba(255, 255, 255, 0.2);
}

.topbar-badge {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
}

.topbar-whatsapp {
  background: rgba(37, 211, 102, 0.18);
  color: #25d366;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.75rem;
  transition: var(--transition-fast);
}
.topbar-whatsapp:hover {
  background: #25d366;
  color: white;
}

/* Navbar */
.navbar {
  padding: 14px 0;
  transition: var(--transition);
}

.logo-img {
  height: 56px;
  width: auto;
  transition: var(--transition);
}

.site-header.scrolled .logo-img {
  height: 48px;
}

/* Nav Links */
.nav-link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  position: relative;
  letter-spacing: 0.01em;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange) !important;
  background: rgba(232, 101, 10, 0.06);
}

/* CTA Nav Button */
.btn-nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white !important;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 24px !important;
  border-radius: var(--radius-btn) !important;
  border: none;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(232, 101, 10, 0.3);
  transition: var(--transition);
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 101, 10, 0.45);
  color: white !important;
}

/* Custom Hamburger */
.custom-toggler {
  border: none;
  background: transparent;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.toggler-line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

/* Header spacer */
.header-spacer {
  height: 74px; /* navbar only */
}

/* ====================================================
   SECTION UTILITIES
   ==================================================== */
.section-py {
  padding: var(--section-py-lg) 0;
}
.section-py-md {
  padding: var(--section-py-md) 0;
}
.section-py-sm {
  padding: var(--section-py-sm) 0;
}
.section-bg-alt {
  background: var(--bg-alt);
}
.section-bg-navy {
  background: var(--navy);
}
.section-bg-dark {
  background: var(--navy-dark);
}

/* Section Label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* Section Heading */
.section-heading {
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.section-heading .highlight {
  color: var(--orange);
}
.section-heading .gold {
  color: var(--gold);
}

/* Section Intro */
.section-intro {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 680px;
}

/* ====================================================
   BUTTONS
   ==================================================== */
.btn-primary-zeal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white !important;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: var(--radius-btn);
  border: none;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(232, 101, 10, 0.35);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary-zeal:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(232, 101, 10, 0.5);
  color: white !important;
}

.btn-outline-zeal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white !important;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  border: 2px solid rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(8px);
}

.btn-outline-zeal:hover {
  background: white;
  color: var(--navy) !important;
  border-color: white;
  transform: translateY(-3px);
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: white !important;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  border: none;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white !important;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark) !important;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: var(--radius-btn);
  border: none;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 155, 42, 0.4);
  color: var(--navy-dark) !important;
}

/* ====================================================
   HERO SECTION - PREMIUM REDESIGN
   ==================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  margin-top: -74px;
  padding-top: 94px;
  padding-bottom: 30px;
  background: #080e1e;
  overflow: hidden;
}

/* ---- Background Orbs ---- */
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 101, 10, 0.18) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: orbFloat1 14s ease-in-out infinite;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 155, 42, 0.14) 0%, transparent 70%);
  bottom: -150px;
  left: -80px;
  animation: orbFloat2 18s ease-in-out infinite;
}

.hero-orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(27, 42, 74, 0.6) 0%, transparent 70%);
  top: 40%;
  left: 35%;
  animation: orbFloat1 22s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -40px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.97); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(40px, -30px) scale(1.08); }
}

/* ---- Grid overlay ---- */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* ---- LEFT Content ---- */
.hero-content {
  position: relative;
  z-index: 2;
}

/* Label pill */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 101, 10, 0.1);
  border: 1px solid rgba(232, 101, 10, 0.3);
  color: var(--orange-light);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeInDown 0.7s ease both;
}

.hero-label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulseDot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(232,101,10,0.5); }
  50%       { opacity: 0.85; box-shadow: 0 0 0 5px rgba(232,101,10,0); }
}

/* Headline */
.hero-headline {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(1.5rem, 1.85vw, 2.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-headline-gradient {
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--gold) 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradientShift 5s linear infinite;
}

@keyframes gradientShift {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Typewriter tagline */
.hero-tagline-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  animation: fadeInUp 0.8s ease 0.2s both;
  min-height: 32px;
}

.hero-tagline-prefix {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  white-space: nowrap;
}

.hero-typewriter {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
}

.hero-cursor {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--orange);
  font-weight: 300;
  animation: blinkCursor 0.9s step-end infinite;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Description */
.hero-description {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* CTA Buttons */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border-radius: 14px;
  text-decoration: none;
  overflow: hidden;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 24px rgba(232, 101, 10, 0.35);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(232, 101, 10, 0.5);
}

.hero-btn-inner {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--orange) 0%, #f07028 60%, var(--orange) 100%);
  background-size: 200% auto;
  color: white;
  transition: background-position 0.5s ease;
  border-radius: 14px;
}

.hero-btn-primary:hover .hero-btn-inner {
  background-position: right center;
}

.hero-btn-glow {
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), var(--gold), var(--orange));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  filter: blur(8px);
}

.hero-btn-primary:hover .hero-btn-glow {
  opacity: 0.4;
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: var(--transition);
}

.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.35);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* Stats Strip */
.hero-stats-strip {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 14px 20px;
  animation: fadeInUp 0.8s ease 0.55s both;
  backdrop-filter: blur(10px);
  max-width: 520px;
}

.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 800;
  color: white;
  line-height: 1;
}

.hero-stat-plus {
  color: var(--orange);
  font-size: 0.9em;
}

.hero-stat-lbl {
  font-family: var(--font-heading);
  font-size: 0.66rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.hero-stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  margin: 0 4px;
}

/* ---- RIGHT: Premium Visual Card ---- */
.hero-visual-col {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  animation: fadeInRight 0.9s ease 0.3s both;
}

.hero-visual-card {
  width: 100%;
  max-width: 540px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.05) inset;
}

/* Card Header */
.hvc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hvc-header-dots {
  display: flex;
  gap: 6px;
}

.hvc-header-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hvc-header-dots span:nth-child(1) { background: #ff5f57; }
.hvc-header-dots span:nth-child(2) { background: #febc2e; }
.hvc-header-dots span:nth-child(3) { background: #28c840; }

.hvc-header-title {
  flex: 1;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 7px;
}

.hvc-header-title i {
  color: var(--orange-light);
  font-size: 0.85rem;
}

.hvc-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(40, 200, 80, 0.15);
  border: 1px solid rgba(40, 200, 80, 0.3);
  color: #4ade80;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.1em;
}

.hvc-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulseDot 1.5s ease-in-out infinite;
}

/* Map Area */
.hvc-map-area {
  position: relative;
  padding: 10px 16px 6px;
}

.hvc-world-svg {
  width: 100%;
  height: auto;
  display: block;
}

.hvc-india-badge {
  position: absolute;
  bottom: 16px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(232,101,10,0.9), rgba(200,155,42,0.9));
  color: white;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(232,101,10,0.35);
}

/* Product Chips */
.hvc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 16px 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hvc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: transform 0.2s ease;
  cursor: default;
}

.hvc-chip:hover {
  transform: translateY(-2px);
}

.chip-orange {
  background: rgba(232,101,10,0.15);
  border: 1px solid rgba(232,101,10,0.3);
  color: var(--orange-light);
}

.chip-gold {
  background: rgba(200,155,42,0.15);
  border: 1px solid rgba(200,155,42,0.3);
  color: var(--gold-light);
}

.chip-white {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
}

/* Card Footer */
.hvc-footer {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 12px 18px;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hvc-footer-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.3;
}

.hvc-footer-item i {
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.hvc-footer-sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ---- Scroll Indicator ---- */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
  animation: fadeIn 1s ease 1.2s both;
}

.hero-scroll span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  position: relative;
}

.scroll-mouse::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { opacity: 0; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1; transform: translateX(-50%) translateY(8px); }
}



/* ====================================================
   TRUST BAR - PREMIUM DARK
   ==================================================== */
.trust-bar {
  background: linear-gradient(135deg, #0a1628 0%, #0f1f3d 100%);
  padding: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  position: relative;
  z-index: 1;
}

.trust-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 36px;
  transition: background 0.25s ease;
}

.trust-stat-item:hover {
  background: rgba(255,255,255,0.04);
}

.tsi-num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 900;
  color: white;
  line-height: 1;
  display: block;
}

.tsi-suffix {
  color: var(--orange);
  font-size: 0.7em;
}

.tsi-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 5px;
  display: block;
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 24px 28px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  transition: color 0.25s ease;
}

.trust-badge-item:hover {
  color: var(--gold-light);
}

.trust-badge-item i {
  color: var(--gold);
  font-size: 1rem;
}


/* ====================================================
   ABOUT PREVIEW (HOME)
   ==================================================== */
.about-preview {
  padding: var(--section-py-lg) 0;
  background: var(--bg);
  position: relative;
}

.about-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--orange) 0%, var(--gold) 50%, transparent 100%);
  opacity: 0;
}

.about-content-side {
  padding-right: 40px;
}

.about-para {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: white;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.value-card-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: white;
  flex-shrink: 0;
}

.value-card-content .vc-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  display: block;
}

.value-card-content .vc-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* About Visual */
.about-visual-side {
  position: relative;
}

.about-globe-container {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 24px;
  overflow: hidden;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.about-globe-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(200, 155, 42, 0.07) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
}

.about-globe-svg {
  width: 200px;
  height: 200px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 16px 40px rgba(232, 101, 10, 0.25));
  animation: globeFloat 7s ease-in-out infinite;
}

.about-stats-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.about-stat-box {
  text-align: center;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.about-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
  line-height: 1;
}

.about-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  display: block;
  letter-spacing: 0.04em;
}

/* ====================================================
   PRODUCT CATEGORIES (HOME OVERVIEW)
   ==================================================== */
.product-cat-section {
  padding: var(--section-py-lg) 0;
  background: linear-gradient(180deg, #f4f6fb 0%, #eef1f8 100%);
  position: relative;
}

.product-cat-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--orange));
  background-size: 200% auto;
  animation: gradientShift 5s linear infinite;
}

.product-cat-card {
  background: white;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.product-cat-card-header {
  padding: 32px 28px 24px;
  position: relative;
  overflow: hidden;
}

.product-cat-card.navy-theme .product-cat-card-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.product-cat-card.orange-theme .product-cat-card-header {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
}

.product-cat-card.gold-theme .product-cat-card-header {
  background: linear-gradient(135deg, #8b5e1a, var(--gold));
}

.cat-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cat-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}

.cat-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-cat-card-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cat-product-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.cat-product-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition-fast);
}

.cat-product-list li:last-child {
  border-bottom: none;
}

.cat-product-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.cat-product-list li:hover {
  color: var(--navy);
  padding-left: 4px;
}

.cat-cta {
  margin-top: 20px;
}

.btn-cat-quote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
  text-decoration: none;
}

.btn-cat-quote:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  transform: translateX(4px);
}

/* ====================================================
   SERVICES SECTION
   ==================================================== */
.services-section {
  padding: var(--section-py-lg) 0;
  background: var(--bg);
  position: relative;
}

.service-card {
  background: white;
  border-radius: var(--radius-card);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    rgba(27, 42, 74, 0.08),
    rgba(27, 42, 74, 0.04)
  );
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  border-color: transparent;
}

.service-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(27, 42, 74, 0.05);
  line-height: 1;
  transition: var(--transition);
}

.service-card:hover .service-number {
  color: rgba(232, 101, 10, 0.08);
}

.service-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ====================================================
   VALUE-ADDED SERVICES
   ==================================================== */
.vas-section {
  padding: var(--section-py-lg) 0;
  background: #f8f9fc;
}

.vas-intro-block {
  background: linear-gradient(135deg, #050d1e, #0a1628, #0f1f3d);
  border-radius: var(--radius-card);
  padding: 52px 52px;
  color: white;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
}

.vas-intro-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(200, 155, 42, 0.06) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}

.vas-intro-block::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,101,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.vas-intro-block .section-label {
  color: var(--gold-light);
}
.vas-intro-block .section-label::before {
  background: var(--gold);
}
.vas-intro-block .section-heading {
  color: white;
}
.vas-intro-block .section-intro {
  color: rgba(255, 255, 255, 0.7);
}

.vas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.vas-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 22px;
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.vas-item:hover {
  border-color: rgba(232,101,10,0.25);
  box-shadow: 0 8px 24px rgba(232,101,10,0.1);
  transform: translateY(-3px);
}

.vas-check {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(232,101,10,0.3);
}

.vas-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 500;
  padding-top: 4px;
}

/* ====================================================
   WHY CHOOSE US
   ==================================================== */
.why-us-section {
  padding: var(--section-py-lg) 0;
  background: linear-gradient(180deg, #f0f3fa 0%, #e8edf5 100%);
}

.why-card {
  background: white;
  border-radius: var(--radius-card);
  padding: 36px 30px;
  border: 1px solid rgba(0,0,0,0.06);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, rgba(232,101,10,0.02) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.why-card:hover::after {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.why-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(27, 42, 74, 0.04);
  line-height: 0.8;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.why-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 22px;
  transition: var(--transition);
}

.why-card:hover .why-icon-wrap {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
}

.why-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ====================================================
   INQUIRY CTA SECTION - PREMIUM DARK
   ==================================================== */
.inquiry-cta-section {
  padding: 110px 0;
  background: linear-gradient(135deg, #050d1e 0%, #0a1628 50%, #0f1f3d 100%);
  position: relative;
  overflow: hidden;
}

.cta-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cta-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,101,10,0.15) 0%, transparent 70%);
  top: -150px;
  right: 5%;
  animation: orbFloat1 16s ease-in-out infinite;
}

.cta-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,155,42,0.1) 0%, transparent 70%);
  bottom: -100px;
  left: 5%;
  animation: orbFloat2 20s ease-in-out infinite;
}

.cta-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.inquiry-cta-wrap {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232,101,10,0.12);
  border: 1px solid rgba(232,101,10,0.3);
  color: var(--orange-light);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.cta-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulseDot 2s ease-in-out infinite;
  flex-shrink: 0;
}

.cta-heading {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta-heading-accent {
  background: linear-gradient(135deg, var(--orange-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 44px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cta-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.cta-btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  color: white;
}

.contact-preview-section {
  padding: 80px 0;
  background: var(--bg);
}

.contact-card {
  background: white;
  border-radius: var(--radius-card);
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.contact-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  border-color: rgba(232,101,10,0.25);
  transform: translateY(-3px);
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-card-icon.orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
}
.contact-card-icon.navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white;
}
.contact-card-icon.green {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}
.contact-card-icon.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
}

.contact-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: block;
}

.contact-card-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1.3;
}

/* ====================================================
   PAGE HERO INNER (for inner pages)
   ==================================================== */
.page-hero {
  background: linear-gradient(135deg, rgba(15, 29, 54, 0.85), rgba(27, 42, 74, 0.9)), url('../images/inner-hero-bg.png') center center / cover no-repeat;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(200, 155, 42, 0.06) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.page-breadcrumb a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  transition: var(--transition-fast);
}

.page-breadcrumb a:hover {
  color: var(--gold);
}

.page-breadcrumb .bc-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
}

.page-breadcrumb .bc-current {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 600px;
}

/* ====================================================
   PRODUCTS PAGE
   ==================================================== */
.products-search-bar {
  background: white;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.search-input-wrap {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  border: 2px solid var(--border);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}

.search-input:focus {
  border-color: var(--navy);
  background: white;
  box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.08);
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
}

.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-tab {
  padding: 9px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* Full Products Page Card */
.product-page-card {
  background: white;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-page-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.ppc-header {
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
}

.ppc-header.navy-grad {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.ppc-header.orange-grad {
  background: linear-gradient(135deg, #c94a00, var(--orange));
}

.ppc-header.gold-grad {
  background: linear-gradient(135deg, #7a4e00, #a8781b);
}

.ppc-header::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.ppc-cat-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 14px;
}

.ppc-cat-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.ppc-cat-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ppc-body {
  padding: 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ppc-products-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.ppc-products-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.ppc-products-list li:last-child {
  border-bottom: none;
}

.ppc-products-list li i {
  color: var(--orange);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.ppc-footer {
  padding: 16px 26px 24px;
}

.btn-ppc-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white !important;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-btn);
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(232, 101, 10, 0.25);
}

.btn-ppc-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 101, 10, 0.4);
  color: white !important;
}

/* Products inquiry note */
.products-inquiry-note {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-card);
  padding: 50px 48px;
  color: white;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.products-inquiry-note::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(200, 155, 42, 0.07) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
}

/* ====================================================
   SERVICES PAGE
   ==================================================== */
.services-page-section {
  padding: var(--section-py-lg) 0;
  background: var(--bg);
}

.service-page-card {
  background: white;
  border-radius: var(--radius-card);
  padding: 40px 36px;
  border: 1px solid var(--border);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service-page-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange), var(--gold));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.service-page-card:hover::before {
  transform: scaleY(1);
}

.service-page-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: transparent;
}

.spc-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 28px;
}

.spc-icon.navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}
.spc-icon.orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
}
.spc-icon.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
}

.spc-num {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(27, 42, 74, 0.04);
  line-height: 1;
}

.spc-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.spc-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ====================================================
   CONTACT PAGE
   ==================================================== */
.contact-section {
  padding: var(--section-py-lg) 0;
  background: var(--bg);
}

.contact-info-card {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-card);
  padding: 44px 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(200, 155, 42, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
}

.contact-info-content {
  position: relative;
  z-index: 1;
}

.contact-info-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.contact-info-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  line-height: 1.6;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.ci-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ci-icon.orange {
  background: rgba(232, 101, 10, 0.2);
  color: var(--orange);
}
.ci-icon.green {
  background: rgba(37, 211, 102, 0.2);
  color: #25d366;
}
.ci-icon.gold {
  background: rgba(200, 155, 42, 0.2);
  color: var(--gold);
}
.ci-icon.blue {
  background: rgba(96, 165, 250, 0.2);
  color: #60a5fa;
}

.ci-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 5px;
  display: block;
}

.ci-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  line-height: 1.4;
  display: block;
}

.ci-value a {
  color: inherit;
  transition: var(--transition-fast);
}

.ci-value a:hover {
  color: var(--gold);
}

/* Contact Form */
.contact-form-card {
  background: white;
  border-radius: var(--radius-card);
  padding: 44px 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label-custom {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.form-control-custom {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-primary);
  background: var(--bg);
  outline: none;
  transition: var(--transition);
}

.form-control-custom:focus {
  border-color: var(--navy);
  background: white;
  box-shadow: 0 0 0 4px rgba(27, 42, 74, 0.06);
}

.form-control-custom::placeholder {
  color: var(--text-muted);
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 120px;
}

.form-required {
  color: var(--orange);
}

.btn-submit-form {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(232, 101, 10, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(232, 101, 10, 0.5);
}

.form-success-msg {
  display: none;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: #16a34a;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 16px;
}

/* Map Wrapper */
.map-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  margin-top: 50px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
}

/* ====================================================
   WHY US PAGE COMPARISON TABLE
   ==================================================== */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table th {
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.04em;
}

.comparison-table th:first-child {
  background: var(--navy);
  color: white;
}
.comparison-table th.col-zeal {
  background: var(--orange);
  color: white;
  text-align: center;
}
.comparison-table th.col-others {
  background: var(--bg-alt);
  color: var(--text-secondary);
  text-align: center;
}

.comparison-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  background: white;
}

.comparison-table td:first-child {
  color: var(--navy);
  font-weight: 600;
}
.comparison-table td.check-yes {
  text-align: center;
  color: #16a34a;
  font-size: 1.2rem;
}
.comparison-table td.check-no {
  text-align: center;
  color: #ef4444;
  font-size: 1.1rem;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}

/* ====================================================
   ABOUT PAGE MISSION SECTION
   ==================================================== */
.mission-section {
  padding: var(--section-py-lg) 0;
  background: var(--bg-alt);
}

.mission-card {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-card);
  padding: 56px 50px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(200, 155, 42, 0.07) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}

.mission-content {
  position: relative;
  z-index: 1;
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(200, 155, 42, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  margin: 0 auto 28px;
}

.mission-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.mission-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  max-width: 720px;
  margin: 0 auto;
}

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer {
  background: var(--navy-dark);
}

.footer-main {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo-img {
  height: 70px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-contact-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-contact-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 3px;
}

.footer-contact-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  display: block;
}

.footer-widget-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.footer-nav-list li a i {
  font-size: 0.5rem;
  color: var(--orange);
  transition: var(--transition-fast);
}

.footer-nav-list li a:hover {
  color: white;
  padding-left: 4px;
}

.footer-nav-list li a:hover i {
  color: var(--gold);
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-address-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-address-item p,
.footer-address-item a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-link-light {
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition-fast);
}

.footer-link-light:hover {
  color: var(--gold);
}

.btn-footer-cta {
  background: linear-gradient(
    135deg,
    var(--orange),
    var(--orange-light)
  ) !important;
  color: white !important;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  border: none !important;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 101, 10, 0.4);
}

.btn-footer-whatsapp {
  background: rgba(37, 211, 102, 0.1) !important;
  color: #25d366 !important;
  border: 1px solid rgba(37, 211, 102, 0.3) !important;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: var(--radius-btn);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-footer-whatsapp:hover {
  background: #25d366 !important;
  color: white !important;
  transform: translateY(-2px);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}

/* Footer Bottom */
.footer-bottom {
  padding: 22px 0;
  background: rgba(0, 0, 0, 0.2);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ====================================================
   WHATSAPP FLOATING BUTTON
   ==================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  z-index: 9999;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.6);
  color: white;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  background: var(--navy);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* Scroll Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 100px;
  width: 46px;
  height: 46px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

/* ====================================================
   ANIMATIONS
   ==================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* AOS Custom */
[data-aos="fade-up-custom"] {
  opacity: 0;
  transform: translateY(40px);
  transition-property: opacity, transform;
}
[data-aos="fade-up-custom"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================================
   UTILITY CLASSES
   ==================================================== */
.text-orange {
  color: var(--orange) !important;
}
.text-navy {
  color: var(--navy) !important;
}
.text-gold {
  color: var(--gold) !important;
}

.bg-navy {
  background: var(--navy) !important;
}
.bg-orange {
  background: var(--orange) !important;
}

.divider-orange {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 2px;
  margin: 16px 0 24px;
}

.divider-white {
  width: 56px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  margin: 16px 0 24px;
}

/* Page Transition */
.page-fade-in {
  animation: fadeIn 0.5s ease;
}

/* ====================================================
   ABOUT PAGE - STATS & MISSION
   ==================================================== */
.about-stats-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.about-stat-box {
  flex: 1;
  min-width: 100px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}

.about-stat-box:hover {
  background: rgba(232, 101, 10, 0.12);
  border-color: rgba(232, 101, 10, 0.3);
}

.about-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ====================================================
   MISSION SECTION
   ==================================================== */
.mission-section {
  padding: var(--section-py-md) 0;
  background: var(--bg-alt);
}

.mission-card {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-card);
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(200, 155, 42, 0.06) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
}

.mission-card::after {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 101, 10, 0.08),
    transparent 70%
  );
}

.mission-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0 auto;
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin: 0 auto 24px;
  box-shadow: 0 12px 36px rgba(232, 101, 10, 0.4);
}

.mission-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.mission-text {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
  font-style: italic;
  margin: 0;
}

/* ====================================================
   WHY US - COMPARISON TABLE
   ==================================================== */
.comparison-wrap {
  overflow-x: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.comparison-table thead tr th {
  padding: 22px 28px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.comparison-table thead tr th:first-child {
  text-align: left;
  color: var(--text-secondary);
  background: var(--bg-alt);
  font-size: 0.78rem;
}

.comparison-table thead tr th.col-zeal {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: white;
  font-size: 0.95rem;
}

.comparison-table thead tr th.col-others {
  background: var(--bg-alt);
  color: var(--text-secondary);
}

.comparison-table tbody tr {
  transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
  background: rgba(27, 42, 74, 0.025);
}

.comparison-table tbody td {
  padding: 16px 28px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.88rem;
}

.comparison-table td.check-yes,
.comparison-table td.check-no {
  text-align: center;
  font-size: 1.4rem;
}

.comparison-table td.check-yes i {
  color: #22c55e;
}
.comparison-table td.check-no i {
  color: #ef4444;
}

/* ====================================================
   CONTACT PAGE - INFO ITEMS & FORM
   ==================================================== */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.ci-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.ci-icon.orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
}
.ci-icon.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
}
.ci-icon.green {
  background: linear-gradient(135deg, #25d366, #128c7e);
}
.ci-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.ci-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.ci-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  line-height: 1.4;
}

.ci-value a {
  color: white;
  transition: var(--transition-fast);
}
.ci-value a:hover {
  color: var(--gold);
}

/* Contact Form */
.contact-form-card {
  background: white;
  border-radius: var(--radius-card);
  padding: 48px 44px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.contact-form-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 4px;
}

.form-label-custom {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-required {
  color: var(--orange);
}

.form-control-custom {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-primary);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-control-custom::placeholder {
  color: var(--text-muted);
}

.form-control-custom:focus {
  border-color: var(--navy);
  background: white;
  box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.08);
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 130px;
}

select.form-control-custom {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
}

.btn-submit-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 17px 24px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(232, 101, 10, 0.35);
  margin-top: 12px;
}

.btn-submit-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(232, 101, 10, 0.5);
}

.form-success-msg {
  display: none;
  padding: 20px 24px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-sm);
  color: #16a34a;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 20px;
}

/* Google Map */
.map-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.map-wrap iframe {
  display: block;
}
}

/* ====================================================
   ABOUT PAGE PREMIUM REDESIGN
   ==================================================== */

/* --- Hero Section --- */
.about-hero-premium {
    position: relative;
    padding: 180px 0 120px;
    background: var(--navy-dark);
    overflow: hidden;
    z-index: 1;
}

.ahp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}
.ahp-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(232, 101, 10, 0.08);
    top: -200px;
    right: -100px;
}
.ahp-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(200, 155, 42, 0.05);
    bottom: -200px;
    left: -100px;
}

.ahp-grid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.ahp-container {
    position: relative;
    z-index: 2;
}

.ahp-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.ahp-accent {
    color: var(--gold);
}

.ahp-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Who We Are & Values --- */
.about-content-section {
    padding: var(--section-py-lg) 0;
    background: var(--bg);
}

.about-intro-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.avg-card {
    background: white;
    border-radius: var(--radius-card);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.avg-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(232, 101, 10, 0.2);
}

.avg-card-full {
    grid-column: span 2;
}

.avg-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(232,101,10,0.1), rgba(200,155,42,0.1));
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.avg-body h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.avg-body p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* --- About Visual Panel (Right Col) --- */
.about-visual-panel {
    position: relative;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.avp-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(232, 101, 10, 0.15);
    filter: blur(80px);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.avp-logo-wrap {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 50px;
}

.avp-logo-wrap img {
    width: 220px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.avp-stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.avp-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.avp-stat:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: rgba(200, 155, 42, 0.3);
}

.avp-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.avp-lbl {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* --- Premium Mission Section --- */
.about-mission-section {
    position: relative;
    padding: var(--section-py-lg) 0;
    background: var(--navy-dark);
    overflow: hidden;
}

.ams-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(15,29,54,0) 0%, rgba(15,29,54,1) 100%),
                url('../images/hero-bg.jpg') center/cover;
    opacity: 0.2;
    z-index: 0;
}

.ams-card {
    background: linear-gradient(145deg, rgba(36, 53, 82, 0.4) 0%, rgba(15, 29, 54, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 80px 60px;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    position: relative;
}

.ams-quote-icon {
    font-size: 4rem;
    color: rgba(232, 101, 10, 0.2);
    margin-bottom: 20px;
    line-height: 1;
}

.ams-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
}

.ams-statement {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-values-grid {
        grid-template-columns: 1fr;
    }
    .avg-card-full {
        grid-column: span 1;
    }
    .ams-card {
        padding: 50px 30px;
    }
    .ams-statement {
        font-size: 1.4rem;
    }
}
@media (max-width: 767px) {
    .avp-stats-grid {
        grid-template-columns: 1fr;
    }
}


/* ====================================================
   GLOBAL CONTACT PREVIEW PANEL
   ==================================================== */
.contact-left-panel {
    position: relative;
    background: var(--navy-dark);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.contact-left-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 101, 10, 0.15) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.contact-left-content {
    position: relative;
    z-index: 2;
}

.contact-panel-heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-panel-accent {
    color: var(--orange-light);
}

.contact-panel-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-panel-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 2rem;
}

.cpb-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 30px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}
.cpb-item i {
    color: var(--gold);
}

/* ====================================================
   CONTACT PAGE - FULL DESIGN SYSTEM
   ==================================================== */

/* ---- Section Wrapper ---- */
.contact-section {
    padding: 100px 0 80px;
    background: var(--bg);
    position: relative;
}

/* ---- Contact Info Card (Left Column) ---- */
.contact-info-card {
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 100%);
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
    height: 100%;
    box-shadow: 0 24px 64px rgba(15, 29, 54, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-info-card::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(232, 101, 10, 0.18) 0%, transparent 70%);
    bottom: -120px;
    right: -120px;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.contact-info-card::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(200, 155, 42, 0.12) 0%, transparent 70%);
    top: -80px;
    left: -60px;
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.contact-info-content {
    position: relative;
    z-index: 2;
    padding: 44px 40px;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.contact-info-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 36px;
}

/* ---- Contact Info Items ---- */
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-fast);
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-info-item a {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    transition: var(--transition-fast);
}

.contact-info-item a:hover {
    color: var(--gold-light);
}

/* ---- CI Icon ---- */
.ci-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.ci-icon.orange {
    background: rgba(232, 101, 10, 0.18);
    color: var(--orange-light);
    border: 1px solid rgba(232, 101, 10, 0.25);
}

.ci-icon.green {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.22);
}

.ci-icon.gold {
    background: rgba(200, 155, 42, 0.18);
    color: var(--gold-light);
    border: 1px solid rgba(200, 155, 42, 0.25);
}

.ci-icon.blue {
    background: rgba(59, 130, 246, 0.18);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.22);
}

.contact-info-item:hover .ci-icon {
    transform: scale(1.1) rotate(-4deg);
}

.ci-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    display: block;
    margin-bottom: 4px;
}

.ci-value {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    display: block;
}

/* ---- Contact Form Card (Right Column) ---- */
.contact-form-card {
    background: white;
    border-radius: var(--radius-card);
    padding: 48px 44px;
    box-shadow: 0 16px 56px rgba(15, 29, 54, 0.08);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--gold), var(--orange-light));
    border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.contact-form-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.contact-form-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ---- Form Group ---- */
.form-group {
    margin-bottom: 0;
}

.form-label-custom {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-required {
    color: var(--orange);
    margin-left: 2px;
}

/* ---- Form Controls ---- */
.form-control-custom {
    display: block;
    width: 100%;
    padding: 13px 18px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.5;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-control-custom:focus {
    border-color: var(--navy);
    background: white;
    box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.08);
}

.form-control-custom::placeholder {
    color: var(--text-muted);
    font-size: 0.9rem;
}

select.form-control-custom {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

select.form-control-custom:focus {
    border-color: var(--navy);
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 120px;
}

/* ---- Submit Button ---- */
.btn-submit-form {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 60%, var(--orange) 100%);
    background-size: 200% auto;
    color: white;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: none;
    border-radius: var(--radius-btn);
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(232, 101, 10, 0.32);
    transition: background-position 0.5s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-submit-form:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(232, 101, 10, 0.48);
    color: white;
}

.btn-submit-form i {
    font-size: 0.95rem;
    transition: transform 0.25s ease;
}

.btn-submit-form:hover i {
    transform: translateX(4px) rotate(-10deg);
}

/* ---- Success / Error Messages ---- */
.form-success-msg {
    display: none;
    background: rgba(34, 197, 94, 0.08);
    border: 1.5px solid rgba(34, 197, 94, 0.3);
    color: #15803d;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-success-msg i {
    color: #22c55e;
}

/* ---- Map Wrapper ---- */
.map-wrap {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(15, 29, 54, 0.12);
    border: 1px solid var(--border);
    position: relative;
}

.map-wrap iframe {
    display: block;
    width: 100%;
}

/* ---- Quick Contact Cards (Bottom Bar) ---- */
.contact-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: var(--transition) !important;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* ---- Contact Card Icons ---- */
.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-card-icon.orange {
    background: rgba(232, 101, 10, 0.2);
    color: var(--orange-light);
}

.contact-card-icon.green {
    background: rgba(37, 211, 102, 0.18);
    color: #25d366;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.12) rotate(-5deg);
}

/* ---- Global Section Label override for dark bg ---- */
.global-section-label {
    color: var(--gold);
}

.global-section-label::before {
    background: var(--gold);
}

/* ---- Responsive: Contact Page ---- */
@media (max-width: 991px) {
    .contact-info-content {
        padding: 36px 30px;
    }

    .contact-form-card {
        padding: 36px 30px;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 70px 0 60px;
    }

    .contact-info-content {
        padding: 30px 24px;
    }

    .contact-info-title {
        font-size: 1.5rem;
    }

    .contact-form-card {
        padding: 30px 22px;
    }

    .contact-form-title {
        font-size: 1.4rem;
    }

    .map-wrap iframe {
        height: 300px !important;
    }
}

/* ====================================================
   QUICK CONNECT SECTION - PREMIUM
   ==================================================== */
.quick-connect-section {
    position: relative;
    padding: 100px 0 110px;
    background: linear-gradient(135deg, #050d1e 0%, #0a1628 50%, #0f1f3d 100%);
    overflow: hidden;
}

/* Grid overlay */
.qc-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Orbs */
.qc-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.qc-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232,101,10,0.14) 0%, transparent 70%);
    top: -150px;
    right: -100px;
}
.qc-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200,155,42,0.12) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
}

/* Header */
.qc-header {
    margin-bottom: 56px;
}
.qc-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.qc-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
    line-height: 1.6;
}

/* ---- Card Base ---- */
.qc-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding: 36px 32px 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
                box-shadow 0.35s ease,
                border-color 0.35s ease,
                background 0.35s ease;
    height: 100%;
    min-height: 220px;
    backdrop-filter: blur(10px);
}

.qc-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.07);
}

/* Top accent bar */
.qc-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    transition: height 0.3s ease;
}
.qc-card:hover .qc-card-accent {
    height: 4px;
}

/* Orange variant */
.qc-card-orange .qc-card-accent { background: linear-gradient(90deg, var(--orange), var(--orange-light)); }
.qc-card-orange:hover {
    border-color: rgba(232,101,10,0.35);
    box-shadow: 0 20px 56px rgba(232,101,10,0.18);
}

/* Green variant */
.qc-card-green .qc-card-accent { background: linear-gradient(90deg, #1a9e4a, #25d366); }
.qc-card-green:hover {
    border-color: rgba(37,211,102,0.3);
    box-shadow: 0 20px 56px rgba(37,211,102,0.15);
}

/* Gold variant */
.qc-card-gold .qc-card-accent { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.qc-card-gold:hover {
    border-color: rgba(200,155,42,0.35);
    box-shadow: 0 20px 56px rgba(200,155,42,0.15);
}

/* ---- Icon ---- */
.qc-icon-wrap {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.qc-card:hover .qc-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

.qc-icon-orange {
    background: rgba(232,101,10,0.18);
    color: var(--orange-light);
    border: 1px solid rgba(232,101,10,0.25);
}
.qc-icon-green {
    background: rgba(37,211,102,0.15);
    color: #25d366;
    border: 1px solid rgba(37,211,102,0.22);
}
.qc-icon-gold {
    background: rgba(200,155,42,0.18);
    color: var(--gold-light);
    border: 1px solid rgba(200,155,42,0.25);
}

/* Pulse dot (WhatsApp online indicator) */
.qc-pulse-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 14px;
    height: 14px;
    background: #25d366;
    border-radius: 50%;
    border: 2px solid #050d1e;
    animation: qcPulse 2s ease-in-out infinite;
}
@keyframes qcPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    50%       { box-shadow: 0 0 0 6px rgba(37,211,102,0); }
}

/* ---- Text ---- */
.qc-card-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 6px;
}
.qc-card-value {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: white;
    line-height: 1.3;
    margin-bottom: 6px;
    word-break: break-all;
}
.qc-card-sub {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
    flex: 1;
}

/* ---- Arrow ---- */
.qc-arrow {
    margin-top: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.qc-card:hover .qc-arrow {
    transform: translateX(5px);
    background: rgba(255,255,255,0.12);
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .quick-connect-section { padding: 80px 0 90px; }
    .qc-header { margin-bottom: 40px; }
}
@media (max-width: 767px) {
    .quick-connect-section { padding: 60px 0 70px; }
    .qc-card { min-height: auto; padding: 28px 24px 24px; }
    .qc-title { font-size: 1.7rem; }
    .qc-card-value { font-size: 0.95rem; }
}


/* ====================================================
   PRELOADER — Premium White Design
   ==================================================== */

body.preloader-active {
    overflow: hidden;
}

/* ── Full-screen overlay ── */
.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-preloader.preloader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ── Left accent panel — slides in from left ── */
.preloader-panel {
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--orange) 0%, var(--gold) 50%, var(--navy) 100%);
    transform-origin: top;
    animation: preloader-panel-grow 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes preloader-panel-grow {
    from { transform: scaleY(0); }
    to   { transform: scaleY(1); }
}

/* ── Corner bracket decorations ── */
.preloader-corner {
    position: absolute;
    width: 50px;
    height: 50px;
    opacity: 0;
    animation: preloader-fade-in 0.6s 0.4s ease forwards;
}

.preloader-corner-tl {
    top: 32px;
    left: 40px;
    border-top: 2px solid var(--orange);
    border-left: 2px solid var(--orange);
}

.preloader-corner-br {
    bottom: 32px;
    right: 40px;
    border-bottom: 2px solid var(--navy);
    border-right: 2px solid var(--navy);
}

@keyframes preloader-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── Center content ── */
.preloader-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

/* ── Orbit system ── */
.preloader-orbit-wrap {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-orbit {
    position: absolute;
    border-radius: 50%;
    border-style: solid;
    border-color: transparent;
}

/* Ring 1 — orange, fast */
.preloader-orbit-1 {
    width: 200px;
    height: 200px;
    border-top-color: var(--orange);
    border-width: 2.5px;
    animation: preloader-spin 1.6s linear infinite;
    opacity: 0;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
}

/* Ring 2 — gold, medium, reverse */
.preloader-orbit-2 {
    width: 160px;
    height: 160px;
    border-right-color: var(--gold);
    border-bottom-color: var(--gold);
    border-width: 1.5px;
    animation: preloader-spin-rev 2.4s linear infinite;
    opacity: 0;
    animation-delay: 0.4s;
    animation-fill-mode: forwards;
}

/* Ring 3 — navy, slow */
.preloader-orbit-3 {
    width: 120px;
    height: 120px;
    border-top-color: var(--navy);
    border-left-color: var(--navy);
    border-width: 1px;
    animation: preloader-spin 3.6s linear infinite;
    opacity: 0;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
}

@keyframes preloader-spin {
    from { transform: rotate(0deg); opacity: 1; }
    to   { transform: rotate(360deg); opacity: 1; }
}

@keyframes preloader-spin-rev {
    from { transform: rotate(0deg); opacity: 1; }
    to   { transform: rotate(-360deg); opacity: 1; }
}

/* ── Logo inside orbit ── */
.preloader-logo-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: preloader-logo-appear 0.9s 0.15s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes preloader-logo-appear {
    from { opacity: 0; transform: scale(0.6); }
    to   { opacity: 1; transform: scale(1); }
}

.preloader-logo-img {
    width: 100px;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 16px rgba(232, 101, 10, 0.18));
}

/* ── Brand name + sub ── */
.preloader-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: preloader-slide-up 0.7s 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes preloader-slide-up {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.preloader-brand-name {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.02em;
    line-height: 1;
}

.preloader-brand-divider {
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    border-radius: 100px;
}

.preloader-brand-sub {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* ── Progress bar ── */
.preloader-progress-wrap {
    position: relative;
    width: 260px;
    opacity: 0;
    animation: preloader-slide-up 0.7s 0.7s ease forwards;
}

.preloader-progress-track {
    width: 100%;
    height: 3px;
    background: var(--border);
    border-radius: 100px;
    overflow: hidden;
}

.preloader-progress-bar {
    height: 3px;
    width: 0%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--gold) 50%, var(--orange) 100%);
    background-size: 200% 100%;
    animation: preloader-progress 2.5s 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards,
               preloader-shimmer  1.6s 0.75s linear infinite;
    box-shadow: 0 0 12px rgba(232, 101, 10, 0.4);
}

@keyframes preloader-progress {
    0%   { width: 0%; }
    55%  { width: 72%; }
    88%  { width: 93%; }
    100% { width: 100%; }
}

@keyframes preloader-shimmer {
    0%   { background-position:  200% 0; }
    100% { background-position: -200% 0; }
}

/* Percentage counter */
.preloader-percent {
    position: absolute;
    right: 0;
    top: -22px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 0.05em;
}

/* ── Loading label with animated dots ── */
.preloader-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0;
    opacity: 0;
    animation: preloader-slide-up 0.7s 0.85s ease forwards;
}

.preloader-ellipsis span {
    display: inline-block;
    animation: preloader-dot-blink 1.4s ease-in-out infinite;
    color: var(--orange);
    font-weight: 700;
}

.preloader-ellipsis span:nth-child(2) { animation-delay: 0.2s; }
.preloader-ellipsis span:nth-child(3) { animation-delay: 0.4s; }

@keyframes preloader-dot-blink {
    0%, 80%, 100% { opacity: 0.2; transform: translateY(0); }
    40%            { opacity: 1;   transform: translateY(-3px); }
}

/* ── Background subtle grid texture ── */
.site-preloader::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(27, 42, 74, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 42, 74, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* ── Soft radial glow in center ── */
.site-preloader::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 101, 10, 0.055) 0%, transparent 65%);
    pointer-events: none;
    animation: preloader-glow-pulse 3s ease-in-out infinite;
}

@keyframes preloader-glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.7; }
    50%       { transform: translate(-50%, -50%) scale(1.15); opacity: 1;   }
}



/* ====================================================
   PAN-ASIA SOURCING NETWORK SECTION
   ==================================================== */

.pan-asia-section {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(150deg, var(--navy-dark) 0%, #0d2244 40%, var(--navy) 100%);
  overflow: hidden;
}

.pan-asia-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.pan-asia-orb-1 {
  width: 700px;
  height: 700px;
  top: -250px;
  left: -150px;
  background: radial-gradient(circle, rgba(232, 101, 10, 0.09) 0%, transparent 65%);
  animation: pan-orb-drift 9s ease-in-out infinite;
}

.pan-asia-orb-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(200, 155, 42, 0.11) 0%, transparent 65%);
  animation: pan-orb-drift 11s ease-in-out infinite reverse;
}

.pan-asia-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

@keyframes pan-orb-drift {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-25px) scale(1.04); }
}

.pan-asia-header {
  text-align: center;
  margin-bottom: 70px;
}

.pan-asia-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 155, 42, 0.12);
  border: 1px solid rgba(200, 155, 42, 0.3);
  border-radius: 100px;
  padding: 8px 22px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}

.pan-asia-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pan-badge-pulse 2s ease-in-out infinite;
}

@keyframes pan-badge-pulse {
  0%, 100% { box-shadow: 0 0 6px var(--gold); }
  50%       { box-shadow: 0 0 20px var(--gold); }
}

.pan-asia-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.15;
}

.pan-asia-heading-gold {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pan-asia-subheading {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.58);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

.pan-asia-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.pan-asia-stat-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.pan-stat-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 18px 22px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.pan-stat-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(232, 101, 10, 0.3);
  transform: translateX(6px);
}

.pan-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(232, 101, 10, 0.3);
}

.pan-stat-icon-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy-dark) !important;
  box-shadow: 0 6px 16px rgba(200, 155, 42, 0.3) !important;
}

.pan-stat-icon-green {
  background: linear-gradient(135deg, #16a34a, #22c55e) !important;
  color: white !important;
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.3) !important;
}

.pan-stat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pan-stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.pan-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.pan-asia-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.pan-feature-item i {
  color: #4ade80;
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.pan-flag-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pan-flag-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 16px 12px 14px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.pan-flag-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 16px 16px;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pan-flag-card.pan-flag-orange::before { background: linear-gradient(90deg, var(--orange), var(--orange-light)); }
.pan-flag-card.pan-flag-gold::before   { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.pan-flag-card.pan-flag-navy::before   { background: linear-gradient(90deg, var(--navy-light), var(--navy-mid)); }

.pan-flag-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.pan-flag-card:hover::before { transform: scaleX(1); }
.pan-flag-card.pan-flag-orange:hover { border-color: rgba(232, 101, 10, 0.35); }
.pan-flag-card.pan-flag-gold:hover   { border-color: rgba(200, 155, 42, 0.35); }
.pan-flag-card.pan-flag-navy:hover   { border-color: rgba(46, 68, 112, 0.55); }

.pan-flag-img-wrap {
  width: 56px;
  height: 40px;
  margin: 0 auto 10px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.pan-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pan-flag-info { display: flex; flex-direction: column; gap: 2px; }

.pan-flag-country {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.pan-flag-role {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .pan-asia-body { grid-template-columns: 1fr; gap: 48px; }
  .pan-flag-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 576px) {
  .pan-asia-section { padding: 80px 0 70px; }
  .pan-flag-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pan-asia-stat-cards { gap: 10px; }
}
