/* ==========================================================================
   NIVORA EYE INSTITUTE - LASIK & SPECS REMOVAL LANDING PAGE STYLES
   Color Palette:
   - Primary Steel Teal: #23869B
   - Midnight Dark: #0F2A38
   - Accent Gold: #E5A823
   - Accent Gold Hover: #CC9213
   - Soft Sky Light: #EFF8FA
   - Smoke Background: #F4F8FA
   - Text Dark: #0A1926
   - Text Body: #2C3E50
   - Text Muted: #5A6E7F
   ========================================================================== */

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

:root {
  --primary: #23869B;
  --primary-dark: #3D87AA;
  --primary-light: #349BB3;
  --accent-gold: #E5A823;
  --accent-gold-hover: #CC9213;
  --accent-gold-light: #FFF9EB;
  --sky-blue: #23869B;
  --sky-light: #EFF8FA;
  --bg-smoke: #F4F8FA;
  --bg-smoke-dark: #E6EFF3;
  --text-dark: #0A1926;
  --text-body: #2C3E50;
  --text-muted: #5A6E7F;
  --border-light: #D5E3E8;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(35, 134, 155, 0.08);
  --shadow-md: 0 10px 25px -5px rgba(35, 134, 155, 0.12), 0 8px 10px -6px rgba(35, 134, 155, 0.06);
  --shadow-lg: 0 20px 35px -10px rgba(15, 42, 56, 0.2), 0 10px 15px -5px rgba(15, 42, 56, 0.1);
  --shadow-gold: 0 10px 25px rgba(229, 168, 35, 0.35);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.25;
}

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

ul {
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Typography & Utility Helpers */
.text-gold {
  color: var(--accent-gold);
}

.text-teal {
  color: var(--primary);
}

.text-white {
  color: #FFFFFF;
}

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

.text-left {
  text-align: left;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0rem;
  background-color: var(--sky-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-tag.dark {
  background-color: rgb(255 255 255 / 0%);
  border-color: rgb(255 255 255 / 0%);
  color: #fff;
}

.section-title {
  font-size: 2.25rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: #FFFFFF;
  border-color: var(--accent-gold);
  font-weight: 700;
}

.btn-gold i {
  color: #FFFFFF;
}

.btn-gold:hover {
  background-color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

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

.btn-teal:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

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

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

.btn-outline-gold:hover {
  background: var(--accent-gold);
  color: #FFFFFF;
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.05rem;
}

/* HEADER & NAVBAR */
.top-bar {
  background-color: #296886;
  color: #CBD5E1;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-info span,
.top-bar-info a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #CBD5E1;
}

.top-bar-info a:hover {
  color: var(--accent-gold);
}

.header-main {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.85rem 0;
  transition: var(--transition);
}

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

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nivora-logo-img {
  height: 52px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  filter: none;
  transition: var(--transition);
}

.nivora-logo-img:hover {
  transform: scale(1.02);
}

.nabh-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: none;
  transition: var(--transition);
}

.nabh-logo-img:hover {
  transform: scale(1.02);
}

.nabh-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  background-color: var(--accent-gold-light);
  border: 1px solid rgba(229, 168, 35, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  color: #8C6200;
}

.footer-logos-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #FFFFFF;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  max-width: max-content;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.nivora-footer-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.nabh-footer-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  border-left: 1px solid #E2E8F0;
  padding-left: 0.85rem;
}

.nabh-badge i {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-quick-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.05rem;
}

.phone-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--sky-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.call-now-mobile-btn {
  display: none;
  align-items: center;
  gap: 0.45rem;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.call-now-mobile-btn:hover {
  background: var(--primary-light);
  color: #FFFFFF;
}

/* SECTION 01: HERO BANNER */
.hero-section {
  position: relative;
  background-image: linear-gradient(90deg, rgba(15, 42, 56, 0.94) 0%, rgba(15, 42, 56, 0.8) 42%, rgba(15, 42, 56, 0.25) 75%, rgba(15, 42, 56, 0) 100%), url('../images/lasik-banner-img.jpeg');
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
  color: #FFFFFF;
  padding: 4rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 508px;
  height: 508px;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 168, 35, 0.22) 0%, rgba(35, 134, 155, 0) 70%);
  pointer-events: none;
}

.hero-text-content {
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.hero-headline {
  font-size: 2.35rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 3.15rem;
  }
}

.hero-headline span {
  color: var(--accent-gold);
  position: relative;
  display: inline-block;
}

.hero-subheadline {
  font-size: 1.2rem;
  color: #E2E8F0;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0;
}

.hero-floating-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(41, 104, 134, 0.95);
  backdrop-filter: blur(12px);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.floating-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.floating-text h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.floating-text p {
  color: #CBD5E1;
  font-size: 0.85rem;
}

/* SECTION 02: AWARDS & RECOGNITIONS */
.awards-section {
  padding: 3.5rem 0;
  background-color: var(--bg-smoke);
  border-bottom: 1px solid var(--border-light);
}

.awards-banner {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .awards-banner {
    grid-template-columns: 1fr 400px;
  }
}

.awards-form-box {
  background: var(--bg-smoke, #f8f9fa);
  padding: 2rem;
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--border-light, #e9ecef);
}

.form-title {
  font-size: 1.5rem;
  color: var(--primary, #0f4c81);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted, #6c757d);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary, #0f4c81);
  box-shadow: 0 0 0 2px rgba(15, 76, 129, 0.1);
}

.form-submit-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background-color: var(--accent-gold, #d4af37);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.form-submit-btn:hover {
  background-color: var(--primary, #0f4c81);
  transform: translateY(-2px);
}

.awards-content-box {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.awards-quote-box {
  border-left: 4px solid var(--accent-gold);
  padding-left: 1.5rem;
}

.awards-quote-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.awards-quote-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}

.media-logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 120px);
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 576px) {
  .media-logos-grid {
    grid-template-columns: repeat(4, 120px);
  }
}

.media-logo-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  width: 120px;
  height: 120px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  overflow: hidden;
}

.media-logo-card img {
  width: 100%;
  height: 100%;
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.05));
  transition: transform 0.3s ease;
}

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

.media-logo-card:hover img {
  transform: scale(1.06);
}

/* SECTION 03: TRUST NUMBERS */
.trust-numbers-section {
  padding: 5rem 0;
  background-color: #FFFFFF;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 576px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: var(--bg-smoke);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.stat-card:hover::before {
  background: var(--accent-gold);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.trust-narrative-box {
  background: linear-gradient(135deg, var(--sky-light) 0%, #FFFFFF 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .trust-narrative-box {
    flex-direction: column;
    text-align: center;
  }
}

.trust-narrative-box img.dr-thumb {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-gold);
  flex-shrink: 0;
}

.trust-narrative-text p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.trust-narrative-author {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

/* SECTION 04: ADVANCED OPTIONS FOR SPECS REMOVAL */
.specs-options-section {
  padding: 5.5rem 0;
  background-color: var(--bg-smoke);
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .options-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.option-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}

.option-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.option-card.featured-card {
  border: 2px solid var(--accent-gold);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--accent-gold-light) 100%);
}

.option-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-gold);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.option-image-box {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--bg-smoke-dark);
}

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

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

.option-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.option-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--sky-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.option-card.featured-card .option-icon-box {
  background: var(--accent-gold);
  color: #FFFFFF;
}

.option-title {
  font-size: 1.35rem;
  color: var(--text-dark);
}

.option-desc {
  font-size: 0.975rem;
  color: var(--text-body);
  line-height: 1.65;
  font-weight: 500;
}

/* SECTION 05: MOST ADVANCED LASIK TECHNOLOGY */
.tech-section {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, #3D87AA 0%, #296886 100%);
  color: #FFFFFF;
}

.tech-section-title {
  color: #FFFFFF;
}

.tech-intro-text {
  color: #E2E8F0;
  font-size: 1.15rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

.tech-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .tech-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.tech-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tech-item-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition);
}

.tech-item-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-gold);
  transform: translateX(6px);
}

.tech-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-gold);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.tech-item-content h3 {
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.tech-item-content p {
  color: #CBD5E1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.tech-visual-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, 0.12);
}

.tech-visual-wrap img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.tech-badge-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(41, 104, 134, 0.95), rgba(41, 104, 134, 0.5));
  padding: 1.5rem;
}

.tech-badge-overlay h4 {
  color: var(--accent-gold);
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.tech-badge-overlay p {
  color: #E2E8F0;
  font-size: 0.875rem;
}

/* SECTION 06: WHY CHOOSE NIVORA */
.why-choose-section {
  padding: 5.5rem 0;
  background-color: #FFFFFF;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 576px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  background: var(--bg-smoke);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.5rem;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  background: #FFFFFF;
}

.why-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--sky-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 1.5rem;
}

.why-card:hover .why-icon-box {
  background: var(--primary);
  color: #FFFFFF;
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* SECTION 07: MEET OUR SPECIALISTS */
.doctors-section {
  padding: 5.5rem 0;
  background-color: var(--bg-smoke);
}

.doctors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .doctors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.doctor-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.doctor-image-box {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: var(--bg-smoke-dark);
}

.doctor-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.doctor-experience-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--primary-dark);
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
}

.doctor-details {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.doctor-name {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.doctor-role {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.doctor-expertise {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.doctor-bio {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.doctor-note-box {
  margin-top: 3rem;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

/* SECTION 08: TREATMENT PROCESS (TIMELINE DESIGN) */
.process-section {
  padding: 5.5rem 0;
  background-color: var(--bg-smoke);
}

.process-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 1rem 0;
}

/* Connecting Line for Timeline */
@media (min-width: 992px) {
  .process-timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }

  .process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 8%;
    right: 8%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent-gold) 50%, var(--primary) 100%);
    z-index: 1;
    border-radius: 2px;
  }
}

@media (max-width: 991px) {
  .process-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 42px;
    width: 4px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent-gold) 50%, var(--primary) 100%);
    z-index: 1;
    border-radius: 2px;
  }
}

.process-step-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.25rem 1.75rem 1.25rem;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 991px) {
  .process-step-card {
    padding-left: 5rem;
    text-align: left;
    align-items: flex-start;
  }

  .step-number-bubble {
    position: absolute;
    left: 17px;
    top: 24px;
    margin: 0 !important;
  }
}

.process-step-card:hover {
  background: #FFFFFF;
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-number-bubble {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 4px 12px rgba(35, 134, 155, 0.25);
  border: 4px solid #FFFFFF;
  transition: var(--transition);
  z-index: 3;
}

.process-step-card:hover .step-number-bubble {
  background: var(--accent-gold);
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(229, 168, 35, 0.35);
  transform: scale(1.08);
}

.process-step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
  color: var(--text-dark);
  font-weight: 700;
}

.process-step-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

line-height: 1.5;
}

/* SECTION 09: PATIENT STORIES / TESTIMONIALS */
.testimonials-section {
  padding: 5.5rem 0;
  background-color: var(--bg-smoke);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

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

.stars-row {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.25rem;
}

.testimonial-quote {
  font-size: 0.975rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.patient-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.patient-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sky-light);
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.patient-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.patient-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* SECTION 10: FAQs */
.faq-section {
  padding: 5.5rem 0;
  background-color: #FFFFFF;
}

.faq-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  overflow: hidden;
  background: var(--bg-smoke);
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.75rem;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 1rem;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sky-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--primary);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease;
  padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.75rem 1.5rem 1.75rem;
}

.faq-answer p {
  font-size: 0.975rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* SECTION 11: FINAL CONSULTATION CTA & LEAD FORM */
.appointment-section {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, #3D87AA 0%, #296886 100%);
  color: #FFFFFF;
}

.appointment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .appointment-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.cta-text-content h2 {
  color: #FFFFFF;
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.cta-text-content p {
  color: #E2E8F0;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #FFFFFF;
}

.cta-highlight-item i {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

/* Lead Form Card (Matching Screenshot) */
.specs-form-card {
  background-color: #EBF3F7;
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: 0 15px 35px rgba(35, 134, 155, 0.12);
  color: #2C3E50;
  width: 100%;
  border: 1px solid #D5E5EE;
}

.specs-form-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: #2D7C9D;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.specs-form-row {
  margin-bottom: 1.2rem;
}

.specs-form-row.two-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

@media (min-width: 576px) {
  .specs-form-row.two-cols {
    grid-template-columns: 1fr 1fr;
  }
}

.input-icon-group {
  position: relative;
  width: 100%;
}

.specs-input {
  width: 100%;
  padding: 0.85rem 2.6rem 0.85rem 1rem;
  background: #FFFFFF;
  border: 1px solid #E0E8EE;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #2C3E50;
  transition: var(--transition);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.specs-input::placeholder {
  color: #7A8E9E;
  opacity: 1;
}

.specs-input:focus {
  outline: none;
  border-color: #2D7C9D;
  box-shadow: 0 0 0 3px rgba(45, 124, 157, 0.15);
}

.input-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #8CA0B0;
  font-size: 1rem;
  pointer-events: none;
}

.specs-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-color: #FFFFFF;
  color: #2C3E50;
}

.specs-select option {
  padding: 0.75rem;
  color: #2C3E50;
}

.specs-select option:first-child {
  font-weight: 700;
  color: #D99B00;
  background-color: #FFF9EB;
}

.textarea-group .input-icon {
  top: 1.15rem;
  transform: none;
}

.specs-textarea {
  resize: vertical;
  min-height: 90px;
  font-family: var(--font-body);
}

.specs-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: #4A607A;
  cursor: pointer;
  user-select: none;
}

.specs-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #2D7C9D;
  cursor: pointer;
}

.recaptcha-box {
  background: #FFFFFF;
  border: 1px solid #D1DFE8;
  border-radius: 6px;
  padding: 0.65rem 1rem;
  width: 270px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.recaptcha-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: #2C3E50;
  font-weight: 500;
}

.recaptcha-left input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #1A73E8;
  cursor: pointer;
}

.recaptcha-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recaptcha-logo-icon {
  font-size: 1.5rem;
  color: #1A73E8;
}

.recaptcha-text {
  font-size: 0.6rem;
  color: #708090;
  margin-top: 2px;
  font-weight: 600;
}

.specs-submit-btn {
  background-color: #2D7C9D;
  color: #FFFFFF;
  border: none;
  padding: 0.85rem 1.85rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(45, 124, 157, 0.25);
}

.specs-submit-btn:hover {
  background-color: #226784;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45, 124, 157, 0.35);
}

.success-state {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #10B981;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem auto;
}

/* FOOTER */
.site-footer {
  background-color: #F8FAFC;
  color: #475569;
  padding: 4.5rem 0 2rem 0;
  font-size: 0.925rem;
  border-top: 1px solid #E2E8F0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.1fr 1.6fr 1.1fr;
    gap: 3rem;
  }
}

.footer-col h4 {
  color: #0F172A;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-about-text {
  color: #475569;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.footer-services-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.65rem 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 576px) {
  .footer-services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-services-list li {
  font-size: 0.9rem;
  color: #334155;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-services-list li i {
  color: var(--primary);
  font-size: 0.8rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  font-size: 0.9rem;
  color: #334155;
}

.footer-contact-item strong {
  color: #0F172A;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 0.25rem;
  font-size: 1.05rem;
}

.footer-contact-link {
  color: #296886;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-link:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: #64748B;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.social-links {
  display: flex;
  gap: 0.85rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #E2E8F0;
  color: #1E293B;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background: #296886;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* STICKY MOBILE ACTION BAR */
.sticky-mobile-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 99;
  border-top: 1px solid var(--border-light);
}

@media (min-width: 992px) {
  .sticky-mobile-bar {
    display: none;
  }
}

.mobile-bar-btn {
  flex: 1;
  padding: 0.85rem 0.5rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: var(--text-dark);
  border-right: 1px solid var(--border-light);
}

.mobile-bar-btn:last-child {
  border-right: none;
  background: var(--accent-gold);
  color: #FFFFFF;
}

.mobile-bar-btn i {
  font-size: 1.1rem;
}

/* BOOKING MODAL POPUP */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 42, 56, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-smoke);
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
}

/* ==========================================================================
   MOBILE VIEW OPTIMIZATIONS (< 768px & < 576px)
   ========================================================================== */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

@media (max-width: 768px) {

  /* Body & Spacing */
  body {
    padding-bottom: 70px;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Header & Navigation Fixes */
  .header-main {
    padding: 0.6rem 0;
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .brand-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nivora-logo-img {
    height: 44px;
    max-width: 175px;
  }

  .nabh-logo-img {
    height: 36px;
    width: auto;
  }

  .nav-cta-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .desktop-only {
    display: none !important;
  }

  .call-now-mobile-btn {
    display: inline-flex !important;
  }

  /* Section Padding & Headings */
  .hero-section,
  .specs-options-section,
  .tech-section,
  .why-choose-section,
  .doctors-section,
  .stats-section,
  .testimonials-section,
  .faq-section,
  .footer {
    padding: 2.5rem 0;
  }

  .hero-section {
    overflow: hidden;
  }

  .hero-text-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-tag.dark {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
    max-width: 100%;
    line-height: 1.4;
    margin-left: auto;
    margin-right: auto;
  }

  .section-title {
    font-size: 1.6rem !important;
    line-height: 1.3 !important;
  }

  .section-subtitle {
    font-size: 0.92rem !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-headline {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
    text-align: center !important;
  }

  .hero-subheadline {
    font-size: 0.92rem !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
    align-items: center;
    justify-content: center;
  }

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

  /* Option Cards (Treatment Options) */
  .options-grid {
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .option-card {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .option-image-box {
    height: 160px;
    margin-bottom: 1rem;
    border-radius: 10px;
  }

  .hero-section {
    padding: 3.5rem 0;
    min-height: 508px;
    height: auto;
    background-image: linear-gradient(180deg, rgba(15, 42, 56, 0.94) 0%, rgba(15, 42, 56, 0.72) 60%, rgba(15, 42, 56, 0.3) 100%), url('../images/lasik-banner-img.jpeg');
    background-position: right bottom;
  }

  .option-header {
    gap: 0.75rem;
    margin-bottom: 0.85rem;
  }

  .option-icon-box {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
    border-radius: 10px;
  }

  .option-title {
    font-size: 1.15rem;
  }

  .option-desc {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  /* Doctor Cards (Specialists Section) */
  .doctors-grid {
    gap: 1.5rem;
  }

  .doctor-image-box {
    height: 270px;
  }

  .doctor-details {
    padding: 1.25rem;
  }

  .doctor-name {
    font-size: 1.25rem;
  }

  .doctor-bio {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }

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

  /* Buttons & CTAs */
  .btn-lg {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }

  /* Modal Popup */
  .modal-container {
    padding: 1.5rem;
    border-radius: 16px;
    max-width: 92%;
  }
}

@media (max-width: 480px) {
  .brand-wrapper {
    gap: 0.4rem;
  }

  .nivora-logo-img {
    height: 38px;
    max-width: 150px;
  }

  .nabh-logo-img {
    height: 32px;
  }

  .call-now-mobile-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
  }

  .hero-headline {
    font-size: 1.55rem !important;
  }

  .doctor-image-box {
    height: 240px;
  }

  .option-image-box {
    height: 145px;
  }
}

/* DOCTOR INTRO SECTION */
.doctor-intro-section {
  padding: 4rem 0;
  background-color: #fff;
  border-bottom: 1px solid var(--border-light);
}

.doctor-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .doctor-intro-grid {
    grid-template-columns: 400px 1fr;
  }
}

.doctor-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 4px solid #fff;
}

.doctor-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.doctor-image-wrapper:hover .doctor-img {
  transform: scale(1.05);
}

.doctor-content-wrapper {
  display: flex;
  flex-direction: column;
}

.doctor-subheading {
  color: var(--accent-gold, #d4af37);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.doctor-heading {
  color: var(--primary, #0f4c81);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.doctor-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.doctor-badge {
  background-color: var(--bg-smoke, #f8f9fa);
  color: var(--text-dark, #333);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border-light, #e9ecef);
}

.doctor-badge i {
  color: var(--primary, #0f4c81);
}

.doctor-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted, #555);
}