/* ============================================
   CHROMFUSIO - SOFT PASTEL DESIGN STYLE
   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', sans-serif;
  color: #2D3748;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFF9FB 50%, #F0F4FF 100%);
  line-height: 1.6;
  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 {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  border: none;
  outline: none;
}

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

:root {
  --pastel-pink: #FFD6E8;
  --pastel-lavender: #E6D9FF;
  --pastel-blue: #D6E8FF;
  --pastel-mint: #D6FFF0;
  --pastel-peach: #FFE8D6;
  --pastel-yellow: #FFF9D6;
  --soft-gray: #F8F9FA;
  --text-dark: #4A5568;
  --text-medium: #718096;
  --text-light: #A0AEC0;
  --white: #FFFFFF;
  --accent-rose: #FFB3D9;
  --accent-purple: #D6B3FF;
  --shadow-soft: rgba(255, 182, 217, 0.15);
  --shadow-medium: rgba(214, 179, 255, 0.2);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #4A5568;
  letter-spacing: -0.02em;
}

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

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

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

p {
  font-size: 16px;
  color: #718096;
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ============================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   ============================================ */

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

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

/* ============================================
   MOBILE MENU - SMOOTH SLIDE ANIMATION
   ============================================ */

.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  box-shadow: 0 8px 25px var(--shadow-medium);
  transition: all 0.3s ease;
  display: none;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px var(--shadow-medium);
}

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--text-dark);
  box-shadow: 0 4px 15px var(--shadow-soft);
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.mobile-nav a:hover {
  background: var(--white);
  transform: translateX(10px);
  box-shadow: 0 8px 20px var(--shadow-soft);
}

/* ============================================
   HEADER - DREAMY NAVIGATION
   ============================================ */

header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  box-shadow: 0 4px 20px var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 900;
}

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

.logo img {
  height: 45px;
  width: auto;
  transition: transform 0.3s ease;
}

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

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

.nav-menu li a {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu li a:hover {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-medium);
}

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

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

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--shadow-medium);
  background: linear-gradient(135deg, var(--accent-rose), var(--accent-purple));
}

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

.btn-secondary:hover {
  background: var(--pastel-lavender);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--shadow-medium);
}

/* ============================================
   HERO SECTION - DREAMY ATMOSPHERE
   ============================================ */

.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-lavender) 50%, var(--pastel-blue) 100%);
  border-radius: 40px;
  margin: 40px 20px;
  box-shadow: 0 20px 60px var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

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

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

.hero h1 {
  color: var(--white);
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.trust-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: 0 4px 15px var(--shadow-soft);
}

/* ============================================
   PAGE HERO - CONSISTENT STYLE
   ============================================ */

.page-hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-blue));
  text-align: center;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
}

.page-hero h1 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 16px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.last-updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
}

/* ============================================
   CATEGORY CARDS - FLEXBOX LAYOUT
   ============================================ */

.categories {
  padding: 60px 20px;
}

.categories h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.category-card {
  flex: 1 1 300px;
  max-width: 380px;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 10px 30px var(--shadow-soft);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--pastel-pink), var(--pastel-lavender), var(--pastel-blue));
  border-radius: 30px 30px 0 0;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px var(--shadow-medium);
}

.category-card h3 {
  color: var(--text-dark);
  margin-bottom: 16px;
}

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

.category-link {
  color: var(--text-dark);
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
}

.category-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pastel-pink), var(--pastel-lavender));
  transition: width 0.3s ease;
}

.category-link:hover::after {
  width: 100%;
}

/* ============================================
   BENEFITS SECTION - FLEXBOX GRID
   ============================================ */

.benefits {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  margin: 0 20px 60px;
}

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

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.benefit-item {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 25px;
  box-shadow: 0 8px 25px var(--shadow-soft);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.benefit-item img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  opacity: 0.8;
}

.benefit-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-item p {
  font-size: 15px;
  color: var(--text-medium);
}

/* ============================================
   SERVICES SECTION - CARD LAYOUT
   ============================================ */

.services {
  padding: 60px 20px;
}

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

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  flex: 1 1 320px;
  max-width: 380px;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 10px 30px var(--shadow-soft);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px var(--shadow-medium);
  background: linear-gradient(135deg, rgba(255, 214, 232, 0.2), rgba(230, 217, 255, 0.2));
}

.service-card h3 {
  color: var(--text-dark);
}

.service-card p {
  flex: 1;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 10px 0;
}

/* ============================================
   TESTIMONIALS - READABLE DARK TEXT
   ============================================ */

.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-blue));
  border-radius: 40px;
  margin: 0 20px 60px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 400px;
  max-width: 550px;
  padding: 40px 35px;
  background: var(--white);
  border-radius: 25px;
  box-shadow: 0 10px 30px var(--shadow-soft);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 80px;
  color: var(--pastel-lavender);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-size: 16px;
  color: #2D3748;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

.testimonial-card .author {
  font-weight: 600;
  color: #4A5568;
  font-style: normal;
  display: block;
  margin-top: 16px;
}

/* ============================================
   CTA BANNER - PROMINENT CALL TO ACTION
   ============================================ */

.cta-banner {
  padding: 70px 20px;
  background: linear-gradient(135deg, var(--pastel-peach), var(--pastel-yellow));
  text-align: center;
  border-radius: 40px;
  margin: 0 20px 60px;
  box-shadow: 0 15px 45px var(--shadow-medium);
}

.cta-banner h2 {
  color: var(--text-dark);
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 35px;
  color: var(--text-medium);
}

.cta-banner .contact-info {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 25px;
}

/* ============================================
   PRODUCTS PAGE - FILTERS & GRID
   ============================================ */

.products {
  padding: 40px 20px;
}

.filters {
  margin-bottom: 40px;
  padding: 30px;
  background: var(--white);
  border-radius: 25px;
  box-shadow: 0 8px 25px var(--shadow-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.filter-group h3 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.filter-btn {
  padding: 10px 20px;
  background: var(--soft-gray);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-medium);
  transition: all 0.3s ease;
  margin-right: 10px;
  margin-bottom: 10px;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px var(--shadow-soft);
}

.sort-select {
  padding: 12px 20px;
  background: var(--soft-gray);
  border-radius: 20px;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
  min-width: 200px;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.product-card {
  flex: 1 1 280px;
  max-width: 350px;
  padding: 30px 25px;
  background: var(--white);
  border-radius: 25px;
  box-shadow: 0 8px 25px var(--shadow-soft);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px var(--shadow-medium);
}

.product-card h3 {
  font-size: 20px;
  color: var(--text-dark);
}

.product-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 10px 0;
}

.product-rating {
  color: var(--pastel-peach);
  font-size: 18px;
  letter-spacing: 2px;
}

.stock-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--pastel-mint);
  color: var(--text-dark);
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* ============================================
   SERVICES DETAILED PAGE
   ============================================ */

.services-detailed {
  padding: 40px 20px;
}

.service-large {
  padding: 50px 40px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 10px 35px var(--shadow-soft);
  margin-bottom: 40px;
}

.service-large h2 {
  color: var(--text-dark);
  margin-bottom: 20px;
}

.service-features {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-features li {
  padding-left: 30px;
  position: relative;
  color: var(--text-medium);
  font-size: 16px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pastel-lavender);
  font-weight: 700;
  font-size: 18px;
}

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

/* ============================================
   PROCESS STEPS - FLEXBOX TIMELINE
   ============================================ */

.service-process {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(255, 214, 232, 0.3), rgba(230, 217, 255, 0.3));
  border-radius: 40px;
  margin: 0 20px 60px;
}

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

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.step {
  flex: 1 1 200px;
  max-width: 220px;
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 25px;
  box-shadow: 0 8px 25px var(--shadow-soft);
  position: relative;
}

.step-number {
  display: inline-flex;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  box-shadow: 0 6px 20px var(--shadow-soft);
}

.step h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

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

/* ============================================
   PACKAGES - PRICING CARDS
   ============================================ */

.packages {
  padding: 60px 20px;
}

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

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.package-card {
  flex: 1 1 300px;
  max-width: 350px;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 10px 30px var(--shadow-soft);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.package-card.featured {
  background: linear-gradient(135deg, rgba(255, 214, 232, 0.2), rgba(230, 217, 255, 0.2));
  border: 3px solid var(--pastel-lavender);
  transform: scale(1.05);
}

.package-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px var(--shadow-medium);
}

.package-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.package-subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px 0;
  flex: 1;
}

.package-features li {
  padding-left: 25px;
  position: relative;
  text-align: left;
  color: var(--text-medium);
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pastel-lavender);
  font-weight: 700;
}

.package-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 20px 0;
}

/* ============================================
   ABOUT PAGE - STORY & VALUES
   ============================================ */

.story {
  padding: 60px 20px;
}

.story h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.story-content p {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.highlight {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 25px 30px;
  background: linear-gradient(135deg, rgba(255, 214, 232, 0.3), rgba(230, 217, 255, 0.3));
  border-radius: 20px;
  border-left: 5px solid var(--pastel-lavender);
  margin: 30px 0;
}

.values {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(214, 232, 255, 0.3), rgba(214, 255, 240, 0.3));
  border-radius: 40px;
  margin: 0 20px 60px;
}

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

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.value-item {
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  padding: 35px 25px;
  background: var(--white);
  border-radius: 25px;
  box-shadow: 0 8px 25px var(--shadow-soft);
}

.value-item img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
}

.mission {
  padding: 60px 20px;
  text-align: center;
}

.mission-statement {
  max-width: 800px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.9;
  color: var(--text-dark);
  padding: 40px 35px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 15px 40px var(--shadow-soft);
}

.stats {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--pastel-peach), var(--pastel-yellow));
  border-radius: 40px;
  margin: 0 20px 60px;
}

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

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.stat-item {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 25px;
  box-shadow: 0 10px 30px var(--shadow-soft);
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 16px;
  color: var(--text-medium);
}

/* ============================================
   BLOG PAGE - ARTICLES LAYOUT
   ============================================ */

.featured-post {
  padding: 40px 20px 60px;
}

.featured-article {
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(255, 214, 232, 0.3), rgba(230, 217, 255, 0.3));
  border-radius: 30px;
  box-shadow: 0 15px 45px var(--shadow-soft);
  position: relative;
}

.featured-tag {
  display: inline-block;
  padding: 8px 20px;
  background: var(--pastel-lavender);
  color: var(--white);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.featured-article h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

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

.blog-categories {
  padding: 20px;
}

.categories-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.category-btn {
  padding: 12px 24px;
  background: var(--soft-gray);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-medium);
  transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px var(--shadow-soft);
}

.blog-grid {
  padding: 40px 20px;
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.article-card {
  flex: 1 1 320px;
  max-width: 380px;
  padding: 35px 30px;
  background: var(--white);
  border-radius: 25px;
  box-shadow: 0 8px 25px var(--shadow-soft);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px var(--shadow-medium);
}

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

.article-link {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding-bottom: 4px;
}

.article-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pastel-pink), var(--pastel-lavender));
  transition: width 0.3s ease;
}

.article-link:hover::after {
  width: 100%;
}

/* ============================================
   CONTACT PAGE - FORMS & INFO
   ============================================ */

.contact-methods {
  padding: 40px 20px 60px;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.method-card {
  flex: 1 1 220px;
  max-width: 280px;
  padding: 35px 25px;
  background: var(--white);
  border-radius: 25px;
  box-shadow: 0 8px 25px var(--shadow-soft);
  text-align: center;
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.method-card img {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
}

.method-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.method-card p {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 8px;
}

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

.contact-form-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(255, 214, 232, 0.2), rgba(230, 217, 255, 0.2));
  border-radius: 40px;
  margin: 0 20px 60px;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form-section > p {
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-medium);
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
}

.input-field,
.textarea-field {
  padding: 16px 20px;
  background: var(--white);
  border: 2px solid var(--soft-gray);
  border-radius: 20px;
  font-size: 15px;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.input-field:focus,
.textarea-field:focus {
  border-color: var(--pastel-lavender);
  box-shadow: 0 0 0 4px rgba(230, 217, 255, 0.2);
}

.textarea-field {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-checkbox input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 14px;
  color: var(--text-medium);
  cursor: pointer;
}

/* ============================================
   LEGAL PAGES - READABLE CONTENT
   ============================================ */

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

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 40px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 10px 35px var(--shadow-soft);
}

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--soft-gray);
}

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

.content-wrapper ul {
  margin: 20px 0;
  padding-left: 20px;
}

.content-wrapper ul li {
  list-style: disc;
  margin-bottom: 10px;
  color: var(--text-medium);
  padding-left: 10px;
}

.content-wrapper a {
  color: var(--text-dark);
  text-decoration: underline;
  font-weight: 600;
}

.content-wrapper a:hover {
  color: var(--pastel-lavender);
}

/* ============================================
   THANK YOU PAGE - SUCCESS STATE
   ============================================ */

.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: var(--white);
  margin: 0 auto 30px;
  box-shadow: 0 15px 45px var(--shadow-medium);
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.thank-you-message {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.expected-response {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 40px;
}

.next-steps {
  padding: 60px 20px;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 40px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.step-card {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 35px 25px;
  background: var(--white);
  border-radius: 25px;
  box-shadow: 0 8px 25px var(--shadow-soft);
  text-align: center;
}

/* ============================================
   FOOTER - SOFT PASTEL STYLE
   ============================================ */

footer {
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-pink));
  padding: 60px 20px 30px;
  margin-top: 80px;
  color: var(--white);
}

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

.footer-brand,
.footer-contact,
.footer-links {
  flex: 1 1 250px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 20px;
}

.footer-brand p,
.footer-contact p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  transition: all 0.3s ease;
}

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

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

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

/* ============================================
   COOKIE CONSENT BANNER - FIXED BOTTOM
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(255, 214, 232, 0.98), rgba(230, 217, 255, 0.98));
  backdrop-filter: blur(10px);
  padding: 25px 20px;
  box-shadow: 0 -8px 30px var(--shadow-medium);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

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

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

.cookie-buttons .btn {
  padding: 12px 30px;
  font-size: 14px;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 2000;
  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: var(--white);
  border-radius: 30px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px var(--shadow-medium);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.cookie-category {
  padding: 20px;
  background: var(--soft-gray);
  border-radius: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-category h4 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

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

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: var(--text-light);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
}

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

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

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

/* ============================================
   TABLES - COOKIE LIST STYLING
   ============================================ */

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--shadow-soft);
}

.cookie-table thead {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
}

.cookie-table thead th {
  padding: 18px 20px;
  text-align: left;
  font-weight: 600;
  color: var(--white);
  font-size: 14px;
}

.cookie-table tbody tr {
  border-bottom: 1px solid var(--soft-gray);
}

.cookie-table tbody tr:last-child {
  border-bottom: none;
}

.cookie-table tbody td {
  padding: 16px 20px;
  color: var(--text-medium);
  font-size: 14px;
}

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

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    padding: 60px 20px;
    margin: 20px 10px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-subheadline {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .category-grid,
  .benefits-grid,
  .services-grid,
  .testimonial-grid,
  .product-grid,
  .packages-grid,
  .values-grid,
  .stats-grid,
  .articles-grid,
  .methods-grid {
    flex-direction: column;
    align-items: center;
  }

  .category-card,
  .benefit-item,
  .service-card,
  .testimonial-card,
  .product-card,
  .package-card,
  .value-item,
  .stat-item,
  .article-card,
  .method-card {
    max-width: 100%;
    width: 100%;
  }

  .filters {
    flex-direction: column;
  }

  .filter-group {
    width: 100%;
  }

  .sort-select {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }

  .content-wrapper {
    padding: 30px 20px;
  }

  .service-large {
    padding: 30px 20px;
  }

  .cookie-table {
    font-size: 12px;
  }

  .cookie-table thead th,
  .cookie-table tbody td {
    padding: 12px 10px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .mobile-menu {
    width: 100%;
    right: -100%;
  }

  .btn {
    padding: 14px 30px;
    font-size: 15px;
  }

  .cookie-modal-content {
    padding: 25px 20px;
  }
}

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

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

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

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

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

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

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

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

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }

  body {
    background: white;
  }

  .container {
    max-width: 100%;
  }
}