:root {
    --orange: #F47B20;
    --orange-light: #FFA44F;
    --orange-pale: #FFF3E8;
    --green: #3DAA6B;
    --green-light: #E8F7EF;
    --green-pale: #F2FBF6;
    --white: #FFFFFF;
    --off-white: #FAFAF8;
    --charcoal: #1A1A2E;
    --text: #2D3748;
    --muted: #718096;
    --border: #E8ECF0;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
    transition: box-shadow .3s;
  }
  nav.scrolled { box-shadow: var(--shadow); }

  .nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: white;
  }
  .nav-name { display: flex; flex-direction: column; }
  .nav-name span:first-child { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 18px; color: var(--charcoal); line-height: 1.1; }
  .nav-name span:last-child { font-size: 11px; color: var(--green); font-weight: 500; letter-spacing: .5px; }

  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a { text-decoration: none; font-size: 14px; font-weight: 500; color: var(--text); transition: color .2s; }
  .nav-links a:hover { color: var(--orange); }

  .nav-cta {
    background: var(--orange); color: white; border: none;
    padding: 10px 24px; border-radius: 50px; font-size: 14px; font-weight: 600;
    cursor: pointer; transition: transform .2s, box-shadow .2s;
    text-decoration: none; display: inline-block;
  }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(244,123,32,.4); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh; position: relative;
    display: flex; align-items: center;
    padding: 100px 5% 60px;
    background: linear-gradient(135deg, #FFFBF7 0%, #F0FAF4 50%, #FFF8F2 100%);
    overflow: hidden;
  }

  .hero-blob {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: .35;
    animation: float 6s ease-in-out infinite;
  }
  .hero-blob-1 { width: 500px; height: 500px; background: var(--orange-light); top: -100px; right: -100px; }
  .hero-blob-2 { width: 400px; height: 400px; background: var(--green); bottom: -100px; left: 30%; animation-delay: -3s; }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
  }

  .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green-light); color: var(--green); border-radius: 50px;
    padding: 6px 16px; font-size: 13px; font-weight: 600; margin-bottom: 20px;
    animation: slideDown .6s ease both;
  }
  .hero-badge span { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 1.5s infinite; }

  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
  @keyframes slideDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
  @keyframes slideUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
  @keyframes fadeIn { from{opacity:0} to{opacity:1} }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 58px); font-weight: 700;
    color: var(--charcoal); line-height: 1.15; margin-bottom: 16px;
    animation: slideUp .7s .1s ease both;
  }
  .hero h1 em { font-style: normal; color: var(--orange); }

  .hero-hindi {
    font-size: 20px; color: var(--green); font-weight: 600; margin-bottom: 20px;
    animation: slideUp .7s .2s ease both;
  }

  .hero p {
    font-size: 17px; color: var(--muted); line-height: 1.7; margin-bottom: 36px;
    animation: slideUp .7s .3s ease both;
  }

  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: slideUp .7s .4s ease both; }

  .btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white; padding: 14px 32px; border-radius: 50px; font-weight: 600;
    font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 24px rgba(244,123,32,.35);
    transition: transform .2s, box-shadow .2s;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(244,123,32,.45); }

  .btn-secondary {
    background: white; color: var(--text); padding: 14px 32px; border-radius: 50px;
    font-weight: 600; font-size: 15px; text-decoration: none;
    border: 2px solid var(--border); display: inline-flex; align-items: center; gap: 8px;
    transition: border-color .2s, color .2s, transform .2s;
  }
  .btn-secondary:hover { border-color: var(--green); color: var(--green); transform: translateY(-3px); }

  .hero-stats {
    display: flex; gap: 32px; margin-top: 44px;
    animation: slideUp .7s .5s ease both;
  }
  .stat { display: flex; flex-direction: column; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--charcoal); }
  .stat-label { font-size: 12px; color: var(--muted); font-weight: 500; letter-spacing: .5px; text-transform: uppercase; }

  /* Hero Image Side */
  .hero-img-wrap {
    position: relative; animation: fadeIn 1s .5s both;
  }
  .hero-main-img {
    width: 100%; border-radius: 24px; overflow: hidden;
    box-shadow: var(--shadow-lg); aspect-ratio: 4/3; position: relative;
  }
  .hero-main-img img { width: 100%; height: 100%; object-fit: cover; }

  .hero-card {
    position: absolute; background: white; border-radius: 16px;
    padding: 16px 20px; box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 12px;
  }
  .hero-card-1 { bottom: -20px; left: -20px; animation: float 5s ease-in-out infinite; }
  .hero-card-2 { top: 20px; right: -20px; animation: float 5s ease-in-out infinite .5s; }
  .card-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
  .card-icon.orange { background: var(--orange-pale); color: var(--orange); }
  .card-icon.green { background: var(--green-light); color: var(--green); }
  .card-text strong { font-size: 16px; font-weight: 700; color: var(--charcoal); display: block; }
  .card-text span { font-size: 12px; color: var(--muted); }

  /* ── EMERGENCY STRIP ── */
  .emergency-strip {
    background: linear-gradient(90deg, var(--charcoal), #2D3561);
    color: white; padding: 18px 5%;
    display: flex; align-items: center; justify-content: center; gap: 40px;
    flex-wrap: wrap; gap: 24px;
  }
  .emerg-item { display: flex; align-items: center; gap: 10px; font-size: 14px; }
  .emerg-item i { color: var(--orange); font-size: 16px; }
  .emerg-item strong { font-size: 18px; }
  .emerg-divider { width: 1px; height: 32px; background: rgba(255,255,255,.2); }

  /* ── SECTION BASE ── */
  section { padding: 90px 5%; }
  .section-header { text-align: center; margin-bottom: 60px; }
  .section-tag {
    display: inline-block; background: var(--orange-pale); color: var(--orange);
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 6px 18px; border-radius: 50px; margin-bottom: 16px;
  }
  .section-tag.green { background: var(--green-light); color: var(--green); }
  .section-header h2 {
    font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 42px);
    font-weight: 700; color: var(--charcoal); line-height: 1.2; margin-bottom: 16px;
  }
  .section-header p { font-size: 16px; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }

  /* ── SERVICES ── */
  .services-section { background: var(--off-white); }
  .services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto; }

  .service-card {
    background: white; border-radius: 18px; padding: 28px 24px;
    border: 1px solid var(--border); cursor: default;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative; overflow: hidden;
  }
  .service-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--orange-pale), transparent);
    opacity: 0; transition: opacity .25s;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange-light); }
  .service-card:hover::before { opacity: 1; }

  .svc-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--orange-pale); color: var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 16px;
    transition: background .25s, transform .25s;
  }
  .service-card:hover .svc-icon { background: var(--orange); color: white; transform: scale(1.1); }
  .service-card.green-card .svc-icon { background: var(--green-light); color: var(--green); }
  .service-card.green-card:hover .svc-icon { background: var(--green); color: white; }
  .service-card.green-card:hover { border-color: var(--green); }
  .service-card.green-card::before { background: linear-gradient(135deg, var(--green-pale), transparent); }

  .service-card h3 { font-size: 15px; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; position: relative; }
  .service-card p { font-size: 13px; color: var(--muted); line-height: 1.5; position: relative; }

  /* ── ABOUT / DOCTORS ── */
  .about-section { background: white; }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; max-width: 1200px; margin: 0 auto; }
  .about-imgs { position: relative; }
  .about-img-main { width: 85%; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 3/4; }
  .about-img-main img { width: 100%; height: 100%; object-fit: cover; }
  .about-img-accent {
    position: absolute; bottom: -30px; right: 0;
    width: 55%; border-radius: 18px; overflow: hidden;
    box-shadow: var(--shadow-lg); aspect-ratio: 1;
    border: 4px solid white;
  }
  .about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
  .about-experience {
    position: absolute; top: 30px; right: 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white; border-radius: 16px; padding: 20px 24px; text-align: center;
    box-shadow: 0 8px 24px rgba(244,123,32,.4);
    animation: float 4s ease-in-out infinite;
  }
  .about-experience strong { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; display: block; }
  .about-experience span { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; opacity: .9; }

  .about-text .section-tag { text-align: left; }
  .about-text h2 { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; color: var(--charcoal); margin-bottom: 20px; line-height: 1.2; }
  .about-text p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }

  .about-features { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
  .feature-item { display: flex; align-items: flex-start; gap: 12px; }
  .feature-check {
    width: 24px; height: 24px; min-width: 24px; border-radius: 50%;
    background: var(--green-light); color: var(--green);
    display: flex; align-items: center; justify-content: center; font-size: 12px;
  }
  .feature-item span { font-size: 15px; color: var(--text); font-weight: 500; }

  /* ── DOCTORS ── */
  .doctors-section { background: var(--off-white); }
  .doctors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; max-width: 1000px; margin: 0 auto; }

  .doctor-card {
    background: white; border-radius: 20px; overflow: hidden;
    box-shadow: var(--shadow); border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s;
    text-align: center;
  }
  .doctor-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
  .doctor-img { height: 260px; position: relative; overflow: hidden; }
  .doctor-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .4s; }
  .doctor-card:hover .doctor-img img { transform: scale(1.05); }
  .doctor-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,.7) 0%, transparent 60%);
  }
  .doctor-info { padding: 24px; }
  .doctor-info h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--charcoal); margin-bottom: 4px; }
  .doctor-info .specialty { font-size: 14px; color: var(--orange); font-weight: 600; margin-bottom: 8px; }
  .doctor-info p { font-size: 13px; color: var(--muted); line-height: 1.6; }

  /* ── FACILITIES ── */
  .facilities-section { background: white; }
  .facilities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; max-width: 1200px; margin: 0 auto; }

  .facility-pill {
    background: var(--off-white); border: 1.5px solid var(--border);
    border-radius: 50px; padding: 12px 22px;
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 500; color: var(--text);
    transition: all .2s;
  }
  .facility-pill:hover { background: var(--orange-pale); border-color: var(--orange-light); color: var(--orange); transform: translateY(-2px); }
  .facility-pill i { font-size: 16px; color: var(--orange); }

  /* ── GALLERY ── */
  .gallery-section { background: var(--off-white); }
  .gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 12px; max-width: 1200px; margin: 0 auto;
    border-radius: 20px; overflow: hidden;
  }
  .gallery-item { overflow: hidden; position: relative; }
  .gallery-item:first-child { grid-row: 1 / 3; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
  .gallery-item:hover img { transform: scale(1.05); }
  .gallery-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(244,123,32,.3), transparent);
    opacity: 0; transition: opacity .3s;
  }
  .gallery-item:hover::after { opacity: 1; }

  /* ── WHY CHOOSE ── */
  .why-section { background: linear-gradient(135deg, var(--charcoal) 0%, #16213E 100%); color: white; }
  .why-section .section-tag { background: rgba(244,123,32,.2); color: var(--orange-light); }
  .why-section .section-header h2 { color: white; }
  .why-section .section-header p { color: rgba(255,255,255,.65); }

  .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px; max-width: 1100px; margin: 0 auto; }
  .why-card {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px; padding: 32px 28px;
    transition: background .25s, transform .25s;
  }
  .why-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
  .why-num {
    font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700;
    color: var(--orange); opacity: .4; line-height: 1; margin-bottom: 16px;
  }
  .why-card h3 { font-size: 18px; font-weight: 600; color: white; margin-bottom: 10px; }
  .why-card p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; }

  /* ── CONTACT ── */
  .contact-section { background: var(--off-white); }
  .contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

  .contact-info h3 { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--charcoal); margin-bottom: 12px; }
  .contact-info p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 32px; }

  .contact-items { display: flex; flex-direction: column; gap: 20px; }
  .contact-item { display: flex; align-items: flex-start; gap: 16px; }
  .ci-icon {
    width: 48px; height: 48px; min-width: 48px; border-radius: 14px;
    background: var(--orange-pale); color: var(--orange);
    display: flex; align-items: center; justify-content: center; font-size: 18px;
  }
  .ci-text strong { font-size: 14px; color: var(--charcoal); display: block; margin-bottom: 2px; }
  .ci-text span { font-size: 15px; color: var(--text); }

  .contact-form {
    background: white; border-radius: 24px; padding: 40px;
    box-shadow: var(--shadow); border: 1px solid var(--border);
  }
  .contact-form h4 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--charcoal); margin-bottom: 24px; }
  .form-group { margin-bottom: 18px; }
  .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; border: 1.5px solid var(--border); border-radius: 12px;
    padding: 12px 16px; font-size: 14px; font-family: 'DM Sans', sans-serif;
    color: var(--text); background: var(--off-white);
    transition: border-color .2s, background .2s; outline: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--orange); background: white;
  }
  .form-group textarea { resize: none; height: 100px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

  .btn-submit {
    width: 100%; background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white; border: none; border-radius: 50px; padding: 14px;
    font-size: 15px; font-weight: 600; cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 6px 20px rgba(244,123,32,.35);
  }
  .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(244,123,32,.45); }

  /* ── FOOTER ── */
  footer {
    background: var(--charcoal); color: white;
    padding: 60px 5% 30px;
  }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer-brand p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; margin: 16px 0 24px; }
  .footer-brand .nav-name span:first-child { color: white; }
  .footer-brand .nav-name span:last-child { color: var(--green-light); }
  .social-links { display: flex; gap: 12px; }
  .social-link {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6); font-size: 14px; text-decoration: none;
    transition: background .2s, color .2s;
  }
  .social-link:hover { background: var(--orange); color: white; }

  .footer-col h5 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: white; margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a { text-decoration: none; color: rgba(255,255,255,.55); font-size: 14px; transition: color .2s; }
  .footer-col ul a:hover { color: var(--orange); }

  .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; flex-wrap: wrap; gap: 12px; }
  .footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); }
  .footer-bottom a { color: var(--orange); text-decoration: none; }

  /* ── FLOATING CTA ── */
  .float-cta {
    position: fixed; bottom: 30px; right: 30px; z-index: 999;
    background: var(--orange); color: white; border-radius: 50px;
    padding: 14px 24px; font-weight: 700; font-size: 14px;
    box-shadow: 0 8px 32px rgba(244,123,32,.5); text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    animation: bounceIn .8s 2s both;
    transition: transform .2s;
  }
  .float-cta:hover { transform: scale(1.05); }
  @keyframes bounceIn { from{transform:scale(0);opacity:0} 80%{transform:scale(1.05)} to{transform:scale(1);opacity:1} }

  /* Scroll reveal */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  /* RESPONSIVE */
  @media(max-width:900px){
    .hero-inner, .about-grid, .contact-inner { grid-template-columns: 1fr; }
    .hero-img-wrap { display: none; }
    .about-imgs { height: 300px; }
    .about-img-main { width: 100%; height: 100%; }
    .about-img-accent { display: none; }
    .about-experience { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-item:first-child { grid-row: auto; grid-column: 1 / 3; }
  }
  @media(max-width:600px){
    .footer-top { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
    .form-row { grid-template-columns: 1fr; }
  }