/* ============================================
   BRETHERTONS PHYSIOTHERAPY — Design System
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ── Custom Properties ── */
:root {
  /* Brand Colours */
  --teal-50: #e6faf9;
  --teal-100: #b3f0ed;
  --teal-200: #80e6e1;
  --teal-300: #4dd9d2;
  --teal-400: #4CC5C0;
  --teal-500: #3aafa9;
  --teal-600: #2d8f8a;
  --teal-700: #1f6e6a;
  --teal-800: #124e4b;
  --teal-900: #0a3230;

  --charcoal-50: #f5f5f5;
  --charcoal-100: #e0e0e0;
  --charcoal-200: #b0b0b0;
  --charcoal-300: #808080;
  --charcoal-400: #555555;
  --charcoal-500: #333333;
  --charcoal-600: #2a2a2a;
  --charcoal-700: #1f1f1f;
  --charcoal-800: #141414;
  --charcoal-900: #0a0a0a;

  --white: #ffffff;
  --off-white: #fafbfc;
  --cream: #f8f9fa;
  --light-grey: #eef1f4;
  --accent-warm: #f0a868;
  --success: #4caf50;
  --error: #e74c3c;

  /* Gradients */
  --gradient-teal: linear-gradient(135deg, var(--teal-400) 0%, var(--teal-600) 100%);
  --gradient-dark: linear-gradient(135deg, var(--charcoal-700) 0%, var(--charcoal-900) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(10, 50, 48, 0.85) 0%, rgba(76, 197, 192, 0.65) 100%);
  --gradient-subtle: linear-gradient(180deg, var(--off-white) 0%, var(--light-grey) 100%);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3.25rem;
  --fs-5xl: 4rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --content-padding: 1.5rem;

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-teal: 0 8px 32px rgba(76, 197, 192, 0.25);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 200ms var(--ease-out);
  --transition-base: 350ms var(--ease-out);
  --transition-slow: 600ms var(--ease-out);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-blur: 20px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal-500);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--teal-500);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--teal-700);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ── Utility Classes ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.section-padding {
  padding: var(--space-3xl) 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 600;
  color: var(--charcoal-700);
  margin-bottom: var(--space-md);
  position: relative;
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--charcoal-300);
  max-width: 600px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-teal);
  border-radius: 2px;
  margin: var(--space-lg) auto;
}

.teal-text {
  color: var(--teal-400);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-size: var(--fs-base);
  font-weight: 600;
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(76, 197, 192, 0.35);
  color: var(--white);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--teal-600);
}

.btn-secondary {
  border: 2px solid var(--teal-400);
  color: var(--teal-500);
  background: transparent;
}

.btn-secondary:hover {
  background: var(--teal-400);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delays for card groups */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================
   NAVIGATION / HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.header-logo img {
  height: 46px;
  width: auto;
  transition: height var(--transition-base);
}

.site-header.scrolled .header-logo img {
  height: 38px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text-name {
  font-size: var(--fs-md);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1.2;
  transition: color var(--transition-base);
}

.logo-text-sub {
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  transition: color var(--transition-base);
}

.site-header.scrolled .logo-text-name {
  color: var(--charcoal-700);
}

.site-header.scrolled .logo-text-sub {
  color: var(--teal-500);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-desktop a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: var(--space-xs) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal-300);
  transition: width var(--transition-base);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.site-header.scrolled .nav-desktop a {
  color: var(--charcoal-500);
}

.site-header.scrolled .nav-desktop a:hover {
  color: var(--teal-500);
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--gradient-teal);
  color: var(--white) !important;
  border-radius: var(--radius-xl);
  font-weight: 600 !important;
  box-shadow: var(--shadow-teal);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(76, 197, 192, 0.35);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.site-header.scrolled .mobile-toggle span {
  background: var(--charcoal-600);
}

.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);
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--gradient-dark);
  padding: 100px var(--space-xl) var(--space-xl);
  transition: right var(--transition-base);
  z-index: 999;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  display: block;
  padding: var(--space-md) 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-lg);
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--teal-300);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-overlay.active {
  opacity: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: var(--space-5xl) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  color: var(--teal-200);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--teal-300);
  border-radius: var(--radius-full);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-5xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--space-xl);
}

.about-logo-icon {
  display: block;
  margin: var(--space-lg) auto 0;
  opacity: 0.85;
}

.hero h1 span {
  color: var(--teal-300);
}

.hero-description {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-3xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.65);
  margin-top: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Floating card removed per user feedback */

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--off-white);
}

.about-text-full {
  max-width: 100%;
}

.about-content-columns {
  max-width: 750px;
  margin: var(--space-xl) auto 0;
  text-align: center;
}

.about-content-columns p {
  color: var(--charcoal-400);
  margin-bottom: var(--space-md);
  font-size: var(--fs-md);
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--light-grey);
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
  color: var(--charcoal-600);
}

.highlight-dot {
  width: 8px;
  height: 8px;
  background: var(--teal-400);
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--white);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-grey);
  transition: all var(--transition-base);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-100);
}

.service-card-img {
  height: 180px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-content {
  padding: var(--space-xl);
}

.service-card-content h3 {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--charcoal-700);
  margin-bottom: var(--space-sm);
}

.service-card-content p {
  font-size: var(--fs-sm);
  color: var(--charcoal-300);
  line-height: 1.7;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-section.why-section-light {
  background: var(--off-white);
  color: var(--charcoal-500);
  position: relative;
  overflow: hidden;
}

.why-section-light .section-title {
  color: var(--charcoal-700);
}

.why-section-light .section-subtitle {
  color: var(--charcoal-300);
}

.why-section-light .section-divider {
  background: var(--gradient-teal);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.why-section-light .why-card {
  padding: var(--space-2xl);
  background: var(--teal-50);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  border-left: 4px solid var(--teal-400);
  text-align: center;
}

.why-section-light .why-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-100);
  border-left-color: var(--teal-600);
  transform: translateY(-4px);
}

.why-section-light .why-card h3 {
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--charcoal-700);
}

.why-section-light .why-card p {
  font-size: var(--fs-sm);
  color: var(--charcoal-300);
  line-height: 1.7;
}

/* ============================================
   YOUR FIRST APPOINTMENT SECTION
   ============================================ */
.assessment-section {
  background: var(--off-white);
}

.assessment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.assessment-content h2 {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 600;
  color: var(--charcoal-700);
  margin-bottom: var(--space-lg);
}

.assessment-content p {
  color: var(--charcoal-400);
  font-size: var(--fs-md);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.assessment-steps {
  margin-top: var(--space-xl);
}

.assessment-step {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--light-grey);
}

.assessment-step:last-child {
  border-bottom: none;
}

.step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-teal);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--fs-md);
}

.step-content h4 {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--charcoal-700);
  margin-bottom: var(--space-xs);
}

.step-content p {
  font-size: var(--fs-sm);
  color: var(--charcoal-300);
  margin-bottom: 0;
}

.assessment-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.assessment-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.assessment-cta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.assessment-cta-overlay p {
  color: var(--white);
  font-weight: 500;
  font-size: var(--fs-md);
  margin-bottom: 0;
}

/* ============================================
   MEET YOUR THERAPIST SECTION
   ============================================ */
.therapist-section {
  background: var(--white);
}

.therapist-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.therapist-photo-wrapper {
  position: relative;
}

.therapist-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.therapist-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
}

.therapist-credentials {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-md);
}

.therapist-credentials h4 {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--charcoal-700);
}

.therapist-credentials p {
  font-size: var(--fs-xs);
  color: var(--teal-500);
  font-weight: 500;
}

.therapist-info h2 {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 600;
  color: var(--charcoal-700);
  margin-bottom: var(--space-sm);
}

.therapist-title {
  font-size: var(--fs-md);
  color: var(--teal-500);
  font-weight: 500;
  margin-bottom: var(--space-xl);
}

.therapist-info p {
  color: var(--charcoal-400);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.therapist-experience {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--teal-50);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--teal-400);
}

.therapist-experience h3 {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--charcoal-700);
  margin-bottom: var(--space-md);
}

.experience-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.experience-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--charcoal-400);
}

.experience-list li::before {
  content: '✓';
  color: var(--teal-500);
  font-weight: 700;
  flex-shrink: 0;
}

.therapist-quote {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--cream);
  border-radius: var(--radius-md);
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--charcoal-400);
  line-height: 1.8;
  position: relative;
}

.therapist-quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--teal-200);
  position: absolute;
  top: -10px;
  left: 16px;
  line-height: 1;
}

/* ============================================
   CONTACT / CTA SECTION
   ============================================ */
.contact-section {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 600;
  color: var(--charcoal-700);
  margin-bottom: var(--space-md);
}

.contact-info > p {
  color: var(--charcoal-300);
  font-size: var(--fs-md);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
}

.contact-item-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-teal);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: var(--fs-lg);
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--charcoal-700);
  margin-bottom: 2px;
}

.contact-item-text p {
  font-size: var(--fs-sm);
  color: var(--charcoal-300);
}

.contact-item-text a {
  color: var(--teal-500);
  font-weight: 500;
}

.contact-item-text a:hover {
  color: var(--teal-700);
  text-decoration: underline;
}

.contact-badges {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--light-grey);
  align-items: center;
}

.contact-badge {
  transition: transform var(--transition-fast);
}

.contact-badge:hover {
  transform: scale(1.05);
}

.contact-badge img {
  height: 48px;
  width: auto;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.contact-badge:hover img {
  opacity: 1;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-grey);
}

.contact-form-wrapper h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--charcoal-700);
  margin-bottom: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--charcoal-500);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--charcoal-100);
  border-radius: var(--radius-sm);
  font-size: var(--fs-base);
  color: var(--charcoal-600);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal-400);
  box-shadow: 0 0 0 3px rgba(76, 197, 192, 0.15);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-submit {
  width: 100%;
  padding: 14px 32px;
  background: var(--gradient-teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-xl);
  font-size: var(--fs-base);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-teal);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(76, 197, 192, 0.35);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 500;
  display: none;
}

.form-message.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-message.error {
  display: block;
  background: #fbe9e7;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* ============================================
   COVERAGE AREA BANNER
   ============================================ */
.coverage-banner {
  background: var(--gradient-teal);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.coverage-banner p {
  color: var(--white);
  font-size: var(--fs-md);
  font-weight: 500;
}

.coverage-banner strong {
  font-weight: 700;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--charcoal-800);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer-brand .footer-logo img {
  height: 40px;
  width: auto;
}

.footer-brand p {
  font-size: var(--fs-sm);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
}

.footer-col a {
  display: block;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--teal-300);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-sm);
}

.footer-contact-item a {
  display: inline;
  padding: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
  color: var(--teal-300);
}

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media screen and (max-width: 1024px) {
  :root {
    --fs-5xl: 3rem;
    --fs-4xl: 2.5rem;
    --fs-3xl: 2rem;
  }

  .about-content-columns,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .assessment-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .therapist-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .therapist-photo img {
    height: 350px;
  }

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

  .experience-list {
    grid-template-columns: 1fr;
  }

  .hero-float {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

/* ============================================
   RESPONSIVE — Mobile
   ============================================ */
@media screen and (max-width: 768px) {
  :root {
    --fs-5xl: 2.5rem;
    --fs-4xl: 2rem;
    --fs-3xl: 1.75rem;
    --space-5xl: 5rem;
  }

  .section-padding {
    padding: var(--space-3xl) 0;
  }

  .nav-desktop {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .hero-content {
    padding: var(--space-4xl) 0 var(--space-2xl);
  }

  .hero-stats {
    gap: var(--space-xl);
  }

  .hero-stat-number {
    font-size: var(--fs-2xl);
  }

  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-highlights {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .contact-badges {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 480px) {
  :root {
    --fs-5xl: 2rem;
    --content-padding: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }
}

/* ============================================
   PAYMENT INFO SECTION
   ============================================ */
.payment-info {
  text-align: center;
  padding: var(--space-xl) 0;
  margin-top: var(--space-xl);
  border-top: 1px solid var(--light-grey);
}

.payment-info p {
  font-size: var(--fs-sm);
  color: var(--charcoal-300);
}

/* ============================================
   SCROLL-TO-TOP BUTTON
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-teal);
  color: var(--white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  z-index: 100;
  font-size: var(--fs-lg);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-teal);
}

/* ============================================
   MOBILE PADDING FIXES
   ============================================ */
@media screen and (max-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }

  .hero-content {
    padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
  }

  .coverage-banner {
    padding: var(--space-lg) var(--space-lg);
  }

  .service-card-img {
    height: 150px;
  }

  .assessment-image {
    display: none;
  }

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

@media screen and (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }
}
