*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --forest: #1e5631;
      --forest-deep: #0f3320;
      --forest-mid: #2d7a47;
      --leaf: #3a9c5f;
      --leaf-light: #6abf86;
      --gold: #c9a84c;
      --gold-light: #e8c878;
      --cream: #f7f2e8;
      --cream-dark: #ede5d0;
      --warm-white: #faf8f3;
      --text-dark: #1a2e1f;
      --text-mid: #3d5c45;
      --text-light: #6b8f74;
    }

    html { scroll-behavior: smooth; scroll-padding-top: 96px; }

    body {
       font-family: "Poppins", sans-serif;
      background: var(--warm-white);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 60px;
      background: rgba(15, 51, 32, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    }
    .nav-logo { display: flex; align-items: center; gap: 14px; }
    .nav-logo img { height: 44px; /*filter: brightness(0) invert(1);*/ }
    .nav-menu { display: flex; align-items: center; gap: 32px; }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      font-family: 'Cinzel', serif; font-size: 12px; letter-spacing: 2px;
      color: rgba(247, 242, 232, 0.75); text-decoration: none; text-transform: uppercase;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--gold-light); }
    .nav-cta {
      font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2px;
      background: transparent; border: 1px solid var(--gold); color: var(--gold);
      padding: 9px 22px; cursor: pointer; text-decoration: none;
      transition: all 0.3s;
    }
    .nav-cta:hover { background: var(--gold); color: var(--forest-deep); }
    .nav-toggle {
      display: none;
      width: 42px; height: 42px;
      align-items: center; justify-content: center; flex-direction: column;
      gap: 5px; border: 1px solid rgba(201, 168, 76, 0.45);
      background: transparent; cursor: pointer;
    }
    .nav-toggle span {
      width: 18px; height: 1px; background: var(--gold-light);
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background:
        radial-gradient(ellipse at 70% 50%, rgba(58, 156, 95, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        linear-gradient(160deg, var(--forest-deep) 0%, #163d25 40%, #1a4a2e 70%, #0d2e1a 100%);
      display: flex; align-items: center;
      padding: 120px 60px 80px;
      position: relative; overflow: hidden;
      justify-content: space-between;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        radial-gradient(circle at 85% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233a9c5f' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }
    /* Large decorative leaf SVG */
    .hero-leaf-bg {
      position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
      width: 560px; opacity: 0.06; pointer-events: none;
    }
    .banner-img{
      width: 400px;
    }
    .hero-content {
      max-width: 650px; position: relative; z-index: 2;
      animation: fadeUp 1s ease both;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 10px;
      border: 1px solid rgba(201, 168, 76, 0.4);
      padding: 7px 18px; margin-bottom: 32px;
    }
    .hero-badge span {
      font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 3px;
      color: var(--gold-light); text-transform: uppercase;
    }
    .hero-badge::before, .hero-badge::after {
      content: ''; width: 18px; height: 1px; background: var(--gold);
    }
    .hero h1 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(42px, 6vw, 80px);
      font-weight: 400; line-height: 1.1;
      color: var(--cream);
      margin-bottom: 10px;
    }
    .hero h1 em {
      font-style: italic; color: var(--gold-light);
    }
    .hero-sub {
      font-size: clamp(16px, 2vw, 22px); font-weight: 300;
      color: rgba(247, 242, 232, 0.6);
      letter-spacing: 0.5px; line-height: 1.6;
      margin-bottom: 40px; max-width: 500px;
    }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-primary {
      background: var(--gold); color: var(--forest-deep);
      font-family: 'Cinzel', serif; font-size: 12px; letter-spacing: 2px;
      padding: 16px 34px; border: none; cursor: pointer;
      text-decoration: none; display: inline-block;
      transition: all 0.3s; text-transform: uppercase;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
    .btn-outline {
      background: transparent; color: var(--cream);
      font-family: 'Cinzel', serif; font-size: 12px; letter-spacing: 2px;
      padding: 15px 34px; border: 1px solid rgba(247,242,232,0.35); cursor: pointer;
      text-decoration: none; display: inline-block;
      transition: all 0.3s; text-transform: uppercase;
    }
    .btn-outline:hover { border-color: var(--cream); background: rgba(247,242,232,0.07); }

    /* scroll indicator */
    .scroll-hint {
      position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(247,242,232,0.35); font-size: 11px; letter-spacing: 3px;
      font-family: 'Cinzel', serif; text-transform: uppercase; animation: bounce 2.5s infinite;
    }
    .scroll-hint svg { width: 18px; opacity: 0.5; }

    /* ── DIVIDER ── */
    .ornament-divider {
      display: flex; align-items: center; justify-content: center; gap: 20px;
      padding: 60px 0 20px;
    }
    .ornament-divider::before, .ornament-divider::after {
      content: ''; flex: 1; max-width: 200px;
      height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .ornament-divider svg { width: 28px; color: var(--gold); }

    /* ── ABOUT ── */
    .about {
      padding: 80px 60px 100px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
      background: var(--warm-white);
    }
    .about-visual {
      position: relative;
    }
    .about-card {
      background: linear-gradient(135deg, var(--forest-deep) 0%, #1a4a30 100%);
      padding: 56px 48px; position: relative; overflow: hidden;
    }
    .about-card::before {
      content: '';
      position: absolute; bottom: -40px; right: -40px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(201,168,76,0.15), transparent 70%);
      border-radius: 50%;
    }
    .about-card-accent {
      position: absolute; top: 0; left: 0;
      width: 4px; height: 100%; background: var(--gold);
    }
    .about-stat {
      margin-bottom: 36px;
    }
    .about-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 56px; font-weight: 600; color: var(--gold-light);
      line-height: 1;
    }
    .about-stat-label {
      font-size: 14px; color: rgba(247,242,232,0.6); letter-spacing: 1.5px;
      text-transform: uppercase; font-family: 'Cinzel', serif;
      margin-top: 4px;
    }
    .about-card-quote {
      font-size: 18px; font-style: italic; color: var(--cream);
      line-height: 1.7; font-weight: 300;
    }
    .about-card-quote cite {
      display: block; margin-top: 14px; font-style: normal;
      font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2px;
      color: var(--gold); text-transform: uppercase;
    }
    .floating-leaf {
      position: absolute; top: -28px; right: -28px;
      width: 90px; opacity: 0.18;
      animation: float 6s ease-in-out infinite;
    }
    .about-text { }
    .section-label {
      font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 4px;
      color: var(--gold); text-transform: uppercase; margin-bottom: 16px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 3.5vw, 46px); font-weight: 400;
      color: var(--text-dark); line-height: 1.2; margin-bottom: 24px;
    }
    .section-title em { font-style: italic; color: var(--forest-mid); }
    .section-body {
      font-size: 18px; line-height: 1.85; color: var(--text-mid);
      font-weight: 300; margin-bottom: 20px;
    }
    .about-pillars {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px;
    }
    .pillar {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 16px; border: 1px solid rgba(30, 86, 49, 0.12);
      background: rgba(30, 86, 49, 0.03);
    }
    .pillar-icon {
      width: 32px; height: 32px; flex-shrink: 0;
      background: var(--forest); border-radius: 10px;
      display: flex; align-items: center; justify-content: center; color: var(--gold);
    }
    .pillar h4 {
      font-family: 'Cinzel', serif; font-size: 15px; letter-spacing: 1.5px;
      color: var(--forest-deep); margin-bottom: 4px;
    }
    .pillar p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

    /* ── TREATMENTS ── */
    .treatments {
      background: var(--forest-deep);
      padding: 100px 60px;
      position: relative; overflow: hidden;
    }
    .treatments::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233a9c5f' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2l-2 2-34 34v-2zm4 4L80 0h2L44 42l-4-4zm...'/%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }
    .treatments-header {
      text-align: center; margin-bottom: 64px; position: relative; z-index: 1;
    }
    .treatments-header .section-label { color: var(--gold); }
    .treatments-header .section-title { color: var(--cream); }
    .treatments-header .section-title em { color: var(--gold-light); }
    .treatments-header p {
      font-size: 18px; color: rgba(247,242,232,0.6); max-width: 560px;
      margin: 0 auto; line-height: 1.8; font-weight: 300;
    }

    .panchakarma-banner {
      background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.05));
      border: 1px solid rgba(201,168,76,0.3); border-left: 4px solid var(--gold);
      padding: 28px 36px; margin-bottom: 48px; position: relative; z-index: 1;
    }
    .panchakarma-banner h3 {
      font-family: 'Playfair Display', serif; font-size: 26px;
      color: var(--gold-light); margin-bottom: 8px; font-weight: 400;
    }
    .panchakarma-banner p {
      color: rgba(247,242,232,0.65); font-size: 16px; font-weight: 300; line-height: 1.7;
    }

    .treatments-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
      position: relative; z-index: 1;
    }
    .treatment-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      padding: 40px 32px;
      transition: all 0.4s;
      cursor: default;
      position: relative; overflow: hidden;
    }
    .treatment-card::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 100%; height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--leaf-light));
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s ease;
    }
    .treatment-card:hover {
      background: rgba(255,255,255,0.065);
      transform: translateY(-4px);
    }
    .treatment-card:hover::after { transform: scaleX(1); }

    .treatment-num {
      font-family: 'Playfair Display', serif; font-size: 42px;
      color: rgba(201,168,76,0.2); font-weight: 700;
      line-height: 1; margin-bottom: 16px;
    }
    .treatment-name {
      font-family: 'Playfair Display', serif; font-size: 22px;
      color: var(--cream); margin-bottom: 12px; font-weight: 400;
    }
    .treatment-name em { font-style: italic; color: var(--gold-light); }
    .treatment-desc {
      font-size: 15px; color: rgba(247,242,232,0.55);
      line-height: 1.75; font-weight: 300;
    }
    .treatment-tag {
      display: inline-block; margin-top: 16px;
      font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 2px;
      color: var(--leaf-light); text-transform: uppercase;
      border: 1px solid rgba(106, 191, 134, 0.3); padding: 4px 10px;
    }

    /* ── MARMA SECTION ── */
    .marma {
      padding: 100px 60px;
      background: var(--cream);
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .marma-text .section-body { color: #5a7560; }
    .marma-body-map {
      background: linear-gradient(180deg, var(--forest) 0%, var(--forest-deep) 100%);
      padding: 60px 48px; text-align: center; position: relative;
          border-radius: 25px;
    }
    .marma-body-map svg {
      width: 120px; opacity: 0.85;
      filter: drop-shadow(0 0 20px rgba(201,168,76,0.4));
    }
    .marma-points {
      display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px;
    }
    .marma-point {
      background: rgba(255,255,255,0.07); padding: 14px 16px;
      border-left: 2px solid var(--gold);
    }
    .marma-point-name {
      font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 1.5px;
      color: var(--gold-light); text-transform: uppercase; margin-bottom: 4px;
    }
    .marma-point-desc { font-size: 13px; color: rgba(247,242,232,0.5); }

    /* ── DOCTOR SECTION ── */
    .doctor-section {
      background: var(--warm-white); padding: 80px 60px;
      text-align: center;
    }
    .doctor-card {
      max-width: 600px; margin: 0 auto;
      background: var(--forest-deep);
      padding: 60px 56px; position: relative;
    }
    .doctor-card::before {
      content: '';
      position: absolute; inset: 8px; border: 1px solid rgba(201,168,76,0.2);
      pointer-events: none;
    }
    .doctor-ornament {
      display: flex; align-items: center; justify-content: center;
      gap: 16px; margin-bottom: 32px;
    }
    .doctor-ornament span {
      width: 48px; height: 1px; background: var(--gold);
    }
    .doctor-ornament svg { color: var(--gold); width: 20px; }
    .doctor-name {
      font-family: 'Playfair Display', serif; font-size: 34px;
      color: var(--cream); font-weight: 400; margin-bottom: 8px;
    }
    .doctor-title {
      font-family: 'Cinzel', serif; font-size: 12px; letter-spacing: 3px;
      color: var(--gold); text-transform: uppercase; margin-bottom: 32px;
    }
    .doctor-contact {
      display: flex; flex-direction: column; gap: 14px; align-items: center;
    }
    .contact-item {
      display: flex; align-items: center; gap: 12px;
      color: rgba(247,242,232,0.7); font-size: 17px;
    }
    .contact-item svg { color: var(--gold-light); width: 18px; }
    .contact-item a { color: inherit; text-decoration: none; }
    .contact-item a:hover { color: var(--gold-light); }

    /* ── CONTACT / MAP ── */
    .contact-section {
      background: var(--cream-dark); padding: 80px 60px;
    }
    .contact-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1100px; margin: 0 auto;
    }
    .contact-form-area .section-label { }
    .contact-form-area .section-title { font-size: clamp(24px, 3vw, 38px); margin-bottom: 28px; }
    .form-group { margin-bottom: 20px; }
    .form-group label {
      display: block; font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2px;
      color: var(--forest); text-transform: uppercase; margin-bottom: 8px;
    }
    .form-group input, .form-group textarea, .form-group select {
      width: 100%; padding: 14px 18px;
      background: white; border: 1px solid rgba(30,86,49,0.2);
      font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--text-dark);
      outline: none; resize: vertical; transition: border-color 0.3s;
    }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
      border-color: var(--forest-mid);
    }
    .form-group textarea { min-height: 110px; }
    .address-panel {
      background: var(--forest-deep); padding: 48px 44px;
    }
    .address-panel .section-label { color: var(--gold); margin-bottom: 20px; }
    .address-heading {
      font-family: 'Playfair Display', serif; font-size: 26px;
      color: var(--cream); margin-bottom: 28px; font-weight: 400;
    }
    .address-line {
      display: flex; gap: 14px; margin-bottom: 20px;
      color: rgba(247,242,232,0.75); font-size: 16px; line-height: 1.7;
    }
    .address-line svg { width: 18px; flex-shrink: 0; margin-top: 3px; color: var(--gold); }
    .address-map-hint {
      margin-top: 32px; padding: 16px 20px;
      background: rgba(255,255,255,0.06); border: 1px solid rgba(201,168,76,0.2);
      font-size: 14px; color: rgba(247,242,232,0.5); font-style: italic;
    }

    /* ── FOOTER ── */
    footer {
      background: #080f0a; padding: 44px 60px;
      display: flex; align-items: center; justify-content: space-between;
      border-top: 1px solid rgba(201,168,76,0.15);
    }
    .footer-logo img { height: 36px; filter: brightness(0) invert(1); opacity: 0.65; }
    .footer-text {
      font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2px;
      color: rgba(255,255,255,0.3); text-transform: uppercase;
    }
    .footer-tagline {
      font-size: 13px; color: rgba(255,255,255,0.2); font-style: italic;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50%       { transform: translateY(-12px) rotate(5deg); }
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(8px); }
    }
    .reveal {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 16px 20px; position: fixed; }
      .nav-toggle { display: inline-flex; z-index: 102; }
      .nav-menu {
        position: fixed;
        top: 76px; left: 0; right: 0;
        display: flex; flex-direction: column; align-items: stretch;
        gap: 16px; padding: 18px 24px 26px;
        background: rgba(15, 51, 32, 0.98);
        border-top: 1px solid rgba(201, 168, 76, 0.2);
        border-bottom: 1px solid rgba(201, 168, 76, 0.2);
        transform: translateY(-120%);
        opacity: 0; pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
      }
      .nav-open .nav-menu {
        transform: translateY(0);
        opacity: 1; pointer-events: auto;
      }
      .nav-open { overflow: hidden; }
      .nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
      .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
      .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
      .nav-links {
        display: flex; flex-direction: column; gap: 0;
      }
      .nav-links li { border-bottom: 1px solid rgba(247, 242, 232, 0.12); }
      .nav-links a { display: block; padding: 14px 0; font-size: 11px; }
      .nav-cta { display: block; width: 100%; text-align: center; padding: 12px 20px; }
      .hero { padding: 120px 24px 80px; }
      .hero {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 28px;
      }
      .scroll-hint { display: none; }
      .about, .marma { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
      .treatments { padding: 60px 24px; }
      .treatments-grid { grid-template-columns: 1fr; gap: 1px; }
      .contact-inner { grid-template-columns: 1fr; gap: 32px; }
      .contact-section { padding: 60px 24px; }
      footer { flex-direction: column; gap: 16px; text-align: center; padding: 36px 24px; }
      .doctor-section { padding: 60px 24px; }
      .doctor-card { padding: 40px 28px; }
      .contact-item { flex-wrap: wrap; justify-content: center; }
      .banner-img{
      width: 100%;
    }
    }

    @media (max-width: 640px) {
      .hero { padding: 104px 20px 56px; }
      .hero-badge { margin-bottom: 22px; }
      .hero-actions { width: 100%; }
      .btn-primary, .btn-outline { width: 100%; text-align: center; }
      .about-card, .marma-body-map, .address-panel { padding: 32px 24px; }
      .about-pillars, .marma-points { grid-template-columns: 1fr; }
      .panchakarma-banner { padding: 20px; }
      .treatment-card { padding: 30px 22px; }
      .contact-section, .doctor-section, .about, .marma, .treatments { padding-left: 20px; padding-right: 20px; }
      .address-line { font-size: 15px; }
    }
