/* TeleChiro Florida — Design System v2 */
/* Refined Clinical Luxury · DM Serif Display + DM Sans */

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

:root {
  --navy: #0B1F3A;
  --navy-mid: #142d52;
  --navy-deep: #071526;
  --teal: #0D7A5F;
  --teal-light: #12A07C;
  --teal-pale: #E8F5F1;
  --teal-text: #7EC8B0;
  --gold: #C9943A;
  --gold-light: #F5E6C8;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --cream: #FAF9F6;
  --text-dark: #0B1F3A;
  --text-mid: #3D526B;
  --text-light: #6B7E96;
  --border: #E2E8EF;
  --border-light: #F0F3F7;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 12px rgba(11,31,58,0.05);
  --shadow-md: 0 8px 32px rgba(11,31,58,0.08);
  --shadow-lg: 0 20px 60px rgba(11,31,58,0.12);
  --shadow-glow: 0 4px 20px rgba(13,122,95,0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* UTILITY */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-alt { background: var(--off-white); position: relative; }
.section-alt::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }
.section-navy { background: var(--navy); }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
}
.section-tag::before { content: ''; width: 24px; height: 2px; background: var(--teal); border-radius: 1px; }

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text-dark); line-height: 1.15;
  letter-spacing: -0.025em; margin-bottom: 16px;
}
.section-sub { font-size: 17px; color: var(--text-mid); max-width: 560px; line-height: 1.7; font-weight: 300; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600;
  letter-spacing: 0.01em; border-radius: var(--radius-sm); cursor: pointer;
  text-decoration: none; border: none; transition: all var(--transition);
  touch-action: manipulation; -webkit-tap-highlight-color: transparent; position: relative;
}
.btn-primary { background: var(--teal); color: var(--white); padding: 15px 30px; box-shadow: var(--shadow-glow); }
.btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(13,122,95,0.35); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary { background: transparent; color: var(--white); padding: 15px 30px; border: 1.5px solid rgba(255,255,255,0.25); backdrop-filter: blur(4px); }
.btn-secondary:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.1); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); padding: 15px 30px; border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-pale); transform: translateY(-1px); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn svg { flex-shrink: 0; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,31,58,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.header-brand { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--white); text-decoration: none; letter-spacing: -0.3px; flex-shrink: 0; }
.header-brand span { color: var(--teal-text); }
.header-nav { display: flex; align-items: center; gap: 32px; }
.header-nav a {
  color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px;
  font-weight: 500; transition: color var(--transition); white-space: nowrap; position: relative;
}
.header-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--teal); border-radius: 1px;
  transform: scaleX(0); transition: transform var(--transition);
}
.header-nav a:hover { color: var(--white); }
.header-nav a:hover::after { transform: scaleX(1); }
.header-nav a.active { color: var(--white); }
.header-nav a.active::after { transform: scaleX(1); }
.header-ctas { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-call-header {
  display: flex; align-items: center; gap: 8px;
  background: var(--teal); color: var(--white); text-decoration: none;
  padding: 9px 18px; border-radius: 6px; font-size: 14px; font-weight: 600;
  transition: all var(--transition); white-space: nowrap;
}
.btn-call-header:hover { background: var(--teal-light); transform: translateY(-1px); }
.btn-text-header {
  display: flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.8); text-decoration: none;
  padding: 9px 16px; border-radius: 6px; font-size: 14px; font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.2); transition: all var(--transition); white-space: nowrap;
}
.btn-text-header:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.08); color: var(--white); }
.btn-book-header {
  display: flex; align-items: center; gap: 6px;
  background: var(--white); color: var(--navy); text-decoration: none;
  padding: 9px 16px; border-radius: 6px; font-size: 14px; font-weight: 600;
  transition: all var(--transition); white-space: nowrap; cursor: pointer; border: none;
}
.btn-book-header:hover { background: var(--cream); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

.menu-toggle { display: none; background: none; border: none; color: var(--white); cursor: pointer; padding: 8px; }

/* HERO */
.hero { background: var(--navy); padding: 80px 24px 96px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(13,122,95,0.2) 0%, transparent 65%); pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: var(--white); clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner { max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,122,95,0.2); border: 1px solid rgba(126,200,176,0.3);
  color: var(--teal-text); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 30px; margin-bottom: 28px;
  animation: badgeFadeIn 0.6s ease 0.2s both;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; background: var(--teal-text);
  border-radius: 50%; animation: pulse 2s infinite; box-shadow: 0 0 8px rgba(126,200,176,0.5);
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.7); } }
@keyframes badgeFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.hero h1 {
  font-family: 'DM Serif Display', serif; font-size: clamp(36px, 5.5vw, 62px);
  color: var(--white); line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 24px; animation: heroTitle 0.7s ease 0.3s both;
}
.hero h1 em { font-style: italic; color: var(--teal-text); }
@keyframes heroTitle { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  font-size: 19px; color: rgba(255,255,255,0.7); max-width: 540px;
  margin: 0 auto 40px; font-weight: 300; line-height: 1.7;
  animation: heroSub 0.7s ease 0.45s both;
}
@keyframes heroSub { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px;
  animation: heroCtas 0.7s ease 0.6s both;
}
@keyframes heroCtas { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.hero-note { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 16px; animation: heroNote 0.6s ease 0.75s both; }
.hero-note b { color: rgba(255,255,255,0.6); }
@keyframes heroNote { from { opacity: 0; } to { opacity: 1; } }

/* TRUST BAR */
.trust-bar { background: var(--white); padding: 32px 24px; border-bottom: 1px solid var(--border-light); }
.trust-inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 12px 24px; border-right: 1px solid var(--border-light); transition: transform var(--transition); }
.trust-item:last-child { border-right: none; }
.trust-item:hover { transform: translateY(-2px); }
.trust-icon {
  width: 44px; height: 44px; background: var(--teal-pale); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--transition);
}
.trust-item:hover .trust-icon { background: var(--teal); box-shadow: var(--shadow-glow); }
.trust-item:hover .trust-icon svg { stroke: white; }
.trust-icon svg { width: 20px; height: 20px; transition: stroke var(--transition); }
.trust-label { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.trust-value { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-top: 2px; }

/* CARDS */
.card {
  background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  padding: 32px 28px; transition: all var(--transition); position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 52px; height: 52px; background: var(--teal-pale); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: all var(--transition);
}
.card:hover .card-icon { background: var(--teal); transform: scale(1.05); }
.card:hover .card-icon svg { stroke: white; }
.card-icon svg { transition: stroke var(--transition); }
.card-title { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--text-dark); margin-bottom: 10px; }
.card-desc { font-size: 14px; color: var(--text-mid); line-height: 1.65; font-weight: 300; }

/* ACCIDENT BANNER */
.accident-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg); padding: 36px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-top: 64px; position: relative; overflow: hidden;
}
.accident-banner::before {
  content: ''; position: absolute; top: -30px; right: -30px; width: 200px; height: 200px;
  border-radius: 50%; background: radial-gradient(circle, rgba(13,122,95,0.3) 0%, transparent 70%); pointer-events: none;
}
.accident-banner h3 { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--white); margin-bottom: 6px; }
.accident-banner p { font-size: 14px; color: rgba(255,255,255,0.65); font-weight: 300; }
.accident-banner .btn { flex-shrink: 0; }

/* FIRST VISIT CARD */
.first-visit-card {
  background: linear-gradient(135deg, var(--teal-pale) 0%, #dff5ee 100%);
  border: 1px solid rgba(13,122,95,0.15); border-radius: var(--radius-lg);
  padding: 40px; text-align: center; position: relative; overflow: hidden;
}
.first-visit-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--teal), var(--teal-light)); }

/* INFO CARDS */
.info-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px; transition: box-shadow var(--transition); }
.info-card:hover { box-shadow: var(--shadow-sm); }
.info-card-title { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--text-dark); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border-light); }

/* HOURS */
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border-light); font-size: 14px; transition: background var(--transition); }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-mid); font-weight: 400; }
.hours-time { font-weight: 600; color: var(--text-dark); }
.hours-row.highlight .hours-day, .hours-row.highlight .hours-time { color: var(--teal); font-weight: 700; }
.hours-badge { font-size: 10px; background: var(--teal-pale); color: var(--teal); padding: 3px 8px; border-radius: 20px; font-weight: 700; letter-spacing: 0.05em; margin-left: 8px; }
.hours-note { margin-top: 20px; padding: 16px; background: var(--teal-pale); border-radius: 10px; font-size: 13px; color: var(--teal); font-weight: 500; display: flex; gap: 10px; align-items: flex-start; border: 1px solid rgba(13,122,95,0.1); }
.hours-note svg { flex-shrink: 0; margin-top: 1px; }

/* CONTACT LINKS */
.contact-link { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-dark); text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--border-light); font-weight: 500; transition: all var(--transition); }
.contact-link:last-child { border-bottom: none; }
.contact-link:hover { color: var(--teal); padding-left: 6px; }
.contact-link svg { color: var(--teal); flex-shrink: 0; transition: transform var(--transition); }
.contact-link:hover svg { transform: scale(1.15); }

/* TESTIMONIALS */
.testimonial-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px 28px; transition: all var(--transition); position: relative; }
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-card::before { content: '\201C'; position: absolute; top: 16px; right: 24px; font-family: 'DM Serif Display', serif; font-size: 64px; color: var(--teal-pale); line-height: 1; pointer-events: none; }
.stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; color: var(--text-mid); line-height: 1.75; font-style: italic; margin-bottom: 24px; font-weight: 300; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; color: var(--teal-text); font-weight: 700; font-size: 14px; flex-shrink: 0; }
.author-name { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.author-type { font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* FAQ */
.faq-item { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(13,122,95,0.2); }
.faq-question { width: 100%; padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; background: none; border: none; font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600; color: var(--navy); text-align: left; line-height: 1.4; transition: color var(--transition); }
.faq-item.open .faq-question { color: var(--teal); }
.faq-question:focus { outline: 2px solid var(--teal); outline-offset: -2px; }
.faq-chevron { width: 24px; height: 24px; flex-shrink: 0; margin-left: 16px; transition: transform 0.35s ease, color var(--transition); color: var(--text-light); }
.faq-item.open .faq-chevron { transform: rotate(45deg); color: var(--teal); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 24px 22px; font-size: 15px; color: var(--text-mid); line-height: 1.75; font-weight: 300; }

/* FORM */
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px 36px; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.form-card h3 { font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--navy); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-row .form-group { margin-bottom: 0; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; letter-spacing: 0.02em; }
.form-group .required { color: #c0392b; }
.form-group input, .form-group select, .form-group textarea {
  height: 50px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 0 16px; font-family: 'DM Sans', sans-serif; font-size: 15px;
  color: var(--text-dark); background: var(--cream); transition: all var(--transition); width: 100%;
}
.form-group textarea { height: auto; min-height: 100px; padding: 14px 16px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(13,122,95,0.1); background: var(--white); }

/* CTA SECTION */
.cta-section { background: var(--navy); padding: 96px 24px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(13,122,95,0.15) 0%, transparent 60%); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-section .section-tag { color: var(--teal-text); }
.cta-section .section-tag::before { background: var(--teal-text); }
.cta-section .section-title { color: var(--white); }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 40px; font-weight: 300; line-height: 1.7; }
.cta-footer-line { font-size: 13px; color: rgba(255,255,255,0.35); display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 28px; }

/* FOOTER */
.site-footer { background: var(--navy-deep); padding: 56px 24px 36px; position: relative; }
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(126,200,176,0.2), transparent); }
.footer-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 48px; }
.footer-brand-name { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--white); margin-bottom: 14px; }
.footer-brand-name span { color: var(--teal-text); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px; }
.footer-heading { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: all var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom { max-width: 1120px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* BOOKING MODAL */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(7,21,38,0.85); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 999; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--white); border-radius: var(--radius-lg); width: 100%; max-width: 780px; max-height: 90vh; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 32px 80px rgba(7,21,38,0.4); animation: modal-in 0.3s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes modal-in { from { opacity: 0; transform: translateY(24px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 28px; border-bottom: 1px solid var(--border-light); flex-shrink: 0; }
.modal-title { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--text-dark); }
.modal-sub { font-size: 13px; color: var(--text-light); margin-top: 2px; }
.modal-close { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border); background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-mid); flex-shrink: 0; transition: all var(--transition); }
.modal-close:hover { background: var(--off-white); border-color: var(--text-light); }
.modal-body { flex: 1; overflow: hidden; min-height: 0; }
.modal-body iframe { width: 100%; height: 100%; min-height: 560px; border: none; display: block; }
.modal-footer-bar { padding: 12px 24px; border-top: 1px solid var(--border-light); display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-light); flex-shrink: 0; background: var(--cream); }

/* MOBILE NAV */
.mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--navy-mid); padding: 16px 24px 24px; z-index: 99; flex-direction: column; gap: 4px; box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 16px; font-weight: 500; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); transition: all var(--transition); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--white); padding-left: 8px; }

/* MOBILE STICKY CTA */
.mobile-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); padding: 12px 16px; box-shadow: 0 -6px 30px rgba(11,31,58,0.12); z-index: 98; gap: 10px; border-top: 1px solid var(--border-light); }
.mobile-sticky-cta .btn { flex: 1; padding: 13px 16px; font-size: 14px; box-shadow: none; }

/* FADE IN */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* PAGE HERO */
.page-hero { background: var(--navy); padding: 60px 24px 72px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -50px; right: -80px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(13,122,95,0.15) 0%, transparent 70%); pointer-events: none; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 48px; background: var(--white); clip-path: ellipse(55% 100% at 50% 100%); }
.page-hero .section-tag { color: var(--teal-text); }
.page-hero .section-tag::before { background: var(--teal-text); }
.page-hero h1 { font-family: 'DM Serif Display', serif; font-size: clamp(32px, 5vw, 52px); color: var(--white); line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 14px; position: relative; z-index: 1; }
.page-hero h1 em { font-style: italic; color: var(--teal-text); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto; position: relative; z-index: 1; font-weight: 300; line-height: 1.7; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .menu-toggle { display: block; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .accident-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { padding: 10px 18px; border-right: none; border-bottom: 1px solid var(--border-light); }
  .trust-item:last-child { border-bottom: none; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary, .btn-outline { width: 100%; max-width: 320px; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .btn-book-header span { display: none; }
  .mobile-sticky-cta { display: flex; }
  .site-footer { padding-bottom: 100px; }
  .cta-section { padding: 64px 24px; }
}
@media (max-width: 480px) {
  .header-inner { padding: 0 16px; }
  .container, .container-narrow { padding: 0 16px; }
  .hero { padding: 56px 16px 72px; }
  .btn-call-header span { display: none; }
  .btn-text-header { display: none; }
  .section { padding: 48px 0; }
}
