/* ============================================================
   GRK PHARMACEUTICALS - Complete Design System
   Professional Pharmaceutical Website Stylesheet
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary Colors */
  --primary-dark: #003B46;
  --primary: #07575B;
  --primary-light: #0a6c72;
  --accent-light: #66A5AD;
  --bg-light: #C4DFE6;
  --bg-cream: #F5F7F0;
  --white: #FFFFFF;

  /* Accent Colors */
  --gold: #D4A843;
  --gold-light: #e8c36e;
  --green: #2D936C;
  --blue: #0A7E8C;
  --orange: #E8913A;
  --red: #C4443A;
  --purple: #6B4C8F;
  --pink: #D4668E;
  --cyan: #1A9BAA;

  /* Text Colors */
  --text-dark: #1A2A30;
  --text-body: #2C3E44;
  --text-light: #E8F4F8;
  --text-muted: #6B8A90;

  /* Surface Colors */
  --card-bg: #F0F6F5;
  --card-border: #d8e8e5;
  --overlay-dark: rgba(0, 59, 70, 0.92);
  --overlay-medium: rgba(7, 87, 91, 0.85);

  /* Typography */
  --font-heading: Georgia, 'Playfair Display', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --section-padding-sm: 60px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 59, 70, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 59, 70, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 59, 70, 0.12);
  --shadow-xl: 0 12px 48px rgba(0, 59, 70, 0.15);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.7;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold);
}

ul, ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-label-light {
  color: var(--gold-light);
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-top: 16px;
}

.section-title-center {
  text-align: center;
}

.section-title-center::after {
  margin-left: auto;
  margin-right: auto;
}

.section-title-light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.7;
}

.section-subtitle-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle-light {
  color: var(--accent-light);
}

.gold-text {
  color: var(--gold);
}

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

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

.section-dark {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: var(--accent-light);
}

.section-cream {
  background-color: var(--bg-cream);
}

.section-light {
  background-color: var(--card-bg);
}

/* Grid Systems */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

.grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-teal:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(7, 87, 91, 0.4);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1rem;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all var(--transition-base);
  padding: 16px 0;
}

.navbar.scrolled {
  background: var(--primary-dark);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.nav-logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  opacity: 0.8;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link.active {
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.nav-link .arrow {
  font-size: 0.6rem;
  transition: transform var(--transition-fast);
}

.nav-item:hover .arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
  border-top: 3px solid var(--gold);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.nav-dropdown a:hover {
  background: var(--card-bg);
  color: var(--primary);
  padding-left: 24px;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-base);
  border-radius: 1px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #04494f 50%, var(--primary) 100%);
  overflow: hidden;
}

.hero-bg-animation {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Molecular/Hexagonal floating animation */
.hex-particle {
  position: absolute;
  border: 1px solid rgba(102, 165, 173, 0.15);
  border-radius: 2px;
  animation: float-particle linear infinite;
}

.hex-particle:nth-child(1) {
  width: 60px; height: 60px;
  top: 15%; left: 10%;
  animation-duration: 18s;
  transform: rotate(30deg);
}

.hex-particle:nth-child(2) {
  width: 40px; height: 40px;
  top: 60%; left: 80%;
  animation-duration: 22s;
  animation-delay: -5s;
  border-color: rgba(212, 168, 67, 0.12);
}

.hex-particle:nth-child(3) {
  width: 80px; height: 80px;
  top: 30%; right: 15%;
  animation-duration: 25s;
  animation-delay: -10s;
  transform: rotate(60deg);
}

.hex-particle:nth-child(4) {
  width: 30px; height: 30px;
  top: 75%; left: 25%;
  animation-duration: 20s;
  animation-delay: -3s;
}

.hex-particle:nth-child(5) {
  width: 50px; height: 50px;
  top: 20%; left: 60%;
  animation-duration: 28s;
  animation-delay: -8s;
  border-color: rgba(212, 168, 67, 0.1);
  transform: rotate(45deg);
}

.hex-particle:nth-child(6) {
  width: 35px; height: 35px;
  top: 85%; left: 55%;
  animation-duration: 16s;
  animation-delay: -12s;
}

.hex-particle:nth-child(7) {
  width: 70px; height: 70px;
  top: 45%; left: 5%;
  animation-duration: 24s;
  animation-delay: -7s;
  transform: rotate(15deg);
}

.hex-particle:nth-child(8) {
  width: 45px; height: 45px;
  top: 10%; right: 30%;
  animation-duration: 19s;
  animation-delay: -15s;
  border-color: rgba(102, 165, 173, 0.1);
}

/* Molecular bond lines */
.mol-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102, 165, 173, 0.12), transparent);
  animation: pulse-line 6s ease-in-out infinite;
}

.mol-line:nth-child(9) {
  width: 200px;
  top: 25%;
  left: 15%;
  transform: rotate(35deg);
}

.mol-line:nth-child(10) {
  width: 150px;
  top: 55%;
  right: 20%;
  transform: rotate(-20deg);
  animation-delay: -2s;
}

.mol-line:nth-child(11) {
  width: 180px;
  top: 70%;
  left: 40%;
  transform: rotate(60deg);
  animation-delay: -4s;
}

/* Molecular dots */
.mol-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(102, 165, 173, 0.25);
  border-radius: var(--radius-full);
  animation: pulse-dot 4s ease-in-out infinite;
}

.mol-dot:nth-child(12) { top: 20%; left: 25%; animation-delay: 0s; }
.mol-dot:nth-child(13) { top: 40%; left: 70%; animation-delay: -1s; width: 8px; height: 8px; }
.mol-dot:nth-child(14) { top: 65%; left: 15%; animation-delay: -2s; }
.mol-dot:nth-child(15) { top: 80%; left: 60%; animation-delay: -3s; width: 5px; height: 5px; }
.mol-dot:nth-child(16) { top: 35%; left: 90%; animation-delay: -1.5s; }

@keyframes float-particle {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.4;
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-10px) rotate(180deg);
    opacity: 0.5;
  }
  75% {
    transform: translateY(-30px) rotate(270deg);
    opacity: 0.6;
  }
}

@keyframes pulse-line {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.5); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 3px;
}

.hero-content h1 span {
  color: var(--gold);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--accent-light);
  font-style: italic;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(200, 225, 230, 0.8);
  max-width: 650px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.25);
  padding: 14px 0;
  z-index: 2;
}

.hero-bottom-bar p {
  text-align: center;
  color: rgba(200, 225, 230, 0.6);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  margin: 0;
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  overflow: hidden;
}

.page-hero .hero-bg-animation {
  opacity: 0.5;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--accent-light);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb .current {
  color: var(--gold);
}

.page-hero h1 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--accent-light);
  max-width: 600px;
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--card-border);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-dark {
  background: var(--primary-dark);
  color: var(--text-light);
  border-color: rgba(102, 165, 173, 0.2);
}

.card-dark h3,
.card-dark h4 {
  color: var(--white);
}

.card-dark p {
  color: var(--accent-light);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.card-icon svg {
  width: 30px;
  height: 30px;
}

.card-icon-sm {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.card-icon-sm svg {
  width: 22px;
  height: 22px;
}

/* Colored icon backgrounds */
.icon-red { background: rgba(196, 68, 58, 0.1); color: var(--red); }
.icon-red svg { fill: var(--red); }
.icon-purple { background: rgba(107, 76, 143, 0.1); color: var(--purple); }
.icon-purple svg { fill: var(--purple); }
.icon-blue { background: rgba(10, 126, 140, 0.1); color: var(--blue); }
.icon-blue svg { fill: var(--blue); }
.icon-cyan { background: rgba(26, 155, 170, 0.1); color: var(--cyan); }
.icon-cyan svg { fill: var(--cyan); }
.icon-orange { background: rgba(232, 145, 58, 0.1); color: var(--orange); }
.icon-orange svg { fill: var(--orange); }
.icon-green { background: rgba(45, 147, 108, 0.1); color: var(--green); }
.icon-green svg { fill: var(--green); }
.icon-teal { background: rgba(7, 87, 91, 0.1); color: var(--primary); }
.icon-teal svg { fill: var(--primary); }
.icon-pink { background: rgba(212, 102, 142, 0.1); color: var(--pink); }
.icon-pink svg { fill: var(--pink); }
.icon-gold { background: rgba(212, 168, 67, 0.1); color: var(--gold); }
.icon-gold svg { fill: var(--gold); }

/* Accent bar cards */
.card-accent {
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.card-accent-red { border-left-color: var(--red); }
.card-accent-purple { border-left-color: var(--purple); }
.card-accent-blue { border-left-color: var(--blue); }
.card-accent-green { border-left-color: var(--green); }
.card-accent-orange { border-left-color: var(--orange); }
.card-accent-teal { border-left-color: var(--primary); }

/* ---------- Stats / Counters ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .suffix {
  font-size: 1.8rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ---------- Company At a Glance Card ---------- */
.glance-card {
  background: var(--primary-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--text-light);
}

.glance-card h3 {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(102, 165, 173, 0.2);
}

.glance-item {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid rgba(102, 165, 173, 0.1);
}

.glance-item:last-child {
  border-bottom: none;
}

.glance-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-light);
  min-width: 140px;
  flex-shrink: 0;
}

.glance-value {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ---------- Values / Hex Cards ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-light) 100%);
  border-radius: 12px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
  transform: rotate(-45deg);
}

.value-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ---------- Leadership Cards ---------- */
.leader-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  transition: all var(--transition-base);
}

.leader-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.leader-avatar {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
}

.leader-avatar::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px solid;
  border-color: inherit;
  opacity: 0.3;
}

.leader-avatar-gold {
  background: linear-gradient(135deg, #D4A843, #b88a2e);
  border-color: var(--gold);
}

.leader-avatar-teal {
  background: linear-gradient(135deg, #07575B, #003B46);
  border-color: var(--primary);
}

.leader-avatar-green {
  background: linear-gradient(135deg, #2D936C, #1e6b4d);
  border-color: var(--green);
}

.leader-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.leader-role {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}

.leader-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---------- Therapeutic Area Cards ---------- */
.therapy-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.therapy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  transition: width var(--transition-base);
}

.therapy-card:hover::before {
  width: 6px;
}

.therapy-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.therapy-card.cardio::before { background: var(--red); }
.therapy-card.neuro::before { background: var(--purple); }
.therapy-card.anti-infective::before { background: var(--blue); }
.therapy-card.respiratory::before { background: var(--cyan); }
.therapy-card.analgesic::before { background: var(--orange); }
.therapy-card.nutraceutical::before { background: var(--green); }
.therapy-card.gastro::before { background: var(--primary); }
.therapy-card.derma::before { background: var(--pink); }

.therapy-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.therapy-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0;
}

.therapy-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.drug-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.drug-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--card-bg);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--text-body);
  font-weight: 500;
  border: 1px solid var(--card-border);
}

/* ---------- Process Flow ---------- */
.process-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 40px 0;
  overflow-x: auto;
}

.process-step {
  flex: 1;
  min-width: 140px;
  text-align: center;
  position: relative;
  padding: 0 8px;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-light) 100%);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.process-step:hover .step-number {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scale(1.1);
}

.process-step h4 {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.process-step p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--primary), var(--gold));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px 60px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 60px;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
  padding-left: 60px;
}

.timeline-dot {
  position: absolute;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: var(--radius-full);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -8px;
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}

.timeline-content h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ---------- Certification / Registration Table ---------- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.cert-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  transition: all var(--transition-base);
}

.cert-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--accent-light);
}

.cert-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(7, 87, 91, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cert-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

.cert-item h5 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.cert-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ---------- QC Checklist ---------- */
.qc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.qc-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(7, 87, 91, 0.04);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
}

.qc-check {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.qc-check svg {
  width: 12px;
  height: 12px;
  fill: var(--white);
}

.qc-item p {
  font-size: 0.92rem;
  color: var(--text-body);
  margin-bottom: 0;
  font-weight: 500;
}

/* ---------- Supply Chain Flow ---------- */
.supply-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 0;
  flex-wrap: wrap;
}

.supply-step {
  text-align: center;
  padding: 20px;
  position: relative;
}

.supply-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
}

.supply-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--white) 100%);
  border: 2px solid var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.supply-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
}

.supply-step h4 {
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--primary-dark);
}

/* ---------- Franchise Benefits ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  transition: all var(--transition-base);
}

.benefit-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--gold);
}

.benefit-number {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--gold);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-item p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 0;
}

/* ---------- Growth Roadmap ---------- */
.roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.roadmap::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 16.67%;
  right: 16.67%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--green));
}

.roadmap-phase {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.phase-dot {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px;
}

.phase-1 .phase-dot { background: var(--primary); box-shadow: 0 0 0 3px var(--primary); }
.phase-2 .phase-dot { background: var(--gold); box-shadow: 0 0 0 3px var(--gold); }
.phase-3 .phase-dot { background: var(--green); box-shadow: 0 0 0 3px var(--green); }

.roadmap-phase h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.roadmap-phase .phase-years {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}

.roadmap-phase ul {
  text-align: left;
}

.roadmap-phase li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}

.roadmap-phase li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--accent-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ---------- Contact Form ---------- */
.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-body);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(7, 87, 91, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-error {
  color: var(--red);
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-success {
  background: rgba(45, 147, 108, 0.1);
  color: var(--green);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  display: none;
  margin-top: 20px;
}

/* ---------- Footer ---------- */
.footer {
  background: #011e24;
  color: rgba(200, 225, 230, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(102, 165, 173, 0.15);
}

.footer-about h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-about .footer-tagline {
  font-size: 0.82rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 16px;
  display: block;
}

.footer-about p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(200, 225, 230, 0.6);
  font-size: 0.88rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(200, 225, 230, 0.4);
  margin-bottom: 0;
}

.footer-gstin {
  font-size: 0.78rem;
  color: rgba(200, 225, 230, 0.35);
}

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children .fade-in:nth-child(1) { transition-delay: 0.05s; }
.stagger-children .fade-in:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-in:nth-child(3) { transition-delay: 0.15s; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 0.2s; }
.stagger-children .fade-in:nth-child(5) { transition-delay: 0.25s; }
.stagger-children .fade-in:nth-child(6) { transition-delay: 0.3s; }
.stagger-children .fade-in:nth-child(7) { transition-delay: 0.35s; }
.stagger-children .fade-in:nth-child(8) { transition-delay: 0.4s; }
.stagger-children .fade-in:nth-child(9) { transition-delay: 0.45s; }
.stagger-children .fade-in:nth-child(10) { transition-delay: 0.5s; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mb-6 { margin-bottom: 64px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.pt-0 { padding-top: 0; }
.gap-lg { gap: 48px; }

.split-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}

.split-even {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Why Choose / Advantage items */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.advantage-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  transition: all var(--transition-base);
}

.advantage-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.advantage-card .card-icon {
  margin: 0 auto 14px;
}

.advantage-card h4 {
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.advantage-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.55;
}

/* Distribution channel cards */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.channel-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
}

.channel-card svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.channel-card h5 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.channel-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Geographic coverage */
.geo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.geo-card {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  text-align: center;
  transition: all var(--transition-base);
}

.geo-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--gold);
}

.geo-card h4 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.geo-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.geo-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(212, 168, 67, 0.1);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* India Map Visualization */
.india-map-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.india-map-svg {
  width: 320px;
  height: 380px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 20px rgba(0, 59, 70, 0.12));
}

.india-map-svg .india-outline {
  fill: var(--bg-cream);
  stroke: var(--accent-light);
  stroke-width: 1.2;
  transition: all 0.3s ease;
}

.india-map-svg .state-highlight {
  fill: rgba(7, 87, 91, 0.15);
  stroke: var(--primary);
  stroke-width: 1.5;
  transition: all 0.3s ease;
}

.india-map-svg .state-highlight:hover {
  fill: rgba(7, 87, 91, 0.28);
}

.india-map-svg .state-highlight.hq-state {
  fill: rgba(212, 168, 67, 0.18);
  stroke: var(--gold);
  stroke-width: 1.8;
}

.india-map-svg .state-highlight.hq-state:hover {
  fill: rgba(212, 168, 67, 0.32);
}

.india-map-svg .hq-marker {
  fill: var(--gold);
}

.india-map-svg .hq-pulse {
  fill: var(--gold);
  animation: mapPulse 2s ease-in-out infinite;
}

@keyframes mapPulse {
  0%, 100% { opacity: 0.6; r: 6; }
  50% { opacity: 0; r: 14; }
}

.india-map-svg .city-dot {
  fill: var(--primary);
  opacity: 0.7;
}

.india-map-svg .city-label {
  font-family: var(--font-body);
  font-size: 7px;
  fill: var(--text-body);
  font-weight: 600;
}

.map-legend {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 340px;
}

.map-legend-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--card-border);
  transition: all var(--transition-base);
}

.map-legend-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.map-legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.map-legend-dot.dot-hq {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.25);
}

.map-legend-dot.dot-key {
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(7, 87, 91, 0.2);
}

.map-legend-dot.dot-growing {
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(45, 147, 108, 0.2);
}

.map-legend-dot.dot-expanding {
  background: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(102, 165, 173, 0.2);
}

.map-legend-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--primary-dark);
  margin-bottom: 2px;
}

.map-legend-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Careers page */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dept-card {
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  text-align: center;
  transition: all var(--transition-base);
}

.dept-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.dept-card .card-icon {
  margin: 0 auto 12px;
}

.dept-card h4 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 6px;
}

.dept-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Contact details section */
.contact-details {
  background: var(--primary-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--text-light);
}

.contact-details h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.contact-detail-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-detail-item svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-detail-item h5 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-detail-item p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ---------- Responsive Design ---------- */

/* Tablet */
@media (max-width: 1024px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  .section { padding: 80px 0; }

  .hero-content h1 { font-size: 2.8rem; }
  .hero-tagline { font-size: 1.15rem; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .split-layout { grid-template-columns: 1fr; gap: 32px; }
  .split-even { grid-template-columns: 1fr; gap: 32px; }
  .roadmap { grid-template-columns: 1fr; gap: 40px; }
  .roadmap::before { display: none; }

  .process-flow {
    flex-direction: column;
    align-items: center;
  }
  .process-step { min-width: auto; width: 100%; max-width: 300px; }
  .process-step:not(:last-child)::after {
    top: auto;
    bottom: -16px;
    right: 50%;
    transform: translateX(50%) rotate(90deg);
  }
}

/* Mobile */
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
  h3 { font-size: 1.3rem; }
  .section { padding: var(--section-padding-sm); }
  .section-title { font-size: 1.8rem; }

  /* Nav */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--primary-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 24px;
    gap: 0;
    transition: right var(--transition-base);
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(102, 165, 173, 0.1);
    font-size: 1rem;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-sm);
    margin: 4px 0 8px;
    padding: 4px 0;
    border-top: none;
    display: none;
  }

  .nav-item.dropdown-open .nav-dropdown {
    display: block;
  }

  .nav-dropdown a {
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 16px;
  }

  .nav-dropdown a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
  }

  /* Hero */
  .hero { min-height: 90vh; }
  .hero-content h1 { font-size: 2.2rem; letter-spacing: 1px; }
  .hero-tagline { font-size: 1rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .btn-group { flex-direction: column; align-items: center; }

  /* Page Hero */
  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: 2rem; }

  /* Grids */
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-6 {
    grid-template-columns: 1fr;
  }

  .values-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .qc-list { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .advantage-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .dept-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

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

  /* India Map */
  .india-map-container { flex-direction: column; gap: 32px; }
  .india-map-svg { width: 260px; height: 310px; }
  .map-legend { max-width: 100%; }

  /* Timeline mobile */
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 50px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 12px;
    right: auto;
  }

  /* Supply chain */
  .supply-flow { flex-direction: column; }
  .supply-step:not(:last-child)::after {
    content: '↓';
    right: auto;
    top: auto;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.8rem; }
  .stat-number { font-size: 2.4rem; }
  .container { padding: 0 16px; }
}

/* ---------- Print ---------- */
@media print {
  .navbar, .hero-bg-animation, .nav-toggle, .cta-banner { display: none; }
  .section { padding: 30px 0; }
  .fade-in { opacity: 1; transform: none; }
}
