/* ═══════════════════════════════════════════════════════
   BRAND.CSS — HypnotherapyGurgaon.com
   ═══════════════════════════════════════════════════════
   Single source of truth for ALL shared styling.
   Every page links to this file. Change here → updates everywhere.

   Version: 3.6
   Brand: Option 2 — Warmth & Empathy
   Base: brand.css v2.0 (19 sections) + v2.4 audit improvements
   Reference: https://gemini.google.com/app/b6e7b95981883ac5?hl=en-IN
   Chat: https://claude.ai/chat/cef7ac01-32a4-47cd-80d0-7b7f0b5d01d5
   v3.1: https://claude.ai/chat/8254c8cf-00c7-4134-b94e-349a8dbedf9a
   v3.2: https://claude.ai/chat/0daee486-ef5b-4962-851a-027242abed1a
   v3.3: https://claude.ai/chat/ea92da35-fbfd-4ecb-a780-bdeea19acd7a
   v3.4: https://claude.ai/chat/e92ad13b-0f02-4936-9179-44a4463e7441
   v3.5: (previous session)
   v3.6: (this session)
   v3.3 changes: (1) Global content link rule — .content-section a:not(.btn)
     and .service-hero a:not(.btn) — permanent fix for invisible links.
     (2) .main-nav + .nav-row support — fixes header on pages using that class.
     (3) All inline link styles can now be stripped from HTML.
   v3.4 changes: (1) §4 content-protection user-select + .whatsapp-fab utility.
     (2) §20 mobile nav .nav-links.open + .mobile-toggle.active states (all pages).
     (3) §21 HOMEPAGE — all homepage-only component CSS extracted from index.html
     inline <style>. (4) PRINT renumbered to §22.
     (5) --navy renamed to --primary (all derived vars too: --primary-light,
     --primary-alpha-08, --primary-shadow, --primary-shadow-sm). Role-based,
     palette-neutral naming — kills confusion with old blue palette.
     (6) .hero-tagline inverted pill treatment: --primary bg + --surface text.
     (7) §7 Header: .logo flex-column + .logo-name + .logo-byline for practice
     byline. .logo span → .logo-name span. Header 72→78px. Byline hidden ≤600px.
   v3.5 changes: CONTENT PROTECTION OVERHAUL (audit of all 17 pages).
     (1) §4 user-select: replaced narrow 9-selector rule with broad
     main{user-select:none} + whitelist for form elements. Covers ALL current
     and future content automatically (headings, eyebrows, FAQs, steps, cards,
     lists, footer).
     (2) §4 image protection: main img { pointer-events:none; -webkit-user-drag:none;
     user-drag:none } — prevents drag-to-desktop and right-click-save.
     (3) §22 PRINT: added content-protection overlay — prints a copyright
     watermark across every page; hides WhatsApp FAB.
     NOTE: Inline <style> blocks with old user-select rules should be removed
   v3.6 changes: WHATSAPP BRAND ALIGNMENT.
     (1) §4 .whatsapp-fab: #25D366 → var(--primary), added hover state.
     (2) §4 NEW .form-submit-btn: branded WhatsApp submit button (contact page).
     (3) §4 NEW .contact-method-icon.whatsapp: branded icon bg + color.
     All three replace hard-coded WhatsApp green with brand palette tokens.
     Contact page inline styles for these three can now be removed.
     from all 16 non-Homepage HTML files (batch patch script provided).
   ═══════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────
   1. TOKENS
   ───────────────────────────────────────────────────── */

:root {
  /* Core palette */
  --primary:           #2D4A3E; /* Deep Calming Forest Green (was --navy) */
  --slate:          #8A9A92; /* Muted Sage Gray */
  --sky:            #E8DCC8; /* Warm Sand/Peach Accent */
  --white:          #FFFFFF;
  --surface:        #FAF9F6; /* Soft Alabaster/Cream background */
  --text-primary:   #2C3333;
  --text-secondary: #525E5E;

  /* Derived / extended palette */
  --primary-light:     #4A6357; /* CTA gradient end, hover states */
  --sky-hover:      #D8CCB8; /* Accent button hover */
  --warm-gray:      #F2F0EB; /* Icon bg, highlight bg, cred-tag bg */
  --border-light:   #E8ECF1; /* Header border, card borders, FAQ dividers */
  --border-faint:   #CBD5E0; /* Breadcrumb separators */
  --sky-alpha-15:   rgba(232, 220, 200, 0.25); /* Icon bg on hover-inverted cards */
  --sky-alpha-10:   rgba(232, 220, 200, 0.15); /* Icon bg default */
  --primary-alpha-08:  rgba(45, 74, 62, 0.08);    /* Cred-tag bg */
  --primary-shadow:    rgba(45, 74, 62, 0.15);    /* Card hover shadow */
  --primary-shadow-sm: rgba(45, 74, 62, 0.12);    /* Nav bar shadow */
  --glow:           rgba(232, 220, 200, 0.15); /* Decorative CTA glow */

  /* Typography */
  --font-heading:   'Lora', Georgia, serif;
  --font-body:      'Open Sans', sans-serif;

  /* Layout */
  --radius:         16px;    /* Softer, more organic corners */
  --max-width:      1140px;
  --section-pad:    80px;

  /* Transitions */
  --ease:           0.25s ease;
}


/* ─────────────────────────────────────────────────────
   2. RESET & BASE
   ───────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 88px; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* Paragraph & list spacing */
p + p { margin-top: 1em; }
ul, ol { margin-top: 0.5em; margin-bottom: 0.5em; padding-left: 1.5em; }
li + li { margin-top: 0.25em; }

/* Selection */
::selection {
  background: var(--sky);
  color: var(--primary);
}


/* ─────────────────────────────────────────────────────
   3. ACCESSIBILITY
   ───────────────────────────────────────────────────── */

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 2px;
}
:focus:not(:focus-visible) {
  outline: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: top var(--ease);
}
.skip-link:focus {
  top: 12px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ─────────────────────────────────────────────────────
   4. UTILITY
   ───────────────────────────────────────────────────── */

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: var(--section-pad) 0; }
.text-center { text-align: center; }

/* Content protection — broad scope on <main> (v3.5) */
main {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Whitelist: form inputs must remain selectable */
main input, main textarea, main select, main button,
main .booking-form-card, main .form-group {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Image protection — block drag-to-desktop and right-click save */
main img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}

/* WhatsApp floating action button (all pages) */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--primary-shadow);
  z-index: 1000;
  text-decoration: none;
  transition: background var(--ease), box-shadow var(--ease);
}
.whatsapp-fab:hover {
  background: var(--primary-light);
  box-shadow: 0 6px 16px var(--primary-shadow);
}

/* WhatsApp form submit button (contact page) */
.form-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
  width: 100%;
  justify-content: center;
}
.form-submit-btn:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}
.form-submit-btn svg { flex-shrink: 0; }

/* WhatsApp contact method icon (contact page) */
.contact-method-icon.whatsapp { background: var(--primary-alpha-08); }
.contact-method-icon.whatsapp svg { color: var(--primary); }


/* ─────────────────────────────────────────────────────
   5. TYPOGRAPHY
   ───────────────────────────────────────────────────── */

h1 { font-family: var(--font-heading); font-size: 38px; font-weight: 700; line-height: 1.2; color: var(--primary); }
h2 { font-family: var(--font-heading); font-size: 30px; font-weight: 600; line-height: 1.3; color: var(--primary); }
h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 600; line-height: 1.3; color: var(--primary); }
h4 { font-family: var(--font-heading); font-size: 19px; font-weight: 600; line-height: 1.4; color: var(--primary); }
.subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 12px;
}


/* ─────────────────────────────────────────────────────
   6. BUTTONS
   ───────────────────────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
}
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-accent {
  background: var(--sky);
  color: var(--primary);
  border-color: var(--sky);
}
.btn-accent:hover {
  background: var(--sky-hover);
  border-color: var(--sky-hover);
}


/* ─────────────────────────────────────────────────────
   7. HEADER / NAV
   ───────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 0 24px;
}
.header-inner,
.nav-row {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name span { color: var(--slate); }
.logo-byline {
  font-family: var(--font-body);
  font-size: 11px;
  font-style: italic;
  font-weight: 400;
  color: var(--slate);
  letter-spacing: 0.3px;
  margin-top: 2px;
}
.nav-links,
.main-nav ul,
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a:not(.btn),
.main-nav a:not(.btn) {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--ease);
}
.nav-links a:not(.btn):hover,
.main-nav a:not(.btn):hover { color: var(--primary); }
.nav-links .active,
.main-nav .active { color: var(--primary); font-weight: 600; }
.main-nav .btn { padding: 10px 24px; font-size: 13px; }
.nav-cta .btn { padding: 10px 24px; font-size: 13px; }
.nav-cta .btn-primary { color: var(--white); }
.nav-cta .btn-primary:hover { color: var(--white); }
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  margin: 5px 0;
  transition: transform var(--ease), opacity var(--ease);
}


/* ─────────────────────────────────────────────────────
   8. BREADCRUMB
   ───────────────────────────────────────────────────── */

.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
  color: var(--text-secondary);
}
.breadcrumb a {
  color: var(--slate);
  transition: color var(--ease);
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { margin: 0 8px; color: var(--border-faint); }


/* ─────────────────────────────────────────────────────
   9. SERVICE HERO (centered layout)
   ───────────────────────────────────────────────────── */

.service-hero {
  background: var(--surface);
  padding: 60px 0 72px;
}
.service-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.service-hero .section-eyebrow { margin-bottom: 16px; }
.service-hero h1 { margin-bottom: 20px; }
.service-hero .subtitle { margin-bottom: 32px; max-width: 640px; margin-left: auto; margin-right: auto; }
.service-hero .hero-btn-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.trust-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}
.trust-badge svg { color: var(--primary); flex-shrink: 0; }


/* ─────────────────────────────────────────────────────
   10. CONTENT SECTIONS
   ───────────────────────────────────────────────────── */

.content-section { background: var(--white); }
.content-section.alt { background: var(--surface); }
.content-inner {
  max-width: 760px;
  margin: 0 auto;
}
.content-inner h2 { margin-bottom: 24px; }
.content-inner p {
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.7;
}
.content-inner p:last-child { margin-bottom: 0; }

/* Content links — global rule so inline styles are never needed */
.content-section a:not(.btn),
.service-hero a:not(.btn),
.faq-section a:not(.btn),
.about-mini a:not(.btn) {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px solid var(--sky);
  transition: color var(--ease), border-color var(--ease);
}
.content-section a:not(.btn):hover,
.service-hero a:not(.btn):hover,
.faq-section a:not(.btn):hover,
.about-mini a:not(.btn):hover {
  border-color: var(--primary);
}


/* ─────────────────────────────────────────────────────
   11. SECTION NAVIGATOR (gradient bar with pill links)
   ───────────────────────────────────────────────────── */

.section-nav-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 18px 0;
  box-shadow: 0 2px 8px var(--primary-shadow-sm);
}
.section-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.section-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  padding: 10px 20px;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.section-nav a:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.section-nav a:hover svg { stroke: var(--primary); }
.section-nav a svg {
  flex-shrink: 0;
  stroke: var(--white);
  transition: stroke var(--ease);
}
.section-nav .nav-divider {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  padding: 0 2px;
}


/* ─────────────────────────────────────────────────────
   12. TYPE CARDS GRID (subtypes with hover inversion)
   ───────────────────────────────────────────────────── */

.types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.type-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border-light);
  transition: background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.alt .type-card { background: var(--white); }
.content-section:not(.alt) .type-card { background: var(--surface); }
.content-section .type-card:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--primary-shadow);
}
.content-section .type-card:hover h4 { color: var(--white); }
.content-section .type-card:hover p { color: var(--white); }
.content-section .type-card:hover .type-icon {
  background: var(--sky-alpha-15);
}
.content-section .type-card:hover .type-icon svg { color: var(--sky); }
.content-section .type-card a { color: var(--primary); font-weight: 600; border-bottom: 1px solid var(--sky); }
.content-section .type-card:hover a { color: var(--sky) !important; border-color: var(--sky) !important; }
.type-card h4 {
  font-size: 17px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  transition: color var(--ease);
}
.type-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--sky-alpha-10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--ease);
}
.type-icon svg { color: var(--primary); transition: color var(--ease); }
.type-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
  transition: color var(--ease);
}


/* ─────────────────────────────────────────────────────
   13. EVIDENCE / HIGHLIGHT BOXES
   ───────────────────────────────────────────────────── */

.highlight-box {
  background: var(--warm-gray);
  border-left: 4px solid var(--slate);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin: 28px 0;
}
.alt .highlight-box { background: var(--white); }
.highlight-box p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 0;
}
.highlight-box strong { color: var(--primary); }


/* ─────────────────────────────────────────────────────
   14. PROCESS STEPS
   ───────────────────────────────────────────────────── */

.process-steps { margin-top: 32px; }
.process-step {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}
.process-step:last-child { margin-bottom: 0; }
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body h4 { font-size: 17px; margin-bottom: 6px; }
.step-body p { font-size: 15px; color: var(--text-secondary); margin-bottom: 0; }


/* ─────────────────────────────────────────────────────
   15. ABOUT MINI
   ───────────────────────────────────────────────────── */

.about-mini { background: var(--white); }
.about-row {
  display: flex;
  gap: 48px;
  align-items: center;
}
.about-photo {
  width: 220px;
  height: 270px;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.about-photo::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow), transparent 70%);
  top: -30px;
  right: -30px;
}
.photo-placeholder {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  font-weight: 500;
  z-index: 2;
}
.about-text h2 { margin-bottom: 16px; }
.about-text p { color: var(--text-secondary); margin-bottom: 14px; }
.credential-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cred-tag {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius);
  background: var(--primary-alpha-08);
  color: var(--primary);
}


/* ─────────────────────────────────────────────────────
   16. FAQ SECTION
   ───────────────────────────────────────────────────── */

.faq-section { background: var(--surface); }
.faq-list {
  max-width: 760px;
  margin: 36px auto 0;
}
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:first-child { border-top: 1px solid var(--border-light); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
  transition: color var(--ease);
}
.faq-question:hover { color: var(--slate); }
.faq-chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 22px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}


/* ─────────────────────────────────────────────────────
   17. FINAL CTA
   ───────────────────────────────────────────────────── */

.final-cta {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow), transparent 70%);
  top: -200px;
  right: -100px;
}
.final-cta h2 { color: var(--white); margin-bottom: 16px; }
.final-cta .subtitle { color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.final-cta .btn-accent { font-size: 16px; padding: 16px 40px; }
.cta-trust {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-trust span {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}


/* ─────────────────────────────────────────────────────
   18. FOOTER
   ───────────────────────────────────────────────────── */

.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 56px 24px 32px;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo { color: var(--white); font-size: 20px; margin-bottom: 12px; }
.footer-brand .logo-name span { color: var(--sky); }
.footer-brand .logo-byline { color: rgba(255, 255, 255, 0.6); }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--sky); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--sky); }


/* ─────────────────────────────────────────────────────
   19. ANIMATIONS
   ───────────────────────────────────────────────────── */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.fade-in.d1 { animation-delay: 0.1s; }
.fade-in.d2 { animation-delay: 0.2s; }
.fade-in.d3 { animation-delay: 0.3s; }
.fade-in.d4 { animation-delay: 0.4s; }


/* ─────────────────────────────────────────────────────
   20. RESPONSIVE
   ─────────────────────────────────────────────────────
   Three breakpoints:
     968px — tablet landscape / small laptop
     768px — tablet portrait
     600px — phone

   These values carry forward to WordPress/Kadence.
   ───────────────────────────────────────────────────── */

/* ── TABLET LANDSCAPE / SMALL LAPTOP ── */
@media (max-width: 968px) {
  :root { --section-pad: 64px; }

  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 22px; }

  .types-grid { grid-template-columns: 1fr; }
  .about-row { flex-direction: column; gap: 32px; }
  .about-photo { width: 180px; height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-hero { padding: 48px 0 56px; }
  .final-cta { padding: 64px 24px; }
  .nav-links, .main-nav, .main-nav ul { gap: 24px; }
}

/* ── TABLET PORTRAIT ── */
@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  h4 { font-size: 17px; }
  body { font-size: 15px; }
  .subtitle { font-size: 15px; }
  .section-eyebrow { font-size: 11px; letter-spacing: 2px; }

  .btn { padding: 12px 28px; font-size: 14px; }
  .nav-cta .btn { padding: 8px 20px; }

  .type-card { padding: 24px 22px; }
  .type-card h4 { font-size: 16px; }

  .highlight-box { padding: 20px 22px; }
  .service-hero { padding: 40px 0 48px; }
  .final-cta { padding: 56px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { font-size: 11px; }
  .faq-question { font-size: 17px; }
  .step-body h4 { font-size: 16px; }
  .step-body p { font-size: 14px; }
}

/* ── PHONE ── */
@media (max-width: 600px) {
  :root { --section-pad: 40px; }

  h1 { font-size: 24px; }
  h2 { font-size: 21px; }
  h3 { font-size: 18px; }
  h4 { font-size: 16px; }
  body { font-size: 15px; }
  .subtitle { font-size: 14px; }

  .header-inner, .nav-row { height: 60px; }
  .logo { font-size: 18px; }
  .logo-byline { display: none; }
  .nav-links, .main-nav { display: none; }
  .mobile-toggle { display: block; }

  /* Mobile hamburger open states (all pages) */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 24px 24px;
    gap: 0;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 8px 24px var(--primary-alpha-08);
    z-index: 99;
  }
  .nav-links.open li { padding: 12px 0; border-bottom: 1px solid #F0F2F5; }
  .nav-links.open li:last-child { border-bottom: none; }
  .nav-links.open .nav-cta { padding-top: 16px; }
  .nav-links.open .nav-cta .btn { display: block; text-align: center; }
  .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .mobile-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .btn { padding: 12px 24px; font-size: 14px; }

  .type-card { padding: 22px 18px; }
  .types-grid { gap: 16px; }

  .breadcrumb { font-size: 12px; }
  .highlight-box { padding: 18px 18px; }
  .service-hero { padding: 32px 0 40px; }
  .service-hero .hero-btn-row { flex-direction: column; }
  .service-hero .hero-btn-row .btn { text-align: center; }
  .section-nav { gap: 8px; }
  .section-nav a { font-size: 13px; padding: 8px 14px; }
  .section-nav .nav-divider { display: none; }
  .faq-question { font-size: 16px; }
  .final-cta { padding: 48px 16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .trust-row { flex-direction: column; align-items: center; gap: 8px; }
  .trust-badge { font-size: 13px; }
}


/* ─────────────────────────────────────────────────────
   21. HOMEPAGE (index.html only)
   ─────────────────────────────────────────────────────
   Split hero, pain-points grid, services grid,
   how-it-works steps, about-mini overrides, location
   cards. All other pages use service-hero from §9.
   ───────────────────────────────────────────────────── */

/* --- Hero: Split Layout --- */
.hero {
  background: var(--surface);
  min-height: 560px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.hero .container {
  display: flex;
  align-items: stretch;
  gap: 48px;
  width: 100%;
}
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px 60px 0;
  max-width: 580px;
}
.hero-left .section-eyebrow { margin-bottom: 16px; }
.hero-left h1 { margin-bottom: 20px; }
.hero-left .subtitle { margin-bottom: 32px; max-width: 480px; }
.hero-tagline {
  display: inline-block;
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--surface);
  background: var(--primary);
  padding: 8px 20px;
  border-radius: var(--radius);
  margin-top: 8px;
}
.hero-btn-row {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero .trust-row { justify-content: flex-start; }

/* --- Hero: Right / Announcement Card --- */
.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
}
.announcement-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 4px 24px var(--primary-alpha-08);
  border-left: 4px solid var(--sky);
}
.announcement-card .card-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 12px;
}
.announcement-card h3 { font-size: 24px; margin-bottom: 14px; }
.announcement-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* --- Pain Points Grid --- */
.pain-points { background: var(--white); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.pain-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform var(--ease), box-shadow var(--ease);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--primary-alpha-08);
}
.pain-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--slate));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.pain-icon svg { color: var(--white); }
.pain-card h4 { font-size: 18px; margin-bottom: 10px; }
.pain-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.5; }

/* --- Services Grid --- */
.services { background: var(--surface); }
.services-grid-section { padding: 0 0 var(--section-pad); }
.services-intro {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 56px 24px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.services-intro::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 220, 200, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.services-intro .section-eyebrow { color: var(--sky); margin-bottom: 14px; }
.services-intro h2 { color: var(--white); margin-bottom: 16px; }
.services-intro .subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border-light);
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 8px 24px var(--primary-shadow);
  transform: translateY(-2px);
}
.service-card:hover h4 { color: var(--white); }
.service-card:hover p { color: rgba(255, 255, 255, 0.8); }
.service-card:hover .service-icon { background: var(--sky-alpha-15); }
.service-card:hover .service-icon svg { color: var(--sky); }
.service-card:hover .service-link { color: var(--sky); }
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--sky-alpha-10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--ease);
}
.service-icon svg { color: var(--primary); transition: color var(--ease); }
.service-card h4 { margin-bottom: 10px; transition: color var(--ease); }
.service-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
  transition: color var(--ease);
}
.service-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color var(--ease);
}
.service-link:hover { gap: 10px; }

/* --- How It Works (homepage steps) --- */
.how-it-works { background: var(--white); }
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
  position: relative;
}
.step { text-align: center; position: relative; }
.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.step h4 { margin-bottom: 10px; }
.step p { font-size: 16px; color: var(--text-secondary); max-width: 300px; margin: 0 auto; }
/* Connector lines between steps */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(50% + 44px);
  width: calc(100% - 88px);
  height: 2px;
  background: linear-gradient(90deg, var(--slate), var(--sky));
  z-index: 1;
}

/* --- About Mini (homepage overrides) --- */
.about-mini { background: var(--surface); }
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 48px;
}
.about-mini .about-photo { width: 280px; height: 340px; }
.about-mini .about-photo::before { width: 200px; height: 200px; top: -40px; right: -40px; }
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--text-secondary); margin-bottom: 16px; max-width: 520px; }

/* --- Location Cards --- */
.location { background: var(--white); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.location-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border-light);
}
.location-card h4 { margin-bottom: 8px; }
.location-card .address {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: var(--sky-alpha-15);
  padding: 6px 14px;
  border-radius: 20px;
}

/* --- Homepage responsive overrides --- */
@media (max-width: 968px) {
  .hero .container { flex-direction: column; gap: 32px; }
  .hero-left { max-width: 100%; padding: 48px 0 0; }
  .hero-right { padding: 0 0 48px; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .step:not(:last-child)::after { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-mini .about-photo { width: 200px; height: 240px; }
}
@media (max-width: 600px) {
  .pain-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .hero-btn-row { flex-direction: column; }
  .hero-btn-row .btn { text-align: center; }
}


/* ─────────────────────────────────────────────────────
   22. PRINT
   ───────────────────────────────────────────────────── */

@media print {
  *, *::before, *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  body { font-size: 12pt; line-height: 1.5; }
  a { text-decoration: underline; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 10pt; }
  .site-header,
  .mobile-toggle,
  .nav-cta,
  .final-cta,
  .site-footer,
  .skip-link,
  .section-nav-bar,
  .whatsapp-fab,
  .btn { display: none !important; }
  .service-hero { background: none !important; padding: 24px 0; }
  .container { max-width: 100%; padding: 0; }
  h1, h2, h3, h4 { page-break-after: avoid; }
  img { max-width: 100% !important; }
  @page { margin: 2cm; }

  /* Content protection — diagonal watermark on every printed page */
  body::after {
    content: "© hypnotherapygurgaon.com — Printing for personal reference only";
    position: fixed;
    top: 40%;
    left: -5%;
    width: 120%;
    text-align: center;
    font-size: 48pt;
    font-family: var(--font-heading), serif;
    color: rgba(0, 0, 0, 0.06) !important;
    transform: rotate(-30deg);
    pointer-events: none;
    z-index: 99999;
  }
}
