/* ==========================================================================
   YUKTI AYURVEDA HEALTH HOME - PREMIUM DESIGN SYSTEM & STYLESHEET
   Brand Palette: Deep Forest Green (#0B4D3C), Gold/Mustard (#C99A45), Cream (#F8F9F4)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Mukta:wght@400;500;600;700;800&family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@500;600;700;800&display=swap');

:root {
  /* Palette */
  --bg-primary: #F8F9F4;
  --bg-secondary: #FFFFFF;
  --bg-card-glass: rgba(255, 255, 255, 0.88);
  --bg-accent-soft: #F0F4EC;
  --bg-gold-light: #FAF3E6;
  
  --brand-primary: #0B4D3C;
  --brand-dark: #063529;
  --brand-light: #126650;
  --brand-glow: rgba(11, 77, 60, 0.15);

  --accent-gold: #C99A45;
  --accent-gold-dark: #A67C2E;
  --accent-gold-light: #F4E8D0;
  --accent-gold-glow: rgba(201, 154, 69, 0.28);
  
  --text-dark: #142620;
  --text-body: #344840;
  --text-muted: #5B7067;
  --text-light: #F8F9F4;

  --border-subtle: rgba(11, 77, 60, 0.1);
  --border-gold: rgba(201, 154, 69, 0.4);

  --shadow-sm: 0 4px 14px rgba(11, 77, 60, 0.05);
  --shadow-md: 0 10px 30px rgba(11, 77, 60, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 77, 60, 0.13);
  --shadow-gold: 0 12px 30px rgba(201, 154, 69, 0.25);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;

  --font-title: 'Cinzel', 'Poppins', serif;
  --font-heading: 'Poppins', 'Mukta', sans-serif;
  --font-body: 'Open Sans', 'Mukta', sans-serif;
  --max-width: 1400px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Background Ambient Orbs Animation */
body::before, body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.45;
  animation: floatOrb 18s ease-in-out infinite alternate;
}

body::before {
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-gold-glow), transparent 70%);
}

body::after {
  top: 45%;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--brand-glow), transparent 70%);
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 60px) scale(1.1); }
  100% { transform: translate(-30px, 30px) scale(0.95); }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 95%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Section Layout & Headers */
section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(11, 77, 60, 0.1), rgba(11, 77, 60, 0.04));
  border: 1px solid rgba(11, 77, 60, 0.15);
  color: var(--brand-primary);
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(11, 77, 60, 0.06);
}

.section-badge.gold {
  background: linear-gradient(135deg, rgba(201, 154, 69, 0.2), rgba(201, 154, 69, 0.08));
  border-color: var(--border-gold);
  color: var(--accent-gold-dark);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4vw, 2.85rem);
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1.22;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.section-title span.highlight {
  color: var(--accent-gold);
  position: relative;
  display: inline-block;
}

.section-title span.highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--accent-gold-glow);
  border-radius: 4px;
  z-index: -1;
}

.section-subtitle {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ==========================================================================
   BUTTON SYSTEM
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
  color: var(--text-light);
  box-shadow: 0 8px 20px rgba(11, 77, 60, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-light), var(--brand-primary));
  box-shadow: 0 12px 28px rgba(11, 77, 60, 0.3);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-gold), #B58836);
  color: var(--brand-dark);
  font-weight: 800;
  box-shadow: var(--shadow-gold);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #D6A850, var(--accent-gold));
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(201, 154, 69, 0.35);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.8);
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--brand-primary);
  color: var(--text-light);
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR & REFINED STICKY NAVBAR
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, var(--brand-dark) 0%, #094234 100%);
  color: rgba(248, 249, 244, 0.92);
  font-size: 0.86rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201, 154, 69, 0.2);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-info-item svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

.top-tagline {
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Navbar Container */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 249, 244, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  background: rgba(248, 249, 244, 0.98);
  box-shadow: 0 8px 24px rgba(11, 77, 60, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--brand-primary);
  background-color: #ffffff;
  padding: 2px;
  box-shadow: 0 4px 12px rgba(11, 77, 60, 0.12);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: rotate(5deg) scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-text h1 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1.15;
  margin: 0;
}

.brand-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Nav Menu Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--brand-primary));
  border-radius: var(--radius-full);
  transition: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-cta .btn {
  padding: 10px 22px;
  font-size: 0.9rem;
  height: 42px;
  white-space: nowrap;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--brand-primary);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 6px;
}

/* ==========================================================================
   SECTION 1: HERO / HEADER
   ========================================================================== */
.hero-section {
  padding: 70px 0 90px;
  background: linear-gradient(135deg, #F8F9F4 0%, #EFF4EA 50%, #F5F8F2 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 46px;
  align-items: center;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--bg-gold-light);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold-dark);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 22px;
  box-shadow: 0 4px 15px rgba(201, 154, 69, 0.12);
  animation: pulseBadge 3s infinite alternate;
}

@keyframes pulseBadge {
  0% { box-shadow: 0 4px 15px rgba(201, 154, 69, 0.12); }
  100% { box-shadow: 0 6px 22px rgba(201, 154, 69, 0.28); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.8vw, 3.5rem);
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1.16;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--brand-primary);
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.12rem;
  color: var(--text-body);
  margin-bottom: 32px;
  max-width: 620px;
  line-height: 1.75;
}

/* Quote Cards Grid (Matching Banner Design) */
.hero-quotes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 36px;
  max-width: 500px;
}

.quote-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201, 154, 69, 0.4);
  position: relative;
  transition: transform 0.3s ease;
}

/* Add diamond shape to the middle of the border, matching banner */
.quote-item:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  background: var(--bg-primary);
  border: 1px solid rgba(201, 154, 69, 0.6);
}

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

.quote-item:hover {
  transform: translateX(5px);
}

.quote-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--brand-primary);
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.quote-icon svg {
  width: 28px;
  height: 28px;
}

.quote-text {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.45;
  font-family: var(--font-heading);
}

.quote-text strong {
  color: var(--brand-dark);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Horizontal Trust Badges Row */
.trust-badges-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 28px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
  color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 154, 69, 0.3);
}

.trust-badges-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  animation: shineBar 4s infinite;
}

@keyframes shineBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.trust-badge-item svg {
  color: var(--accent-gold);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.2);
}

/* Doctor Profile Section */
/* Slider Wrapper */
.doctor-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden; /* Contains the slider and buttons */
  padding: 20px 0; /* Add padding if your cards have box-shadows */
}

/* Slider Track */
.doctor-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* Smooth touch scrolling on iOS */
  
  /* Hide scrollbar */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.doctor-slider::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* Individual Slide */
.doctor-slide {
  flex: 0 0 100%; /* Each slide takes up 100% of the container width */
  min-width: 100%;
  scroll-snap-align: start; /* Snaps the slide to the beginning of the container */
}

/* Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background-color: #007bff; /* Change to your theme's primary color */
  color: #fff;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

/* Optional: Hide buttons on mobile since users can swipe */
@media (max-width: 768px) {
  .slider-btn {
    display: none; 
  }
}
/* Hero Visual Card */
.hero-visual-card {
  position: relative;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  border: 1px solid rgba(201, 154, 69, 0.3);
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-visual-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(11, 77, 60, 0.18);
}

.hero-logo-frame {
  width: 190px;
  height: 190px;
  margin: 0 auto 24px;
  background: #ffffff;
  border-radius: 50%;
  padding: 14px;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--brand-primary);
  position: relative;
  transition: transform 0.5s ease;
}

.hero-logo-frame::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed var(--accent-gold);
  animation: spinSlow 25s linear infinite;
}

@keyframes spinSlow {
  100% { transform: rotate(360deg); }
}

.hero-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-visual-caption h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 6px;
}

.hero-visual-caption p {
  font-size: 0.94rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION 2: MEET THE EXPERT (DOCTOR PROFILE)
   ========================================================================== */
.doctor-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.doctor-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.doctor-image-wrapper {
  position: relative;
}

.doctor-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--bg-primary);
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
}

.doctor-image-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.doctor-image-card:hover img {
  transform: scale(1.04);
}

.doctor-exp-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--accent-gold), #B58836);
  color: var(--brand-dark);
  padding: 14px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
  font-family: var(--font-heading);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatBadge 4s ease-in-out infinite alternate;
}

@keyframes floatBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.doctor-exp-badge span {
  font-size: 1.6rem;
  line-height: 1;
}

.doctor-exp-badge small {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.doctor-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 2.7rem);
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 6px;
}

.doctor-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.doctor-title .tag {
  background: var(--bg-gold-light);
  color: var(--accent-gold-dark);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid var(--border-gold);
}

.doctor-quote-box {
  background: var(--bg-primary);
  border-left: 5px solid var(--accent-gold);
  padding: 22px 26px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 26px 0;
  font-size: 1.06rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.65;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.doctor-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 34px;
}

.doc-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-primary);
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.doc-feature:hover {
  background: #ffffff;
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.doc-feature svg {
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.doc-feature strong {
  display: block;
  font-size: 0.98rem;
  color: var(--brand-primary);
}

.doc-feature span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION 3: SPECIALIZED TREATMENTS & 5 WARNING SIGNS
   ========================================================================== */
.specialized-section {
  background: var(--bg-primary);
}

.warning-signs-container {
  margin: 44px 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
}

.warning-signs-header {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-primary));
  color: #ffffff;
  padding: 22px 30px;
  text-align: center;
  position: relative;
}

.warning-signs-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: #ffffff;
}

.warning-signs-header p {
  color: var(--accent-gold-light);
  font-size: 0.98rem;
}

.warning-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  background: #ffffff;
  padding: 30px 24px;
}

.warning-card {
  text-align: center;
  background: var(--bg-primary);
  padding: 24px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}

.warning-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold);
}

.warning-number {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.warning-icon {
  width: 58px;
  height: 58px;
  margin: 8px auto 16px;
  background: var(--bg-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-dark);
  border: 1px solid var(--border-gold);
  transition: transform 0.3s ease;
}

.warning-card:hover .warning-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--accent-gold);
  color: var(--brand-dark);
}

.warning-card p.en {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 4px;
  line-height: 1.35;
}

.warning-card p.np {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Warning Alert Box */
.warning-alert-box {
  background: linear-gradient(135deg, #FFF9EC, #FDF3DF);
  border: 2px solid var(--accent-gold);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--brand-dark);
}

.warning-alert-box svg {
  color: var(--accent-gold-dark);
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  animation: pulseAlert 2s infinite;
}

@keyframes pulseAlert {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.warning-alert-box p {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
}

/* Treatment Cards Grid */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 54px;
}

.treatment-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.treatment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-primary), var(--accent-gold));
}

.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 154, 69, 0.4);
}

.treatment-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.treatment-card:hover .treatment-icon {
  background: var(--brand-primary);
  color: var(--accent-gold);
}

.treatment-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 8px;
}

.treatment-card .tagline {
  color: var(--accent-gold-dark);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.treatment-card p {
  font-size: 0.96rem;
  color: var(--text-body);
  margin-bottom: 26px;
  flex-grow: 1;
}

/* ==========================================================================
   SECTION 4: PANCHAKARMA THERAPIES & SPECIAL OFFERS
   ========================================================================== */
.panchakarma-section {
  background: #ffffff;
}

.promo-offer-banner {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary) 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 36px 48px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--accent-gold);
  position: relative;
  overflow: hidden;
}

.promo-offer-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 154, 69, 0.15));
  pointer-events: none;
}

.promo-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-gold), #B58836);
  color: var(--brand-dark);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 12px;
  box-shadow: var(--shadow-gold);
}

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

.pk-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  border: 1px solid var(--border-subtle);
  transition: all 0.35s ease;
}

.pk-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: #ffffff;
  border-color: var(--accent-gold);
}

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

.pk-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.pk-title h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-dark);
}

.pk-title span {
  font-size: 0.88rem;
  color: var(--accent-gold-dark);
  font-weight: 700;
}

.pk-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* Benefits Icons Grid */
.benefits-row-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 28px;
}

.benefits-icons-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.benefit-item {
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: 22px 12px;
  text-align: center;
  border: 1px solid var(--border-subtle);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.benefit-item:hover {
  background: var(--brand-primary);
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.benefit-item:hover .benefit-icon {
  background: rgba(255, 255, 255, 0.18);
  color: var(--accent-gold);
  transform: scale(1.1);
}

.benefit-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(11, 77, 60, 0.08);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.benefit-item span {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

/* ==========================================================================
   SECTION 5: COMPREHENSIVE SERVICES & SPECIALIZATIONS
   ========================================================================== */
.services-section {
  background: var(--bg-primary);
}

.services-two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.service-col-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  position: relative;
}

.service-col-card.accent-header {
  border-top: 6px solid var(--accent-gold);
}

.service-col-card.primary-header {
  border-top: 6px solid var(--brand-primary);
}

.col-card-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--bg-primary);
}

.col-card-title svg {
  width: 36px;
  height: 36px;
}

.service-col-card.accent-header .col-card-title svg {
  color: var(--accent-gold-dark);
}

.service-col-card.primary-header .col-card-title svg {
  color: var(--brand-primary);
}

.col-card-title h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-dark);
}

.col-card-title span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.services-list-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.service-list-item:hover {
  background: var(--bg-accent-soft);
  transform: translateX(6px);
  border-left-color: var(--accent-gold);
}

.list-icon-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 800;
  font-size: 0.85rem;
}

.service-list-item div strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.service-list-item div span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION 6: FOOTER & CONTACT INFORMATION
   ========================================================================== */
.footer-section {
  background: linear-gradient(180deg, var(--brand-dark) 0%, #04271F 100%);
  color: var(--text-light);
  padding: 90px 0 0;
}

.contact-booking-wrapper {
  background: #ffffff;
  color: var(--text-dark);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 80px;
  border: 1px solid rgba(201, 154, 69, 0.3);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 46px;
}

.contact-info-side h3 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 14px;
}

.contact-info-side p {
  color: var(--text-body);
  margin-bottom: 30px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(11, 77, 60, 0.1);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--brand-primary);
}

.contact-detail-card span, 
.contact-detail-card a {
  font-size: 0.96rem;
  color: var(--text-body);
}

.contact-detail-card a:hover {
  color: var(--brand-primary);
  text-decoration: underline;
}

/* Appointment Form */
.booking-form-card {
  background: var(--bg-primary);
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.booking-form-card h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 22px;
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-subtle);
  background: #ffffff;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(11, 77, 60, 0.15);
}

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

/* Footer Bottom Links & Copyright */
.footer-main-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 46px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h2 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 14px;
}

.footer-brand p {
  color: rgba(248, 249, 244, 0.78);
  font-size: 0.96rem;
  line-height: 1.65;
}

.footer-links-col h4 {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 22px;
  position: relative;
}

.footer-links-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links-list a {
  color: rgba(248, 249, 244, 0.78);
  font-size: 0.94rem;
  transition: all 0.25s ease;
}

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

.footer-bottom-bar {
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: rgba(248, 249, 244, 0.65);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background-color: #25D366;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  animation: pulseWhatsApp 3s infinite;
}

@keyframes pulseWhatsApp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-whatsapp:hover {
  transform: scale(1.12);
}

/* Scroll Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid, 
  .doctor-grid, 
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

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

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

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

@media (max-width: 768px) {
  .top-bar-content {
    justify-content: center;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--bg-primary);
    flex-direction: column;
    padding: 36px 24px;
    box-shadow: var(--shadow-lg);
    clip-path: circle(0% at 100% 0);
    transition: clip-path 0.4s ease-in-out;
  }

  .nav-menu.open {
    clip-path: circle(140% at 100% 0);
  }

  .mobile-toggle {
    display: block;
  }

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

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

/* ==========================================================================
   TOPBAR & FOOTER SOCIAL MEDIA LINKS
   ========================================================================== */
.top-social-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-social-bar .social-label {
  font-size: 0.8rem;
  color: var(--accent-gold);
  font-weight: 600;
  margin-right: 4px;
}

.top-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid rgba(201, 154, 69, 0.3);
}

.top-social-btn:hover {
  background: var(--accent-gold);
  color: var(--brand-dark);
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 12px rgba(201, 154, 69, 0.4);
}

.footer-social-wrapper {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social-wrapper span {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.02em;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(201, 154, 69, 0.3);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.footer-social-btn:hover {
  background: linear-gradient(135deg, var(--accent-gold), #B58836);
  color: var(--brand-dark);
  transform: translateY(-4px) scale(1.1);
  box-shadow: var(--shadow-gold);
}

.footer-bottom-social a {
  color: rgba(248, 249, 244, 0.8);
  transition: color 0.25s ease;
}

.footer-bottom-social a:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

/* ==========================================================================
   FLOATING WHATSAPP ACTION BUTTON & STICKY MOBILE ACTION BAR
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background-color: #25D366;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  animation: pulseWhatsApp 3s infinite;
}

@keyframes pulseWhatsApp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-whatsapp:hover {
  transform: scale(1.12);
}

/* Sticky Mobile Bottom Action Bar */
.mobile-bottom-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-act-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--brand-dark);
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-act-btn.whatsapp {
  color: #25D366;
}

.mobile-act-btn.primary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
  color: #ffffff;
}

/* Responsive Media Queries Refinement */
@media (max-width: 1024px) {
  .hero-grid, 
  .doctor-grid, 
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

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

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

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

@media (max-width: 768px) {
  .top-bar-content {
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .top-info {
    justify-content: center;
    gap: 14px;
    font-size: 0.82rem;
  }

  .top-social-bar {
    justify-content: center;
    margin: 2px 0;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--bg-primary);
    flex-direction: column;
    padding: 36px 24px;
    box-shadow: var(--shadow-lg);
    clip-path: circle(0% at 100% 0);
    transition: clip-path 0.4s ease-in-out;
  }

  .nav-menu.open {
    clip-path: circle(140% at 100% 0);
  }

  .mobile-toggle {
    display: block;
  }

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

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

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

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

  .footer-main-content {
    grid-template-columns: 1fr;
  }

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

  .hero-quotes-grid {
    grid-template-columns: 1fr;
  }

  .trust-badges-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .trust-divider {
    display: none;
  }

  .mobile-bottom-action-bar {
    display: flex;
  }

  .floating-whatsapp {
    display: none !important;
  }

  body {
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .nav-cta .btn-primary {
    display: none;
  }

  .brand-text h1 {
    font-size: clamp(0.95rem, 4vw, 1.15rem);
  }

  .brand-text span {
    font-size: 0.68rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .doctor-exp-badge {
    padding: 10px 16px;
    bottom: 12px;
    right: 12px;
  }

  .doctor-exp-badge span {
    font-size: 1.3rem;
  }

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

  .contact-booking-wrapper {
    padding: 20px 16px;
  }

  .booking-form-card {
    padding: 20px 16px;
  }
}

@media (max-width: 360px) {
  .benefits-icons-grid {
    grid-template-columns: 1fr;
  }
  .quote-item {
    padding: 14px 0;
  }
  .quote-icon {
    width: 44px;
    height: 44px;
  }
}

