/* ==========================================================================
   HWC Wellness - Sunset Hope (#5) + Progressive Disclosure (#10)
   Domain: hwcwellness.space
   ========================================================================== */

/* ---------- Google Fonts (loaded via <link> in HTML) ---------- */
/* Poppins (headings), Lato (body) */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-primary: #E07B53;
  --color-primary-dark: #C4633D;
  --color-secondary: #F4A261;
  --color-accent: #E9B4C4;
  --color-text: #4A3728;
  --color-text-light: #7A6555;
  --color-bg: #FFFBF7;
  --color-bg-alt: #FFFFFF;
  --color-bg-warm: #FFF5ED;
  --color-white: #FFFFFF;
  --color-border: rgba(224, 123, 83, 0.15);
  --shadow-sm: 0 2px 8px rgba(224, 123, 83, 0.08);
  --shadow-md: 0 4px 20px rgba(224, 123, 83, 0.12);
  --shadow-lg: 0 8px 40px rgba(224, 123, 83, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Lato', sans-serif;
  --max-width: 1200px;
  --header-height: 72px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--color-primary-dark); }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

.section-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

/* ---------- Skip Navigation ---------- */
.skip-nav {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 12px 24px;
  z-index: 10000;
  transition: top 0.3s;
}
.skip-nav:focus { top: 0; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 251, 247, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span { color: var(--color-primary); }

.header-phone {
  display: none;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .header-phone { display: flex; }
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Mobile Menu ---------- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  padding: 100px 32px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav a:hover,
.mobile-nav a.active { color: var(--color-primary); }

.mobile-nav .nav-cta {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 32px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  width: 100%;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* ---------- Progress Bar (Progressive Disclosure) ---------- */
.progress-bar {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  z-index: 999;
  transition: width 0.1s linear;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(224, 123, 83, 0.75) 0%, rgba(244, 162, 97, 0.5) 50%, rgba(233, 180, 196, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 40px 24px;
  max-width: 800px;
}

.hero-content h1 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-align: center;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}
.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-phone {
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 1.1rem;
}
.btn-phone:hover {
  background: var(--color-bg-warm);
  color: var(--color-primary-dark);
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--color-white);
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text);
}

.trust-icon {
  width: 40px;
  height: 40px;
  background: var(--color-bg-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ---------- Sections (Progressive Disclosure) ---------- */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--color-bg-warm);
}

.section-white {
  background: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  color: var(--color-text-light);
  font-size: 1.05rem;
}

/* Progressive Disclosure - reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ---------- Continue/Learn More Button (Progressive Disclosure) ---------- */
.continue-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 32px auto 0;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
}

.continue-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.continue-btn .arrow {
  display: inline-block;
  transition: transform 0.3s;
}

.continue-btn:hover .arrow {
  transform: translateY(3px);
}

/* ---------- Card Grid ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  border: 1px solid var(--color-border);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 16px;
}

.card h3 { margin-bottom: 12px; }
.card p { color: var(--color-text-light); font-size: 0.95rem; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
}

/* ---------- Image Card ---------- */
.img-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.img-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.img-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.img-card-body { padding: 20px; }
.img-card-body h3 { margin-bottom: 8px; font-size: 1.1rem; }
.img-card-body p { color: var(--color-text-light); font-size: 0.9rem; }

/* ---------- Why Choose Us / Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.feature-item {
  text-align: center;
  padding: 24px 16px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--color-bg-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.feature-item h4 { margin-bottom: 8px; }
.feature-item p { color: var(--color-text-light); font-size: 0.9rem; }

/* ---------- Stats ---------- */
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  padding: 48px 0;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-top: 8px;
}

/* ---------- Testimonials ---------- */
.testimonials-wrapper {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-card {
  display: none;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 1px solid var(--color-border);
}

.testimonial-card.active { display: block; }

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--color-accent);
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: serif;
  line-height: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-primary);
}

.testimonial-program {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.testimonial-dot.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 64px 0;
  text-align: center;
  color: var(--color-white);
}

.cta-section h2 { color: var(--color-white); margin-bottom: 16px; }
.cta-section p { opacity: 0.95; margin-bottom: 24px; font-size: 1.1rem; }

.cta-phone {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  display: block;
  margin-bottom: 24px;
}

.cta-phone:hover { color: var(--color-bg-warm); }

/* ---------- Page Hero (Inner Pages) ---------- */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(224, 123, 83, 0.8) 0%, rgba(244, 162, 97, 0.6) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}

.page-hero-content h1 { color: var(--color-white); margin-bottom: 12px; }
.page-hero-content p { opacity: 0.9; font-size: 1.1rem; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.breadcrumbs a { color: var(--color-primary); }
.breadcrumbs span { margin: 0 8px; }

/* ---------- Two Column Layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}

.two-col img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ---------- Accordion (FAQ) ---------- */
.accordion { max-width: 800px; margin: 0 auto; }

.accordion-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--color-white);
}

.accordion-header {
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.accordion-header:hover { background: var(--color-bg-warm); }

.accordion-header .icon {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: var(--color-primary);
}

.accordion-item.open .accordion-header .icon { transform: rotate(45deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.open .accordion-body { max-height: 500px; }

.accordion-body-inner {
  padding: 0 24px 18px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ---------- Timeline / Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
}

.step-content h4 { margin-bottom: 4px; }
.step-content p { color: var(--color-text-light); font-size: 0.95rem; }

/* ---------- Insurance Grid ---------- */
.insurance-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.insurance-tag {
  padding: 10px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}

/* ---------- Blog Grid ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  border: 1px solid var(--color-border);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body { padding: 24px; }

.blog-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.blog-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.blog-card-body p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 12px;
}

/* ---------- Contact Info ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.contact-card {
  background: var(--color-white);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.contact-card .icon {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.contact-card h4 { margin-bottom: 8px; }
.contact-card p { color: var(--color-text-light); font-size: 0.95rem; }
.contact-card a { font-weight: 600; }

/* ---------- Map ---------- */
.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ---------- Gallery Grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.gallery-grid img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-grid img:hover { transform: scale(1.03); }

/* ---------- Table ---------- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table th {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
}

.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--color-bg-warm); }

/* ---------- List Styles ---------- */
.check-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--color-text);
}

.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* ---------- Highlight Box ---------- */
.highlight-box {
  background: var(--color-bg-warm);
  border-left: 4px solid var(--color-primary);
  padding: 24px 28px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}

.highlight-box p { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 48px;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: block;
  padding: 4px 0;
  transition: color 0.3s;
}

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

.footer-phone {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-secondary) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom a { color: rgba(255, 255, 255, 0.5); }

/* ---------- Privacy Page ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content ul li {
  list-style: disc;
  padding: 4px 0;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .hero { min-height: 90vh; }
  .stats-bar { gap: 24px; }
  .stat-number { font-size: 2rem; }
  .page-hero { padding: 120px 0 60px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .trust-items { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
}
