/*
  Saini Physiotherapy – Global styles
  Palette: deep teal, warm coral, calming neutrals to reflect trust and vitality.
  Typography: Montserrat headings with Open Sans body for clarity.
*/

:root {
  --color-primary: #0a7d8c;
  --color-primary-dark: #075f66;
  --color-secondary: #ff8856;
  --color-accent: #f2f7f8;
  --color-muted: #6a7b7d;
  --color-dark: #052c33;
  --color-light: #ffffff;
  --shadow-soft: 0 24px 50px rgba(6, 37, 43, 0.08);
  --shadow-card: 0 16px 30px rgba(10, 125, 140, 0.1);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1180px;
  --form-column-min: 240px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-accent);
  overflow:none;
  height: 100%;
  width: 100%;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 0.75rem;
  color: var(--color-dark);
}

p {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

.section {
  padding: 5rem 0;
}

.container {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-light);
  box-shadow: var(--shadow-card);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--color-light);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-text {
  background: transparent;
  color: var(--color-primary);
  font-weight: 600;
}

.btn-text::after {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.85rem;
  transition: transform 0.25s ease;
}

.btn-text:hover::after {
  transform: translateX(4px);
}

.btn-light {
  background: var(--color-light);
  color: var(--color-primary);
  border: 2px solid var(--color-light);
}

.btn-light:hover {
  background: transparent;
  color: var(--color-light);
  border-color: var(--color-light);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid rgba(10, 125, 140, 0.4);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-light);
  border-color: var(--color-primary);
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-heading p {
  margin: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
}

.topbar {
  background: linear-gradient(90deg, var(--color-primary) 0%, #0f9ba4 100%);
  color: var(--color-light);
  font-size: 0.85rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  flex-wrap: wrap;
}

.topbar__link {
  color: var(--color-light);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  position: relative;
  z-index: 1300;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand .logo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-primary);
}

.brand-tagline {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-weight: 600;
  color: var(--color-dark);
}

.nav-links a {
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -0.2rem;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  transform: scaleX(1);
}

.nav-link--cta {
  display: none;
}

.nav-cta {
  white-space: nowrap;
  font-size: 0.95rem;
}


.nav-toggle {
  display: none;
  background: var(--color-primary);
  color: var(--color-light);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  box-shadow: 0 10px 25px rgba(10, 125, 140, 0.25);
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
  z-index: 1400;
}

.nav-toggle:hover,
.nav-toggle:focus {
  background: var(--color-primary-dark);
  outline: none;
}

.nav-toggle.is-open {
  background: var(--color-light);
  color: var(--color-primary);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 44, 51, 0.6);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, rgba(10, 125, 140, 0.12), rgba(255, 136, 86, 0.08));
  padding: 6.5rem 0 5.5rem;
}

.hero__layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: 3rem;
}

.eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--color-secondary);
}

.hero__copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
}

.hero__copy p {
  font-size: 1.05rem;
  color: #365357;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero__highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
  color: #365357;
}

.hero__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
}

.hero__highlights i {
  color: var(--color-primary);
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card__overlay {
  position: absolute;
  inset: auto 1.5rem 1.5rem 1.5rem;
  background: rgba(5, 44, 51, 0.85);
  color: var(--color-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.hero-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.hero-card__stats {
  display: flex;
  gap: 2rem;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Stats */
.stats {
  background: var(--color-light);
  padding: 2.5rem 0;
  box-shadow: 0 1px 0 rgba(6, 37, 43, 0.05);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stat {
  background: var(--color-accent);
  padding: 1.8rem 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 24px rgba(5, 44, 51, 0.08);
}

.stat__number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.stat__label {
  color: #3f585c;
  font-weight: 500;
}

/* About */
.about__layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: center;
}

.about__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background: var(--color-light);
  padding: 1.5rem;
}

.pillars {
  display: grid;
  gap: 1.8rem;
  margin-top: 2rem;
}

.pillar {
  background: var(--color-light);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.pillar h3 {
  font-size: 1.1rem;
}

.pillar p {
  margin: 0;
}

/* Approach */
.approach {
  background: var(--color-light);
}

.approach__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.approach__step {
  background: var(--color-accent);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem 1.8rem;
  position: relative;
  box-shadow: 0 12px 28px rgba(5, 44, 51, 0.08);
}

.step-number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(10, 125, 140, 0.14);
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
}

/* Services */
.services {
  background: radial-gradient(circle at top right, rgba(255, 136, 86, 0.12), transparent 55%), var(--color-accent);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.service-card {
  background: var(--color-light);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 1rem;
}

.service-card__body {
  display: grid;
  gap: 0.9rem;
}

.service-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
  color: #456066;
  font-size: 0.95rem;
}

.service-card__list strong {
  display: block;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.1rem;
}

.service-card__cta {
  align-self: flex-start;
  padding: 0;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(10, 125, 140, 0.12);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

/* Programs */
.programs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.program-card {
  background: var(--color-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(10, 125, 140, 0.08), rgba(255, 136, 86, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.program-card:hover::before {
  opacity: 1;
}

.program-card > * {
  position: relative;
}

.program-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 136, 86, 0.18);
  color: var(--color-secondary);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Press */
.press__layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: center;
}

.press__content {
  background: var(--color-light);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.press__list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1.4rem;
}

.press-item time {
  display: block;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 0.35rem;
}

.press-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.press-item p {
  margin: 0 0 0.6rem;
}

.press-link {
  color: var(--color-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.press-link::after {
  content: '\f35d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
}

.press__actions {
  margin-top: 2rem;
}

.press__cards {
  display: grid;
  gap: 1.2rem;
}

.press-card {
  background: rgba(10, 125, 140, 0.12);
  padding: 1.6rem;
  border-radius: var(--radius-md);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: #2b4f53;
  flex-wrap: wrap;
}

.press-card i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.press-card p {
  margin: 0;
  flex: 1 1 200px;
}

.rating-card {
  align-items: center;
}

.rating-card .stars {
  color: #ffc94b;
  font-size: 1.4rem;
}

/* Facilities */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.facility-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--color-light);
  display: grid;
}

.facility-card__body {
  padding: 1.6rem;
}

.facility-card__body h3 {
  font-size: 1.2rem;
}

/* Reviews */
.reviews {
  background: var(--color-light);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.review {
  background: var(--color-accent);
  padding: 2rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.review-text {
  font-style: italic;
  color: #365357;
  margin: 0;
}

.review figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.review-author {
  font-weight: 600;
  color: var(--color-primary);
}

.review-meta {
  font-size: 0.9rem;
  color: #4a6367;
}

.review-source {
  font-size: 0.9rem;
  color: var(--color-secondary);
  font-weight: 600;
}

.reviews__actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

/* CTA */
.cta {
  background: linear-gradient(120deg, var(--color-primary) 0%, #0f9ba4 50%, #16b4b0 100%);
  color: var(--color-light);
  padding: 4rem 0;
}

.cta__layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta__content {
  max-width: 620px;
}

.cta h2 {
  color: var(--color-light);
}

.cta p {
  color: rgba(255, 255, 255, 0.85);
}

/* Contact */
.contact__layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  grid-template-areas:
    'details'
    'form'
    'map';
}

@media (min-width: 960px) {
  .contact__layout {
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    grid-template-areas:
      'details form'
      'details map';
  }
}

@media (min-width: 1180px) {
  .contact__layout {
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  }
}

.contact__details {
  grid-area: details;
}

.contact-form {
  grid-area: form;
  align-self: stretch;
}

.contact__steps {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.6rem;
}

.contact__steps h3 {
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
  color: #21464c;
}

.contact__steps ol {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.6rem;
  color: #365357;
  font-size: 0.95rem;
}

.contact__quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.6rem 0 0.6rem;
}

.contact__assurance {
  margin: 0;
  font-size: 0.95rem;
  color: #466066;
}

.contact__privacy,
.contact__response {
  font-size: 0.85rem;
  color: #456066;
  margin-top: 0.8rem;
}

.contact__map {
  align-self: stretch;
  display: grid;
  gap: 0.8rem;
  align-content: start;
  grid-area: map;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 45vh, 460px);
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.contact__map-note {
  margin: 0;
  font-size: 0.9rem;
  color: #365357;
  line-height: 1.5;
}

.contact__details h2 {
  margin-bottom: 1rem;
}

.contact__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: #365357;
}

.contact__item i {
  font-size: 1.2rem;
  color: var(--color-primary);
}

.contact-form {
  background: var(--color-light);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
}

.contact-form h3 {
  margin: 0 0 0.5rem;
}

.form-intro {
  font-size: 0.95rem;
  color: #4a6367;
  margin-bottom: 1.5rem;
}

.form-group {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.form-row {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: repeat(auto-fit, minmax(var(--form-column-min), 1fr));
  }
}

.form-group label {
  font-weight: 600;
  color: #21464c;
}

.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid rgba(5, 44, 51, 0.15);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group textarea {
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230a7d8c' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 12px 8px;
  padding-right: 2.4rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(10, 125, 140, 0.7);
  box-shadow: 0 0 0 4px rgba(10, 125, 140, 0.15);
  background: #ffffff;
}

.form-section {
  border: 1px solid rgba(5, 44, 51, 0.12);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem 1.3rem;
  display: grid;
  gap: 1.2rem;
}

.form-section legend {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--color-primary);
  padding: 0 0.4rem;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.form-section .form-group,
.form-section .form-row {
  margin-bottom: 0;
}

.choice-fieldset {
  border: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.choice-fieldset legend {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #21464c;
  font-size: 0.95rem;
  padding: 0;
  margin-bottom: 0.2rem;
}

.form-status {
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.form-status.success {
  background: rgba(46, 197, 125, 0.12);
  color: #0a6b3d;
  border: 1px solid rgba(46, 197, 125, 0.4);
}

.form-status.error {
  background: rgba(236, 87, 83, 0.12);
  color: #9d1f1f;
  border: 1px solid rgba(236, 87, 83, 0.4);
}

.option-list {
  display: grid;
  gap: 0.5rem;
}

.option-list label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  color: #21464c;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.option-list label:hover,
.option-list label:focus-within {
  border-color: rgba(10, 125, 140, 0.4);
  background: #ffffff;
}

.option-list input {
  accent-color: var(--color-primary);
}

.consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #365357;
  margin: 0.8rem 0 1.4rem;
}

.consent input {
  margin-top: 0.2rem;
  accent-color: var(--color-primary);
}

.form-disclaimer {
  font-size: 0.85rem;
  color: #5c7377;
  margin-top: 0.8rem;
}

.form-status[hidden] {
  display: none;
}

.page-hero {
  padding: 6rem 0 4rem;
  color: var(--color-light);
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 55%),
    linear-gradient(135deg, #0d5e71 0%, #10363d 55%, #051a1f 100%);
  z-index: -1;
}

.page-hero__layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .page-hero__layout {
    grid-template-columns: minmax(0, 1fr) 360px;
  }
}

.page-hero__content h1 {
  color: var(--color-light);
  margin-bottom: 1rem;
}

.page-hero__content p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.page-hero__highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.page-hero__highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(4, 36, 43, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
}

.page-hero__highlights i {
  color: var(--color-accent);
  font-size: 1.1rem;
}

.page-hero__panel {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  gap: 1rem;
}

.page-hero__panel h2 {
  color: var(--color-light);
  margin: 0;
}

.page-hero__panel .btn {
  justify-self: start;
}

.page-hero__panel .btn + .btn {
  margin-top: 0.3rem;
}

.panel-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 0.8rem;
}

.booking {
  background: #f4f7f7;
}

.booking__layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .booking__layout {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  }
}

.booking__info h2 {
  margin-bottom: 1rem;
}

.booking__info p {
  color: #365357;
}

.booking-steps {
  margin: 2rem 0;
  padding-left: 1.2rem;
  color: #21464c;
  display: grid;
  gap: 0.8rem;
}

.booking-steps li strong {
  color: var(--color-primary);
}

.info-card {
  background: var(--color-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.5rem;
}

.info-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.4rem;
}

.faq {
  display: grid;
  gap: 2rem;
}

.faq__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .faq__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.legal {
  background: #f4f6f7;
}

.legal__content {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.5rem;
  color: #21464c;
}

.legal__content h2 {
  margin-bottom: 0.4rem;
  color: var(--color-primary-dark);
}

.legal__content ul {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.4rem;
  margin: 0;
}

.booking-form {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.2rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.4rem;
}

.booking-form h2,
.booking-form .form-intro {
  margin-bottom: 0;
}

.booking-form .btn-primary {
  width: 100%;
  margin-top: 0.5rem;
}

.booking-form .form-group,
.booking-form .form-row {
  margin-bottom: 0;
}

.booking-form .form-section {
  gap: 1.2rem;
}

.booking-form .form-section legend {
  font-size: 1.05rem;
}

.appointment-details {
  background: #0b333a;
  color: var(--color-light);
}

.details__grid {
  display: grid;
  gap: 1.8rem;
}

@media (min-width: 900px) {
  .details__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.detail-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-card h3 {
  color: var(--color-light);
  margin-bottom: 0.75rem;
}

.detail-card p {
  color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.site-footer {
  background: #06252b;
  color: var(--color-light);
  padding: 4rem 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo .logo {
  width: 52px;
  height: 52px;
}

.footer-tagline {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.4rem;
  align-items: center;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-light);
}

.contact-col p {
  margin: 0 0 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.contact-col a {
  color: var(--color-light);
  text-decoration: underline;
}

.hours-col {
  display: grid;
  gap: 1.2rem;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  margin: 0 0 0.8rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.footer-list strong {
  color: var(--color-light);
  font-weight: 600;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

.footer-bottom {
  background: #041b1f;
}

.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
}

/* Team page */
.team-hero {
  background: linear-gradient(140deg, rgba(10, 125, 140, 0.16), rgba(255, 136, 86, 0.1));
  padding: 5rem 0;
  text-align: center;
}

.team-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--color-primary);
}

.team-hero p {
  color: #345259;
  max-width: 600px;
  margin: 0.5rem auto 0;
}

.team {
  background: var(--color-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.team-member {
  background: var(--color-accent);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.6rem;
  text-align: left;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: grid;
  gap: 0.8rem;
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.team-icon {
  font-size: 2.4rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.team-member .title {
  font-weight: 600;
  color: var(--color-secondary);
}

.team-member .experience {
  color: #466066;
  font-size: 0.95rem;
}

.team-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #365357;
}

.team-meta strong {
  color: var(--color-primary);
  font-weight: 600;
  margin-right: 0.2rem;
}

.team-cta {
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: underline;
}

.team-credentials {
  background: linear-gradient(120deg, rgba(10, 125, 140, 0.12), rgba(255, 136, 86, 0.12));
  padding: 4rem 0;
}

.team-credentials__layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 980px) {
  .team-credentials__layout {
    grid-template-columns: 1fr 1fr;
  }
}

.credential-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
  color: #2b4f53;
}

.team-cta-section {
  background: var(--color-light);
  padding: 3.5rem 0;
}

.team-cta__layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

/* Responsive navigation */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 80vw);
    height: fit-content;
    background: rgba(5, 44, 51, 0.97);
    color: var(--color-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 6.5rem 2.4rem 2.5rem;
    gap: 1.6rem;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    font-size: 1.2rem;
    z-index: 10000;
    overflow-y: auto;
    box-shadow: -12px 0 32px rgba(5, 44, 51, 0.35);
  }

  .nav-links a {
    color: var(--color-light);
  }

  .nav-links a::after {
    background: rgba(255, 255, 255, 0.7);
  }

  .nav-link--cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-secondary);
    color: var(--color-dark);
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 700;
    width: 100%;
    text-align: center;
    box-shadow: 0 16px 30px rgba(255, 136, 86, 0.35);
    margin-top: 1rem;
  }

  .nav-link--cta:hover,
  .nav-link--cta:focus {
    background: #ff996e;
    color: var(--color-dark);
  }

  .nav-links.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .topbar__inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero__actions {
    justify-content: center;
  }

  .hero-card__overlay {
    inset: auto 1rem 1rem 1rem;
  }

  .hero-card__stats {
    gap: 1rem;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta__layout {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .booking-form {
    padding: 1.8rem 1.6rem;
    border-radius: var(--radius-md);
  }

  .booking__layout {
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 4rem 0;
  }

  .hero {
    padding: 5rem 0 4rem;
    z-index: 10;
  }

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

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

  .topbar__inner {
    font-size: 0.75rem;
  }
}
html, body {
  overflow-x: hidden;
  width: 100%;
}
 *{
  max-width: 100%;
}