/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   JESSICA MENDES FISIOTERAPIA — CSS MAIN
   Production-ready • Mobile-first • Conversion-optimized
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ═══════════════════════════════════════════════════════
   1. VARIABLES & RESET
   ═══════════════════════════════════════════════════════ */

:root {
  /* Colors */
  --navy:       #0B2545;
  --blue:       #1B5FA8;
  --sky:        #3A8FC8;
  --mist:       #E8F3FB;
  --ice:        #F4F9FD;
  --teal:       #0D9488;
  --teal-lt:    #CCFBF1;
  --sand:       #F8F5F0;
  --warm:       #C8905A;
  --warm-lt:    #FDF3EA;
  --slate:      #4A5568;
  --body:       #2D3748;
  --muted:      #718096;
  --border:     #E2EAF2;
  --white:      #FFFFFF;
  --red:        #E53E3E;
  
  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* Spacing */
  --spacing-xs:  0.5rem;
  --spacing-sm:  1rem;
  --spacing-md:  1.5rem;
  --spacing-lg:  2rem;
  --spacing-xl:  3rem;
  --spacing-2xl: 4rem;
  
  /* Border radius */
  --radius-sm:   0.5rem;
  --radius-md:   0.75rem;
  --radius-lg:   1rem;
  --radius-xl:   1.5rem;
  
  /* Shadows */
  --shadow-sm:   0 2px 4px rgba(11,37,69,0.05);
  --shadow-md:   0 4px 12px rgba(11,37,69,0.08);
  --shadow-lg:   0 8px 24px rgba(11,37,69,0.12);
  
  /* Transitions */
  --transition: all 0.2s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════
   2. LAYOUT
   ═══════════════════════════════════════════════════════ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

section {
  padding: var(--spacing-2xl) 0;
}

section:nth-child(even) {
  background: var(--ice);
}

/* ═══════════════════════════════════════════════════════
   3. TYPOGRAPHY
   ═══════════════════════════════════════════════════════ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--spacing-md);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--spacing-lg);
}

h3 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
}

h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: var(--spacing-xs);
}

p {
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--sky);
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: var(--spacing-md);
}

li {
  margin-bottom: 0.5rem;
}

strong {
  font-weight: 600;
  color: var(--navy);
}

/* ═══════════════════════════════════════════════════════
   4. HEADER & NAVIGATION
   ═══════════════════════════════════════════════════════ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 37, 69, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
  padding: var(--spacing-sm) 0;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  margin-right: var(--spacing-lg);
}

.navbar-brand-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
}

.navbar-brand-sub {
  font-size: 11px;
  color: var(--sky);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
  align-items: center;
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 1);
}

.nav-link--cta {
  background: var(--sky);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
}

.nav-link--cta:hover {
  background: var(--blue);
  color: var(--white);
}

/* Mobile nav */
@media (max-width: 768px) {
  .navbar-container {
    flex-wrap: wrap;
    gap: var(--spacing-md);
  }

  .navbar-menu {
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    order: 3;
    flex-basis: 100%;
  }
}

/* ═══════════════════════════════════════════════════════
   5. HERO SECTION
   ═══════════════════════════════════════════════════════ */

.hero {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
  background-image: url('../img/JessicaMendesFisioterapeuta.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-2xl) var(--spacing-md);
  position: relative;
  overflow: hidden;
}

/* Fallback se imagem não carregar (gradient padrão) */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(11, 37, 69, 0.85) 0%, rgba(13, 53, 97, 0.85) 50%, rgba(27, 95, 168, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(58, 143, 200, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  max-width: 700px;
  z-index: 3;
  text-align: center;
  position: relative;
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: var(--spacing-md);
  line-height: 1.15;
}

.hero-highlight {
  color: var(--sky);
  display: block;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.page-hero {
  margin-top: 80px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--blue) 100%);
  padding: var(--spacing-2xl) var(--spacing-md);
  text-align: center;
  color: var(--white);
}

.page-title {
  color: var(--white);
  margin-bottom: var(--spacing-sm);
}

.page-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   6. BUTTONS & CTAs
   ═══════════════════════════════════════════════════════ */

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}

.btn--secondary:hover {
  background: var(--mist);
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 15px;
}

/* ═══════════════════════════════════════════════════════
   7. COMPONENTS
   ═══════════════════════════════════════════════════════ */

/* Section title */
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--spacing-lg);
}

/* Trust metrics */
.trust-metrics {
  background: var(--white);
  padding: var(--spacing-xl) var(--spacing-md);
}

.metrics-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xl);
  text-align: center;
}

.metric {
  padding: var(--spacing-lg);
}

.metric-value {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: var(--spacing-xs);
}

.metric-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   8. HOW IT WORKS
   ═══════════════════════════════════════════════════════ */

.how-it-works {
  background: var(--ice);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
}

.step {
  padding: var(--spacing-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  font-family: var(--font-display);
}

.step-title {
  margin-bottom: var(--spacing-sm);
  font-size: 1.15rem;
}

.step p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════
   9. SERVICES GRID
   ═══════════════════════════════════════════════════════ */

.featured-services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.service-card {
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--sky);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.service-title {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0;
}

.services-cta {
  text-align: center;
}

/* ═══════════════════════════════════════════════════════
   10. TESTIMONIALS
   ═══════════════════════════════════════════════════════ */

.testimonials {
  background: var(--ice);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
}

.testimonial-stars {
  margin-bottom: var(--spacing-md);
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 14px;
  font-style: italic;
  color: var(--body);
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
}

/* ═══════════════════════════════════════════════════════
   11. ABOUT PREVIEW
   ═══════════════════════════════════════════════════════ */

.about-preview {
  background: var(--white);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-text p {
  font-size: 15px;
  margin-bottom: var(--spacing-md);
}

/* ═══════════════════════════════════════════════════════
   12. FINAL CTA
   ═══════════════════════════════════════════════════════ */

.final-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: var(--spacing-2xl) var(--spacing-md);
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--spacing-lg);
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════════════════════
   13. ABOUT PAGE
   ═══════════════════════════════════════════════════════ */

.story-section {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.story-content p {
  font-size: 15px;
  margin-bottom: var(--spacing-md);
}

.story-visual {
  display: flex;
  justify-content: center;
}

.story-image-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  background: var(--mist);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 3rem;
  text-align: center;
  border: 2px dashed var(--border);
}

.credentials {
  background: var(--ice);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-lg);
}

.credential-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  border-left: 3px solid var(--sky);
}

.credential-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--sky);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-xs);
}

.credential-card h3 {
  font-size: 1.05rem;
  margin-bottom: var(--spacing-xs);
}

.credential-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0;
}

.values-section {
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-lg);
}

.value-card {
  background: var(--mist);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
}

.value-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0;
}

.approach-section {
  background: var(--ice);
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
}

.approach-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
}

.approach-step .step-number {
  background: var(--blue);
}

/* ═══════════════════════════════════════════════════════
   14. SERVICES PAGE
   ═══════════════════════════════════════════════════════ */

.intro-section {
  background: var(--mist);
  padding: var(--spacing-lg) var(--spacing-md);
}

.intro-text {
  text-align: center;
  font-size: 1.1rem;
  color: var(--blue);
  font-weight: 500;
  margin: 0 auto;
  max-width: 600px;
}

.services-detailed {
  background: var(--white);
}

.service-detailed {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl) var(--spacing-lg);
  border-bottom: 1px solid var(--border);
}

.service-detailed:last-child {
  border-bottom: none;
}

.service-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sky);
  font-family: var(--font-display);
}

.service-details h2 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-xs);
}

.service-para {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: var(--spacing-md);
}

.service-details p {
  font-size: 14px;
  margin-bottom: var(--spacing-md);
}

.service-details ul {
  margin-bottom: var(--spacing-md);
}

.service-details li {
  font-size: 14px;
}

.faq-section {
  background: var(--ice);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
}

.faq-question {
  font-size: 1rem;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.faq-item p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   15. CONTACT PAGE
   ═══════════════════════════════════════════════════════ */

.contact-quick {
  background: var(--white);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-lg);
}

.contact-method {
  background: var(--mist);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
}

.contact-method h3 {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xs);
}

.contact-method p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: var(--spacing-md);
}

.schedule-section {
  background: var(--ice);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.schedule-day {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  border: 1px solid var(--border);
}

.schedule-day h3 {
  font-size: 1rem;
  margin-bottom: var(--spacing-sm);
}

.schedule-time {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 0;
}

.schedule-note {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.form-section {
  background: var(--white);
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--body);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27, 95, 168, 0.1);
}

.form-group.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--spacing-xs);
}

.form-group.checkbox input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.form-group.checkbox label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 13px;
  cursor: pointer;
}

.form-message {
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  background: var(--teal-lt);
  color: var(--teal);
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}

.form-message.error {
  background: rgba(229, 62, 62, 0.1);
  color: var(--red);
}

.location-section {
  background: var(--ice);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
}

.location-info h3 {
  margin-bottom: var(--spacing-md);
}

.location-info p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.location-map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-align: center;
}

.directions-section {
  background: var(--white);
}

.directions-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-lg);
}

.direction-item {
  background: var(--mist);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
}

.direction-item h3 {
  font-size: 1.05rem;
  margin-bottom: var(--spacing-sm);
}

.direction-item p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════
   16. FLOATING CTAs
   ═══════════════════════════════════════════════════════ */

.floating-cta {
  position: fixed;
  bottom: 100px;
  right: var(--spacing-md);
  width: 60px;
  height: 60px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  transition: var(--transition);
  text-decoration: none;
}

.floating-cta:hover {
  background: var(--navy);
  transform: scale(1.1);
}

.fixed-booking-btn {
  position: fixed;
  bottom: var(--spacing-md);
  right: var(--spacing-md);
  background: var(--blue);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  z-index: 99;
  transition: var(--transition);
}

.fixed-booking-btn:hover {
  background: var(--navy);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════
   17. FOOTER
   ═══════════════════════════════════════════════════════ */

.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-lg);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-section h3,
.footer-section h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
}

.footer-section p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 0;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.5rem;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  text-decoration: none;
  transition: var(--transition);
}

.footer-menu a:hover {
  color: rgba(255, 255, 255, 1);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

/* ═══════════════════════════════════════════════════════
   18. RESPONSIVE & UTILITIES
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  section {
    padding: var(--spacing-xl) 0;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .location-content {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .fixed-booking-btn {
    bottom: 70px;
    right: auto;
    left: var(--spacing-md);
    right: var(--spacing-md);
    width: calc(100% - var(--spacing-lg) * 2);
  }

  .floating-cta {
    bottom: var(--spacing-md);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════
   19. PRINT STYLES
   ═══════════════════════════════════════════════════════ */

@media print {
  .header,
  .floating-cta,
  .fixed-booking-btn,
  .footer {
    display: none;
  }

  body {
    background: var(--white);
  }

  section {
    page-break-inside: avoid;
  }
}
