/* ===================================
   CSS RESET & BASE STYLES
   =================================== */

* {
  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', Roboto, Arial, sans-serif;
  line-height: 1.7;
  color: #4a4a4a;
  background: linear-gradient(135deg, #fef5f9 0%, #f9f3f8 50%, #f5f0f7 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* ===================================
   SOFT PASTEL COLOR PALETTE
   =================================== */

:root {
  --pastel-pink: #ffd4e5;
  --pastel-lavender: #e5d4ff;
  --pastel-blue: #d4f1ff;
  --pastel-mint: #d4ffe5;
  --pastel-peach: #ffe5d4;
  --pastel-cream: #fff9f0;
  --soft-purple: #c8b8db;
  --soft-rose: #f2c8d4;
  --text-dark: #5a5a5a;
  --text-medium: #7a7a7a;
  --text-light: #9a9a9a;
  --white: #ffffff;
  --shadow-soft: 0 4px 20px rgba(200, 184, 219, 0.15);
  --shadow-hover: 0 8px 30px rgba(200, 184, 219, 0.25);
}

/* ===================================
   TYPOGRAPHY - SOFT & DREAMY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 300;
  line-height: 1.3;
  color: var(--soft-purple);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 32px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-dark);
}

strong {
  font-weight: 600;
  color: var(--soft-purple);
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===================================
   HEADER - DREAMY & FLOATING
   =================================== */

header {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-pink) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(200, 184, 219, 0.3));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05) rotate(2deg);
}

/* ===================================
   NAVIGATION - SOFT & GENTLE
   =================================== */

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

.main-nav a {
  color: var(--soft-purple);
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
}

.main-nav a:hover {
  background: var(--white);
  color: var(--soft-rose);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 200, 212, 0.3);
}

/* ===================================
   MOBILE MENU - DREAMY SLIDE
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  border: none;
  color: var(--white);
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: var(--shadow-hover);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, var(--pastel-lavender) 0%, var(--pastel-pink) 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(200, 184, 219, 0.2);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  border: none;
  color: var(--soft-purple);
  font-size: 32px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  background: var(--pastel-cream);
}

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

.mobile-nav a {
  color: var(--soft-purple);
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background: var(--white);
  color: var(--soft-rose);
  transform: translateX(-5px);
  box-shadow: var(--shadow-soft);
}

/* ===================================
   HERO SECTION - DREAMY & FLOATING
   =================================== */

.hero {
  background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-lavender) 50%, var(--pastel-pink) 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 10px 40px rgba(200, 184, 219, 0.2);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  font-size: 56px;
  font-weight: 300;
  text-shadow: 0 4px 20px rgba(200, 184, 219, 0.4);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.trust-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  color: var(--soft-purple);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 20px;
  box-shadow: var(--shadow-soft);
}

/* ===================================
   BUTTONS - SOFT & INVITING
   =================================== */

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

.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pastel-pink), var(--soft-rose));
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(135deg, var(--soft-rose), var(--pastel-pink));
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--soft-purple);
  border: 2px solid var(--pastel-lavender);
}

.btn-secondary:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--soft-purple);
}

/* ===================================
   PROBLEM-SOLUTION SECTION
   =================================== */

.problem-solution {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(255, 249, 240, 0.8), rgba(245, 240, 247, 0.8));
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-soft);
}

.problem-solution h2 {
  text-align: center;
  color: var(--soft-purple);
  margin-bottom: 16px;
}

.problem-solution > p {
  text-align: center;
  font-size: 18px;
  color: var(--soft-rose);
  margin-bottom: 40px;
}

.problem-solution ul {
  max-width: 700px;
  margin: 0 auto;
}

.problem-solution li {
  padding: 16px 16px 16px 40px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  position: relative;
  color: var(--text-dark);
  box-shadow: 0 2px 10px rgba(200, 184, 219, 0.1);
}

.problem-solution li::before {
  content: '✨';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

/* ===================================
   SERVICES & CARDS - DREAMY GRID
   =================================== */

.services {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.services h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 50px;
}

.service-grid, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card, .card, .neighborhood-card, .contact-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(249, 243, 248, 0.9));
  padding: 32px;
  border-radius: 25px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover, .card:hover, .neighborhood-card:hover, .contact-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(135deg, var(--white), rgba(255, 249, 240, 0.95));
}

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

.service-card p, .card p, .neighborhood-card p {
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.7;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--soft-rose);
  margin: 20px 0;
  display: block;
}

.savings {
  font-size: 14px;
  color: var(--pastel-mint);
  font-weight: 600;
  background: linear-gradient(135deg, var(--soft-purple), var(--soft-rose));
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 8px;
}

/* ===================================
   TESTIMONIALS - SOFT CARDS
   =================================== */

.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--pastel-cream), var(--pastel-peach));
  margin-bottom: 60px;
  border-radius: 30px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 80px;
  color: var(--pastel-lavender);
  position: absolute;
  top: -10px;
  left: 20px;
  opacity: 0.5;
  font-family: Georgia, serif;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--soft-purple);
  font-style: normal;
  margin-top: 16px;
  text-align: right;
}

/* ===================================
   CTA BOXES - HIGHLIGHTED SECTIONS
   =================================== */

.cta-box, .cta-final {
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-blue));
  padding: 48px;
  border-radius: 30px;
  text-align: center;
  margin: 60px 0;
  box-shadow: var(--shadow-hover);
}

.cta-box h3, .cta-final h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-box p, .cta-final p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-final {
  padding: 80px 40px;
}

.contact-info {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 16px;
}

/* ===================================
   CONTENT SECTIONS
   =================================== */

.content, .legal-content {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.content h2, .legal-content h2 {
  margin-top: 48px;
  margin-bottom: 24px;
}

.content h3, .legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.content ul, .content ol, .legal-content ul, .legal-content ol {
  margin: 24px 0;
  padding-left: 24px;
}

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

/* ===================================
   NEIGHBORHOODS & CONTACT
   =================================== */

.neighborhoods {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.contact {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.contact h2 {
  text-align: center;
  margin-bottom: 48px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 60px;
}

.contact-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 400px;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq {
  margin-top: 48px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.8);
  padding: 24px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-hover);
}

.faq-item h3 {
  color: var(--soft-purple);
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: var(--text-dark);
  margin-bottom: 0;
}

/* ===================================
   FOOTER - SOFT & GROUNDED
   =================================== */

footer {
  background: linear-gradient(135deg, var(--pastel-lavender), var(--soft-purple));
  padding: 60px 20px 30px;
  color: var(--white);
  margin-top: 80px;
  border-radius: 50px 50px 0 0;
}

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

.footer-section {
  flex: 1 1 280px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  padding: 8px 0;
}

.footer-nav a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* ===================================
   COOKIE CONSENT BANNER - DREAMY
   =================================== */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-pink));
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(200, 184, 219, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#cookie-banner.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 1 400px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 28px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.cookie-btn-accept {
  background: var(--white);
  color: var(--soft-purple);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.cookie-btn-reject {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 2px solid var(--white);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.3);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cookie-btn-settings:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ===================================
   COOKIE SETTINGS MODAL
   =================================== */

#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(200, 184, 219, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#cookie-modal.show {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: linear-gradient(135deg, var(--white), var(--pastel-cream));
  padding: 48px;
  border-radius: 30px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(200, 184, 219, 0.4);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

#cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.cookie-modal-header h2 {
  color: var(--soft-purple);
  margin-bottom: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--soft-purple);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: var(--pastel-lavender);
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(200, 184, 219, 0.1);
}

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

.cookie-category h3 {
  color: var(--soft-purple);
  margin-bottom: 0;
  font-size: 18px;
}

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

.cookie-toggle {
  position: relative;
  width: 56px;
  height: 28px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--text-light);
  border-radius: 28px;
  transition: 0.3s;
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background: var(--white);
  border-radius: 50%;
  transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: linear-gradient(135deg, var(--soft-rose), var(--soft-purple));
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(28px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  background: var(--pastel-mint);
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  .service-grid, .card-container, .content-grid,
  .testimonial-grid, .neighborhood-grid {
    flex-direction: column;
  }
  
  .service-card, .card, .neighborhood-card,
  .testimonial-card, .contact-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  .cookie-modal-footer {
    flex-direction: column;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card, .card, .neighborhood-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */

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

.section {
  animation: fadeIn 0.6s ease-out;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  body {
    background: white;
  }
}