/* =====================================================
   Om Shanti Dental Care — Professional & Clean Theme
   Color Scheme: Primary Teal (#03A8A9), White (#FFFFFF), Background (#F8FAFC)
   Trusted, clean, modern, and medical-looking palette
   ===================================================== */

/* ── CSS Custom Properties ── */
:root {
  /* Dental Industry Color Psychology */
  --primary:       #0EA5A8; /* Primary CTA Teal */
  --primary-dark:  #0891B2; /* CTA Hover */
  --primary-light: #14B8A6; /* Accent */
  --primary-soft:  #E0F7F7; /* Very light teal bg */

  /* SECONDARY COLORS */
  --secondary:     #FFFFFF; /* White - cleanliness, sterility */
  --secondary-dark:#F8FAFC; /* Background */
  
  /* ACCENT COLORS */
  --accent:        #14B8A6;

  /* TEXT COLORS */
  --text-primary:  #0F172A; /* Headings (Dark Navy) */
  --text-body:     #334155; /* Body Text */
  --text-muted:    #9ca3af;
  --text-light:    #d1d5db;

  /* BACKGROUND COLORS */
  --bg-white:      #FFFFFF;
  --bg-light:      #F8FAFC; /* Background */
  --bg-secondary:  #F9FAFB;

  /* BORDERS & SHADOWS */
  --border:        #E5E7EB;
  --border-light:  #F3F4F6;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.05);
  --shadow-md:     0 4px 12px rgba(3, 168, 169, 0.1);
  --shadow-lg:     0 10px 25px rgba(3, 168, 169, 0.15);

  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     16px;
  --radius-pill:   999px;

  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* FONTS */
  --font-heading:  'Outfit', sans-serif;
  --font-body:     'Inter', sans-serif;
}

/* ════════════════════════════
   ANIMATIONS & MICRO-INTERACTIONS
════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.stat-card, .service-card, .doctor-card {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* ════════════════════════════
   RESET & BASE STYLES
════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

h1 { font-size: 3.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }

p {
  font-family: var(--font-body);
  color: var(--text-body);
  font-weight: 400;
  margin: 0;
}

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

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

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ════════════════════════════
   CONTAINER & LAYOUT
════════════════════════════ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.section-heading {
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.7;
}

/* ════════════════════════════
   BUTTONS (Global)
════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 0;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn:hover {
  box-shadow: 0 12px 24px rgba(13, 127, 143, 0.15);
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(13, 127, 143, 0.25);
}

.btn-primary:hover {
  background: var(--primary-light);
  color: white;
}

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

.btn-outline:hover {
  background: var(--bg-secondary);
  color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

.btn-secondary {
  background: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background: var(--secondary-dark);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border: none;
}

.btn-white:hover {
  background: var(--bg-light);
  color: var(--primary-light);
}

.btn-service {
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 0;
  text-align: center;
  width: 100%;
  margin-top: auto;
  transition: var(--transition);
}

.btn-service:hover {
  background: var(--primary-light);
}

.btn-large {
  padding: 14px 36px;
  font-size: 1.05rem;
}

.btn-submit {
  width: 100%;
}

.btn-call {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
}

/* ════════════════════════════
   NAVBAR — STICKY
════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
  transition: box-shadow 0.3s ease;
  margin: 0;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1400;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1600;
}

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

.nav-logo:hover { opacity: 0.9; }

.logo-icon {
  width: 48px;
  height: 48px;
  /* background: #ffffff; */
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.logo-main {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}

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

.nav-list {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-body);
  position: relative;
  white-space: nowrap;
  transition: var(--transition);
  
}

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

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

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

.nav-cta { 
  margin-left: 20px; 
  border-radius: 5px;
}

/* Hamburger (Mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  z-index: 2100;
}

.hamburger:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.hamburger:hover span { background: #fff; }

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  position: absolute;
  left: 10px;
  top: 20.75px;
}

.hamburger span:nth-child(1) { transform: translateY(-8px); }
.hamburger span:nth-child(2) { transform: translateY(0); }
.hamburger span:nth-child(3) { transform: translateY(8px); }

.hamburger.active {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(180deg);
}

.hamburger.active span { 
  background: #ffffff !important; /* Force white for 'X' visibility */
}

.hamburger.active span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-20px); }
.hamburger.active span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

/* ── NAVBAR RESPONSIVE ── */
@media (max-width: 1024px) {
  .navbar { 
    position: sticky;
    padding: 12px 0;
  }

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

  .logo-sub {
    color: var(--primary);
  }

  .hamburger {
    display: flex;
    border-color: var(--border-light);
  }

  .hamburger span {
    background: var(--primary);
  }

  /* Ensure active 'X' is always white */
  .hamburger.active span {
    background: #ffffff !important;
  }

  .nav-container { padding: 0 20px; }
  .nav-list, .nav-cta { display: none; }
  .hamburger { 
    display: flex; 
    border-color: var(--border-light);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 40px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1500;
    gap: 0;
    overflow-y: auto;
  }

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

  .nav-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 1.1rem;
    color: var(--text-primary);
  }

  .nav-link:hover,
  .nav-link.active { padding-left: 10px; color: var(--primary); }
  .nav-link::after { display: none; }

  .nav-cta {
    display: inline-flex;
    margin: 30px 0 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .nav-container { padding: 0 16px; }
}

/* ════════════════════════════
   HERO SECTION — CONTENT LEFT, IMAGE RIGHT
════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 20px 0 80px;
  background-image: url('team\ .jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: left;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(161, 255, 255, 0.467);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  color: #ffffff;
}

.hero-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.02em;
}

/* .hero-heading span span {
  font-size: 0.3em;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-left: 10px;
} */

.hero-para {
  font-size: 26px;
  color: rgb(255, 255, 255) ;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding-top: 30px;
}

.btn-hero-primary {
  background: #0EA5A8;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px; /* Pill shape */
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(14, 165, 168, 0.3);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background: #0891B2;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(14, 165, 168, 0.4);
}

.btn-hero-outline {
  background: transparent;
  color: #0F172A;
  border: 2px solid #0F172A;
  padding: 14px 30px;
  border-radius: 50px; /* Pill shape */
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-hero-outline:hover {
  background: #0F172A;
  border-color: #0F172A;
  color: #ffffff;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  animation: bounce 3s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ── HERO RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content { 
    gap: 40px;
    text-align: center;
  }

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

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
    min-height: auto;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions .btn-hero-primary,
  .hero-actions .btn-hero-outline { 
    width: 100%;
    max-width: 300px;
    padding: 12px 24px;
    font-size: 1rem;
  }

  .hero-heading {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .hero-para { 
    font-size: 1.1rem;
  }

  .hero-scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 40px 0; }
  .hero-heading { font-size: 2rem; }
  .hero-para { font-size: 1rem; }
}














/* ════════════════════════════
   WHY CHOOSE US - PREMIUM BENTO GRID
════════════════════════════ */
.why-us {
  background: var(--bg-light);
  color: var(--text-body);
}

.why-us-bento-wrapper {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 20px;
  margin-top: 32px;
  align-items: stretch;
}

/* Bento Grid Container */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  grid-template-rows: auto auto auto;
}

/* Base Card Styles */
.bento-card {
  background: #FFFFFF;
  border: 1px solid rgba(3, 168, 169, 0.12);
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 4px 20px rgba(3, 168, 169, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(3, 168, 169, 0.15);
  border-color: rgba(3, 168, 169, 0.25);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-soft), rgba(3, 168, 169, 0.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 1.6rem;
}

.bento-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
  line-height: 1.3;
}

.bento-card-text {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 14px;
}

.bento-card-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: auto;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Small Cards */
.bento-card-small {
  padding: 18px 16px;
}

/* Full width small card (Row 2) */
.bento-card-full-row {
  grid-column: span 2;
}

.bento-card-accent, .b-card-accent, .bento-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 10px;
  font-family: var(--font-heading);
  letter-spacing: 0.2px;
}

.bento-card-badge {
  background: linear-gradient(135deg, rgba(3, 168, 169, 0.1), var(--primary-soft));
}

/* Medium Card (Row 3, full width) */
.bento-card-medium {
  grid-column: span 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.bento-card-medium .bento-card-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.bento-card-medium .bento-card-content {
  flex: 1;
}

/* Right Side Image */
.bento-image-container {
  display: flex;
  align-items: stretch;
}

.bento-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(3, 168, 169, 0.12);
  transition: all 0.4s ease;
  border: 3px solid #FFFFFF;
}

.bento-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bento-image-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(3, 168, 169, 0.18);
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .why-us-bento-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .bento-image-container {
    min-height: 350px;
  }
  
  .section-header {
    margin-bottom: 40px;
    padding: 0 16px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 32px;
    padding: 0 12px;
  }

  .section-label {
    font-size: 0.75rem;
    padding: 6px 16px;
    margin-bottom: 16px;
  }

  .section-heading {
    font-size: 1.75rem !important;
  }

  .section-sub {
    font-size: 0.95rem;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-card-full-row,
  .bento-card-medium {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .bento-card {
    padding: 18px 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-heading {
    font-size: 1.5rem !important;
  }

  .section-sub {
    font-size: 0.9rem;
  }
}

/* ════════════════════════════
   ABOUT SECTION — CLEAN & COMPACT
════════════════════════════ */
.about { background: var(--bg-white); }

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

.about-images { position: relative; }

.about-img-main {
  width: 100%;
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg-white);
  border: 1px solid rgba(3, 168, 169, 0.2);
  border-radius: 0;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.about-badge-float i {
  font-size: 1.8rem;
  color: var(--accent-sage);
}

.about-badge-float strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.about-badge-float span {
  font-size: 0.8rem;
  color: var(--text-body);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-para {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 10px 0;
}

.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  /* background: var(--primary-light); */
  /* border-radius: var(--radius-md); */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
}

.aboutBox {
  border: 1px solid rgba(3, 168, 169, 0.2);
  padding: 12px 16px;
  background: var(--bg-white);
  transition: all 0.3s ease;
}

.aboutBox:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(3, 168, 169, 0.1);
}

.about-feature strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
  margin: 0;
}

/* ── ABOUT RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-img-main { height: 400px; }
  .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .about-features { grid-template-columns: 1fr; gap: 16px; }
  .about-img-main { height: 350px; }
  .about-badge-float { left: 0; bottom: -15px; }
}

@media (max-width: 480px) {
  .about-img-main { height: 280px; }
  .about-badge-float { padding: 12px 16px; left: 10px; }
  .about-features { gap: 14px; }
}

/* ════════════════════════════
   SERVICES SECTION
════════════════════════════ */
.services { background: var(--bg-white); }

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

.service-card {
  background: var(--bg-light);
  border: 1px solid rgba(3, 168, 169, 0.15);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition);
  width: auto;
  height: 350px;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  background: var(--bg-white);
}

.service-img-wrap {
  width: 100%;
  height: auto; /* Reduced from 180px */
  overflow: hidden;
  position: relative;
  padding: 1px;
  margin: 1px;
  box-sizing: border-box;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card-content {
  padding: 16px; /* Reduced from 20px */
  display: flex;
  flex-direction: column;
  gap: 10px; /* Reduced from 12px */
  flex-grow: 1;
}

.service-icon {
  width: 36px; /* Reduced from 44px */
  height: 36px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem; /* Reduced from 1.4rem */
  color: var(--primary);
  margin-bottom: 2px;
}

.service-card h3 {
  font-size: 1rem; /* Reduced from 1.15rem */
  color: var(--text-primary);
  margin: 0;
}

.service-card p {
  font-size: 0.85rem; /* Reduced from 0.9rem */
  color: var(--text-body);
  line-height: 1.4; /* Reduced from 1.5 */
  margin: 0;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: auto;
}

.service-link:hover { gap: 12px; }

/* ── SERVICES RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ════════════════════════════
   DOCTORS SECTION — 4-COLUMN GRID
════════════════════════════ */

.doctors {
  background: var(--bg-white);
  padding: 80px 0;
}

/* DOCTORS GRID */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* DOCTOR CARD */
.doctor-card {
  background: #fff;
  border: 1px solid rgba(3, 168, 169, 0.15);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}

.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

/* DOCTOR IMAGE */
.doctor-img-wrap {
  height:250px;
  overflow: hidden;
  background: var(--bg-light);
  position: relative;
}

.doctor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.doctor-card:hover .doctor-img-wrap img {
  transform: scale(1.08);
}

/* DOCTOR INFO */
.doctor-info {
  padding: 16px 12px;
}

.doctor-info h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.2;
}

.doctor-info span {
  display: block;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.doctor-info p {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--text-body);
  margin-bottom: 12px;
}

/* BOOK APPOINTMENT BUTTON */
.book-btn {
  display: block;
  width: 100%;
  padding: 8px 12px;
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: 2px solid var(--primary);
  cursor: pointer;
  text-align: center;
}

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

.book-btn:active {
  transform: translateY(0);
}

/* ════════════════════════════
   DOCTORS RESPONSIVE
════════════════════════════ */

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

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

/* ════════════════════════════
   ACCESSIBILITY
════════════════════════════ */

.doctor-card:focus-visible {
  outline: 3px solid #00a8a8;
  outline-offset: 2px;
}

.book-btn:focus-visible {
  outline: 2px solid #00a8a8;
  outline-offset: 2px;
}

/* ════════════════════════════
   TOUCH DEVICE IMPROVEMENTS
════════════════════════════ */

@media (hover: none) and (pointer: coarse) {
  .doctor-card:active {
    transform: scale(0.98);
  }

  .book-btn:active {
    transform: scale(0.95);
  }
}
/* ════════════════════════════
   GALLERY SECTION
════════════════════════════ */

.gallery {
  background: #f4f6f8;
  padding: 60px 0;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 per row */
  gap: 25px;
}

/* IMAGE BOX */
.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4 / 3; /* Same height for all */
}

/* IMAGE */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.gallery-item:hover img {
  transform: scale(1.05);
}

/* ───────── MOBILE ───────── */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr; /* 1 per row */
    gap: 18px;
  }
}

/* ───────── LAPTOP ───────── */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(8, 1fr);
  }

  .gallery-large {
    grid-column: span 8;
  }

  .gallery-item:not(.gallery-large) {
    grid-column: span 4;
  }
}

/* ───────── TABLET ───────── */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-large,
  .gallery-item {
    grid-column: span 2;
  }
}

/* ───────── MOBILE ───────── */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    aspect-ratio: 4 / 3;
  }
}
/* ════════════════════════════
   CTA BANNER SECTION
════════════════════════════ */
.cta-banner {
  background: var(--primary);
  padding: 80px 0;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 24px;
}

.cta-banner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.cta-banner .btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-banner .btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* ════════════════════════════
   TESTIMONIALS SECTION
════════════════════════════ */
.testimonials { background: var(--bg-white); }

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  background: var(--bg-white);
}

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

.testi-stars {
  display: flex;
  gap: 4px;
  color: var(--accent-peach);
  font-size: 1.2rem;
}

.testi-quote {
  color: var(--primary-light);
  font-size: 1.5rem;
  opacity: 0.5;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

.testi-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.testi-info span {
  font-size: 0.85rem;
  color: var(--text-body);
}

/* ── TESTIMONIALS RESPONSIVE ── */
@media (max-width: 768px) {
  .testimonials-track { grid-template-columns: 1fr; }
}

/* ════════════════════════════
   CONTACT SECTION
════════════════════════════ */
.contact { background: var(--bg-white); }

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

.contact-form-wrap {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 18px;
  border: 2px solid #edf2f7;
  border-radius: var(--radius-md);
  background: #f8fafc;
  color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230EA5A8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 45px;
  cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0aec0;
  font-size: 0.9rem;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(14, 165, 168, 0.3);
  background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-white);
  box-shadow: 0 0 0 5px rgba(14, 165, 168, 0.1);
}

.btn-submit {
  width: 100%;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 10px;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-md);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-submit i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.btn-submit:hover i {
  transform: translateX(5px) rotate(-10deg);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(14, 165, 168, 0.25);
  background: var(--primary-dark);
}

.btn-submit:active {
  transform: translateY(-1px);
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 35px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 5px;
  position: relative;
  padding-bottom: 10px;
}

.contact-info-card h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

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

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(78, 205, 196, 0.1);
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.contact-detail:hover .contact-icon {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-info-text strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-info-text span,
.contact-info-text a {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-text a:hover {
  color: var(--primary);
}

.map-wrap {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── CONTACT RESPONSIVE ── */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap, .contact-info-card { padding: 24px; }
}

/* ════════════════════════════
   FOOTER
════════════════════════════ */
.footer {
  background: #1F2937;
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
}

.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  text-decoration: none;
}

.footer-logo .logo-icon {
  background: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
}

.footer-logo .logo-main { color: #fff; }
.footer-logo .logo-sub { color: var(--primary); }

.footer-brand p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  margin-top: 8px;
}

.footer-contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-details i {
  color: var(--primary);
  font-size: 1.1rem;
  min-width: 20px;
}

.footer-contact-details a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-details a:hover {
  color: var(--primary);
}

.opening-hours {
  display: block;
  margin-top: 4px;
  font-weight: 500;
}

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

.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-list i {
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}

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

/* ── FOOTER RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .footer-bottom { grid-template-columns: 1fr; gap: 16px; }
  .footer-bottom-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer-bottom-links { flex-direction: column; gap: 12px; }
  .footer-top-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .footer-top-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom-inner { font-size: 0.85rem; }
}


.socialmedia {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.socialmedia a {
    width: 45px;
    height: 45px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.socialmedia a img {
    width: 40px;
    height: auto;
    object-fit: contain;
}


/* ════════════════════════════
   BACK TO TOP BUTTON
════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(3, 168, 169, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(3, 168, 169, 0.4);
}

@media (max-width: 480px) {
  .back-to-top {
    width: 44px;
    height: 44px;
    bottom: 20px;
    right: 20px;
    font-size: 1.2rem;
  }
}

/* ════════════════════════════
   WHATSAPP FLOATING BUTTON
════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(3, 168, 169, 0.3);
  z-index: 2000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  border: 2px solid rgba(3, 168, 169, 0.2);
}

.whatsapp-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: 80%;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@keyframes whatsapp-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 35px rgba(3, 168, 169, 0.4);
  background: #ffffff;
  border-color: var(--primary);
}

.whatsapp-float:hover .whatsapp-icon-wrap {
  animation-play-state: paused;
}
/* ════════════════════════════
   TOAST NOTIFICATION
════════════════════════════ */
.toast {
  position: fixed;
  top: 30px;
  right: 30px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 20px 25px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 3000;
  transform: translateX(calc(100% + 50px));
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-left: 5px solid var(--primary);
  max-width: 400px;
  overflow: hidden;
}

.toast.active {
  transform: translateX(0);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.toast-icon {
  font-size: 2.2rem;
  color: var(--primary);
}

.toast-message {
  display: flex;
  flex-direction: column;
}

.toast-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.toast-message p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin: 0;
}

.toast-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  margin-left: 10px;
}

.toast-close:hover {
  color: var(--text-primary);
  transform: scale(1.1);
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: rgba(0, 0, 0, 0.05);
}

.toast-progress::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: var(--primary);
}

.toast.active .toast-progress::before {
  animation: progress 5s linear forwards;
}

@keyframes progress {
  100% {
    right: 100%;
  }
}

@media (max-width: 480px) {
  .toast {
    right: 15px;
    left: 15px;
    max-width: none;
    top: 20px;
    padding: 15px 20px;
  }
}

/* mobile css for whasapp logo */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    right: 15px;
    bottom: 90px;
  }

  .whatsapp-float img {
    width: 100%;
    height: auto;
  }
}

/* ════════════════════════════
   GLOBAL RESPONSIVE (Container, Section)
════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .section { padding: 60px 0; }
}

@media (max-width: 768px) {
  .section-heading { font-size: clamp(1.75rem, 5vw, 2.5rem); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 50px 0; }
  .section-header { margin-bottom: 40px; }
}

/* ════════════════════════════
   MINIMAL SCROLL ANIMATIONS
════════════════════════════ */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition-property: opacity, transform;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Staggered delay classes */
[data-aos][data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos][data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos][data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos][data-aos-delay="400"] { transition-delay: 400ms; }
[data-aos][data-aos-delay="500"] { transition-delay: 500ms; }

/* Subtle card hover elevation */
.service-card, .doctor-card, .testimonial-card, .why-item {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover, .doctor-card:hover, .testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(13, 127, 143, 0.12);
}

/* Button ripple-like hover */
.btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn:active {
  transform: translateY(0);
}

/* ── Branch labels (multi-location) ── */
.contact-branch-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary, #1a73e8);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.footer-branch-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--primary, #1a73e8);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    pointer-events: none;
}
