/* ============================================================
   RK TRADERS PHALODI — Premium Corporate Website
   Refined, Radix-UI-inspired Design System
   ============================================================ */

/* ----------- TOKENS ----------- */
:root {
  /* Brand Colors */
  --navy:        #0F2D52;
  --navy-dark:   #091e38;
  --navy-mid:    #163a65;
  --blue:        #1E5AA8;
  --gold:        #C9960F;
  --gold-bright: #D4A017;
  --gold-bg:     #FDF4DC;
  --wa-green:    #25D366;
  --wa-dark:     #128C7E;

  /* Neutral Palette */
  --white:       #ffffff;
  --gray-1:      #f9fafb;
  --gray-2:      #f3f4f6;
  --gray-3:      #e5e7eb;
  --gray-4:      #d1d5db;
  --gray-5:      #9ca3af;
  --gray-6:      #6b7280;
  --gray-7:      #374151;
  --gray-8:      #1f2937;

  /* Typography */
  --font-head:   'Poppins', sans-serif;
  --font-body:   'Inter', sans-serif;

  /* Borders — 2px as specified */
  --border:        2px solid var(--gray-3);
  --border-hover:  2px solid var(--gold-bright);
  --border-focus:  2px solid var(--navy);
  --radius-sm:     8px;
  --radius:        10px;
  --radius-lg:     14px;
  --radius-xl:     18px;
  --radius-pill:   100px;

  /* Shadows — subtle */
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-sm: 0 2px 8px rgba(15,45,82,0.07);
  --shadow:    0 4px 16px rgba(15,45,82,0.09);
  --shadow-md: 0 8px 24px rgba(15,45,82,0.11);
  --shadow-lg: 0 16px 40px rgba(15,45,82,0.13);

  /* Transitions */
  --ease: 0.22s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container: 1200px;
  --section-py: 88px;
}

/* ----------- RESET ----------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--gray-7); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ----------- CONTAINER ----------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ----------- SECTION ----------- */
.section {
  padding: var(--section-py) 0;
  border-bottom: var(--border);
}
.section:last-of-type { border-bottom: none; }

/* ----------- SECTION HEADER ----------- */
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-eyebrow.light { color: rgba(212,160,23,0.85); }
.section-eyebrow.light::before { background: rgba(212,160,23,0.85); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 1rem;
  color: var(--gray-6);
  max-width: 580px;
  line-height: 1.72;
}
.section-sub.light { color: rgba(255,255,255,0.65); }
.section-header.center .section-sub { margin: 0 auto; }

/* ----------- BUTTONS ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: var(--ease);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn-lg { padding: 14px 30px; font-size: 0.95rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; border-radius: var(--radius-sm); }
.btn-block { width: 100%; }
.btn-icon { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  border-color: var(--wa-green);
}
.btn-wa:hover {
  background: var(--wa-dark);
  border-color: var(--wa-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-3);
}
.btn-outline-navy:hover {
  background: var(--gray-1);
  border-color: var(--navy);
  transform: translateY(-1px);
}

/* Utils */
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--ease), box-shadow var(--ease), border-bottom var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: var(--border);
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 24px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--gold-bright);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-r {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--navy-dark);
  letter-spacing: -0.5px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--ease);
}
.logo-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color var(--ease);
}
.navbar.scrolled .logo-name { color: var(--navy); }
.navbar.scrolled .logo-sub  { color: var(--gray-5); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.85);
  transition: var(--ease);
  position: relative;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.navbar.scrolled .nav-link { color: var(--gray-7); }
.navbar.scrolled .nav-link:hover { color: var(--navy); background: var(--gray-1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-wa-nav {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--wa-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
  flex-shrink: 0;
}
.btn-wa-nav:hover {
  background: var(--wa-dark);
  transform: scale(1.05);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--ease);
  margin-left: auto;
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.navbar.scrolled .hamburger:hover { background: var(--gray-1); }
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}
.navbar.scrolled .hamburger span { background: var(--gray-7); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  padding: 12px 20px 20px;
  border-bottom: var(--border);
  box-shadow: var(--shadow-md);
  z-index: 999;
  flex-direction: column;
  gap: 2px;
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--gray-7);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: var(--ease);
}
.mobile-nav-link:hover { background: var(--gray-1); color: var(--navy); }
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: var(--border);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  border-bottom: var(--border);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: saturate(0.8);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(9,30,56,0.92) 0%,
    rgba(9,30,56,0.82) 40%,
    rgba(15,45,82,0.55) 65%,
    rgba(15,45,82,0.30) 100%
  );
  z-index: 1;
}
.hero-grid-pattern {
  position: absolute; inset: 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: 48px 48px;
  z-index: 2;
}
.hero-content { position: relative; z-index: 3; max-width: 800px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(201,150,15,0.12);
  border: 2px solid rgba(201,150,15,0.3);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
  color: #e5bd5a;
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-headline em {
  font-style: normal;
  color: var(--gold-bright);
}
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.72;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-sub strong { color: rgba(255,255,255,0.95); font-weight: 600; }
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: inline-flex;
  align-items: center;
  padding: 18px 24px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  gap: 0;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; align-items: center; padding: 0 20px; }
.hero-stat-number {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.hero-stat-divider {
  width: 1px; height: 32px;
  background: rgba(255,255,255,0.14);
}
.hero-scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-indicator {
  width: 36px; height: 36px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  animation: bounce-down 2s ease-in-out infinite;
}
.scroll-indicator svg { width: 16px; height: 16px; }
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ============================================================
   ABOUT
============================================================ */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.img-block {
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 24px;
}
.img-block.main-img-block {
  height: 320px;
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy-mid) 60%, var(--blue) 100%);
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  overflow: hidden;
  padding: 0;
}
.about-main-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}
.about-main-photo:hover { transform: scale(1.03); }
.about-img-main { overflow: hidden; border-radius: var(--radius-lg); }
.about-small-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.img-block.small-img-block { overflow: hidden; padding: 0; }
.img-block.small-img-block:hover .about-small-photo { transform: scale(1.05); }
.img-block-icon { width: 44px; height: 44px; color: rgba(255,255,255,0.3); }
.img-block-sub { font-size: 0.72rem; color: rgba(255,255,255,0.4); font-weight: 400; }
.about-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.img-block.small-img-block {
  height: 120px;
  background: var(--gray-1);
  border: var(--border);
  color: var(--gray-6);
  font-size: 0.78rem;
  font-weight: 500;
}
.img-block.small-img-block.alt { background: var(--navy-dark); color: rgba(255,255,255,0.6); border: none; }
.img-block-icon-sm { width: 28px; height: 28px; }
.about-badge-float {
  position: absolute;
  top: 20px; left: -16px;
  z-index: 2;
}
.float-badge {
  background: var(--gold-bright);
  color: var(--navy-dark);
  padding: 14px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 120px;
}
.float-badge-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 3px;
}
.float-badge-text { font-size: 0.72rem; font-weight: 600; }

.about-content .section-eyebrow { display: inline-flex; }
.about-lead {
  font-size: 1.05rem;
  color: var(--gray-8);
  line-height: 1.75;
  margin-bottom: 14px;
  font-weight: 500;
}
.about-body { font-size: 0.92rem; color: var(--gray-6); line-height: 1.8; margin-bottom: 32px; }
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--gray-1);
  border: var(--border);
  border-radius: var(--radius);
  transition: var(--ease);
}
.pillar:hover {
  border-color: var(--gold-bright);
  background: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.pillar-icon {
  width: 34px; height: 34px; min-width: 34px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
}
.pillar-icon svg { width: 16px; height: 16px; }
.pillar-text { display: flex; flex-direction: column; gap: 2px; }
.pillar-text strong { font-size: 0.85rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.pillar-text span { font-size: 0.75rem; color: var(--gray-5); }

/* ============================================================
   STATS
============================================================ */
.stats-section {
  background: var(--navy);
  position: relative;
  border-bottom: var(--border);
}
.stats-bg-layer {
  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: 40px 40px;
}
.stats-section .container { position: relative; z-index: 1; }
.stats-section .section-header { margin-bottom: 48px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.stat-card {
  background: transparent;
  padding: 36px 24px;
  text-align: center;
  transition: var(--ease);
  border-right: 2px solid rgba(255,255,255,0.07);
  border-bottom: 2px solid rgba(255,255,255,0.07);
}
.stat-card:nth-child(3n) { border-right: none; }
.stat-card:nth-child(n+4) { border-bottom: none; }
.stat-card:hover { background: rgba(255,255,255,0.05); }
.stat-icon {
  width: 46px; height: 46px;
  margin: 0 auto 14px;
  background: rgba(201,150,15,0.12);
  border: 2px solid rgba(201,150,15,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
}
.stat-icon svg { width: 22px; height: 22px; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 4px;
  letter-spacing: 0.2px;
}
.stat-desc { font-size: 0.73rem; color: rgba(255,255,255,0.38); }

/* ============================================================
   BRANDS
============================================================ */
.brands-section { background: var(--gray-1); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.brand-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
  min-height: 90px;
}
.brand-card:hover {
  border-color: var(--gold-bright);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
/* Brand Chip — clean, no subtitle text */
.brand-chip {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  min-width: 120px;
  text-align: center;
  width: 100%;
  letter-spacing: -0.3px;
  transition: var(--ease);
}
.brand-chip.hul      { color: #003087; background: #e8f0fb; }
.brand-chip.dabur    { color: #c43d00; background: #fff2e6; }
.brand-chip.godrej   { color: #006400; background: #edf6ee; }
.brand-chip.emami    { color: #b8730a; background: #fdf5e0; }
.brand-chip.patanjali{ color: #2d6e2f; background: #f0f8e8; }
.brand-chip.reckitt  { color: #9b0000; background: #fce9e9; }
.brand-chip.vasmol   { color: #6b21a8; background: #f5e8fa; }
.brand-chip.colgate  { color: #cc0000; background: #ffe8e8; }
.brand-chip.more {
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.65rem;
  gap: 2px;
}
.brand-chip.more span {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
}
.brand-more { border-color: var(--navy); }

.brands-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  gap: 20px;
  flex-wrap: wrap;
}
.brands-cta-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-7);
  flex: 1;
}
.brands-cta .btn + .btn { margin-left: 0; }
.brands-cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   INFRASTRUCTURE
============================================================ */
.infra-section { background: var(--white); }
.infra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
}
.infra-main-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: var(--border);
}
.infra-img-inner {
  height: 420px;
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy-mid) 60%, #1a4d90 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
}
.infra-img-title { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.infra-img-loc { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.infra-icon { width: 52px; height: 52px; color: rgba(255,255,255,0.25); margin-bottom: 4px; }
.infra-pill-tl {
  position: absolute; top: 14px; left: 14px;
  background: rgba(201,150,15,0.9);
  color: var(--navy-dark);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.73rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.infra-pill-tl svg { width: 12px; height: 12px; }
.infra-pill-br {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(9,30,56,0.8);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  border: 2px solid rgba(201,150,15,0.35);
  letter-spacing: 0.5px;
}
.infra-features { display: flex; flex-direction: column; gap: 16px; }
.infra-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border: var(--border);
  border-radius: var(--radius-lg);
  background: var(--gray-1);
  transition: var(--ease);
}
.infra-feature:hover {
  border-color: var(--gold-bright);
  background: var(--white);
  transform: translateX(3px);
  box-shadow: var(--shadow-xs);
}
.infra-feat-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
}
.infra-feat-icon svg { width: 18px; height: 18px; }
.infra-feat-body h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.infra-feat-body p { font-size: 0.82rem; color: var(--gray-6); line-height: 1.65; }

/* ============================================================
   OPERATIONS
============================================================ */
.ops-section { background: var(--gray-1); }
.ops-timeline {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}
.ops-step {
  display: grid;
  grid-template-columns: 44px 52px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  transition: var(--ease);
}
.ops-step:hover {
  border-color: var(--gold-bright);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.ops-connector {
  width: 2px; height: 16px;
  background: var(--gray-3);
  margin-left: 22px;
}
.ops-step-num {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-3);
  line-height: 1;
  padding-top: 12px;
}
.ops-step:hover .ops-step-num { color: var(--gold-bright); }
.ops-step-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  flex-shrink: 0;
}
.ops-step-icon svg { width: 22px; height: 22px; }
.ops-step-content h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.ops-step-content p { font-size: 0.84rem; color: var(--gray-6); line-height: 1.65; }

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why-card {
  padding: 24px 20px;
  background: var(--gray-1);
  border: var(--border);
  border-radius: var(--radius-lg);
  transition: var(--ease);
}
.why-card:hover {
  border-color: var(--gold-bright);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.why-icon {
  width: 46px; height: 46px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  margin-bottom: 16px;
}
.why-icon svg { width: 22px; height: 22px; }
.why-card h4 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.why-card p { font-size: 0.8rem; color: var(--gray-6); line-height: 1.65; }

/* ============================================================
   RETAIL NETWORK
============================================================ */
.network-section { background: var(--gray-1); }
.network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.network-body { font-size: 0.95rem; color: var(--gray-6); line-height: 1.78; margin-bottom: 24px; }
.network-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.network-type {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--navy);
  transition: var(--ease);
}
.network-type:hover {
  border-color: var(--gold-bright);
  box-shadow: var(--shadow-xs);
  transform: translateX(2px);
}
.network-type svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* Map */
.map-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.map-card-inner { padding: 28px; }
.raj-svg { width: 100%; max-width: 360px; display: block; margin: 0 auto; }
.raj-fill { fill: rgba(30,90,168,0.07); stroke: var(--blue); stroke-width: 1.5; }
.map-dot { fill: var(--navy); }
.map-dot.city-primary { fill: var(--gold-bright); filter: drop-shadow(0 0 5px rgba(201,150,15,0.45)); }
.map-city-label { font-family: var(--font-body); font-size: 10px; fill: var(--gray-7); font-weight: 500; }
.reach-ring { fill: none; stroke: var(--gold-bright); }
.reach-ring.ring-1 { stroke-opacity: 0.25; stroke-width: 1.5; stroke-dasharray: 4 3; }
.reach-ring.ring-2 { stroke-opacity: 0.14; stroke-width: 1.5; stroke-dasharray: 4 5; }
.reach-ring.ring-3 { stroke-opacity: 0.08; stroke-width: 1.5; stroke-dasharray: 4 7; }
.map-legend {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: var(--border);
}
.map-legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.76rem; color: var(--gray-5); font-weight: 500; }
.legend-dot { width: 9px; height: 9px; border-radius: 50%; }
.legend-dot.primary { background: var(--gold-bright); }
.legend-dot.secondary { background: var(--navy); }
.map-stat-pills {
  display: flex;
  border-top: var(--border);
}
.map-pill {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px;
  text-align: center;
  border-right: var(--border);
}
.map-pill:last-child { border-right: none; }
.pill-num {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.pill-label { font-size: 0.7rem; color: var(--gray-5); font-weight: 500; margin-top: 3px; }

/* ============================================================
   TEAM
============================================================ */
.team-section { background: var(--white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.team-dept {
  padding: 24px 18px;
  background: var(--gray-1);
  border: var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--ease);
}
.team-dept:hover {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.dept-icon {
  width: 50px; height: 50px;
  margin: 0 auto 14px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
}
.dept-icon svg { width: 24px; height: 24px; }
.team-dept h4 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.team-dept p { font-size: 0.78rem; color: var(--gray-5); line-height: 1.65; margin-bottom: 12px; }
.dept-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-bg);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.2px;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section { background: var(--gray-1); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--ease);
}
.testi-card:hover {
  border-color: var(--gold-bright);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.testi-stars { color: var(--gold-bright); font-size: 0.9rem; letter-spacing: 2px; }
.testi-text {
  font-size: 0.875rem;
  color: var(--gray-6);
  line-height: 1.78;
  font-style: italic;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-info { flex: 1; }
.testi-info strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.testi-info span { font-size: 0.73rem; color: var(--gray-5); }
.testi-type {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--blue);
  background: rgba(30,90,168,0.08);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ============================================================
   CONTACT
============================================================ */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: flex-start;
}
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info-block {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--gray-1);
  border: var(--border);
  border-radius: var(--radius-lg);
  transition: var(--ease);
}
.contact-info-block:hover { border-color: var(--gold-bright); background: var(--white); }
.contact-info-icon {
  width: 38px; height: 38px; min-width: 38px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-bright);
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-block h5 { font-size: 0.78rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-info-block p { font-size: 0.84rem; color: var(--gray-6); line-height: 1.6; }
.contact-link { color: var(--navy); font-weight: 600; transition: var(--ease); }
.contact-link:hover { color: var(--blue); }
.contact-wa-block { margin-top: 4px; }
.contact-map { border: var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.map-embed-placeholder {
  height: 180px;
  background: linear-gradient(145deg, var(--navy-dark), var(--navy));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  gap: 8px;
}
.map-embed-icon { width: 30px; height: 30px; color: var(--gold-bright); }
.map-embed-sub { font-size: 0.72rem; color: rgba(255,255,255,0.45); font-weight: 400; }

/* Form */
.contact-form-wrap {
  background: var(--gray-1);
  border: var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
}
.form-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 22px;
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--gray-7);
  background: var(--white);
  outline: none;
  transition: var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15,45,82,0.07);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' 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 12px center;
  background-size: 15px;
  padding-right: 36px;
  cursor: pointer;
}
.form-note { font-size: 0.72rem; color: var(--gray-5); text-align: center; margin-top: 4px; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--navy-dark); border-top: var(--border); }
.footer-top { padding: 60px 0 44px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-mark { background: var(--gold-bright); }
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.72; margin-bottom: 18px; }
.footer-social { display: flex; gap: 8px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--ease);
}
.social-link:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.25); color: var(--white); transform: translateY(-2px); }
.social-link.social-wa:hover { background: var(--wa-green); border-color: var(--wa-green); color: var(--white); }
.social-link svg { width: 16px; height: 16px; }

.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 7px; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: var(--ease); }
.footer-links a:hover { color: var(--gold-bright); padding-left: 4px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: var(--ease); }
.footer-contact-item a:hover { color: var(--gold-bright); }
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--gold-bright); }
.footer-bottom { border-top: 2px solid rgba(255,255,255,0.07); padding: 18px 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.footer-built { color: rgba(255,255,255,0.2); }

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--wa-green);
  color: var(--white);
  padding: 12px 18px 12px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--ease);
  border: 2px solid rgba(255,255,255,0.2);
}
.whatsapp-float:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.5);
}
.wa-float-label { white-space: nowrap; }

/* ============================================================
   BACK TO TOP
============================================================ */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 42px; height: 42px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: var(--ease);
  z-index: 500;
  border: 2px solid var(--gold-bright);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-bright); color: var(--navy-dark); transform: translateY(-2px); }
.back-to-top svg { width: 18px; height: 18px; }

/* ============================================================
   ANIMATIONS
============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* ============================================================
   RESPONSIVE — 1024px
============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 68px; }
  .about-grid { gap: 44px; }
  .infra-grid { gap: 36px; }
  .network-grid { gap: 44px; }
  .contact-grid { gap: 32px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .brands-cta { flex-direction: column; align-items: flex-start; }
  .brands-cta-text { flex: auto; }
}

/* ============================================================
   RESPONSIVE — 768px
============================================================ */
@media (max-width: 768px) {
  :root { --section-py: 52px; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 0 56px; min-height: auto; }
  .hero-headline { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-wrap: wrap; justify-content: center; padding: 14px 16px; }
  .hero-stat { padding: 0 14px; }
  .hero-stat-divider { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-visual { order: 2; }
  .about-pillars { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-right: none !important; border-bottom: 2px solid rgba(255,255,255,0.07) !important; }
  .stat-card:nth-child(5), .stat-card:nth-child(6) { border-bottom: none !important; }

  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .brand-chip { font-size: 1.2rem; }

  .infra-grid { grid-template-columns: 1fr; gap: 24px; }
  .infra-img-inner { height: 240px; }

  .ops-step { grid-template-columns: 32px 44px 1fr; gap: 12px; }
  .ops-step-num { font-size: 1rem; }
  .ops-step-icon { width: 42px; height: 42px; }

  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .network-grid { grid-template-columns: 1fr; gap: 32px; }
  .network-types { grid-template-columns: 1fr; }
  .map-stat-pills { flex-direction: row; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }

  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-form-wrap { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }

  .whatsapp-float { bottom: 72px; right: 16px; padding: 11px 14px; }
  .wa-float-label { display: none; }
  .back-to-top { right: 16px; bottom: 20px; }
}

/* ============================================================
   RESPONSIVE — 480px
============================================================ */
@media (max-width: 480px) {
  :root { --section-py: 44px; }
  .container { padding: 0 16px; }
  .hero-headline { font-size: 1.7rem; }
  .hero-sub { font-size: 0.9rem; }
  .section-title { font-size: 1.55rem; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .brand-card { padding: 16px 12px; min-height: 72px; }
  .brand-chip { font-size: 1.1rem; padding: 8px 12px; }

  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .ops-step { grid-template-columns: 28px 38px 1fr; gap: 10px; }
  .navbar-inner { height: 60px; }
}
