/* ==========================================================================
   Little Care Therapy Clinic - Un-crowded Desktop Navigation & CSS System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg-cream: #FAF8F5;
  --bg-cream-light: #FFFDF9;
  --bg-white: #FFFFFF;
  
  --sky-blue-light: #F0F7FF;
  --sky-blue-subtle: #E0F2FE;
  --sky-blue-main: #38BDF8;
  --sky-blue-deep: #0284C7;
  --sky-blue-dark: #0369A1;

  --teal-light: #F0FDF4;
  --teal-subtle: #CCFBF1;
  --teal-main: #14B8A6;
  --teal-deep: #0D9488;
  --teal-dark: #0F766E;

  --yellow-accent: #FDE047;
  --yellow-warm: #FEF08A;
  --yellow-deep: #EAB308;

  --coral-accent: #FF7E67;
  --coral-light: #FFF1F0;
  --coral-hover: #F0654D;

  --text-dark: #0F172A;
  --text-medium: #334155;
  --text-muted: #64748B;
  --border-light: #E2E8F0;
  --border-subtle: #F1F5F9;

  --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px -5px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px -12px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 8px 24px rgba(2, 132, 199, 0.25);
  --shadow-coral: 0 8px 22px rgba(255, 126, 103, 0.35);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

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

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

/* ==========================================================================
   TOP UTILITY BAR
   ========================================================================== */
.top-bar {
  background: #0F172A;
  color: #94A3B8;
  font-size: 0.8rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #CBD5E1;
  font-weight: 500;
  white-space: nowrap;
}

.top-bar-badge svg {
  color: var(--teal-main);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.top-bar-link {
  color: #F8FAFC;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  transition: var(--transition);
}

.top-bar-link:hover {
  color: var(--sky-blue-main);
}

.top-bar-link.wa-link {
  color: #4ADE80;
}

/* ==========================================================================
   DESKTOP SITE HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .header-container {
    height: 64px;
  }
}

/* Brand Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sky-blue-deep), var(--teal-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
  flex-shrink: 0;
}

.logo-icon-box svg {
  width: 22px;
  height: 22px;
}

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

.logo-main-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.logo-main-text span {
  color: var(--coral-accent);
}

.logo-sub-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--teal-deep);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 1px;
  white-space: nowrap;
}

/* Desktop Pill Navbar - Clean & Compact */
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-pill-list {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  background: rgba(241, 245, 249, 0.8);
  padding: 0.3rem 0.4rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.nav-pill-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-medium);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  display: inline-block;
  white-space: nowrap;
}

.nav-pill-link:hover {
  color: var(--sky-blue-deep);
  background: var(--bg-white);
}

.nav-pill-link.active {
  color: var(--sky-blue-dark);
  background: var(--bg-white);
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.12);
  font-weight: 700;
}

@media (max-width: 880px) {
  .desktop-nav {
    display: none;
  }
}

/* Header Right Actions */
.header-right-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  white-space: nowrap;
  min-height: 42px;
}

.btn-coral {
  background: linear-gradient(135deg, var(--coral-accent), #FF5757);
  color: #FFFFFF;
  box-shadow: var(--shadow-coral);
}

.btn-coral:hover {
  background: linear-gradient(135deg, #F0654D, #E03E3E);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--text-dark);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--sky-blue-light);
  border-color: var(--sky-blue-main);
  color: var(--sky-blue-dark);
}

.btn-teal {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-dark));
  color: #FFFFFF;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: var(--bg-cream);
  border: 1.5px solid var(--border-light);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  cursor: pointer;
}

.mobile-nav-toggle svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 880px) {
  .mobile-nav-toggle {
    display: flex;
  }
}

/* Mobile Drawer */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1400;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: var(--bg-white);
  padding: 5rem 1.5rem 2rem;
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.mobile-drawer-header {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-light);
}

.mobile-drawer-close {
  background: var(--bg-cream);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-medium);
  cursor: pointer;
}

.mobile-drawer-link {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-subtle);
  display: block;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section-padding {
  padding: 4.5rem 0;
}

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

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

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 2rem;
  }
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--teal-deep);
  background: var(--teal-subtle);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.65rem;
}

.section-title {
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: clamp(0.925rem, 2.5vw, 1.05rem);
  color: var(--text-medium);
  line-height: 1.6;
}

/* Hero Section */
.hero-section {
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 10%, rgba(224, 242, 254, 0.6) 0%, rgba(250, 248, 245, 0) 60%),
              radial-gradient(circle at 90% 90%, rgba(204, 251, 241, 0.5) 0%, rgba(250, 248, 245, 0) 60%);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0 2.75rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: var(--teal-subtle);
  color: var(--teal-dark);
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 1px solid rgba(20, 184, 166, 0.3);
}

.hero-headline {
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.hero-headline span.highlight-blue { color: var(--sky-blue-deep); }
.hero-headline span.highlight-coral { color: var(--coral-accent); }

.hero-subheadline {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--text-medium);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.hero-trust-indicators {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-medium);
}

.trust-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sky-blue-subtle);
  color: var(--sky-blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-white);
}

.hero-image-wrapper img {
  width: 100%;
  height: clamp(230px, 45vw, 440px);
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-float-card.top-left {
  top: -15px;
  left: -15px;
}

.hero-float-card.bottom-right {
  bottom: 20px;
  right: -15px;
}

@media (max-width: 600px) {
  .hero-float-card {
    position: static;
    margin-top: 0.75rem;
    box-shadow: var(--shadow-sm);
    background: var(--bg-white);
  }

  .mobile-badges-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
  }
}

.float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.float-icon.teal { background: var(--teal-deep); }
.float-icon.yellow { background: var(--yellow-deep); }

.float-text p {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

.float-text strong {
  font-size: 0.85rem;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

/* About Cards */
.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.about-card {
  background: var(--bg-cream);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--sky-blue-deep);
  box-shadow: var(--shadow-sm);
}

/* Services Grid */
.services-section {
  background: var(--bg-cream-light);
}

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

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1.5px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(56, 189, 248, 0.4);
}

.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.icon-occupational { background: var(--sky-blue-subtle); color: var(--sky-blue-deep); }
.icon-speech { background: #FEF3C7; color: var(--yellow-deep); }
.icon-early { background: var(--teal-subtle); color: var(--teal-deep); }
.icon-behavioral { background: var(--coral-light); color: var(--coral-accent); }

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
  color: var(--text-dark);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 1.25rem;
  flex-grow: 1;
  line-height: 1.6;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.service-tag {
  font-size: 0.725rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: var(--bg-cream);
  color: var(--text-medium);
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--sky-blue-deep);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: var(--transition);
}

/* 1-Minute Quiz */
.quiz-section {
  background: linear-gradient(135deg, #0284C7, #0D9488);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  margin: 2rem auto;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 600px) {
  .quiz-section {
    padding: 2rem 1.25rem;
    margin: 1.5rem 0;
  }
}

.quiz-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quiz-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.85rem;
}

.quiz-title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.quiz-subtitle {
  font-size: clamp(0.875rem, 2.5vw, 1.05rem);
  opacity: 0.92;
  margin-bottom: 1.5rem;
}

.quiz-card-wrapper {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  color: var(--text-dark);
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.quiz-question-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz-option-btn {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  background: var(--bg-white);
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-medium);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 48px;
}

.quiz-option-btn:hover, .quiz-option-btn.selected {
  border-color: var(--sky-blue-deep);
  background: var(--sky-blue-light);
  color: var(--sky-blue-dark);
}

.quiz-result-box {
  background: var(--teal-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
  border: 1.5px solid rgba(20, 184, 166, 0.3);
}

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

.pillar-card {
  background: var(--bg-white);
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  text-align: center;
}

.pillar-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sky-blue-subtle), var(--teal-subtle));
  color: var(--teal-dark);
}

.pillar-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.pillar-desc {
  font-size: 0.875rem;
  color: var(--text-medium);
}

/* 3-Step Path */
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .path-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.path-step-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border-subtle);
  position: relative;
}

.step-number {
  position: absolute;
  top: -18px;
  left: 1.5rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral-accent), #FF5757);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-coral);
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 1.25rem;
}

/* Appointment Form */
.appointment-wrapper {
  background: var(--bg-cream-light);
  border-radius: var(--radius-lg);
  border: 2px solid var(--sky-blue-subtle);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

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

.appointment-info {
  background: linear-gradient(135deg, var(--sky-blue-dark), var(--teal-dark));
  color: #FFFFFF;
  padding: 2.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.appointment-info h3 {
  font-size: 1.75rem;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.appointment-form-container {
  padding: 2.75rem 2rem;
  background: var(--bg-white);
}

@media (max-width: 480px) {
  .appointment-form-container {
    padding: 1.75rem 1.25rem;
  }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  background: var(--bg-cream-light);
  font-size: 16px;
  color: var(--text-dark);
  transition: var(--transition);
  min-height: 48px;
}

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

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--sky-blue-deep);
  background: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15);
}

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

@media (max-width: 600px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sky-blue-light);
  color: var(--sky-blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-size: 0.75rem;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--sky-blue-deep);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.25rem;
  color: var(--text-medium);
  font-size: 0.875rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.25rem 1.25rem 1.25rem;
}

/* Contact Footer */
.contact-section {
  background: var(--text-dark);
  color: #FFFFFF;
  padding-top: 3.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.map-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.map-iframe-container {
  width: 100%;
  height: 260px;
}

.map-action-bar {
  padding: 1rem 1.25rem;
  background: rgba(15, 23, 42, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.site-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
  color: #94A3B8;
  font-size: 0.825rem;
}

/* Desktop Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25D366;
  color: #FFFFFF;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid #FFFFFF;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .floating-whatsapp {
    display: none;
  }
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-light);
  padding: 0.65rem 1rem;
  z-index: 1200;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}

.mobile-bottom-bar .btn-mobile-call {
  flex: 1;
  background: var(--bg-cream);
  color: var(--text-dark);
  border: 1.5px solid var(--border-light);
  padding: 0.65rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px;
}

.mobile-bottom-bar .btn-mobile-wa {
  flex: 1.4;
  background: #25D366;
  color: #FFFFFF;
  padding: 0.65rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Modal Bottom-Sheet */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.94);
  transition: var(--transition);
}

@media (max-width: 600px) {
  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .modal-card {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 85vh;
    transform: translateY(100%);
  }
  .modal-overlay.active .modal-card {
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg-cream);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-medium);
  font-size: 1.2rem;
}

.modal-header {
  padding: 1.75rem 1.5rem 0.75rem;
}

.modal-body {
  padding: 0.75rem 1.5rem 1.75rem;
}

/* Toast */
.toast-container {
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  left: 1.25rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

@media (min-width: 769px) {
  .toast-container {
    left: auto;
    width: 380px;
  }
}

.toast {
  background: var(--text-dark);
  color: #FFFFFF;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-left: 4px solid var(--teal-main);
}
