/* ============================================
   LUCIDPANEL - SOFT PASTEL DESIGN SYSTEM
   Comprehensive CSS Styles for All Pages
   ============================================ */

/* ============================================
   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', Arial, sans-serif;
  line-height: 1.7;
  color: #4a4a4a;
  background: linear-gradient(135deg, #fef5f8 0%, #fff9f0 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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 {
  /* Primary Pastel Colors */
  --pastel-pink: #ffd6e0;
  --pastel-lavender: #e4d4f4;
  --pastel-blue: #d4e4f7;
  --pastel-mint: #d4f4e7;
  --pastel-peach: #ffe4d6;
  --pastel-cream: #fff9f0;
  
  /* Supporting Colors */
  --soft-gray: #e8e4e1;
  --text-primary: #5a5a5a;
  --text-secondary: #8a8a8a;
  --text-light: #b0b0b0;
  --white: #ffffff;
  
  /* Gradient Overlays */
  --gradient-pink: linear-gradient(135deg, #ffd6e0 0%, #ffe4d6 100%);
  --gradient-lavender: linear-gradient(135deg, #e4d4f4 0%, #d4e4f7 100%);
  --gradient-soft: linear-gradient(135deg, #fff9f0 0%, #fef5f8 100%);
  
  /* Spacing System */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-xxl: 64px;
  
  /* Typography Scale */
  --font-xs: 14px;
  --font-sm: 16px;
  --font-md: 18px;
  --font-lg: 24px;
  --font-xl: 32px;
  --font-xxl: 48px;
  
  /* Border Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-round: 50%;
  
  /* Shadows */
  --shadow-sm: 0 2px 15px rgba(255, 214, 224, 0.15);
  --shadow-md: 0 4px 25px rgba(255, 214, 224, 0.2);
  --shadow-lg: 0 8px 35px rgba(255, 214, 224, 0.25);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--font-xxl);
  letter-spacing: -0.5px;
}

h2 {
  font-size: var(--font-xl);
  letter-spacing: -0.3px;
}

h3 {
  font-size: var(--font-lg);
}

h4 {
  font-size: var(--font-md);
}

p {
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

blockquote {
  font-family: 'Merriweather', Georgia, serif;
  font-size: var(--font-md);
  font-style: italic;
  color: var(--text-primary);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  background: var(--pastel-lavender);
  border-left: 4px solid var(--pastel-pink);
  border-radius: var(--radius-sm);
}

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

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

/* ============================================
   HEADER
   ============================================ */

header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--soft-gray);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  gap: var(--space-lg);
}

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

.main-nav {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.main-nav a {
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--text-primary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background: var(--pastel-pink);
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 2000;
  background: var(--pastel-pink);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  font-size: 24px;
  color: var(--text-primary);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--pastel-lavender);
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: var(--white);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  z-index: 1999;
  padding: var(--space-xxl) var(--space-lg);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--pastel-peach);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-size: 24px;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.mobile-nav a {
  padding: var(--space-sm) var(--space-md);
  background: var(--pastel-cream);
  border-radius: var(--radius-sm);
  font-size: var(--font-md);
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: var(--pastel-pink);
  transform: translateX(5px);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-size: var(--font-sm);
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 160px;
}

.btn-primary {
  background: var(--gradient-pink);
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
  background: var(--pastel-pink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
  background: var(--gradient-soft);
  padding: var(--space-xxl) var(--space-md);
  margin-bottom: var(--space-xxl);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: var(--pastel-lavender);
  border-radius: var(--radius-round);
  opacity: 0.3;
  filter: blur(80px);
}

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

.hero h1 {
  font-size: var(--font-xxl);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: var(--font-md);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.trust-badge {
  margin-top: var(--space-lg);
  font-size: var(--font-xs);
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb {
  font-size: var(--font-xs);
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

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

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

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

section {
  margin-bottom: var(--space-xxl);
  padding: var(--space-xl) var(--space-md);
}

.section-intro {
  text-align: center;
  font-size: var(--font-md);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto var(--space-xl) auto;
}

section h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: var(--font-xl);
}

/* ============================================
   CARDS & GRIDS
   ============================================ */

.value-grid,
.service-grid,
.testimonial-grid,
.contact-grid,
.team-grid,
.category-grid,
.benefits-grid,
.circle-grid,
.event-grid,
.article-grid,
.steps-grid,
.suggestions-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.value-card,
.service-card,
.testimonial-card,
.contact-item,
.team-member,
.category-card,
.benefit,
.circle-card,
.event-card,
.article-card,
.step,
.suggestion-card,
.link-card,
.contact-method,
.contact-person {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: var(--space-md);
}

.value-card:hover,
.service-card:hover,
.category-card:hover,
.benefit:hover,
.circle-card:hover,
.event-card:hover,
.article-card:hover,
.suggestion-card:hover,
.link-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.value-card {
  background: var(--gradient-lavender);
  text-align: center;
}

.service-card {
  background: var(--pastel-cream);
  border: 2px solid var(--pastel-pink);
}

.service-card h3 {
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.service-card .price {
  font-size: var(--font-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-top: var(--space-md);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  background: var(--pastel-mint);
  border-radius: var(--radius-lg);
  padding: var(--space-xxl) var(--space-md);
}

.testimonial-card {
  background: var(--white);
  padding: var(--space-xl);
  border-left: 4px solid var(--pastel-pink);
}

.testimonial-card .quote {
  font-size: var(--font-md);
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.testimonial-card .role {
  font-size: var(--font-xs);
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   PROCESS STEPS
   ============================================ */

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
  margin-top: var(--space-xl);
}

.step {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  margin-bottom: var(--space-md);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--gradient-pink);
  border-radius: var(--radius-round);
  font-size: var(--font-lg);
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md) auto;
  box-shadow: var(--shadow-md);
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-banner,
.cta-section {
  background: var(--gradient-lavender);
  padding: var(--space-xxl) var(--space-md);
  border-radius: var(--radius-lg);
  text-align: center;
  margin: var(--space-xxl) 0;
}

.cta-banner h2,
.cta-section h2 {
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

/* ============================================
   DETAILED SERVICE SECTIONS
   ============================================ */

.service-detailed {
  background: var(--white);
  padding: var(--space-xxl) var(--space-md);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.service-number {
  position: absolute;
  top: -20px;
  left: var(--space-lg);
  font-size: 72px;
  font-weight: 700;
  color: var(--pastel-pink);
  opacity: 0.3;
  font-family: 'Merriweather', serif;
}

.service-detailed h2 {
  text-align: left;
  margin-bottom: var(--space-sm);
}

.tagline {
  font-size: var(--font-md);
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.description {
  font-size: var(--font-sm);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.price {
  font-size: var(--font-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin: var(--space-md) 0;
}

.features {
  list-style: none;
  margin: var(--space-lg) 0;
  padding: 0;
}

.features li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-lg);
  position: relative;
  color: var(--text-secondary);
}

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--text-primary);
  font-weight: 700;
  font-size: var(--font-md);
}

.ideal-for {
  background: var(--pastel-cream);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  margin: var(--space-lg) 0;
  font-style: italic;
  color: var(--text-secondary);
}

/* ============================================
   TIMELINE
   ============================================ */

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

.milestone {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  align-items: flex-start;
  position: relative;
}

.milestone .year {
  flex-shrink: 0;
  font-size: var(--font-lg);
  font-weight: 700;
  color: var(--text-primary);
  background: var(--pastel-pink);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
}

/* ============================================
   STATS
   ============================================ */

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: center;
  margin: var(--space-xl) 0;
}

.stat {
  text-align: center;
  flex: 1 1 200px;
}

.stat strong {
  display: block;
  font-size: var(--font-xxl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.stat span {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   BADGES & LABELS
   ============================================ */

.badge,
.category {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--pastel-peach);
  color: var(--text-primary);
  border-radius: var(--radius-lg);
  font-size: var(--font-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

/* ============================================
   FEATURED EVENT
   ============================================ */

.featured-event,
.featured-article {
  background: var(--gradient-pink);
  padding: var(--space-xxl) var(--space-md);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xxl);
  box-shadow: var(--shadow-lg);
}

.featured-event .subtitle,
.featured-article .subtitle {
  font-size: var(--font-md);
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.featured-event .date,
.featured-article .date {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.featured-event .location {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.meta {
  font-size: var(--font-xs);
  color: var(--text-light);
  margin-top: var(--space-sm);
}

/* ============================================
   CONTACT INFO
   ============================================ */

.contact-info {
  background: var(--white);
  padding: var(--space-xxl) var(--space-md);
  border-radius: var(--radius-lg);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: center;
  margin-top: var(--space-xl);
}

.contact-item {
  flex: 1 1 280px;
  text-align: center;
  padding: var(--space-xl);
  background: var(--pastel-cream);
  border-radius: var(--radius-md);
}

.contact-item h3 {
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.contact-item a {
  color: var(--text-primary);
  font-weight: 600;
}

.contact-item a:hover {
  color: var(--text-secondary);
}

/* ============================================
   FORM ELEMENTS
   ============================================ */

.contact-form-section {
  background: var(--white);
  padding: var(--space-xxl) var(--space-md);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
}

.form-notice {
  background: var(--pastel-mint);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--pastel-pink);
  margin-top: var(--space-lg);
}

.form-notice p {
  margin-bottom: var(--space-sm);
}

.form-notice strong {
  color: var(--text-primary);
}

/* ============================================
   OPENING HOURS
   ============================================ */

.opening-hours {
  background: var(--pastel-cream);
  padding: var(--space-xxl) var(--space-md);
  border-radius: var(--radius-lg);
}

.hours-list {
  max-width: 600px;
  margin: var(--space-lg) auto 0 auto;
}

.hours-list p {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-xs);
  background: var(--white);
  border-radius: var(--radius-sm);
}

/* ============================================
   TEAM CONTACT
   ============================================ */

.team-contact {
  padding: var(--space-xxl) var(--space-md);
}

.team-contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
  margin-top: var(--space-xl);
}

.contact-person {
  flex: 1 1 300px;
  text-align: center;
  background: var(--pastel-lavender);
}

.contact-person .role {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-hero {
  background: var(--gradient-soft);
  padding: var(--space-xxl) var(--space-md);
  text-align: center;
}

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

.icon-checkmark {
  width: 100px;
  height: 100px;
  background: var(--pastel-mint);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--text-primary);
  margin: 0 auto var(--space-lg) auto;
  box-shadow: var(--shadow-lg);
}

.thank-you-hero .subtitle {
  font-size: var(--font-md);
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.confirmation {
  font-size: var(--font-sm);
  color: var(--text-light);
}

.next-steps,
.while-you-wait,
.quick-links {
  padding: var(--space-xxl) var(--space-md);
}

.contact-info-compact {
  background: var(--pastel-cream);
  padding: var(--space-xxl) var(--space-md);
  text-align: center;
  border-radius: var(--radius-lg);
}

.contact-headline {
  font-size: var(--font-md);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.contact-details {
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-hero {
  background: var(--pastel-lavender);
  padding: var(--space-xxl) var(--space-md);
  text-align: center;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.legal-content {
  padding: var(--space-xxl) var(--space-md);
}

.text-section {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: var(--space-xxl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.text-section h2 {
  text-align: left;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.text-section h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.text-section ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.text-section li {
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--gradient-lavender);
  padding: var(--space-xxl) var(--space-md) var(--space-lg) var(--space-md);
  margin-top: var(--space-xxl);
  border-top: 1px solid var(--soft-gray);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: space-between;
  margin-bottom: var(--space-xl);
}

.footer-section {
  flex: 1 1 250px;
  margin-bottom: var(--space-lg);
}

.footer-section h3 {
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  font-size: var(--font-md);
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-nav a {
  color: var(--text-secondary);
  font-size: var(--font-sm);
  transition: all 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--soft-gray);
  color: var(--text-light);
  font-size: var(--font-xs);
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: var(--space-lg) var(--space-md);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid var(--pastel-pink);
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: var(--text-secondary);
  font-size: var(--font-sm);
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 10px 20px;
  min-width: 120px;
  font-size: var(--font-xs);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2001;
  padding: var(--space-md);
}

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

.cookie-modal-content {
  background: var(--white);
  padding: var(--space-xxl);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.cookie-modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--pastel-peach);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-category {
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  background: var(--pastel-cream);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.cookie-category-info h4 {
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.cookie-category-info p {
  font-size: var(--font-xs);
  color: var(--text-secondary);
}

.cookie-toggle {
  position: relative;
  width: 60px;
  height: 30px;
  background: var(--soft-gray);
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Mobile Menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  /* Hero */
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Cards */
  .value-card,
  .service-card,
  .testimonial-card,
  .benefit,
  .circle-card,
  .event-card,
  .article-card,
  .step,
  .suggestion-card,
  .link-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Process Steps */
  .process-steps {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* Text Sections */
  .text-section {
    padding: var(--space-lg);
  }
  
  /* Timeline */
  .milestone {
    flex-direction: column;
  }
  
  /* Stats */
  .stats {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  /* Hours List */
  .hours-list p {
    flex-direction: column;
    text-align: center;
    gap: var(--space-xs);
  }
  
  /* Contact Grid */
  .contact-grid {
    flex-direction: column;
  }
  
  .contact-item {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .value-card,
  .service-card,
  .benefit,
  .circle-card,
  .event-card,
  .article-card {
    flex: 1 1 45%;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Apply animations */
.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.value-card,
.service-card,
.testimonial-card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }

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

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

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

/* ============================================
   ACCESSIBILITY
   ============================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

*:focus-visible {
  outline: 3px solid var(--pastel-pink);
  outline-offset: 2px;
}

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

@media print {
  header,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  footer {
    display: none;
  }
  
  body {
    background: white;
  }
  
  a {
    text-decoration: underline;
  }
}
.values-grid {
    display: flex;
    gap: 20px;
}
/* ============================================
   END OF STYLESHEET
   ============================================ */