/* ===== NORTH LONDON PSYCHIATRY PRACTICE — GLOBAL STYLES ===== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #1a2744;
  --navy-mid: #243560;
  --teal: #3d7a78;
  --teal-lt: #5a9e9b;
  --sage: #7aaa8a;
  --cream: #faf8f5;
  --warm-wt: #f4f0eb;
  --sand: #e8e0d4;
  --text: #2c2c2c;
  --text-lt: #5a5a6a;
  --gold: #c9a96e;
  --gold-lt: #e8d4a8;
  --border: #ddd8d0;
  --white: #ffffff;

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans: 'DM Sans', system-ui, sans-serif;

  --shadow-sm: 0 2px 8px rgba(26, 39, 68, .07);
  --shadow-md: 0 6px 24px rgba(26, 39, 68, .10);
  --shadow-lg: 0 16px 48px rgba(26, 39, 68, .13);

  --radius: 4px;
  --radius-md: 10px;

  --max-w: 1200px;
  --nav-h: 80px;
}

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

body {
  overflow-x: hidden;
}

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

body {
  font-family: var(--ff-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--ff-serif);
  font-weight: 500;
  line-height: 1.25;
  color: var(--navy);
}

h1 {
  font-size: clamp(3.2rem, 4.5vw, 4.2rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

h4 {
  font-size: 1.15rem;
  font-weight: 500;
}

p {
  margin-bottom: 1em;
  color: var(--text-lt);
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--navy);
}

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--warm-wt);
}

.section--navy {
  background: var(--navy);
}

.section--teal {
  background: var(--teal);
}

/* ── Top Bar ── */
.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, .8);
  font-size: .875rem;
  padding: 8px 0;
  letter-spacing: .02em;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}

.top-bar a {
  color: rgba(255, 255, 255, .8);
}

.top-bar a:hover {
  color: #fff;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 3px 10px;
}

.stars {
  color: #FFD700;
  letter-spacing: 1px;
  font-size: .85rem;
}

.social-icons {
  display: flex;
  gap: .6rem;
  align-items: center;
}

.social-icons a {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .875rem;
  transition: background .2s;
}

.social-icons a:hover {
  background: var(--teal);
}

/* ── Header / Nav ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: var(--shadow-sm);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.logo-img--footer {
  height: 42px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

/* ── Navigation ── */
.main-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.main-nav>li {
  list-style: none;
  position: relative;
}

.main-nav>li>a {
  display: block;
  padding: .55rem .75rem;
  font-size: .83rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: .02em;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.main-nav>li>a:hover,
.main-nav>li.active>a {
  color: var(--navy);
}

.main-nav>li>a.has-drop::after {
  content: '▾';
  margin-left: .3rem;
  font-size: .875rem;
  display: inline-block;
  transition: transform .2s ease;
}

.main-nav>li:hover>a.has-drop::after,
.main-nav>li.open>a.has-drop::after {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  padding: .5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 200;
}

.main-nav>li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: .55rem 1.2rem;
  font-size: .82rem;
  color: var(--text);
  transition: background .15s, color .15s;
}

.dropdown a:hover {
  background: var(--warm-wt);
  color: var(--teal);
}

/* CTA Buttons in nav */
.nav-cta {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem 1.3rem;
  border-radius: 30px;
  font-family: var(--ff-sans);
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all .2s;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .02em;
}

.btn--primary {
  background: var(--navy);
  color: #fff;
}

.btn--primary:hover {
  background: var(--navy-mid);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--teal {
  background: var(--teal);
  color: #fff;
}

.btn--teal:hover {
  background: var(--teal-lt);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: #fff;
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .5);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

.btn--gold {
  background: var(--gold);
  color: #fff;
}

.btn--gold:hover {
  background: #b8923d;
  color: #fff;
}

.btn--lg {
  padding: .8rem 1.8rem;
  font-size: .92rem;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 40%, #2d5a5a 100%);
}

.hero .container {
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 39, 68, 0.6) 30%, rgba(26, 39, 68, 0) 80%), url('img/hero_img.jpg') center/cover no-repeat;
  opacity: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(61, 122, 120, .25) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(201, 169, 110, .12) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 700px;
  text-align: left;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 30px;
  padding: .3rem 1rem;
  font-size: .875rem;
  color: rgba(255, 255, 255, .85);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.hero h1 em {
  color: var(--gold-lt);
  font-style: italic;
}

.hero p {
  color: rgba(255, 255, 255, .8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .15);
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .8);
  font-size: .8rem;
}

.hero-badge-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
  padding: 0 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 14px;
  color: var(--text-lt);
}

.trust-item .icon {
  display: flex;
  align-items: center;
  color: var(--teal);
}

.trust-item .icon svg {
  width: 20px;
  height: 20px;
}

/* ── Section Titles ── */
.section-label {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .8rem;
}

.section-title {
  margin-bottom: 1.2rem;
}

.section-title--centered {
  text-align: center;
}

.section-intro {
  max-width: 620px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.05rem;
}

/* ── Cards ── */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card-grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}

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

.card-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, .4);
}

.card-img--sm {
  height: 140px;
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  margin-bottom: .5rem;
  font-size: 1.25rem;
}

.card-body h3,
.card-body h4,
.card h3,
.card h4,
.feature-text h4 {
  font-weight: 800;
}

.card-body p {
  font-size: .88rem;
  margin-bottom: 1rem;
}

.card-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

.card-link:hover {
  gap: .5rem;
}

/* ── Feature Boxes ── */
.feature-box {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--warm-wt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  color: var(--teal);
}

.feature-text h4 {
  margin-bottom: .3rem;
  font-size: 1rem;
}

.feature-text p {
  font-size: .86rem;
  margin: 0;
}

/* ── Testimonials / Reviews ── */
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: .5rem 1.2rem .5rem .7rem;
  box-shadow: var(--shadow-sm);
}

.review-score {
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: .9rem;
}

.review-text {
  font-size: .8rem;
}

.review-text strong {
  display: block;
  color: var(--navy);
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--ff-serif);
  font-size: 5rem;
  color: var(--sand);
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-stars {
  color: #FFD700;
  margin-bottom: .8rem;
  font-size: .9rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-lt);
  font-size: .9rem;
}

.testimonial-author {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-source {
  font-size: .875rem;
  color: var(--text-lt);
}

/* ── FAQ Accordion ── */
.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ff-sans);
  font-size: .95rem;
  font-weight: 500;
  color: var(--navy);
  gap: 1rem;
}

.faq-q .arrow {
  font-size: .875rem;
  transition: transform .25s;
  color: var(--teal);
  flex-shrink: 0;
}

.faq-item.open .arrow {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s;
  font-size: .9rem;
  color: var(--text-lt);
}

.faq-a p {
  margin-bottom: .75rem;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 1.2rem;
}

/* ── Video Placeholder ── */
.video-block {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-block-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  opacity: .7;
}

.video-play {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, .92);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--navy);
  transition: transform .2s, box-shadow .2s;
}

.video-block:hover .video-play {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
}

.video-block-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  color: #fff;
  font-size: .85rem;
  z-index: 2;
  text-align: center;
}

.video-embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.video-embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-md);
}

/* ── Image Placeholder Blocks ── */
.img-placeholder {
  background: linear-gradient(135deg, var(--warm-wt) 0%, var(--sand) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .5rem;
  color: var(--text-lt);
  font-size: .8rem;
  text-align: center;
  border: 2px dashed var(--border);
  position: relative;
  overflow: hidden;
}

.img-placeholder-icon {
  font-size: 2.5rem;
  opacity: .4;
}

/* ── Lead Form ── */
.lead-form {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.lead-form h3 {
  margin-bottom: .5rem;
}

.lead-form p {
  font-size: .88rem;
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.form-group.full {
  grid-column: 1/-1;
}

.form-group label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: .65rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--ff-sans);
  font-size: .88rem;
  color: var(--text);
  background: #fff;
  transition: border-color .2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-note {
  font-size: .875rem;
  color: var(--text-lt);
  margin-top: 1rem;
}

/* ── Stats Strip ── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 2.5rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: .3rem;
}

.stat-label {
  font-size: .8rem;
  color: rgba(255, 255, 255, .65);
  letter-spacing: .04em;
}

/* ── Top Doctors Badge ── */
.td-badge {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  padding: .8rem 1.4rem;
  box-shadow: var(--shadow-sm);
}

.td-badge-logo {
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
}

.td-badge-score {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--ff-serif);
}

.td-badge-detail {
  font-size: .875rem;
  color: var(--text-lt);
}

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .75);
  padding: 60px 0 0;
}

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

.footer-col h4 {
  color: #fff;
  font-family: var(--ff-sans);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-col p {
  font-size: .85rem;
  line-height: 1.7;
  margin-bottom: .8rem;
}

.footer-col a {
  color: rgba(255, 255, 255, .65);
  font-size: .85rem;
  display: block;
  margin-bottom: .45rem;
  transition: color .2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-memberships {
  margin-top: 1.5rem;
}

.footer-memberships p {
  font-size: .875rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: .8rem;
}

.membership-logos {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.membership-logo {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  padding: .4rem .8rem;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  letter-spacing: .04em;
  text-align: center;
  white-space: nowrap;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .875rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .5);
  margin-left: .8rem;
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-credits {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, .5);
}

.footer-credits a {
  display: flex;
  align-items: center;
  margin-left: 0 !important;
}

.footer-credits img {
  height: 18px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity .2s;
}

.footer-credits a:hover img {
  opacity: 1;
}

.footer-credits-row {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 1rem 0 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: .875rem;
}

.footer-social {
  display: flex;
  gap: .6rem;
}

.footer-social a {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: .8rem;
  transition: background .2s;
}

.footer-social a:hover {
  background: var(--teal);
  color: #fff;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #2a5068 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero--locations {
  background: linear-gradient(rgba(26, 39, 68, 0.75), rgba(26, 39, 68, 0.75)), url('img/clinic_locations.jpg') center/cover no-repeat;
}

.page-hero--overview {
  background: linear-gradient(rgba(26, 39, 68, 0.75), rgba(26, 39, 68, 0.75)), url('img/overview.jpg') center/cover no-repeat;
}

.page-hero--legal_reports {
  background: linear-gradient(rgba(26, 39, 68, 0.75), rgba(26, 39, 68, 0.75)), url('img/legal-reports.jpg') center/cover no-repeat;
}

.page-hero--dr-vimal-sivasanker {
  background: linear-gradient(rgba(26, 39, 68, 0.75), rgba(26, 39, 68, 0.75)), url('img/dr-vimal-sivasanker_hero.jpg') center/cover no-repeat;
}

.page-hero--depression {
  background: linear-gradient(rgba(26, 39, 68, 0.75), rgba(26, 39, 68, 0.75)), url('img/depression_hero.jpg') center/cover no-repeat;
}

.page-hero--anxiety {
  background: linear-gradient(rgba(26, 39, 68, 0.75), rgba(26, 39, 68, 0.75)), url('img/anxiety_hero.jpg') center/cover no-repeat;
}

.page-hero--ocd {
  background: linear-gradient(rgba(26, 39, 68, 0.75), rgba(26, 39, 68, 0.75)), url('img/ocd_hero.jpg') center/cover no-repeat;
}

.page-hero--bipolar {
  background: linear-gradient(rgba(26, 39, 68, 0.75), rgba(26, 39, 68, 0.75)), url('img/bipolar-disorder_hero.jpg') center/cover no-repeat;
}

.page-hero--psychotic {
  background: linear-gradient(rgba(26, 39, 68, 0.75), rgba(26, 39, 68, 0.75)), url('img/psychotic-disorders_hero.jpg') center/cover no-repeat;
}

.page-hero--stress {
  background: linear-gradient(rgba(26, 39, 68, 0.75), rgba(26, 39, 68, 0.75)), url('img/stress_hero.jpg') center/cover no-repeat;
}

.page-hero--medical-treatment {
  background: linear-gradient(rgba(26, 39, 68, 0.75), rgba(26, 39, 68, 0.75)), url('img/medical-treatments_hero.jpg') center/cover no-repeat;
}

.page-hero--psychological-treatment {
  background: linear-gradient(rgba(26, 39, 68, 0.75), rgba(26, 39, 68, 0.75)), url('img/psychological-treatments_hero.jpg') center/cover no-repeat;
}

.page-hero--consultation {
  background: linear-gradient(rgba(26, 39, 68, 0.75), rgba(26, 39, 68, 0.75)), url('img/consultation-process_hero.jpg') center/cover no-repeat;
}


.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(61, 122, 120, .2) 0%, transparent 60%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .breadcrumb {
  display: flex;
  gap: .5rem;
  align-items: center;
  font-size: .875rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 1rem;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, .55);
}

.page-hero .breadcrumb a:hover {
  color: #fff;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: .8rem;
}

.page-hero .lead {
  color: rgba(255, 255, 255, .78);
  font-size: 1.05rem;
  max-width: 600px;
}

/* ── Two-col layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse>* {
  direction: ltr;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ── Pill Tags ── */
.pill-tag {
  display: inline-block;
  background: var(--warm-wt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: .2rem .75rem;
  font-size: .875rem;
  color: var(--teal);
  font-weight: 500;
  margin: .15rem;
}

/* ── Info Box ── */
.info-box {
  background: var(--warm-wt);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}

.info-box p {
  margin: 0;
  font-size: .9rem;
}

/* ── Mobile Nav ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: .2s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-header,
.mobile-menu-cta,
.mobile-menu-info {
  display: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .two-col {
    gap: 2.5rem;
  }

  .three-col {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .two-col.reverse {
    direction: ltr;
  }

  .nav-cta .btn:first-child {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .logo-img {
    height: 42px;
  }

  .logo-img--footer {
    height: 36px;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 0;
    overflow-y: auto;
    z-index: 1001;
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
  }

  .nav-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--navy);
    cursor: pointer;
    line-height: 1;
    padding: 0.2rem;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav>li {
    width: 100%;
  }

  .main-nav>li>a {
    padding: .85rem 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    font-size: .95rem;
    color: var(--navy);
  }

  .main-nav>li>a:hover,
  .main-nav>li.active>a {
    color: var(--navy);
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 1rem;
    display: none;
  }

  .main-nav>li.open .dropdown {
    display: block;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-cta {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    padding-top: 1rem;

  }

  .mobile-menu-cta a {
    color: #fff !important;
    border-radius: 100px !important;
    border-bottom: none !important;
    padding: .8rem 1.8rem !important;
  }

  .top-bar {
    display: none;
  }

  .mobile-menu-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    width: 100%;
    font-size: 14px;
  }

  .mobile-menu-info a {
    color: var(--navy) !important;
    border-bottom: none !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.35rem;
    padding: 0 !important;
    font-size: 14px !important;
    word-break: break-all;
  }

  .menu-rating-badge {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    color: var(--navy);
  }

  .menu-social-icons {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.2rem;
  }

  .menu-social-icons a {
    width: 32px;
    height: 32px;
    background: var(--navy) !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    transition: background 0.2s;
  }

  .section {
    padding: 50px 0;
  }

  .hero {
    min-height: 500px;
  }

  .hero-bg {
    background: url('img/hero_img_mobile.jpg') center/cover no-repeat;
  }

  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(23, 32, 51, 0.55);
  }

  .hero-content {
    padding: 60px 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .three-col {
    grid-template-columns: 1fr;
  }

  .top-bar .container {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 250px;
    max-width: 100%;
    justify-content: center;
  }

  .hero-badges {
    gap: 1rem;
  }

  .top-bar a {
    word-break: break-all;
  }

  .lead-form {
    padding: 1.5rem 1.2rem !important;
  }

  .feature-box {
    padding: 1.2rem;
    gap: 0.8rem;
  }

  .feature-box a {
    word-break: break-all;
  }
}