/* ===========================
   VR Care - Global Styles
   =========================== */

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

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

:root {
  /* Colors */
  --bg-dark: #0b1120;
  --bg-darker: #070d1a;
  --bg-card: #111b2e;
  --primary-teal: #00c9a7;
  --primary-teal-light: #00e6bf;
  --primary-teal-dark: #00a88a;
  --text-white: #ffffff;
  --text-light: #c5cdd8;
  --text-muted: #8a95a5;
  --border-color: rgba(255, 255, 255, 0.08);
  --nav-bg: rgba(11, 17, 32, 0.85);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --section-padding: 80px 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

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

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

/* ===========================
   Background Glow Effects
   =========================== */
.bg-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-glow::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 201, 167, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.bg-glow::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 201, 167, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

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

.nav-logo img {
  height: 72px;
  width: auto;
  transition: all 0.3s ease;
}

.nav-logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #fff 0%, #00c1a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-teal);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-white);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ---- Nav Dropdown Styles ---- */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px 0;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu a {
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-light);
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none !important;
}

.nav-dropdown-menu a:hover {
  background: rgba(0, 201, 167, 0.1);
  color: var(--primary-teal);
  transform: translateX(4px);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--primary-teal);
  color: var(--bg-dark);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--primary-teal-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 201, 167, 0.35);
}

.nav-cta svg {
  width: 16px;
  height: 16px;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 40px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left {
  max-width: 560px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(0, 201, 167, 0.1);
  border: 1px solid rgba(0, 201, 167, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-teal-light);
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-teal);
  border-radius: 50%;
  animation: pulse-dot 2s infinite ease-in-out;
}

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

/* Heading */
.hero-heading {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--text-white);
}

.hero-heading .highlight {
  color: var(--primary-teal);
  display: inline;
}

/* Subheading */
.hero-subheading {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 440px;
}

/* CTA Buttons */
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font-family);
}

.btn-primary {
  background: var(--primary-teal);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: var(--primary-teal-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 201, 167, 0.35);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--primary-teal);
  color: var(--primary-teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 201, 167, 0.1);
}

.btn-outline:active {
  transform: translateY(-1px) scale(0.98);
}

/* Hero Right */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(0, 201, 167, 0.15);
}

/* Glow behind image */
.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(0, 201, 167, 0.1) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

/* ===========================
   Trusted Section
   =========================== */
.trusted-section {
  position: relative;
  z-index: 1;
  padding: 40px 0 60px;
}

.trusted-divider {
  width: 100%;
  height: 1px;
  background: var(--border-color);
  margin-bottom: 40px;
}

.trusted-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.trusted-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.trusted-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
}

.trusted-stat svg {
  width: 20px;
  height: 20px;
  color: var(--primary-teal);
  opacity: 0.8;
}

/* ===========================
   Who We Are Section
   =========================== */
.who-we-are {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 100px 0;
}

.who-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.who-left {
  max-width: 500px;
}

.who-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1.5px solid #0b1120;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #0b1120;
  margin-bottom: 28px;
}

.who-heading {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: #0b1120;
  margin-bottom: 24px;
}

.who-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #5a6577;
  margin-bottom: 20px;
}

.who-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-teal);
  margin-top: 8px;
  transition: all 0.3s ease;
}

.who-link:hover {
  gap: 14px;
  color: var(--primary-teal-dark);
}

.who-link svg {
  transition: transform 0.3s ease;
}

.who-link:hover svg {
  transform: translateX(4px);
}

/* Right side */
.who-right {
  position: relative;
}

.who-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.who-image-wrapper img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.who-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.15) 0%, rgba(11, 17, 32, 0.2) 100%);
  pointer-events: none;
}

.who-stat-card {
  position: absolute;
  bottom: -24px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  padding: 18px 28px;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.who-stat-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 201, 167, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal);
  flex-shrink: 0;
}

.who-stat-content {
  display: flex;
  flex-direction: column;
}

.who-stat-number {
  font-size: 24px;
  font-weight: 800;
  color: #0b1120;
  line-height: 1.2;
}

.who-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: #8a95a5;
}

/* ===========================
   Core Services Section
   =========================== */
.core-services {
  position: relative;
  z-index: 1;
  background: var(--bg-dark);
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1.5px solid rgba(0, 201, 167, 0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--primary-teal);
  margin-bottom: 24px;
}

.section-heading-light {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: var(--text-white);
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 201, 167, 0.15);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: rgba(0, 201, 167, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 201, 167, 0.08);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 201, 167, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal);
  margin-bottom: 20px;
}

.service-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-teal);
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--primary-teal-light);
  letter-spacing: 0.5px;
}

/* ===========================
   Who We Work With Section
   =========================== */
.who-work-with {
  position: relative;
  z-index: 1;
  background: #f7f9fc;
  padding: 100px 0;
}

.section-header-center {
  text-align: center;
  margin-bottom: 56px;
}

.section-header-center .who-badge {
  margin: 0 auto 16px;
}

.section-heading-dark {
  font-size: 32px;
  font-weight: 800;
  color: #0b1120;
  line-height: 1.3;
  max-width: 600px;
  margin: 0 auto;
}

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

.work-with-card {
  background: #ffffff;
  border: 1px solid #e8ecf1;
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.work-with-card:hover {
  border-color: var(--primary-teal);
  box-shadow: 0 8px 30px rgba(0, 201, 167, 0.1);
  transform: translateY(-4px);
}

.work-with-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 201, 167, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary-teal);
}

.work-with-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0b1120;
  line-height: 1.4;
}

/* Services 3-column grid */
.services-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  text-decoration: none;
  display: block;
  cursor: pointer;
}

/* ===========================
   Reality / Problem Statement
   =========================== */
.reality-section {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 100px 0;
}

.reality-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.reality-intro {
  font-size: 17px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 16px;
}

.reality-intro strong {
  color: #0b1120;
}

.reality-sub {
  font-size: 14px;
  color: #8a95a5;
  margin-bottom: 8px;
}

.reality-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reality-list li {
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
}

.reality-good {
  color: var(--primary-teal);
  font-weight: 600;
}

.reality-dot {
  color: #cbd5e0;
  margin: 0 2px;
}

.reality-bad {
  color: #e53e3e;
  font-weight: 500;
}

.reality-closing {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.7;
  margin-top: 24px;
  padding: 20px;
  background: #f7f9fc;
  border-radius: 12px;
  border-left: 4px solid var(--primary-teal);
}

.reality-closing strong {
  color: #0b1120;
}

/* ===========================
   Impact / Results Section
   =========================== */
.impact-section {
  position: relative;
  z-index: 1;
  background: var(--bg-dark);
  padding: 100px 0;
}

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

.impact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.impact-card:hover {
  border-color: var(--primary-teal);
  transform: translateY(-4px);
}

.impact-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 201, 167, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary-teal);
}

.impact-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.4;
}

/* ===========================
   Audit / Featured Service
   =========================== */
.audit-section {
  position: relative;
  z-index: 1;
  background: #f7f9fc;
  padding: 100px 0;
}

.audit-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.audit-intro {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 24px;
}

.audit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.audit-list li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: #0b1120;
  font-weight: 500;
}

.audit-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-teal);
  font-weight: 700;
}

.audit-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.audit-visual-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #e8ecf1;
  transition: all 0.3s ease;
}

.audit-visual-item:hover {
  border-color: var(--primary-teal);
  box-shadow: 0 4px 20px rgba(0, 201, 167, 0.1);
}

.audit-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-teal);
  font-family: var(--font-family);
  min-width: 48px;
}

.audit-visual-item span:not(.audit-number) {
  font-size: 15px;
  font-weight: 600;
  color: #0b1120;
}

/* ===========================
   Digital Edge Section
   =========================== */
.digital-section {
  position: relative;
  z-index: 1;
  background: var(--bg-dark);
  padding: 100px 0;
}

.digital-intro {
  text-align: center;
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 40px;
}

.digital-platform {
  max-width: 800px;
  margin: 0 auto;
}

.digital-platform-name {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-teal);
  margin-bottom: 32px;
  letter-spacing: 1px;
}

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

.digital-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
}

.digital-card:hover {
  border-color: var(--primary-teal);
  transform: translateY(-2px);
}

.digital-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.digital-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
}

/* ===========================
   Government / Institutional
   =========================== */
.govt-section {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 100px 0;
}

.govt-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.govt-intro {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 24px;
}

.govt-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.govt-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: #0b1120;
  font-weight: 500;
}

.govt-list li svg {
  color: var(--primary-teal);
  flex-shrink: 0;
}

.govt-closing {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.7;
  font-style: italic;
}

.govt-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
}

.govt-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Hero supporting line */
.hero-supporting {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}

/* CTA outline variant */
.btn-cta-outline {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-cta-outline:hover {
  background: #ffffff;
  color: #0b1120;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-cta-outline:active {
  transform: translateY(-1px) scale(0.98);
}

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

/* Footer disclaimer */
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  max-width: 500px;
  line-height: 1.5;
  margin-top: 8px;
}

/* ===========================
   Why VR Care Section
   =========================== */
.why-vrcare {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 100px 0;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.why-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.why-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1.5px solid #0b1120;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #0b1120;
  margin-bottom: 24px;
}

.why-heading {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: #0b1120;
  margin-bottom: 28px;
}

.why-list {
  list-style: none;
  margin-bottom: 32px;
}

.why-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 400;
  color: #3d4a5c;
  line-height: 1.5;
  margin-bottom: 16px;
}

.why-list-item svg {
  flex-shrink: 0;
  color: var(--primary-teal);
  margin-top: 2px;
}

.why-list-item span {
  font-weight: 500;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #0b1120;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-family);
}

.btn-dark:hover {
  background: #1a2744;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(11, 17, 32, 0.3);
}

/* ===========================
   Insights / Knowledge Hub Section
   =========================== */
.insights-section {
  position: relative;
  z-index: 1;
  background: #f7f9fc;
  padding: 100px 0;
}

.insights-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.insights-heading {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: #0b1120;
  margin-top: 8px;
}

.insights-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  cursor: grab;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.insights-carousel::-webkit-scrollbar {
  display: none;
}

.insights-track {
  display: flex;
  gap: 24px;
}

.insight-card {
  min-width: calc(25% - 18px);
  max-width: calc(25% - 18px);
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.insight-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insight-card:hover .insight-image img {
  transform: scale(1.05);
}

.insight-body {
  padding: 20px;
}

.insight-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.tag-nabh {
  background: rgba(0, 201, 167, 0.1);
  color: #00a88a;
}

.tag-revenue {
  background: rgba(0, 201, 167, 0.1);
  color: #00a88a;
}

.tag-sops {
  background: rgba(0, 201, 167, 0.1);
  color: #00a88a;
}

.tag-training {
  background: rgba(0, 201, 167, 0.1);
  color: #00a88a;
}

.tag-kpis {
  background: rgba(0, 201, 167, 0.1);
  color: #00a88a;
}

.tag-billing {
  background: rgba(0, 201, 167, 0.1);
  color: #00a88a;
}

.tag-management {
  background: rgba(0, 201, 167, 0.1);
  color: #00a88a;
}

.tag-growth {
  background: rgba(0, 201, 167, 0.1);
  color: #00a88a;
}

.insight-title {
  font-size: 15px;
  font-weight: 700;
  color: #0b1120;
  line-height: 1.4;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-teal);
  transition: all 0.3s ease;
}

.insight-link:hover {
  color: var(--primary-teal-dark);
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #0b3d3a 0%, #0d4f4b 30%, #0a6b5c 60%, #0b3d3a 100%);
  padding: 100px 0;
  text-align: center;
}

.cta-content {
  max-width: 650px;
  margin: 0 auto;
}

.cta-heading {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  font-style: italic;
}

.cta-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 36px;
}

.btn-cta {
  display: inline-block;
  padding: 14px 38px;
  border: 2px solid #ffffff;
  border-radius: 50px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  text-decoration: none;
}

.btn-cta:hover {
  background: #ffffff;
  color: #0b1120;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-cta:active {
  transform: translateY(-1px) scale(0.98);
}

/* ===========================
   Footer
   =========================== */
.footer {
  position: relative;
  z-index: 1;
  background: #0b1120;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}





.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.social-icon:hover {
  border-color: var(--primary-teal);
  color: var(--primary-teal);
  background: rgba(0, 201, 167, 0.1);
}

.footer-h4 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-teal);
}

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-contact .contact-item svg {
  color: var(--primary-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact .contact-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-map {
  margin-top: 16px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-teal);
}

/* ===========================
   Consultation Modal
   =========================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #ffffff;
  border-radius: 16px;
  width: 90%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px) scale(0.95);
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  color: #ffffff;
}

.modal-header {
  background: #0b1120;
  padding: 40px 40px 32px;
  border-radius: 16px 16px 0 0;
}

.modal-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 12px;
  font-style: italic;
}

.modal-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.modal-body {
  padding: 36px 40px 40px;
}

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

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0b1120;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  color: #0b1120;
  background: #f8fafc;
  transition: all 0.3s ease;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0aec0;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-teal);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.1);
}

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

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: var(--primary-teal);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  margin-top: 6px;
}

.btn-submit:hover {
  background: var(--primary-teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 201, 167, 0.3);
}

@media (max-width: 600px) {
  .modal-container {
    width: 95%;
    max-height: 95vh;
  }

  .modal-header {
    padding: 28px 24px 24px;
  }

  .modal-title {
    font-size: 22px;
  }

  .modal-body {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ===========================
   Animations
   ===========================*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  animation: fadeInUp 0.6s ease forwards;
}

.hero-heading {
  animation: fadeInUp 0.6s ease 0.1s forwards;
}

.hero-subheading {
  animation: fadeInUp 0.6s ease 0.2s forwards;
}

.hero-ctas {
  animation: fadeInUp 0.6s ease 0.3s forwards;
}

.hero-right {
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

/* ===========================
   Responsive
   =========================== */
.mobile-menu-btn {
  display: none;
  background: transparent;
  color: var(--text-white);
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001; /* Keeps button above dropdown */
  transition: transform 0.3s ease;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-heading {
    font-size: 38px;
  }

  .hero-right {
    order: -1;
  }

  .hero-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

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

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: none; /* Hide by default on mobile */
    flex-direction: column;
    padding: 24px 0;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
  }

  .nav-links.active {
    display: flex; /* Show when active */
  }

  .nav-links a {
    font-size: 15px;
    padding: 12px 24px;
    display: block;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a::after {
    display: none; /* remove hover line effect on mobile */
  }

  .who-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .who-left {
    max-width: 100%;
  }

  .who-heading {
    font-size: 28px;
  }

  .who-we-are {
    padding: 60px 0 80px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading-light {
    font-size: 28px;
  }

  .core-services {
    padding: 60px 0;
  }

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

  .why-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-heading {
    font-size: 26px;
  }

  .insight-card {
    min-width: calc(50% - 12px);
    max-width: calc(50% - 12px);
  }

  .insights-heading {
    font-size: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .cta-heading {
    font-size: 28px;
  }

  .work-with-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .reality-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audit-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .digital-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .govt-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-heading-dark {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .nav-cta {
    padding: 8px 14px;
    font-size: 12px;
    gap: 6px;
  }

  .nav-cta svg {
    width: 14px;
    height: 14px;
  }

  .nav-logo img {
    height: 48px;
  }

  .nav-logo-text {
    font-size: 18px;
  }
  .hero-heading {
    font-size: 30px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .trusted-stats {
    flex-direction: column;
    gap: 16px;
  }

  .who-stat-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-prefix,
  .stat-suffix {
    font-size: 32px;
  }

  .insight-card {
    min-width: 100%;
    max-width: 100%;
  }

  .insights-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-socials {
    justify-content: center;
  }
  
  .footer-contact .contact-item {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cta-heading {
    font-size: 24px;
  }

  .cta-sub br {
    display: none;
  }

  .work-with-grid {
    grid-template-columns: 1fr;
  }

  .services-grid-3 {
    grid-template-columns: 1fr;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .digital-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .who-work-with,
  .reality-section,
  .audit-section,
  .govt-section {
    padding: 60px 0;
  }

  .impact-section,
  .digital-section {
    padding: 60px 0;
  }
}

/* ===========================
   AUDIT PAGE STYLES
   =========================== */

/* Audit Hero */
.audit-hero {
  position: relative;
  z-index: 1;
  padding: 160px 0 100px;
  text-align: center;
}

.audit-hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.audit-hero-heading {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.audit-hero-sub {
  font-size: 20px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
}

.audit-hero-supporting {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Why Audit */
.ap-why-audit {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 100px 0;
}

.ap-why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.ap-why-intro {
  font-size: 17px;
  color: #4a5568;
  line-height: 1.7;
  margin-top: 24px;
}

.ap-loss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.ap-loss-card {
  background: #f7f9fc;
  border: 1px solid #e8ecf1;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.ap-loss-card:hover {
  border-color: var(--primary-teal);
  transform: translateY(-2px);
}

.ap-loss-icon {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--primary-teal);
}

.ap-loss-card span {
  font-size: 14px;
  font-weight: 700;
  color: #0b1120;
}

.ap-why-challenge {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 16px;
}

.ap-why-challenge strong {
  color: #e53e3e;
}

.ap-why-closing {
  padding: 20px;
  background: #f7f9fc;
  border-radius: 12px;
  border-left: 4px solid var(--primary-teal);
  font-size: 14px;
  color: #4a5568;
  line-height: 1.7;
}

.ap-why-closing strong {
  color: #0b1120;
}

/* Hidden Problems */
.ap-problems {
  position: relative;
  z-index: 1;
  background: var(--bg-dark);
  padding: 100px 0;
}

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

.ap-problem-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.ap-problem-item:hover {
  border-color: var(--primary-teal);
  transform: translateY(-2px);
}

.ap-problem-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-teal);
  flex-shrink: 0;
  min-width: 28px;
}

.ap-problem-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Scope of Audit */
.ap-scope {
  position: relative;
  z-index: 1;
  background: #f7f9fc;
  padding: 100px 0;
}

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

.ap-scope-card {
  background: #ffffff;
  border: 1px solid #e8ecf1;
  border-radius: 14px;
  padding: 32px 24px;
  transition: all 0.3s ease;
}

.ap-scope-card:hover {
  border-color: var(--primary-teal);
  box-shadow: 0 8px 30px rgba(0, 201, 167, 0.08);
  transform: translateY(-4px);
}

.ap-scope-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 201, 167, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary-teal);
}

.ap-scope-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0b1120;
  margin-bottom: 16px;
}

.ap-scope-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ap-scope-card ul li {
  font-size: 13px;
  color: #4a5568;
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.ap-scope-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-teal);
  font-size: 12px;
}

/* Approach / Timeline */
.ap-approach {
  position: relative;
  z-index: 1;
  background: var(--bg-dark);
  padding: 100px 0;
}

.ap-approach-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ap-approach-step {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 32px 24px;
  transition: all 0.3s ease;
}

.ap-approach-step:hover {
  border-color: var(--primary-teal);
  transform: translateY(-4px);
}

.ap-step-marker {
  margin-bottom: 16px;
}

.ap-step-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary-teal);
  font-family: var(--font-family);
}

.ap-step-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.ap-step-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ap-step-content ul li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.ap-step-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-teal);
}

/* Deliverables */
.ap-deliverables {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 100px 0;
}

.ap-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.ap-deliverable-item {
  background: #f7f9fc;
  border: 1px solid #e8ecf1;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.ap-deliverable-item:hover {
  border-color: var(--primary-teal);
  transform: translateY(-2px);
}

.ap-del-icon {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--primary-teal);
}

.ap-deliverable-item span {
  font-size: 13px;
  font-weight: 600;
  color: #0b1120;
  line-height: 1.4;
  display: block;
}

/* Ideal For */
.ap-ideal {
  position: relative;
  z-index: 1;
  background: var(--bg-dark);
  padding: 100px 0;
}

.ap-ideal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ap-ideal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ap-ideal-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 15px;
  color: #1a202c;
  font-weight: 500;
}

.ap-ideal-list li svg {
  color: var(--primary-teal);
  flex-shrink: 0;
}

/* Outcomes */
.ap-outcomes {
  position: relative;
  z-index: 1;
  background: #f7f9fc;
  padding: 100px 0;
}

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

.ap-outcome-card {
  background: #ffffff;
  border: 1px solid #e8ecf1;
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.ap-outcome-card:hover {
  border-color: var(--primary-teal);
  transform: translateY(-4px);
}

.ap-outcome-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 201, 167, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary-teal);
}

.ap-outcome-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0b1120;
  line-height: 1.4;
}

/* Beyond Just an Audit */
.ap-beyond {
  position: relative;
  z-index: 1;
  background: var(--bg-dark);
  padding: 100px 0;
}

.ap-beyond-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.ap-beyond-intro {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.ap-beyond-intro strong {
  color: var(--text-white);
}

.ap-beyond-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ap-beyond-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.ap-beyond-item:hover {
  border-color: var(--primary-teal);
}

.ap-beyond-num {
  color: var(--primary-teal);
  font-weight: 700;
  font-size: 18px;
}

.ap-beyond-item span:not(.ap-beyond-num) {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
}

/* Active nav link */
.nav-links a.active {
  color: var(--primary-teal);
}

.nav-links a.active::after {
  width: 100%;
}

/* ===========================
   FEASIBILITY PAGE STYLES
   =========================== */

/* Feasibility Hero */
.fs-hero {
  position: relative;
  z-index: 1;
  padding: 160px 0 100px;
  text-align: center;
}

.fs-hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.fs-hero-heading {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.fs-hero-sub {
  font-size: 20px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
}

.fs-hero-supporting {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Why Section */
.fs-why {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 100px 0;
}

.fs-issues-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.fs-issue-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f7f9fc;
  border: 1px solid #e8ecf1;
  border-radius: 10px;
  font-size: 14px;
  color: #4a5568;
  transition: all 0.3s ease;
}

.fs-issue-item:hover {
  border-color: #e53e3e;
}

.fs-issue-item svg {
  color: #e53e3e;
  flex-shrink: 0;
}

/* What We Plan */
.fs-whatwedo {
  position: relative;
  z-index: 1;
  background: var(--bg-dark);
  padding: 100px 0;
}

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

.fs-plan-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.fs-plan-item:hover {
  border-color: var(--primary-teal);
  transform: translateY(-4px);
}

.fs-plan-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 201, 167, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--primary-teal);
}

.fs-plan-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.4;
}

/* Framework */
.fs-framework {
  position: relative;
  z-index: 1;
  background: #f7f9fc;
  padding: 100px 0;
}

/* DPR Section */
.fs-dpr {
  position: relative;
  z-index: 1;
  background: var(--bg-dark);
  padding: 100px 0;
}

.fs-dpr-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.fs-dpr-intro {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 24px 0 20px;
}

.fs-dpr-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fs-dpr-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-light);
}

.fs-dpr-item svg {
  color: var(--primary-teal);
  flex-shrink: 0;
}

.fs-dpr-foundation {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 20px;
  margin-top: 60px;
}

.fs-foundation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fs-foundation-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.fs-foundation-card:hover {
  border-color: var(--primary-teal);
}

.fs-foundation-card svg {
  color: var(--primary-teal);
  flex-shrink: 0;
}

.fs-foundation-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
}

/* Deliverables */
.fs-deliverables {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 100px 0;
}

/* Approach Section */
.fs-approach-section {
  position: relative;
  z-index: 1;
  background: #f7f9fc;
  padding: 100px 0;
}

.fs-approach-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fs-step-card {
  background: #ffffff;
  border: 1px solid #e8ecf1;
  border-radius: 14px;
  padding: 32px 24px;
  transition: all 0.3s ease;
}

.fs-step-card:hover {
  border-color: var(--primary-teal);
  transform: translateY(-4px);
}

.fs-step-card .ap-step-num {
  color: var(--primary-teal);
}

.fs-step-card .ap-step-content h3 {
  color: #0b1120;
  font-size: 15px;
}

/* Positioning close */
.fs-positioning-close {
  font-size: 17px;
  color: var(--text-light);
  margin-top: 32px;
}

.fs-positioning-close strong {
  color: var(--primary-teal);
}

/* Feasibility Page Responsive */
@media (max-width: 900px) {
  .fs-hero-heading {
    font-size: 34px;
  }

  .fs-plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fs-dpr-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fs-dpr-foundation {
    margin-top: 0;
  }

  .fs-approach-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .fs-hero {
    padding: 130px 0 60px;
  }

  .fs-hero-heading {
    font-size: 28px;
  }

  .fs-hero-sub {
    font-size: 16px;
  }

  .fs-plan-grid,
  .fs-foundation-grid,
  .fs-approach-timeline {
    grid-template-columns: 1fr;
  }

  .fs-why,
  .fs-whatwedo,
  .fs-framework,
  .fs-dpr,
  .fs-deliverables,
  .fs-approach-section {
    padding: 60px 0;
  }
}

/* ===========================
   TURNAROUND PAGE STYLES
   =========================== */

/* Turnaround Hero */
.ta-hero {
  position: relative;
  z-index: 1;
  padding: 160px 0 100px;
  text-align: center;
}

.ta-hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.ta-hero-heading {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.ta-hero-sub {
  font-size: 20px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
}

.ta-hero-supporting {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Problem section */
.ta-problem {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 100px 0;
}

/* Warning Signs */
.ta-signs {
  position: relative;
  z-index: 1;
  background: var(--bg-dark);
  padding: 100px 0;
}

.ta-signs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ta-sign-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.ta-sign-item:hover {
  border-color: #f6ad55;
  transform: translateY(-2px);
}

.ta-sign-icon {
  width: 40px;
  height: 40px;
  background: rgba(246, 173, 85, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #f6ad55;
}

.ta-sign-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.4;
}

/* What We Fix */
.ta-fix {
  position: relative;
  z-index: 1;
  background: #f7f9fc;
  padding: 100px 0;
}

.ta-fix-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Approach */
.ta-approach {
  position: relative;
  z-index: 1;
  background: var(--bg-dark);
  padding: 100px 0;
}

/* Outcomes */
.ta-outcomes {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 100px 0;
}

/* Audit Link */
.ta-audit-link {
  position: relative;
  z-index: 1;
  background: #f7f9fc;
  padding: 100px 0;
}

.ta-audit-link-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ta-audit-link-text {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.7;
  margin-top: 20px;
}

.ta-audit-card {
  display: block;
  background: #ffffff;
  border: 2px solid #e8ecf1;
  border-radius: 16px;
  padding: 40px 32px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.ta-audit-card:hover {
  border-color: var(--primary-teal);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 201, 167, 0.12);
}

.ta-audit-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 201, 167, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-teal);
}

.ta-audit-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0b1120;
  margin-bottom: 8px;
}

.ta-audit-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 16px;
}

.ta-audit-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-teal);
}

/* Turnaround Page Responsive */
@media (max-width: 900px) {
  .ta-hero-heading {
    font-size: 34px;
  }

  .ta-signs-grid {
    grid-template-columns: 1fr;
  }

  .ta-fix-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ta-audit-link-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .ta-hero {
    padding: 130px 0 60px;
  }

  .ta-hero-heading {
    font-size: 28px;
  }

  .ta-hero-sub {
    font-size: 16px;
  }

  .ta-fix-grid {
    grid-template-columns: 1fr;
  }

  .ta-problem,
  .ta-signs,
  .ta-fix,
  .ta-approach,
  .ta-outcomes,
  .ta-audit-link {
    padding: 60px 0;
  }
}

/* ===========================
   ACCREDITATIONS PAGE STYLES
   =========================== */

/* Accreditation Hero */
.acc-hero {
  position: relative;
  z-index: 1;
  padding: 160px 0 100px;
  text-align: center;
}

.acc-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.acc-hero-heading {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.acc-hero-sub {
  font-size: 20px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
}

.acc-hero-supporting {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Why Accreditation Matters */
.acc-why {
  position: relative;
  z-index: 1;
  background: var(--bg-dark);
  padding: 100px 0;
}

.acc-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.acc-benefit-item {
  background: var(--bg-card);
  padding: 16px 20px;
}

/* What We Support */
.acc-support {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 100px 0;
}

/* Accreditation Page Responsive */
@media (max-width: 900px) {
  .acc-hero-heading {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .acc-hero {
    padding: 130px 0 60px;
  }

  .acc-hero-heading {
    font-size: 28px;
  }

  .acc-hero-sub {
    font-size: 16px;
  }

  .acc-why,
  .acc-support {
    padding: 60px 0;
  }
}

/* ===========================
   HOSPITAL O&M PAGE STYLES
   =========================== */

/* O&M Hero */
.om-hero {
  position: relative;
  z-index: 1;
  padding: 160px 0 100px;
  text-align: center;
}

.om-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.om-hero-heading {
  font-size: 52px;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.om-hero-sub {
  font-size: 20px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
}

.om-hero-supporting {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* O&M List styling */
ul.om-list-light {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

ul.om-list-light li {
  position: relative;
  padding-left: 24px;
  color: #2d3748;
  font-size: 16px;
  line-height: 1.5;
}

ul.om-list-light li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: #e53e3e;
  font-weight: bold;
}

/* O&M What we do Grid */
.om-what-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* O&M Scope Grid */
.om-scope-grid {
  margin-top: 40px;
}

/* O&M Responsive */
@media (max-width: 900px) {
  .om-hero-heading {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .om-hero {
    padding: 130px 0 60px;
  }
  .om-hero-heading {
    font-size: 30px;
  }
  .om-hero-sub {
    font-size: 16px;
  }
  .om-what, .om-scope, .om-control {
    padding: 60px 0 !important;
  }
}

/* ===========================
   PROJECT PLANNING PAGE STYLES
   =========================== */

/* Project Planning Hero */
.plan-hero {
  position: relative;
  z-index: 1;
  padding: 160px 0 100px;
  text-align: center;
}

/* 5-step timeline */
.plan-5-step-timeline {
  grid-template-columns: repeat(5, 1fr) !important;
}

/* Project Planning Responsive */
@media (max-width: 900px) {
  .plan-5-step-timeline {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .plan-hero {
    padding: 130px 0 60px;
  }
  .plan-what, .plan-prelaunch {
    padding: 60px 0 !important;
  }
  .plan-5-step-timeline {
    grid-template-columns: 1fr !important;
  }
}

/* ===========================
   SERVICES OVERVIEW PAGE STYLES
   =========================== */

@media (max-width: 900px) {
  .srv-core-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .srv-supporting-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .srv-hero {
    padding: 130px 0 60px !important;
  }
  .srv-core-grid {
    grid-template-columns: 1fr !important;
  }
  .srv-supporting-grid {
    grid-template-columns: 1fr !important;
  }
  .srv-engage-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Audit Page Responsive */
@media (max-width: 900px) {
  .audit-hero-heading {
    font-size: 34px;
  }

  .ap-why-content,
  .ap-ideal-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ap-problems-grid,
  .ap-scope-grid,
  .ap-approach-timeline,
  .ap-outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ap-deliverables-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ap-loss-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .audit-hero {
    padding: 130px 0 60px;
  }

  .audit-hero-heading {
    font-size: 28px;
  }

  .audit-hero-sub {
    font-size: 16px;
  }

  .ap-problems-grid,
  .ap-scope-grid,
  .ap-approach-timeline,
  .ap-outcomes-grid,
  .ap-beyond-grid {
    grid-template-columns: 1fr;
  }

  .ap-deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ap-loss-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ap-why-audit,
  .ap-problems,
  .ap-scope,
  .ap-approach,
  .ap-deliverables,
  .ap-ideal,
  .ap-outcomes,
  .ap-beyond {
    padding: 60px 0;
  }
}

/* ===========================
   WhatsApp Floating Button
   =========================== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0px 8px 30px rgba(37, 211, 102, 0.5);
}

@media screen and (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* Floating Phone Button */
.phone-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 105px;
  right: 30px;
  background-color: var(--primary-teal);
  color: #FFF;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.phone-float:hover {
  background-color: #008a73;
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0px 8px 30px rgba(0, 201, 167, 0.5);
}

@media screen and (max-width: 768px) {
  .phone-float {
    width: 50px;
    height: 50px;
    bottom: 85px;
    right: 20px;
  }
  .phone-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ===========================
   Contact Page Styles
   =========================== */

.contact-layout {
  padding: 80px 0;
  background: var(--bg-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.contact-info-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  color: #0b1120;
  background: #f8fafc;
  transition: all 0.3s ease;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
  appearance: none;
}

.form-group select:focus {
  border-color: var(--primary-teal);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.1);
}

.radio-group-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  background: #f8fafc;
  transition: all 0.2s ease;
}

.radio-option:hover {
  border-color: var(--primary-teal);
  background: #ffffff;
}

.radio-option input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary-teal);
  cursor: pointer;
}

.radio-option span {
  font-size: 14px;
  color: #0b1120;
  font-weight: 500;
}

/* O&M Tag List */
.om-tags-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.om-tags-list li {
  background: #f7f9fc;
  border: 1px solid #e8ecf1;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 13px;
  color: #4a5568;
  font-weight: 500;
  transition: all 0.2s ease;
}

.om-tags-list li::before {
  content: none;
}

.om-tags-list li:hover {
  background: rgba(0, 201, 167, 0.05);
  border-color: var(--primary-teal);
  color: var(--primary-teal);
}

.om-list-light {
  list-style: none;
  padding: 0;
  margin: 0;
}

.om-list-light li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #1a202c;
  font-weight: 500;
  line-height: 1.5;
}

.om-list-light li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-teal);
  font-weight: 800;
}


/* ===========================
   Premium O&M Model Cards
   =========================== */
.om-model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.om-model-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  backdrop-filter: blur(10px);
  height: 100%;
}

.om-model-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(0, 201, 167, 0.06), transparent 40%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
}

.om-model-card:hover::after {
  opacity: 1;
}

.om-model-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 201, 167, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 201, 167, 0.1);
}

.om-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.om-card-num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 25px;
  pointer-events: none;
  transition: color 0.3s ease;
}

.om-model-card:hover .om-card-num {
  color: rgba(0, 201, 167, 0.08);
}

.om-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 201, 167, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.om-model-card:hover .om-card-icon {
  background: var(--primary-teal);
  color: white;
  transform: scale(1.1) rotate(-5deg);
}

.om-card-title {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.om-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
  flex-grow: 1;
}

.om-card-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.om-outcome-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-teal);
  margin-bottom: 8px;
  font-weight: 700;
}

.om-outcome-text {
  font-size: 15px;
  color: white;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .om-model-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .om-model-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

