/* ===================================
   MARKVEXO - SOFT PASTEL DESIGN SYSTEM
   Comprehensive CSS for All Pages
   Design Style: Soft Pastel
   =================================== */

/* ===================================
   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: #4a5568;
  background: linear-gradient(135deg, #fef5e7 0%, #fce8f3 50%, #e8f4f8 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #d4a5a5;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #d4a5a5 0%, #c6a0b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  color: #d4a5a5;
}

h3 {
  font-size: 24px;
  color: #c6a0b0;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #6b7280;
}

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

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

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(212, 165, 165, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(212, 165, 165, 0.2));
}

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

.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: #d4a5a5;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffc1e3 0%, #d4a5a5 100%);
  transition: width 0.3s ease;
}

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

.nav-menu a:hover {
  color: #c6a0b0;
}

/* ===================================
   BUTTONS - SOFT PASTEL STYLE
   =================================== */

.btn-primary,
.btn-secondary,
.cta-button {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 15px rgba(212, 165, 165, 0.2);
}

.btn-primary,
.cta-button {
  background: linear-gradient(135deg, #ffc1e3 0%, #d4a5a5 100%);
  color: #ffffff;
}

.btn-primary:hover,
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(212, 165, 165, 0.3);
  background: linear-gradient(135deg, #ffb3dc 0%, #c99595 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #d4a5a5;
  border: 2px solid #ffc1e3;
}

.btn-secondary:hover {
  background: #ffc1e3;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(212, 165, 165, 0.3);
}

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

.mobile-menu-toggle {
  display: none;
  font-size: 28px;
  color: #d4a5a5;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 16px;
  border-radius: 12px;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1001;
  box-shadow: 0 4px 15px rgba(212, 165, 165, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #ffc1e3;
  color: #ffffff;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #fef5e7 100%);
  box-shadow: -4px 0 30px rgba(212, 165, 165, 0.3);
  z-index: 1002;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: #d4a5a5;
  background: rgba(255, 193, 227, 0.2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #ffc1e3;
  color: #ffffff;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #d4a5a5;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
}

.mobile-nav a:hover {
  background: #ffc1e3;
  color: #ffffff;
  transform: translateX(8px);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
  }
  
  .main-nav .cta-button {
    display: none;
  }
}

/* ===================================
   HERO SECTIONS - DREAMY ATMOSPHERE
   =================================== */

.hero,
.page-hero,
.error-hero,
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #fef5e7 0%, #fce8f3 50%, #e8f4f8 100%);
  position: relative;
  overflow: hidden;
}

.hero::before,
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 193, 227, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero h1 {
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 20px;
  color: #c6a0b0;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #6b7280;
}

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

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

.trust-badges span {
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  color: #d4a5a5;
  box-shadow: 0 4px 15px rgba(212, 165, 165, 0.15);
}

/* ===================================
   BREADCRUMB NAVIGATION
   =================================== */

.breadcrumb {
  font-size: 14px;
  color: #c6a0b0;
  margin-bottom: 24px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #d4a5a5;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #ffc1e3;
}

/* ===================================
   CARD LAYOUTS - FLEXBOX ONLY
   =================================== */

.value-grid,
.services-grid,
.guides-grid,
.benefits-grid,
.testimonial-grid,
.stats-grid,
.suggestions-grid,
.options-grid,
.info-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.value-card,
.service-card,
.guide-card,
.benefit-card,
.testimonial-card,
.stat-card,
.suggestion-card,
.option-card,
.info-block {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.9);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(212, 165, 165, 0.15);
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 20px;
}

.value-card:hover,
.service-card:hover,
.guide-card:hover,
.benefit-card:hover,
.option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212, 165, 165, 0.25);
}

.testimonial-card {
  background: linear-gradient(135deg, #fef5e7 0%, #ffffff 100%);
  border-left: 4px solid #ffc1e3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  font-style: italic;
  color: #4a5568;
  font-size: 16px;
  line-height: 1.8;
}

.testimonial-card cite {
  color: #d4a5a5;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
}

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

.stat-card {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffc1e3 0%, #d4a5a5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #6b7280;
}

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

.badge {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, #ffc1e3 0%, #d4a5a5 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 193, 227, 0.2);
  color: #d4a5a5;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* ===================================
   PRICE DISPLAY
   =================================== */

.price,
.guide-price .price,
.service-price .price {
  font-size: 32px;
  font-weight: 700;
  color: #d4a5a5;
  display: block;
  margin: 20px 0;
}

.guide-price,
.service-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid rgba(255, 193, 227, 0.2);
}

/* ===================================
   LISTS & FEATURES
   =================================== */

.guide-features,
.popular-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.guide-features li,
.popular-list li {
  padding: 12px 16px;
  background: rgba(255, 193, 227, 0.1);
  border-radius: 12px;
  color: #6b7280;
  font-size: 14px;
  position: relative;
  padding-left: 40px;
}

.guide-features li::before,
.popular-list li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: #ffc1e3;
  font-weight: 700;
  font-size: 18px;
}

.popular-list a {
  color: #d4a5a5;
  font-weight: 500;
  transition: color 0.3s ease;
}

.popular-list a:hover {
  color: #ffc1e3;
}

/* ===================================
   FEATURED CONTENT
   =================================== */

.guide-card.featured,
.guide-card.premium {
  border: 3px solid #ffc1e3;
  background: linear-gradient(135deg, #ffffff 0%, #fef5e7 100%);
}

.featured-post {
  background: linear-gradient(135deg, #ffffff 0%, #fef5e7 100%);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(212, 165, 165, 0.2);
  margin-bottom: 60px;
}

.featured-post h2 {
  margin-bottom: 20px;
}

.meta {
  font-size: 14px;
  color: #c6a0b0;
  margin: 16px 0;
}

/* ===================================
   BLOG & POST CARDS
   =================================== */

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.post-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.9);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(212, 165, 165, 0.15);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212, 165, 165, 0.25);
}

.read-more {
  color: #d4a5a5;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: all 0.3s ease;
}

.read-more::after {
  content: '→';
  transition: transform 0.3s ease;
}

.read-more:hover {
  color: #ffc1e3;
}

.read-more:hover::after {
  transform: translateX(4px);
}

/* ===================================
   NEWSLETTER SECTION
   =================================== */

.newsletter {
  background: linear-gradient(135deg, #fef5e7 0%, #fce8f3 100%);
  padding: 60px 20px;
  border-radius: 24px;
  text-align: center;
  margin: 60px 0;
}

.newsletter h2 {
  margin-bottom: 16px;
}

.newsletter-benefits {
  margin: 32px 0;
}

.newsletter-benefits ul {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.newsletter-benefits li {
  color: #6b7280;
  position: relative;
  padding-left: 28px;
}

.newsletter-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffc1e3;
  font-weight: 700;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 14px 24px;
  border: 2px solid rgba(255, 193, 227, 0.3);
  border-radius: 50px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #ffc1e3;
  box-shadow: 0 0 0 4px rgba(255, 193, 227, 0.2);
}

.privacy-note {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 16px;
}

/* ===================================
   SERVICE DETAIL PAGES
   =================================== */

.service-detail {
  background: rgba(255, 255, 255, 0.9);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(212, 165, 165, 0.15);
  margin-bottom: 32px;
}

.tagline {
  font-size: 18px;
  color: #c6a0b0;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ===================================
   MISSION & VALUES
   =================================== */

.mission-content {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.mission-block {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(212, 165, 165, 0.15);
}

/* ===================================
   ERROR PAGES
   =================================== */

.error-code {
  font-size: 120px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffc1e3 0%, #d4a5a5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.error-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

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

.check-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffc1e3 0%, #d4a5a5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #ffffff;
  margin: 0 auto 32px;
  animation: scaleIn 0.5s ease;
}

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

.confirmation {
  background: rgba(255, 193, 227, 0.1);
  padding: 16px 24px;
  border-radius: 12px;
  color: #d4a5a5;
  font-weight: 500;
  margin-top: 24px;
}

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

.step-card,
.cta-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.9);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(212, 165, 165, 0.15);
  text-align: center;
}

/* ===================================
   CONTACT PAGE
   =================================== */

.response-time {
  background: rgba(255, 193, 227, 0.1);
  padding: 16px 24px;
  border-radius: 12px;
  text-align: center;
  margin-top: 32px;
  color: #d4a5a5;
  font-weight: 500;
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(212, 165, 165, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(212, 165, 165, 0.2);
}

.faq-item h3 {
  color: #d4a5a5;
  margin-bottom: 12px;
}

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

.legal-content {
  padding: 40px 0;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(212, 165, 165, 0.15);
}

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 32px;
  border-top: 2px solid rgba(255, 193, 227, 0.2);
}

.content-wrapper h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content-wrapper h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.last-updated {
  font-size: 14px;
  color: #9ca3af;
  font-style: italic;
}

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

.final-cta,
.cta-section {
  background: linear-gradient(135deg, #fef5e7 0%, #fce8f3 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 24px;
  margin: 60px 0;
}

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

.trust-line {
  font-size: 14px;
  color: #9ca3af;
  margin-top: 24px;
}

/* ===================================
   GUARANTEE SECTION
   =================================== */

.guarantee {
  background: linear-gradient(135deg, #fef5e7 0%, #ffffff 100%);
  padding: 60px 40px;
  border-radius: 24px;
  text-align: center;
  margin: 60px 0;
  border: 3px solid #ffc1e3;
}

.guarantee-features {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.guarantee-features div {
  background: rgba(255, 193, 227, 0.1);
  padding: 16px 32px;
  border-radius: 50px;
  color: #d4a5a5;
  font-weight: 600;
}

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

footer {
  background: linear-gradient(135deg, #fef5e7 0%, #fce8f3 100%);
  padding: 60px 20px 32px;
  margin-top: 80px;
  border-top: 4px solid rgba(255, 193, 227, 0.3);
}

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

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

.footer-logo {
  height: 48px;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(212, 165, 165, 0.2));
}

.footer-section h3 {
  color: #d4a5a5;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.8;
}

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

.footer-section ul a {
  color: #c6a0b0;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 6px 0;
  display: inline-block;
}

.footer-section ul a:hover {
  color: #ffc1e3;
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid rgba(255, 193, 227, 0.2);
}

.footer-bottom p {
  font-size: 14px;
  color: #9ca3af;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 24px;
  box-shadow: 0 -4px 30px rgba(212, 165, 165, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  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: 250px;
}

.cookie-text p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 0;
}

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

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

.cookie-accept {
  background: linear-gradient(135deg, #ffc1e3 0%, #d4a5a5 100%);
  color: #ffffff;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 165, 165, 0.3);
}

.cookie-reject,
.cookie-settings {
  background: rgba(255, 255, 255, 0.9);
  color: #d4a5a5;
  border: 2px solid rgba(255, 193, 227, 0.3);
}

.cookie-reject:hover,
.cookie-settings:hover {
  background: rgba(255, 193, 227, 0.2);
  border-color: #ffc1e3;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  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.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(212, 165, 165, 0.4);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.cookie-category {
  padding: 20px;
  background: rgba(255, 193, 227, 0.1);
  border-radius: 16px;
  margin-bottom: 16px;
}

.cookie-category h4 {
  color: #d4a5a5;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.cookie-toggle.active {
  background: #ffc1e3;
}

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

.cookie-toggle.active::after {
  left: 27px;
}

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero,
  .page-hero,
  .error-hero,
  .thank-you-hero {
    padding: 60px 20px;
  }
  
  .value-card,
  .service-card,
  .guide-card,
  .benefit-card,
  .testimonial-card,
  .stat-card,
  .suggestion-card,
  .option-card,
  .mission-block,
  .post-card,
  .step-card,
  .cta-card {
    flex: 1 1 100%;
    min-width: unset;
  }
  
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary,
  .cta-button {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
  }
  
  .featured-post {
    padding: 32px 24px;
  }
  
  .content-wrapper {
    padding: 32px 24px;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    min-width: unset;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-buttons button {
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .hero,
  .page-hero {
    padding: 40px 16px;
  }
  
  .value-card,
  .service-card,
  .guide-card,
  .benefit-card,
  .testimonial-card,
  .option-card {
    padding: 24px;
  }
  
  .featured-post,
  .service-detail {
    padding: 24px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: #ffffff;
  }
  
  * {
    box-shadow: none !important;
  }
}

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

:focus-visible {
  outline: 3px solid #ffc1e3;
  outline-offset: 2px;
}

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: #ffc1e3;
  color: #ffffff;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  z-index: 100;
}

.skip-to-content:focus {
  top: 0;
}

/* ===================================
   SOFT PASTEL DESIGN REFINEMENTS
   =================================== */

::selection {
  background: rgba(255, 193, 227, 0.3);
  color: #4a5568;
}

button,
a {
  -webkit-tap-highlight-color: rgba(255, 193, 227, 0.3);
}

/* Soft shadows for depth */
.card,
.service-card,
.guide-card,
.value-card,
.benefit-card {
  box-shadow: 0 8px 30px rgba(212, 165, 165, 0.15),
              0 2px 8px rgba(198, 160, 176, 0.1);
}

/* Smooth scroll padding for fixed header */
html {
  scroll-padding-top: 80px;
}

/* Enhanced focus states for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid #ffc1e3;
  outline-offset: 3px;
}

/* Loading state (for future JS implementation) */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Text selection enhancement */
.hero h1::selection,
h2::selection {
  background: rgba(255, 193, 227, 0.4);
}

/* ===================================
   END OF COMPREHENSIVE CSS
   =================================== */