/* ===========================
   NEAT COVE - SOFT PASTEL DESIGN
   CSS Reset & Base Styles
   =========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #4a4a4a;
  background: linear-gradient(135deg, #fef9f5 0%, #fff5f7 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

:root {
  /* Primary Pastel Colors */
  --pastel-blue: #b8d4e8;
  --pastel-pink: #f5d5d8;
  --pastel-peach: #fce1d3;
  --pastel-mint: #d4ebe3;
  --pastel-lavender: #e5d9f2;
  --pastel-cream: #fff8f0;
  
  /* Soft Accent Colors */
  --soft-coral: #f5b5a3;
  --soft-rose: #f4c7d0;
  --soft-sage: #c9dcd0;
  --soft-sky: #d0e7f5;
  
  /* Neutral Tones */
  --soft-white: #fffefe;
  --soft-gray: #ebe9e8;
  --text-dark: #6b5d5d;
  --text-light: #9a8f8f;
  
  /* Gradients */
  --gradient-dreamy: linear-gradient(135deg, #fce1d3 0%, #f5d5d8 50%, #e5d9f2 100%);
  --gradient-soft: linear-gradient(135deg, #d0e7f5 0%, #d4ebe3 100%);
  --gradient-warm: linear-gradient(135deg, #fff8f0 0%, #fce1d3 100%);
  
  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(180, 150, 150, 0.08);
  --shadow-medium: 0 8px 30px rgba(180, 150, 150, 0.12);
  --shadow-large: 0 15px 45px rgba(180, 150, 150, 0.15);
  
  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-xxl: 64px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #6b5d5d;
  line-height: 1.3;
  margin-bottom: var(--space-md);
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  color: #8b7b7b;
  font-weight: 700;
}

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

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

h4 {
  font-size: 18px;
  color: #7a6969;
}

p {
  margin-bottom: var(--space-sm);
  color: #6b5d5d;
  font-size: 16px;
}

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

a:hover {
  color: #f5b5a3;
}

strong {
  color: #6b5d5d;
  font-weight: 600;
}

ul, ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

li {
  margin-bottom: var(--space-xs);
  color: #6b5d5d;
}

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

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

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

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-soft);
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #f5b5a3 0%, #f4c7d0 100%);
  color: var(--soft-white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f4c7d0 0%, #e5d9f2 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  color: var(--soft-white);
}

.btn-secondary {
  background: linear-gradient(135deg, #d0e7f5 0%, #d4ebe3 100%);
  color: #6b5d5d;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #d4ebe3 0%, #e5d9f2 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  color: #6b5d5d;
}

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

/* ===========================
   HEADER - DREAMY & SOFT
   =========================== */

header {
  background: linear-gradient(135deg, #fff8f0 0%, #fef9f5 100%);
  padding: var(--space-md) 0;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 3px solid rgba(245, 213, 216, 0.3);
}

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

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-xs);
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(180, 150, 150, 0.15));
}

.tagline {
  font-size: 13px;
  color: #9a8f8f;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.5px;
}

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

.main-nav a {
  color: #7a6969;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.main-nav a:hover {
  background: linear-gradient(135deg, #fce1d3 0%, #f5d5d8 100%);
  color: #6b5d5d;
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.phone {
  color: #8b7b7b;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #d0e7f5 0%, #d4ebe3 100%);
  border-radius: 25px;
  letter-spacing: 0.3px;
}

/* ===========================
   MOBILE MENU - SOFT PASTEL
   =========================== */

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

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-large);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #fff8f0 0%, #fef9f5 100%);
  box-shadow: -5px 0 30px rgba(180, 150, 150, 0.15);
  z-index: 1000;
  padding: var(--space-xxl) var(--space-lg);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #f5b5a3 0%, #f4c7d0 100%);
  color: var(--soft-white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  background: linear-gradient(135deg, #f4c7d0 0%, #e5d9f2 100%);
}

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

.mobile-nav a {
  color: #7a6969;
  font-weight: 500;
  font-size: 16px;
  padding: 14px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  background: rgba(252, 225, 211, 0.3);
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, #fce1d3 0%, #f5d5d8 100%);
  color: #6b5d5d;
  transform: translateX(5px);
}

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

.hero {
  padding: var(--space-xxl) 0;
  background: var(--gradient-dreamy);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 50px 50px;
  margin-bottom: var(--space-xxl);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 30px); }
}

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

.hero h1 {
  font-size: 56px;
  color: #6b5d5d;
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero p {
  font-size: 20px;
  color: #7a6969;
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.trust-badge {
  display: inline-block;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  color: #6b5d5d;
  font-weight: 600;
  font-size: 14px;
  margin-top: var(--space-md);
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(245, 213, 216, 0.3);
}

/* ===========================
   PAGE HERO - SOFT STYLE
   =========================== */

.page-hero {
  padding: var(--space-xl) 0;
  background: var(--gradient-soft);
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: var(--space-xl);
}

.breadcrumb {
  font-size: 14px;
  color: #9a8f8f;
  margin-bottom: var(--space-sm);
}

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

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

.page-hero h1 {
  font-size: 42px;
  color: #6b5d5d;
}

.page-hero p {
  font-size: 18px;
  color: #7a6969;
  max-width: 700px;
  margin: 0 auto;
}

.subtitle {
  font-size: 20px;
  color: #8b7b7b;
  font-weight: 500;
  margin-top: var(--space-sm);
}

.update-date {
  font-size: 14px;
  color: #9a8f8f;
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ===========================
   CARDS - SOFT PASTEL DESIGN
   =========================== */

.card-container,
.features-grid,
.services-grid,
.categories-grid,
.benefits-grid,
.testimonials-grid,
.values-grid,
.stats-grid,
.methods-grid,
.tiers-list,
.packages-list,
.departments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: var(--space-lg);
}

.feature-card,
.service-card,
.category-card,
.benefit-card,
.testimonial-card,
.value-card,
.stat-item,
.method-card,
.tier-card,
.package-card,
.dept-item,
.category-item,
.benefit-item,
.service-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.7);
  padding: var(--space-lg);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  border: 2px solid rgba(245, 213, 216, 0.2);
  margin-bottom: 20px;
  position: relative;
}

.feature-card::before,
.service-card::before,
.category-card::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: var(--gradient-dreamy);
  border-radius: 32px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover,
.service-card:hover,
.category-card:hover,
.benefit-card:hover,
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-large);
}

.feature-card:hover::before,
.service-card:hover::before,
.category-card:hover::before {
  opacity: 1;
}

.feature-card h3,
.service-card h3,
.category-card h3,
.benefit-card h3,
.package-card h3 {
  color: #7a6969;
  margin-bottom: var(--space-sm);
  font-size: 20px;
}

.feature-card p,
.service-card p,
.category-card p,
.benefit-card p,
.package-card p {
  color: #8b7b7b;
  line-height: 1.7;
  font-size: 15px;
}

.price {
  font-size: 28px;
  color: #f5b5a3;
  font-weight: 700;
  margin: var(--space-sm) 0;
  font-family: 'Montserrat', sans-serif;
}

.discount {
  font-size: 24px;
  color: #f5b5a3;
  font-weight: 700;
  margin: var(--space-sm) 0;
}

/* ===========================
   TESTIMONIALS - READABLE
   =========================== */

.testimonials {
  padding: var(--space-xxl) 0;
  background: linear-gradient(135deg, #fff8f0 0%, #fef9f5 100%);
  border-radius: 40px;
  margin-bottom: var(--space-xxl);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  padding: var(--space-lg);
  border-radius: 25px;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(245, 213, 216, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

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

.author {
  color: #7a6969;
  font-weight: 600;
  font-size: 14px;
  margin-top: var(--space-sm);
}

/* ===========================
   STATISTICS - VISUAL IMPACT
   =========================== */

.statistics {
  padding: var(--space-xxl) 0;
  background: var(--gradient-soft);
  border-radius: 40px;
  text-align: center;
  margin-bottom: var(--space-xxl);
}

.stats-grid {
  justify-content: center;
}

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

.stat-item h3 {
  font-size: 48px;
  color: #f5b5a3;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.stat-item p {
  font-size: 16px;
  color: #7a6969;
  font-weight: 500;
}

/* ===========================
   FORMS & INPUTS
   =========================== */

.form-info,
.contact-form-section {
  background: rgba(255, 255, 255, 0.8);
  padding: var(--space-xl);
  border-radius: 30px;
  box-shadow: var(--shadow-medium);
  border: 2px solid rgba(245, 213, 216, 0.3);
  margin-bottom: var(--space-lg);
}

.form-info p {
  margin-bottom: var(--space-sm);
  color: #6b5d5d;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="range"],
select,
textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid rgba(245, 213, 216, 0.5);
  border-radius: 20px;
  font-size: 15px;
  color: #6b5d5d;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  margin-bottom: var(--space-sm);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #f5b5a3;
  box-shadow: 0 0 0 3px rgba(245, 181, 163, 0.1);
}

.filter-group {
  margin-bottom: var(--space-md);
}

.filter-group label {
  display: block;
  margin-bottom: var(--space-xs);
  color: #7a6969;
  font-weight: 600;
  font-size: 14px;
}

.note {
  font-size: 14px;
  color: #9a8f8f;
  font-style: italic;
  margin-top: var(--space-md);
}

.warning {
  font-size: 14px;
  color: #f5b5a3;
  font-weight: 600;
  margin-top: var(--space-md);
}

/* ===========================
   SECTIONS WITH TEXT & IMAGES
   =========================== */

.value-proposition,
.services-preview,
.categories,
.benefits,
.b2b-benefits,
.b2b-services,
.package-benefits,
.about-story,
.values,
.pricing-tiers {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.value-proposition h2,
.services-preview h2,
.categories h2,
.benefits h2,
.b2b-benefits h2,
.package-benefits h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: #7a6969;
}

.text-section {
  max-width: 900px;
  margin: 0 auto var(--space-xl);
}

.text-section p {
  font-size: 17px;
  line-height: 1.9;
  color: #6b5d5d;
  margin-bottom: var(--space-md);
}

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

.cta-section {
  text-align: center;
  padding: var(--space-xxl);
  background: var(--gradient-dreamy);
  border-radius: 40px;
  margin-bottom: var(--space-xxl);
  box-shadow: var(--shadow-medium);
}

.cta-section h2 {
  color: #6b5d5d;
  margin-bottom: var(--space-md);
}

.cta-section p {
  font-size: 18px;
  color: #7a6969;
  margin-bottom: var(--space-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-card {
  flex: 1 1 calc(50% - var(--space-md));
  min-width: 250px;
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 25px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid rgba(245, 213, 216, 0.3);
}

.cta-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
  background: rgba(255, 255, 255, 1);
}

.cta-card h3 {
  color: #7a6969;
  margin-bottom: var(--space-sm);
}

.cta-card p {
  color: #8b7b7b;
  font-size: 15px;
}

/* ===========================
   PRODUCTS PAGE LAYOUT
   =========================== */

.products-layout {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-xxl);
}

.filters-sidebar {
  flex: 1 1 250px;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.8);
  padding: var(--space-lg);
  border-radius: 25px;
  box-shadow: var(--shadow-soft);
  height: fit-content;
  border: 2px solid rgba(245, 213, 216, 0.3);
}

.filters-sidebar h3 {
  color: #7a6969;
  margin-bottom: var(--space-md);
}

.products-main {
  flex: 1 1 calc(75% - var(--space-lg));
  min-width: 500px;
}

.info-section {
  background: linear-gradient(135deg, #fff8f0 0%, #fef9f5 100%);
  padding: var(--space-lg);
  border-radius: 25px;
  margin-top: var(--space-xl);
  border: 2px solid rgba(245, 213, 216, 0.3);
}

.info-section h3 {
  color: #7a6969;
  margin-bottom: var(--space-md);
}

.info-section ul {
  list-style: none;
  padding: 0;
}

.info-section li {
  padding: var(--space-xs) 0;
  color: #6b5d5d;
  padding-left: var(--space-md);
  position: relative;
}

.info-section li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #f5b5a3;
  font-weight: bold;
}

/* ===========================
   LEGAL CONTENT
   =========================== */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  margin-bottom: var(--space-xxl);
  border: 2px solid rgba(245, 213, 216, 0.3);
}

.legal-content h2 {
  color: #7a6969;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  padding-top: var(--space-md);
  border-top: 2px solid rgba(245, 213, 216, 0.3);
}

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

.legal-content h3 {
  color: #8b7b7b;
  margin-top: var(--space-md);
}

.legal-content p {
  color: #6b5d5d;
  line-height: 1.8;
}

.user-rights,
.gdpr-compliance,
.cookie-management,
.returns-info {
  background: linear-gradient(135deg, #fff8f0 0%, #fef9f5 100%);
  padding: var(--space-xl);
  border-radius: 30px;
  margin-bottom: var(--space-xl);
  border: 2px solid rgba(245, 213, 216, 0.3);
}

.user-rights h2,
.gdpr-compliance h2,
.cookie-management h2,
.returns-info h2 {
  color: #7a6969;
  margin-bottom: var(--space-md);
}

.user-rights ul,
.gdpr-compliance ul,
.cookie-management ul,
.returns-info ul {
  list-style: none;
  padding: 0;
}

.user-rights li,
.gdpr-compliance li,
.cookie-management li,
.returns-info li {
  padding: var(--space-sm);
  margin-bottom: var(--space-sm);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  color: #6b5d5d;
  padding-left: var(--space-lg);
  position: relative;
}

.user-rights li::before,
.gdpr-compliance li::before,
.returns-info li::before {
  content: '✓';
  position: absolute;
  left: var(--space-sm);
  color: #f5b5a3;
  font-weight: bold;
  font-size: 18px;
}

/* ===========================
   TABLES
   =========================== */

.cookie-types-table {
  margin-bottom: var(--space-xxl);
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  border: 2px solid rgba(245, 213, 216, 0.3);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-md);
  background: var(--soft-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

thead {
  background: var(--gradient-soft);
}

th {
  padding: var(--space-md);
  text-align: left;
  color: #6b5d5d;
  font-weight: 600;
  border-bottom: 2px solid rgba(245, 213, 216, 0.3);
}

td {
  padding: var(--space-sm) var(--space-md);
  color: #7a6969;
  border-bottom: 1px solid rgba(245, 213, 216, 0.2);
}

tr:hover {
  background: rgba(252, 225, 211, 0.1);
}

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

.thank-you-hero {
  text-align: center;
  padding: var(--space-xxl);
  background: var(--gradient-dreamy);
  border-radius: 40px;
  margin-bottom: var(--space-xxl);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d4ebe3 0%, #d0e7f5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--soft-white);
  margin: 0 auto var(--space-lg);
  box-shadow: var(--shadow-large);
  font-weight: bold;
}

.next-steps,
.cta-alternatives,
.contact-summary,
.social-proof {
  margin-bottom: var(--space-xxl);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 700px;
  margin: var(--space-lg) auto;
}

.step-item {
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid #f5b5a3;
  border: 2px solid rgba(245, 213, 216, 0.3);
}

.step-item p {
  color: #6b5d5d;
  margin: 0;
}

.contact-methods,
.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-lg);
}

.method {
  flex: 1 1 calc(33.333% - var(--space-md));
  min-width: 250px;
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  border: 2px solid rgba(245, 213, 216, 0.3);
}

.method p {
  color: #6b5d5d;
  margin-bottom: var(--space-xs);
}

.location-text {
  flex: 1 1 100%;
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(245, 213, 216, 0.3);
}

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

.faq-contact,
.faq-list {
  margin-bottom: var(--space-xxl);
}

.faq-item {
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(245, 213, 216, 0.3);
}

.faq-item h3 {
  color: #7a6969;
  margin-bottom: var(--space-sm);
  font-size: 18px;
}

.faq-item p {
  color: #6b5d5d;
  margin: 0;
}

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

footer {
  background: linear-gradient(135deg, #fce1d3 0%, #f5d5d8 50%, #e5d9f2 100%);
  padding: var(--space-xxl) 0 var(--space-lg);
  margin-top: var(--space-xxl);
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -5px 30px rgba(180, 150, 150, 0.1);
}

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

.footer-column {
  flex: 1 1 calc(25% - var(--space-lg));
  min-width: 200px;
}

.footer-column h4 {
  color: #6b5d5d;
  margin-bottom: var(--space-md);
  font-size: 18px;
}

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

.footer-column a {
  color: #8b7b7b;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 6px 0;
}

.footer-column a:hover {
  color: #6b5d5d;
  padding-left: 8px;
}

.footer-column p {
  color: #8b7b7b;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: var(--space-xs);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-bottom p {
  color: #8b7b7b;
  font-size: 14px;
  margin: 0;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #fff8f0 0%, #fef9f5 100%);
  padding: var(--space-md);
  box-shadow: 0 -5px 30px rgba(180, 150, 150, 0.2);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid rgba(245, 213, 216, 0.5);
}

.cookie-consent.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: var(--space-md);
}

.cookie-text {
  flex: 1 1 500px;
  color: #6b5d5d;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.cookie-accept {
  background: linear-gradient(135deg, #f5b5a3 0%, #f4c7d0 100%);
  color: var(--soft-white);
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #f4c7d0 0%, #e5d9f2 100%);
  transform: translateY(-2px);
}

.cookie-reject {
  background: rgba(255, 255, 255, 0.8);
  color: #7a6969;
  border: 2px solid rgba(245, 213, 216, 0.5);
}

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

.cookie-settings {
  background: linear-gradient(135deg, #d0e7f5 0%, #d4ebe3 100%);
  color: #6b5d5d;
}

.cookie-settings:hover {
  background: linear-gradient(135deg, #d4ebe3 0%, #e5d9f2 100%);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(107, 93, 93, 0.6);
  backdrop-filter: blur(5px);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, #fff8f0 0%, #fef9f5 100%);
  padding: var(--space-xl);
  border-radius: 30px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-large);
  border: 3px solid rgba(245, 213, 216, 0.5);
}

.cookie-modal-content h2 {
  color: #6b5d5d;
  margin-bottom: var(--space-md);
}

.cookie-category {
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  margin-bottom: var(--space-md);
  border: 2px solid rgba(245, 213, 216, 0.3);
}

.cookie-category h3 {
  color: #7a6969;
  margin-bottom: var(--space-sm);
  font-size: 18px;
}

.cookie-category p {
  color: #8b7b7b;
  font-size: 14px;
  margin-bottom: var(--space-sm);
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: rgba(245, 213, 216, 0.5);
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #f5b5a3 0%, #f4c7d0 100%);
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--soft-white);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.cookie-toggle input[type="checkbox"]:checked::before {
  transform: translateX(24px);
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  justify-content: flex-end;
}

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

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 42px;
  }
  
  .feature-card,
  .service-card,
  .category-card,
  .benefit-card,
  .package-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .footer-column {
    flex: 1 1 calc(50% - var(--space-lg));
  }
}

@media (max-width: 768px) {
  /* Mobile Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 16px; }
  
  /* Show Mobile Menu Toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide Desktop Navigation */
  .main-nav {
    display: none;
  }
  
  /* Header Mobile */
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .logo {
    align-items: center;
    width: 100%;
  }
  
  .header-actions {
    width: 100%;
    justify-content: center;
  }
  
  /* Cards Mobile */
  .feature-card,
  .service-card,
  .category-card,
  .benefit-card,
  .testimonial-card,
  .value-card,
  .method-card,
  .tier-card,
  .package-card,
  .benefit-item,
  .service-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 24px);
  }
  
  /* Layout Mobile */
  .products-layout {
    flex-direction: column;
  }
  
  .filters-sidebar {
    width: 100%;
  }
  
  .products-main {
    min-width: 100%;
  }
  
  /* Footer Mobile */
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* CTA Buttons Mobile */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Cookie Banner Mobile */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Contact Methods Mobile */
  .contact-methods,
  .cta-grid {
    flex-direction: column;
  }
  
  .method,
  .cta-card {
    flex: 1 1 100%;
  }
  
  /* Sections Mobile */
  .section {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .hero,
  .page-hero,
  .cta-section {
    padding: var(--space-xl) var(--space-md);
  }
}

@media (max-width: 480px) {
  :root {
    font-size: 14px;
  }
  
  .hero h1 { font-size: 28px; }
  .page-hero h1 { font-size: 28px; }
  
  .mobile-menu {
    width: 100%;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .stat-item {
    flex: 1 1 100%;
  }
  
  .stat-item h3 {
    font-size: 36px;
  }
}

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

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

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

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

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

.animate-slide-in {
  animation: slideInRight 0.4s ease-out;
}

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

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }

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

*:focus {
  outline: 3px solid rgba(245, 181, 163, 0.5);
  outline-offset: 2px;
}

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

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
  
  body {
    background: white;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}

/* END OF CSS */