/* ============================================================
   LOOK UP PHYSIO — MAIN STYLESHEET
   Clean, professional physiotherapy clinic aesthetic
============================================================ */

/* ===========================
   1. DESIGN TOKENS
=========================== */
:root {
  --primary:        #1A4F8A;
  --primary-light:  #2567B8;
  --primary-dark:   #0F3060;
  --teal:           #2A9D8F;
  --teal-light:     #3BBDAE;
  --cta:            #E76F51;
  --cta-dark:       #C55A3E;
  --white:          #FFFFFF;
  --bg:             #F7FAFB;
  --bg-dark:        #1B2535;
  --text:           #1E2939;
  --muted:          #6B7280;
  --light:          #9CA3AF;
  --border:         #E5E7EB;
  --shadow-color:   rgba(26, 79, 138, 0.12);

  --font-display: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   14px;
  --radius-xl:   22px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px var(--shadow-color);
  --shadow-md:  0 4px 14px var(--shadow-color);
  --shadow-lg:  0 8px 28px var(--shadow-color);
  --shadow-xl:  0 16px 48px var(--shadow-color);

  --transition:      0.2s ease;
  --transition-slow: 0.35s ease;

  --max-width: 1180px;
  --gutter:    1.5rem;
}

/* ===========================
   2. RESET
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ===========================
   3. TYPOGRAPHY
=========================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--muted); line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
}

/* ===========================
   4. LAYOUT
=========================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: 5rem 0; }

.section-head { margin-bottom: 3rem; }
.section-head.centered { text-align: center; }
.section-head.centered .subtitle { margin: 0.75rem auto 0; max-width: 600px; }

.subtitle {
  margin-top: 0.75rem;
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.75;
}

/* ===========================
   5. BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--cta);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--cta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 111, 81, 0.38);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background: #f0f4fa;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* ===========================
   6. NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 70px;
  background: white;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo img { height: 42px; width: auto; }
.nav-logo .logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-center {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--primary);
  background: var(--bg);
}

.nav-chevron {
  font-size: 0.7rem;
  opacity: 0.5;
  transition: transform var(--transition);
}
.has-dropdown:hover .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 0.575rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.dropdown li a:hover {
  background: var(--bg);
  color: var(--primary);
  padding-left: 1.125rem;
}

/* Book button in nav */
.nav-book {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.575rem 1.375rem;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  margin-left: 1rem;
  transition: all var(--transition);
}
.nav-book:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.pulse-dot {
  width: 7px;
  height: 7px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
  70%  { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  transition: background var(--transition);
}
.nav-toggle:hover { background: var(--bg); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
  margin: 0 auto;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: white;
  overflow-y: auto;
  padding: 1rem 1.5rem 2rem;
  flex-direction: column;
  z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile .m-link {
  display: block;
  padding: 0.875rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav-mobile .m-dropdown { padding-left: 1rem; }
.nav-mobile .m-dropdown a {
  display: block;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.nav-mobile .m-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-mobile-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
  padding: 0.875rem;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

/* ===========================
   7. HERO
=========================== */
.hero {
  margin-top: 70px;
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 55%, var(--teal) 100%);
  color: white;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='1' fill='white' fill-opacity='0.06'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);
  color: white;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: #4ADE80;
  border-radius: 50%;
}
.hero h1 {
  color: white;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal-light);
}
.hero-desc {
  font-size: 1.075rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stat h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.2rem;
}
.hero-stat p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
}
/* Hero image panel */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(8px);
  padding: 2rem;
  max-width: 340px;
  width: 100%;
}
.hero-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-card h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.hero-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.hero-card-features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.hero-card-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}
.feature-check {
  width: 18px;
  height: 18px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  color: white;
  flex-shrink: 0;
}

/* ===========================
   8. INTRO
=========================== */
.intro-section { background: white; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.4);
}
.intro-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-text h2 { margin-bottom: 1rem; }
.intro-text p  { margin-bottom: 1.25rem; }
.download-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  border: 1.5px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
  transition: all var(--transition);
}
.download-link:hover {
  border-color: var(--primary);
  background: var(--bg);
}

/* ===========================
   9. SERVICES
=========================== */
.services-section { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 1.125rem;
}
.service-card h3 { font-size: 1.025rem; margin-bottom: 0.5rem; }
.service-card p  { font-size: 0.875rem; margin-bottom: 1.125rem; }
.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 0.5rem; }

/* ===========================
   10. PHYSIO PROMO (like EG)
=========================== */
.promo-section {
  background: white;
}
.promo-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  color: white;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.promo-box h2 { color: white; margin-bottom: 0.875rem; }
.promo-box p  { color: rgba(255,255,255,0.75); max-width: 520px; }

/* ===========================
   11. TEAM
=========================== */
.team-section { background: var(--bg); }
.team-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.team-photo {
  background: var(--border);
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-info { padding: 2.5rem; }
.team-info h3 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.team-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 1.25rem;
  display: block;
}
.team-info p { font-size: 0.9375rem; margin-bottom: 1.5rem; }
.certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cert {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem 0.8rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  font-weight: 500;
  color: var(--text);
}

/* ===========================
   12. TESTIMONIALS
=========================== */
.testimonials-section { background: white; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
}
.t-stars {
  color: #F59E0B;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 0.875rem;
}
.t-text {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1rem;
}
.t-author { font-weight: 600; font-size: 0.875rem; color: var(--text); }
.t-source { font-size: 0.775rem; color: var(--light); }

/* ===========================
   13. CONTACT SECTION (homepage)
=========================== */
.contact-home { background: var(--bg); }
.contact-home-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.contact-details { margin: 1.5rem 0 2rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.c-icon {
  width: 42px;
  height: 42px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.c-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.c-text span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}
.c-text a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.c-text a:hover { color: var(--primary); }
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 220px;
  margin-top: 1.5rem;
}
.map-frame iframe { width: 100%; height: 100%; border: none; }

/* Contact form */
.contact-form-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--border);
}
.contact-form-box h3 { margin-bottom: 1.5rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.8375rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text);
  background: white;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,79,138,0.07);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.btn-form {
  width: 100%;
  padding: 0.825rem;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-form:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* ===========================
   14. CTA BANNER
=========================== */
.cta-banner {
  background: linear-gradient(140deg, var(--primary), var(--teal));
  text-align: center;
  padding: 4.5rem 0;
}
.cta-banner h2 { color: white; margin-bottom: 0.875rem; }
.cta-banner p  { color: rgba(255,255,255,0.78); margin-bottom: 2rem; font-size: 1.0625rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ===========================
   15. FOOTER
=========================== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.65);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo-wrap { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-logo-wrap img {
  height: 38px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-logo-wrap span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
}
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }
.socials { display: flex; gap: 0.5rem; }
.social {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: background var(--transition);
}
.social:hover { background: rgba(255,255,255,0.18); }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.625rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: white; }
.footer-hours .h-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.8375rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.5);
}
.footer-hours .h-row:last-child { border-bottom: none; }
.footer-hours .h-row .day { color: rgba(255,255,255,0.7); font-weight: 500; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: white; }
.footer-bottom-links { display: flex; gap: 1.25rem; }

/* ===========================
   16. PAGE HERO (inner pages)
=========================== */
.page-hero {
  margin-top: 70px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 3rem 0 2.75rem;
  color: white;
}
.page-hero h1 { color: white; margin-bottom: 0.5rem; font-size: clamp(1.5rem, 3vw, 2.25rem); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8375rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { opacity: 0.35; }

/* ===========================
   17. SERVICE DETAIL PAGE
=========================== */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.service-detail-body h2 { margin-bottom: 1rem; }
.service-detail-body p { margin-bottom: 1.25rem; }
.check-list { margin: 1.25rem 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-icon {
  width: 20px;
  height: 20px;
  background: var(--teal);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.sidebar-card h4 { margin-bottom: 1rem; }
.sidebar-card p { font-size: 0.875rem; margin-bottom: 1rem; }
.other-services li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.other-services li:last-child { border-bottom: none; }
.other-services a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color var(--transition);
}
.other-services a:hover { color: var(--primary); }

/* ===========================
   18. ABOUT PAGE
=========================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: white;
}
.value-icon { font-size: 2.25rem; margin-bottom: 0.875rem; }
.value-card h3 { margin-bottom: 0.5rem; }

/* ===========================
   19. CONTACT PAGE
=========================== */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
}
.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.c-info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
}
.c-info-card .icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.c-info-card strong { display: block; font-size: 0.85rem; margin-bottom: 0.25rem; }
.c-info-card span, .c-info-card a {
  font-size: 0.875rem;
  color: var(--muted);
}
.hours-table {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.hours-table table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { font-weight: 500; color: var(--text); }
.hours-table td:last-child { text-align: right; color: var(--muted); }
.full-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 320px;
}
.full-map iframe { width: 100%; height: 100%; border: none; }

/* ===========================
   20. FAQ PAGE
=========================== */
.faq-list { max-width: 760px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.125rem 1.375rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--bg); }
.faq-q.open { color: var(--primary); }
.faq-icon { font-size: 1.25rem; flex-shrink: 0; transition: transform var(--transition); }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 1.375rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-a.open {
  max-height: 300px;
  padding: 0 1.375rem 1.125rem;
}
.faq-a p { font-size: 0.9375rem; }

/* ===========================
   21. TESTIMONIALS PAGE
=========================== */
.t-stats {
  display: flex;
  gap: 3rem;
  margin-top: 1.25rem;
}
.t-stat h3 { font-size: 2rem; font-weight: 700; color: white; }
.t-stat p  { font-size: 0.8125rem; color: rgba(255,255,255,0.6); }

/* ===========================
   22. BOOK PAGE
=========================== */
.book-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}
.book-info { position: sticky; top: 90px; }
.book-info h3 { margin-bottom: 0.875rem; }
.book-steps { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.book-step { display: flex; gap: 1rem; align-items: flex-start; }
.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.step-text h4 { font-size: 0.9375rem; margin-bottom: 0.2rem; }
.step-text p  { font-size: 0.85rem; }
.book-embed-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 700px;
}
.book-embed-wrap iframe {
  width: 100%;
  min-height: 700px;
  border: none;
  display: block;
}

/* ===========================
   23. RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card { grid-template-columns: 240px 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .promo-box { grid-template-columns: 1fr; text-align: center; }
  .book-grid { grid-template-columns: 1fr; }
  .book-info { position: static; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  
  .nav-center, .nav-book { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 4rem 0 3.5rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  
  .team-card { grid-template-columns: 1fr; }
  .team-photo { height: 280px; }

  .contact-home-grid { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-info-cards { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; gap: 0.875rem; text-align: center; }

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

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

  .cta-btns { flex-direction: column; align-items: center; }

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

@media (max-width: 480px) {
  :root { --gutter: 1rem; }
  .contact-info-cards { grid-template-columns: 1fr; }
  .hero-stats { gap: 1rem; }
  .t-stats { gap: 1.5rem; }
}
