/* 
  Mundecha Medico - Ultra-Premium & Luxurious Healthcare Color Palette 
  Palette:
    Primary Deep: #064E3B (Royal Emerald)
    Primary Teal: #0F766E (Deep Luxury Teal)
    Secondary Glow: #14B8A6 (Vibrant Teal)
    Accent Mint: #10B981 (Emerald Mint)
    Accent Gold: #F59E0B (Luxury Gold Highlight)
    Background: #F8FAFC (Obsidian Slate Crisp Background)
    Card BG: #FFFFFF (Pure Crisp White)
    Text Main: #0F172A (Deep Slate Obsidian)
    Text Muted: #475569 (Cool Slate)
    Border Light: rgba(15, 118, 110, 0.12)
*/

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

:root {
  --primary: #0F766E;
  --primary-dark: #064E3B;
  --primary-light: #E6FFFA;
  --secondary: #14B8A6;
  --accent-mint: #10B981;
  --accent-gold: #D97706;
  --gold-glow: rgba(217, 119, 6, 0.2);
  --bg-main: #F8FAFC;
  --card-bg: #FFFFFF;
  --text-main: #0F172A;
  --text-muted: #475569;
  --border-light: #E2E8F0;
  --border-accent: rgba(15, 118, 110, 0.18);
  
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 14px rgba(15, 118, 110, 0.05);
  --shadow-md: 0 12px 30px rgba(15, 118, 110, 0.1);
  --shadow-lg: 0 24px 50px -12px rgba(6, 78, 59, 0.18);
  --shadow-gold: 0 10px 25px rgba(217, 119, 6, 0.25);
  --shadow-wa: 0 10px 25px rgba(16, 185, 129, 0.35);
  
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(255, 255, 255, 0.7);
  --glass-backdrop: blur(20px);
}

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

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

body {
  font-family: 'Inter', 'Hind', 'Noto Sans Kannada', sans-serif;
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(at 0% 0%, rgba(20, 184, 166, 0.07) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(6, 78, 59, 0.05) 0px, transparent 50%);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
}

@media (min-width: 993px) {
  body {
    padding-bottom: 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Hind', 'Noto Sans Kannada', sans-serif;
  color: var(--text-main);
  line-height: 1.25;
  font-weight: 700;
}

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

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Section Spacing */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 3.5rem auto;
}

/* Premium Badges */
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.15rem;
  background: linear-gradient(135deg, #ECFDF5 0%, #CCFBF1 100%);
  color: var(--primary-dark);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 1.1rem;
  letter-spacing: 0.02em;
  border: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.08);
}

.badge-tag i {
  color: var(--accent-gold);
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  margin-bottom: 0.85rem;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, #0F172A 0%, #064E3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 0.975rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  outline: none;
  min-height: 50px;
  touch-action: manipulation;
}

.btn-primary {
  background: linear-gradient(135deg, #0F766E 0%, #064E3B 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(6, 78, 59, 0.3);
  background: linear-gradient(135deg, #047857 0%, #022C22 100%);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #059669 0%, #10B981 50%, #047857 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-wa);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(16, 185, 129, 0.45);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--primary-dark);
  border: 1.5px solid var(--border-accent);
  box-shadow: var(--shadow-sm);
}

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

/* Language Switcher Pills */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.06), rgba(6, 78, 59, 0.08));
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(15, 118, 110, 0.18);
  box-shadow: var(--shadow-sm);
}

.lang-btn {
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  background: transparent;
  color: var(--text-main);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

/* Glassmorphism Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border-bottom: 1px solid rgba(15, 118, 110, 0.12);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 10px 30px rgba(15, 118, 110, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #0F766E 0%, #064E3B 100%);
  color: #FFFFFF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 6px 16px rgba(6, 78, 59, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
}

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

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-dark);
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero Section */
.hero {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background: 
    radial-gradient(circle at 85% 15%, rgba(20, 184, 166, 0.15) 0%, rgba(248, 250, 252, 0) 60%),
    radial-gradient(circle at 10% 85%, rgba(6, 78, 59, 0.08) 0%, rgba(248, 250, 252, 0) 60%);
}

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

.hero-content h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}

.hero-content h1 span {
  background: linear-gradient(135deg, #0F766E 0%, #059669 50%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subhead {
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  color: var(--text-muted);
  margin-bottom: 2.2rem;
}

.hero-buttons {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-bottom: 3.2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--card-bg);
  padding: 1.25rem 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-accent);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--secondary);
}

.stat-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #ECFDF5 0%, #CCFBF1 100%);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem auto;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.15);
}

.stat-number {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
}

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

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card-container {
  width: 100%;
  max-width: 490px;
  border-radius: var(--radius-lg);
  padding: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.8));
  border: 1px solid var(--border-accent);
  box-shadow: var(--shadow-lg);
}

.hero-img-wrap {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
}

.about-img-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.about-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin: 1.75rem 0 2.2rem 0;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.bullet-item i {
  color: var(--accent-mint);
  font-size: 1.1rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--card-bg);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-accent);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.service-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #0F766E 0%, #064E3B 100%);
  color: #FFFFFF;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 1.35rem;
  box-shadow: 0 8px 20px rgba(6, 78, 59, 0.22);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
  color: var(--text-main);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--card-bg);
  padding: 2rem 1.35rem;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--border-accent);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(15, 118, 110, 0.1));
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.1rem auto;
}

.why-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Featured Categories */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.category-card {
  background: var(--card-bg);
  padding: 1.65rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-accent);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.3s ease;
}

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

.category-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #ECFDF5 0%, #CCFBF1 100%);
  color: var(--primary-dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.category-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.category-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Delivery Banner */
.delivery-box {
  background: linear-gradient(135deg, #022C22 0%, #064E3B 50%, #0F766E 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.delivery-content h2 {
  color: #FFFFFF;
  font-size: clamp(2rem, 3.8vw, 2.6rem);
  margin-bottom: 1.1rem;
}

.delivery-features {
  display: flex;
  gap: 1.75rem;
  margin: 1.75rem 0 2.2rem 0;
  flex-wrap: wrap;
}

.df-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.df-item i {
  color: var(--accent-mint);
  font-size: 1.15rem;
}

.delivery-img img {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius-md);
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-card {
  background: var(--card-bg);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-accent);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 1.4rem;
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #ECFDF5 0%, #CCFBF1 100%);
  color: var(--primary-dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.map-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-accent);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  min-height: 400px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #020617 0%, #0F172A 100%);
  color: #94A3B8;
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: #CBD5E1;
}

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

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent-mint);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.75rem;
  text-align: center;
  font-size: 0.875rem;
  color: #64748B;
}

/* Mobile Sticky Action Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-accent);
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.1);
  padding: 0.6rem 0.85rem;
}

.mobile-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 0.6rem;
}

.mobile-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.3rem;
  border-radius: var(--radius-sm);
  font-size: 0.775rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-main);
  background: var(--bg-main);
  border: 1px solid var(--border-light);
}

.mobile-bar-btn i {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.mobile-bar-btn.wa {
  background: linear-gradient(135deg, #059669, #10B981);
  color: #FFFFFF;
  border: none;
}

.mobile-bar-btn.call {
  background: linear-gradient(135deg, #0F766E, #064E3B);
  color: #FFFFFF;
  border: none;
}

/* Media Queries */
@media (max-width: 992px) {
  .hero-grid,
  .about-grid,
  .delivery-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .services-grid,
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .mobile-bottom-bar {
    display: block;
  }
  
  .nav-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border-accent);
    gap: 1.25rem;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .services-grid,
  .categories-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .hero-card-container {
    max-width: 100%;
  }

  .hero-img-wrap {
    height: 290px;
  }

  .about-img-box img {
    height: 290px;
  }
  
  .delivery-box {
    padding: 2.25rem 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
