/*
Theme Name: Ayurveda
Theme URI:
Author: Akash
Author URI:
Description: A custom theme for the Ayurveda website.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ayurveda
*/

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

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --deep: #1a2e1a;
    --forest: #2d5a27;
    --sage: #4a7c59;
    --mint: #8fbc8f;
    --cream: #f5f0e8;
    --parchment: #ede8d8;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --rust: #8b4513;
    --text: #2a1f0e;
    --text-light: #5a4a35;
    --white: #ffffff;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 999;
    background: #ffffff;
    backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    height: 80px;
    border-bottom: 1px solid rgba(26,46,26,0.1);
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  }

  .logo {
    display: flex; align-items: center;
    text-decoration: none;
  }
  .logo img {
    height: 62px;
    width: auto;
    display: block;
  }

  .nav-links {
    display: flex; gap: 32px; list-style: none; align-items: center;
  }
  .nav-links a {
    color: var(--deep);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -3px; left: 0; right: 0; height: 2px;
    background: var(--forest);
    transform: scaleX(0);
    transition: transform 0.3s;
    border-radius: 2px;
  }
  .nav-links a:hover { color: var(--forest); }
  .nav-links a:hover::after { transform: scaleX(1); }

  .nav-cta {
    background: var(--forest) !important;
    color: #ffffff !important;
    padding: 11px 26px;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: all 0.3s !important;
    letter-spacing: 0.5px !important;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--deep) !important; color: #ffffff !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,46,26,0.25) !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(8,20,8,0.88) 0%, rgba(20,40,18,0.82) 45%, rgba(30,65,28,0.75) 100%);      
    position: relative;
    display: flex; align-items: center;
    padding: 110px 5% 60px;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 75% 40%, rgba(74,124,89,0.18) 0%, transparent 55%),
      radial-gradient(circle at 15% 75%, rgba(201,168,76,0.10) 0%, transparent 40%);
  }

  /* hero-bg-art disabled — image used only in main hero background */

  .hero-content { position: relative; z-index: 2; max-width: 600px; }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold-light);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.9rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
    animation: fadeUp 0.8s 0.15s ease both;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
    animation: fadeUp 0.8s 0.3s ease both;
  }

  .hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeUp 0.8s 0.45s ease both;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--deep);
    padding: 15px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: 2px solid var(--gold);
  }
  .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }

  .btn-outline {
    background: transparent;
    color: var(--white);
    padding: 15px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.3s;
  }
  .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

  .hero-stats {
    position: absolute; bottom: 48px; right: 5%;
    display: flex; gap: 40px;
    animation: fadeUp 0.8s 0.6s ease both;
    z-index: 2;
  }
  .stat { text-align: center; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold-light); line-height: 1; }
  .stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.6); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

  /* ── PULSE SECTION ── */
  /* ── PULSE SECTION ── */
  .pulse-section {
    background: var(--white);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
  }
  .pulse-section::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
    background: linear-gradient(to bottom, var(--gold), var(--forest));
  }

  .section-tag {
    font-size: 0.875rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 10px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-tag::before {
    content: '';
    width: 30px; height: 1px;
    background: var(--gold);
    display: block;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--deep);
    margin-bottom: 18px;
    line-height: 1.2;
  }

  /* ── PULSE REDESIGN ── */
  .pulse-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 70px;
  }
  .pulse-intro-text p {
    max-width: 500px;
    color: var(--text-light);
    line-height: 1.9;
    margin-top: 16px;
    font-size: 1.05rem;
  }
  .pulse-intro-quote {
    background: linear-gradient(135deg, var(--deep), var(--forest));
    border-radius: 16px;
    padding: 36px 40px;
    position: relative;
    overflow: hidden;
  }
  .pulse-intro-quote::before {
    content: 'नाडी';
    position: absolute; right: 20px; top: 10px;
    font-size: 5rem; font-family: serif;
    color: rgba(255,255,255,0.05);
    line-height: 1;
  }
  .pulse-intro-quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    font-style: italic;
    border: none; margin: 0;
  }
  .pulse-intro-quote cite {
    display: block; margin-top: 16px;
    font-size: 0.82rem; letter-spacing: 2px;
    color: var(--gold-light); text-transform: uppercase;
    font-style: normal;
  }

  /* Big visual strip */
  .pulse-feature-strip {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(26,46,26,0.18);
    min-height: 520px;
  }

  /* Left — dark panel with animation */
  .pulse-dark-panel {
    background: linear-gradient(160deg, #0d1f0d 0%, #1a3a1a 50%, #2a5225 100%);
    padding: 56px 48px;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative; overflow: hidden;
  }
  .pulse-dark-panel::after {
    content: '';
    position: absolute; bottom: -40px; right: -40px;
    width: 220px; height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.12);
    box-shadow: 0 0 0 30px rgba(201,168,76,0.05), 0 0 0 60px rgba(201,168,76,0.03);
  }

  .pulse-ring-wrap {
    display: flex; align-items: center; gap: 28px;
  }
  .pulse-ring {
    width: 100px; height: 100px; flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid rgba(201,168,76,0.5);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    animation: ringPulse 2.5s ease-in-out infinite;
  }
  .pulse-ring::before {
    content: '';
    position: absolute; inset: 10px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.25);
  }
  .pulse-ring::after {
    content: '';
    position: absolute; inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.1);
    animation: ringPulse 2.5s 0.5s ease-in-out infinite;
  }
  @keyframes ringPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.2); }
    50% { box-shadow: 0 0 0 14px rgba(201,168,76,0); }
  }
  .pulse-hand { font-size: 2.8rem; }

  .pulse-ring-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; color: var(--white);
    margin-bottom: 4px;
  }
  .pulse-ring-text span {
    font-size: 0.78rem; letter-spacing: 2.5px;
    color: var(--gold-light); text-transform: uppercase;
  }

  /* ECG line animation */
  .ecg-wrap {
    margin: 32px 0;
  }
  .ecg-label {
    font-size: 0.75rem; letter-spacing: 2px;
    color: rgba(255,255,255,0.35); text-transform: uppercase;
    margin-bottom: 12px;
  }
  .ecg-svg { width: 100%; overflow: visible; }
  .ecg-path {
    fill: none;
    stroke: var(--gold);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: ecgDraw 2s ease forwards, ecgPulse 3s 2s ease-in-out infinite;
  }
  @keyframes ecgDraw {
    to { stroke-dashoffset: 0; }
  }
  @keyframes ecgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }

  .pulse-qualities {
    display: flex; gap: 10px; flex-wrap: wrap;
  }
  .pq-chip {
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.25);
    color: var(--gold-light);
    padding: 6px 14px; border-radius: 30px;
    font-size: 0.8rem; letter-spacing: 0.5px;
  }

  /* Right — steps panel */
  .pulse-steps-panel {
    background: var(--parchment);
    padding: 0;
    display: flex; flex-direction: column;
  }
  .pulse-steps-header {
    background: var(--cream);
    padding: 32px 40px 24px;
    border-bottom: 1px solid rgba(26,46,26,0.08);
  }
  .pulse-steps-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; color: var(--deep);
    margin-bottom: 4px;
  }
  .pulse-steps-header p {
    font-size: 0.9rem; color: var(--text-light);
  }

  .pulse-step-new {
    display: flex; gap: 0; align-items: stretch;
    border-bottom: 1px solid rgba(26,46,26,0.07);
    transition: background 0.3s;
    cursor: default;
  }
  .pulse-step-new:last-child { border-bottom: none; }
  .pulse-step-new:hover { background: rgba(201,168,76,0.06); }

  .psn-num {
    width: 64px; flex-shrink: 0;
    background: var(--deep);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; color: var(--gold-light);
    font-weight: 700;
    position: relative;
  }
  .psn-num::after {
    content: '';
    position: absolute; right: 0; top: 20%; bottom: 20%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  }

  .psn-body {
    padding: 24px 28px;
    flex: 1;
  }
  .psn-body h4 {
    font-weight: 700; font-size: 1.05rem;
    color: var(--deep); margin-bottom: 6px;
    display: flex; align-items: center; gap: 8px;
  }
  .psn-body h4 .psn-icon { font-size: 1rem; }
  .psn-body p { font-size: 0.95rem; color: var(--text-light); line-height: 1.65; }

  @keyframes wave {
    0%, 100% { transform: scaleY(1); opacity: 0.7; }
    50% { transform: scaleY(1.4); opacity: 1; }
  }

  /* ── PRAKRITI STRIP ── */
  .dosha-strip {
    background: linear-gradient(90deg, #1a2e1a, #2d5a27, #1a2e1a);
    padding: 50px 5%;
    display: flex; gap: 0;
  }

  .dosha-card {
    flex: 1;
    text-align: center;
    padding: 36px 28px;
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s;
  }
  .dosha-card:last-child { border-right: none; }
  .dosha-card:hover { background: rgba(255,255,255,0.06); }
  .dosha-symbol { font-size: 2.5rem; margin-bottom: 12px; }
  .dosha-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold-light);
    margin-bottom: 6px;
  }
  .dosha-sub { font-size: 0.9rem; letter-spacing: 2px; color: rgba(255,255,255,0.5); text-transform: uppercase; margin-bottom: 12px; }
  .dosha-desc { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

  /* ── SERVICES ── */
  .services-section {
    padding: 100px 5%;
    background: var(--parchment);
    position: relative;
  }

  .services-header { text-align: center; margin-bottom: 60px; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--sage));
    transform: scaleX(0);
    transition: transform 0.35s;
  }
  .service-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(26,46,26,0.12); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-emoji { font-size: 3em; margin-bottom: 14px; display: block; }
  .service-name { font-weight: 600; font-size: 1.05rem; color: var(--deep); margin-bottom: 6px; }
  .service-desc { font-size: 0.92rem; color: var(--text-light); line-height: 1.5; }

  /* ── SPECIALISED CARE ── */
  .special-section {
    background: var(--deep);
    padding: 80px 5%;
  }
  .special-header { text-align: center; margin-bottom: 50px; }
  .special-header .section-tag { justify-content: center; }
  .special-header .section-tag::before { display: none; }
  .special-header .section-tag::after { content: ''; width: 30px; height: 1px; background: var(--gold); display: block; }
  .special-header .section-title { color: var(--white); }

  .special-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
  }

  .special-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 12px;
    padding: 34px 20px;
    text-align: center;
    transition: all 0.3s;
  }
  .special-card:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); transform: translateY(-4px); }
  .special-icon { font-size: 3em; margin-bottom: 12px; display: block; }
  .special-name { color: var(--white); font-weight: 600; font-size: 1.075rem; }

  /* ── HOW IT WORKS ── */
  .how-section {
    padding: 100px 5%;
    background: var(--white);
  }
  .how-header { text-align: center; margin-bottom: 70px; }

  .how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    position: relative;
  }
  .how-steps::before {
    content: '';
    position: absolute;
    top: 40px; left: 12.5%; right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--sage), var(--gold));
  }

  .how-step { text-align: center; padding: 20px 16px; }
  .how-step-num {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--forest);
    font-weight: 700;
    position: relative;
    z-index: 2;
    background: var(--white);
  }
  .how-step h4 { font-weight: 600; margin-bottom: 8px; color: var(--deep); }
  .how-step p { font-size: 0.97rem; color: var(--text-light); line-height: 1.6; }

  /* ── APPOINTMENT ── */
  .appt-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--parchment) 0%, #e8dfc8 100%);
    position: relative;
    overflow: hidden;
  }
  .appt-section::after {
    content: 'ॐ';
    position: absolute;
    font-size: 400px;
    color: rgba(26,46,26,0.03);
    right: -60px; bottom: -80px;
    font-family: serif;
    line-height: 1;
  }

  .appt-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
    align-items: start;
    position: relative; z-index: 2;
  }

  .appt-info h2 { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--deep); margin-bottom: 20px; line-height: 1.2; }
  .appt-info p { font-size: 1.075rem; color: var(--text-light); line-height: 1.8; margin-bottom: 32px; }

  .contact-detail {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 16px;
  }
  .contact-icon {
    width: 42px; height: 42px;
    background: var(--deep);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .contact-text { font-size: 1.025rem; color: var(--text-light); }
  .contact-text strong { color: var(--deep); display: block; margin-bottom: 2px; }

  /* Form */
  .appt-form {
    background: var(--white);
    border-radius: 16px;
    padding: 44px 40px;
    box-shadow: 0 20px 60px rgba(26,46,26,0.1);
  }

  .form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--deep);
    margin-bottom: 6px;
  }
  .form-subtitle { font-size: 1rem; color: var(--text-light); margin-bottom: 30px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 18px; }
  .form-group label { display: block; font-size: 0.925rem; font-weight: 600; color: var(--deep); margin-bottom: 7px; letter-spacing: 0.5px; text-transform: uppercase; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    border: 1.5px solid #e0d8cc;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Jost', sans-serif;
    font-size: 1.025rem;
    color: var(--text);
    background: var(--cream);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(74,124,89,0.1);
    background: var(--white);
  }
  .form-group textarea { resize: vertical; min-height: 90px; }

  .form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--deep), var(--forest));
    color: var(--gold-light);
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-family: 'Jost', sans-serif;
    font-size: 1.075rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 6px;
  }
  .form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,46,26,0.3); }

  /* Confirmation message */
  .confirm-msg {
    display: none;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--forest), var(--sage));
    border-radius: 10px;
    color: var(--white);
    margin-top: 16px;
  }
  .confirm-msg.show { display: block; animation: fadeUp 0.5s ease; }
  .confirm-msg h4 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 6px; }
  .confirm-msg p { font-size: 1rem; opacity: 0.85; }

  /* ── TESTIMONIAL / PRAKRITI INFO ── */
  .prakriti-section {
    padding: 80px 5%;
    background: var(--cream);
    text-align: center;
  }
  .prakriti-box {
    max-width: 800px; margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    padding: 50px 60px;
    border: 1px solid var(--parchment);
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    position: relative;
  }
  .prakriti-box::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    color: var(--mint);
    position: absolute;
    top: -10px; left: 30px;
    line-height: 1;
    opacity: 0.3;
  }
  .prakriti-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: var(--text);
    line-height: 1.8;
    position: relative; z-index: 2;
    margin-bottom: 24px;
  }
  .prakriti-author {
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sage);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--deep);
    padding: 60px 5% 30px;
    color: rgba(255,255,255,0.7);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
  }

  .footer-brand .logo-text { font-size: 1.4rem; }
  .footer-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    margin-top: 16px;
  }

  .footer-col h5 {
    color: var(--gold-light);
    font-size: 0.925rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 1rem; transition: color 0.3s; }
  .footer-col ul a:hover { color: var(--gold-light); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.925rem;
    color: rgba(255,255,255,0.35);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  @media (max-width: 900px) {
    .pulse-grid, .appt-grid { grid-template-columns: 1fr; }
    .pulse-intro { grid-template-columns: 1fr; gap: 30px; }
    .pulse-feature-strip { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .how-steps { grid-template-columns: repeat(2, 1fr); }
    .how-steps::before { display: none; }
    .special-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { position: relative; bottom: auto; right: auto; margin-top: 40px; justify-content: flex-start; }
    .dosha-strip { flex-direction: column; }
    .dosha-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .nav-links { display: none; }
    .form-row { grid-template-columns: 1fr; }
  }