/* ==========================================
   MYSTIC SHADOW - WARM & FRIENDLY DESIGN
   ========================================== */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #3d3d3d;
  background-color: #faf8f5;
  overflow-x: hidden;
}

/* WARM & FRIENDLY COLOR PALETTE */
:root {
  --primary: #d97757;
  --primary-dark: #c45a3a;
  --secondary: #f4a261;
  --accent: #e9c46a;
  --warm-bg: #faf8f5;
  --warm-white: #fff9f0;
  --text-dark: #3d3d3d;
  --text-light: #6b6b6b;
  --border: #e8d5c4;
  --shadow: rgba(217, 119, 87, 0.15);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
}

h2 {
  font-size: 32px;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  color: var(--text-light);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: var(--text-light);
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* BUTTONS - WARM & FRIENDLY */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  box-shadow: 0 4px 15px var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow);
  color: white;
}

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

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow);
}

.btn-link {
  background: transparent;
  color: var(--primary);
  padding: 8px 16px;
  font-weight: 600;
}

.btn-link:hover {
  background: rgba(217, 119, 87, 0.1);
  border-radius: 8px;
}

/* HEADER */
header {
  background: white;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--shadow);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px var(--shadow);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: white;
  z-index: 999;
  transition: right 0.4s ease;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  padding: 80px 30px 30px;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--text-dark);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(217, 119, 87, 0.1);
  color: var(--primary);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  padding: 16px 20px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.mobile-nav a:hover {
  background: rgba(217, 119, 87, 0.1);
  color: var(--primary);
  transform: translateX(5px);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, rgba(217, 119, 87, 0.1) 0%, rgba(244, 162, 97, 0.1) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-badge {
  display: inline-block;
  padding: 12px 24px;
  background: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* HERO INTERNAL */
.hero-internal {
  background: linear-gradient(135deg, rgba(217, 119, 87, 0.1) 0%, rgba(244, 162, 97, 0.1) 100%);
  padding: 60px 20px 40px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--primary);
}

.subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.intro-text,
.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* VALUE PROPOSITION */
.value-proposition {
  text-align: center;
}

.value-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.value-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: white;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow);
}

.value-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 22px;
}

.value-card p {
  color: var(--text-light);
  font-size: 15px;
}

/* SERVICES GRID */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.service-card {
  flex: 1;
  min-width: 320px;
  max-width: 380px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow);
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p {
  flex: 1;
  margin-bottom: 16px;
  color: var(--text-light);
}

.service-card .price {
  font-weight: 700;
  color: var(--secondary);
  font-size: 18px;
  margin-bottom: 16px;
}

.service-card .btn-link {
  align-self: flex-start;
}

/* APPROACH PILLARS */
.approach-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.pillar {
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.pillar h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 12px;
}

.pillar p {
  color: var(--text-light);
  font-size: 15px;
}

/* TESTIMONIALS */
.testimonials {
  background: white;
  border-radius: 40px;
  padding: 60px 20px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1;
  min-width: 320px;
  max-width: 500px;
  background: rgba(217, 119, 87, 0.05);
  padding: 32px;
  border-radius: 20px;
  border-left: 4px solid var(--primary);
  margin-bottom: 20px;
}

.testimonial-card .quote {
  font-style: italic;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.7;
}

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

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  margin-bottom: 20px;
}

.step h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  color: var(--text-light);
  font-size: 15px;
}

/* CTA SECTIONS */
.cta-final,
.cta-about,
.cta-services,
.cta-approach,
.cta-blog,
.cta-contact {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  text-align: center;
  padding: 60px 20px;
  border-radius: 40px;
  margin: 60px 0;
}

.cta-final h2,
.cta-about h2,
.cta-services h2,
.cta-approach h2,
.cta-blog h2,
.cta-contact h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-final p,
.cta-about p,
.cta-services p,
.cta-approach p,
.cta-blog p,
.cta-contact p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: white;
  color: var(--primary);
}

.cta-buttons .btn-primary:hover {
  background: var(--warm-white);
  transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-buttons .btn-secondary:hover {
  background: white;
  color: var(--primary);
}

.reassurance {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* FOOTER */
footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 20px 20px;
  border-radius: 40px 40px 0 0;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-col p,
.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col nav a:hover {
  color: var(--accent);
  transform: translateX(3px);
  display: inline-block;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* ABOUT PAGE SPECIFIC */
.mission-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
}

.mission,
.vision {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.mission h3,
.vision h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

.core-values {
  margin-top: 60px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.value {
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.value h4 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 18px;
}

.value p {
  color: var(--text-light);
  font-size: 14px;
}

/* TIMELINE */
.timeline {
  margin: 60px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.milestone {
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary);
  margin-bottom: 20px;
}

.milestone h3 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 12px;
}

.milestone p {
  color: var(--text-light);
  font-size: 15px;
}

/* TEAM */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.team-member {
  flex: 1;
  min-width: 300px;
  max-width: 360px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin-bottom: 20px;
}

.team-member h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 24px;
}

.team-member .title {
  color: var(--secondary);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
  display: block;
}

.team-member p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

/* CREDENTIALS */
.credentials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}

.credential {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  padding: 16px 24px;
  background: white;
  border-radius: 50px;
  text-align: center;
  font-weight: 600;
  color: var(--primary);
  border: 2px solid var(--border);
  font-size: 14px;
}

/* PHILOSOPHY */
.philosophy-points {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.point {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.point h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 22px;
}

.point p {
  color: var(--text-light);
  line-height: 1.7;
}

/* SERVICE DETAILED */
.service-detailed {
  margin-bottom: 60px;
}

.service-detailed.alt {
  background: rgba(217, 119, 87, 0.05);
  border-radius: 40px;
  padding: 60px 20px;
}

.service-content {
  max-width: 800px;
  margin: 0 auto;
}

.tagline {
  font-size: 20px;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 24px;
}

.service-content ul {
  margin: 24px 0;
}

.service-content li {
  padding-left: 8px;
  margin-bottom: 12px;
  color: var(--text-light);
}

.service-details {
  background: white;
  padding: 24px;
  border-radius: 16px;
  margin: 32px 0;
  border-left: 4px solid var(--primary);
}

.service-details p {
  margin-bottom: 8px;
  color: var(--text-dark);
}

.service-details strong {
  color: var(--primary);
}

/* PHASES */
.phases {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.phase {
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.phase h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 12px;
}

.phase p {
  color: var(--text-light);
  font-size: 15px;
}

/* PRINCIPLES */
.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.principle {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.principle h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 22px;
}

/* FRAMEWORK LAYERS */
.framework-layers {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.layer {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary);
}

.layer h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 22px;
}

/* METHOD */
.method {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}

.method h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 22px;
}

.method p {
  color: var(--text-light);
  line-height: 1.7;
}

/* BLOG */
.blog-featured {
  margin-bottom: 60px;
}

.featured-article {
  background: white;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
}

.article-category {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(217, 119, 87, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.excerpt {
  font-size: 18px;
  color: var(--text-light);
  margin: 24px 0;
  line-height: 1.7;
}

.article-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-light);
}

/* BLOG CATEGORIES */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.category-card {
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow);
}

.category-card h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 12px;
}

.category-card p {
  color: var(--text-light);
  font-size: 14px;
}

/* ARTICLES GRID */
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.article-card {
  flex: 1;
  min-width: 300px;
  max-width: 360px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow);
}

.category-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(217, 119, 87, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.article-card h3 {
  color: var(--text-dark);
  font-size: 20px;
  margin-bottom: 12px;
}

.article-card p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* RESOURCES */
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.resource-card {
  flex: 1;
  min-width: 300px;
  max-width: 360px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin-bottom: 20px;
}

.resource-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 22px;
}

.resource-card p {
  color: var(--text-light);
  margin-bottom: 24px;
}

/* POPULAR LIST */
.popular-list {
  max-width: 700px;
  margin: 40px auto 0;
  list-style: none;
  counter-reset: popular-counter;
}

.popular-list li {
  counter-increment: popular-counter;
  background: white;
  padding: 20px 24px 20px 60px;
  border-radius: 12px;
  margin-bottom: 16px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.popular-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px var(--shadow);
}

.popular-list li::before {
  content: counter(popular-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.popular-list li a {
  color: var(--text-dark);
  font-weight: 500;
}

.popular-list li a:hover {
  color: var(--primary);
}

/* CONTACT PAGE */
.contact-options {
  margin-bottom: 60px;
}

.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.option {
  flex: 1;
  min-width: 300px;
  max-width: 360px;
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin-bottom: 20px;
}

.option h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 22px;
}

.option p {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* FORM */
.form-container {
  max-width: 700px;
  margin: 40px auto;
}

.form-placeholder {
  background: white;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-note {
  background: rgba(217, 119, 87, 0.1);
  padding: 24px;
  border-radius: 12px;
  margin: 24px 0;
  border-left: 4px solid var(--primary);
}

.form-note p {
  margin-bottom: 8px;
  color: var(--text-dark);
}

/* LOCATION */
.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
  align-items: flex-start;
}

.address-info {
  flex: 1;
  min-width: 300px;
}

.address-info h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

.address-info h4 {
  color: var(--text-dark);
  margin-top: 24px;
  margin-bottom: 12px;
}

.address-info ul {
  list-style: none;
  margin-left: 0;
}

.address-info li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.address-info li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.map-placeholder {
  flex: 1;
  min-width: 300px;
  height: 400px;
  background: rgba(217, 119, 87, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: 500;
}

/* OFFICE HOURS */
.hours-table {
  max-width: 500px;
  margin: 40px auto;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: white;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hours-row span:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

.hours-row span:last-child {
  color: var(--primary);
  font-weight: 600;
}

/* EMERGENCY RESOURCES */
.emergency-resources {
  background: rgba(217, 119, 87, 0.1);
  padding: 48px 20px;
  border-radius: 20px;
  margin: 60px 0;
}

.emergency-list {
  max-width: 600px;
  margin: 24px auto 0;
  list-style: none;
}

.emergency-list li {
  background: white;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 12px;
  border-left: 4px solid var(--primary);
  margin-left: 0;
}

.emergency-list strong {
  color: var(--primary);
}

/* LEGAL PAGES */
.hero-legal {
  background: linear-gradient(135deg, rgba(217, 119, 87, 0.1) 0%, rgba(244, 162, 97, 0.1) 100%);
  padding: 60px 20px 40px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 40px;
}

.last-updated {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

.legal-content {
  padding: 20px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.content-wrapper h2 {
  color: var(--primary);
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-wrapper h3 {
  color: var(--secondary);
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-wrapper p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.content-wrapper ul,
.content-wrapper ol {
  margin-bottom: 16px;
  margin-left: 24px;
}

.content-wrapper li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, rgba(217, 119, 87, 0.1) 0%, rgba(244, 162, 97, 0.1) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px var(--shadow);
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  background: white;
  padding: 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.suggestion {
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.suggestion h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

.emergency-box {
  background: white;
  padding: 32px;
  border-radius: 20px;
  max-width: 600px;
  margin: 32px auto 0;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.emergency-box h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

.emergency-box ul {
  list-style: none;
  margin-left: 0;
}

.emergency-box li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.emergency-box li:last-child {
  border-bottom: none;
}

.social-proof-thank-you {
  text-align: center;
  padding: 40px 20px;
}

.nav-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* PRICING INFO */
.pricing-info {
  background: white;
  border-radius: 40px;
  padding: 60px 20px;
  margin: 60px 0;
}

.payment-options {
  max-width: 600px;
  margin: 32px auto 0;
  background: rgba(217, 119, 87, 0.05);
  padding: 32px;
  border-radius: 20px;
}

.payment-options h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

.payment-options ul {
  list-style: none;
  margin-left: 0;
}

.payment-options li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.payment-options li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* BOOKING PROCESS */
.note {
  text-align: center;
  margin-top: 32px;
  padding: 20px;
  background: rgba(217, 119, 87, 0.1);
  border-radius: 12px;
  color: var(--text-dark);
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 20px;
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  color: var(--text-dark);
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-accept {
  background: var(--primary);
  color: white;
  border: none;
}

.btn-accept:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-reject {
  background: white;
  color: var(--text-dark);
  border: 2px solid var(--border);
}

.btn-reject:hover {
  border-color: var(--text-dark);
}

.btn-settings {
  background: transparent;
  color: var(--primary);
  border: none;
  text-decoration: underline;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cookie-modal h2 {
  color: var(--primary);
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: rgba(217, 119, 87, 0.05);
  border-radius: 12px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: var(--primary);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cookie-modal-buttons button {
  flex: 1;
  min-width: 140px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Flexbox adjustments for mobile */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  .value-cards,
  .services-grid,
  .approach-pillars,
  .process-steps {
    flex-direction: column;
  }
  
  .value-card,
  .service-card,
  .pillar,
  .step {
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-col {
    width: 100%;
  }
  
  /* Cookie consent mobile */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Modal mobile */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
  
  /* Legal content */
  .content-wrapper {
    padding: 24px;
  }
  
  /* Contact */
  .location-content {
    flex-direction: column;
  }
  
  .map-placeholder {
    height: 300px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .mobile-menu {
    width: 280px;
  }
  
  section {
    padding: 30px 15px;
  }
  
  .hero,
  .hero-internal {
    padding: 50px 15px 30px;
  }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* ACCESSIBILITY */
*:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none;
  }
}