/* ImmoVision - 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', Roboto, sans-serif;
  line-height: 1.6;
  color: #4A5568;
  background: linear-gradient(135deg, #FFF5F7 0%, #E8F4F8 100%);
  overflow-x: hidden;
}

/* Soft Pastel Color Palette */
:root {
  --pastel-rose: #FFE5EC;
  --pastel-lavender: #E5DEFF;
  --pastel-mint: #D5F4E6;
  --pastel-peach: #FFE8D6;
  --pastel-blue: #D6E9FF;
  --pastel-yellow: #FFF9DB;
  --text-primary: #5A4A6B;
  --text-secondary: #8B7A9C;
  --white: #FFFFFF;
  --soft-shadow: rgba(138, 122, 156, 0.08);
  --dreamy-gradient: linear-gradient(135deg, #FFE5EC 0%, #E5DEFF 50%, #D6E9FF 100%);
}

/* Typography - Soft & Dreamy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-primary);
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

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

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

a {
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

/* Header & Navigation */
header {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px var(--soft-shadow);
  backdrop-filter: blur(10px);
}

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

.logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 4px var(--soft-shadow));
  transition: transform 0.3s ease;
}

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

.nav-menu {
  display: flex;
  gap: 24px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-menu li {
  list-style: none;
}

.nav-menu a {
  color: var(--text-primary);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pastel-rose), var(--pastel-lavender));
  transition: width 0.3s ease;
}

.nav-menu a:hover::before {
  width: 80%;
}

.nav-menu a:hover {
  color: #7B6B8E;
  background: var(--pastel-lavender);
}

.cta-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Buttons - Soft & Dreamy */
.btn-primary,
.btn-secondary {
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 15px var(--soft-shadow);
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 181, 201, 0.4);
  background: linear-gradient(135deg, #FFA5B9 0%, #B996D8 100%);
}

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

.btn-secondary:hover {
  background: var(--pastel-lavender);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(229, 222, 255, 0.5);
}

/* Mobile Menu Toggle - Hidden on Desktop */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, var(--pastel-rose), var(--pastel-lavender));
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--soft-shadow);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 181, 201, 0.4);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, var(--pastel-rose) 0%, var(--pastel-lavender) 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px var(--soft-shadow);
  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;
  background: var(--white);
  color: var(--text-primary);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 10px var(--soft-shadow);
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  padding: 16px 20px;
  color: var(--text-primary);
  font-weight: 600;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  display: block;
}

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

/* Hero Section - Dreamy Atmosphere */
.hero {
  background: var(--dreamy-gradient);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 229, 236, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--text-primary);
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

.hero .subheadline {
  font-size: 24px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-weight: 300;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
  color: var(--text-secondary);
}

/* Error Hero */
.error-hero {
  text-align: center;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  background: linear-gradient(135deg, #FFB5C9, #C9A6E8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px var(--soft-shadow);
}

.success-hero {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-blue) 100%);
}

.success-icon {
  font-size: 80px;
  color: #7BC99C;
  margin-bottom: 24px;
  display: inline-block;
  width: 120px;
  height: 120px;
  line-height: 120px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(123, 201, 156, 0.3);
}

/* CTA Group */
.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-indicators p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

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

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

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Value Proposition Section */
.value-proposition {
  background: var(--white);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 10px 40px var(--soft-shadow);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
  justify-content: center;
}

.benefit {
  flex: 1 1 250px;
  max-width: 280px;
  background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-lavender) 100%);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--soft-shadow);
}

.benefit:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(214, 233, 255, 0.4);
}

.benefit h3 {
  color: var(--text-primary);
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0;
}

/* Statistics */
.statistics {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--pastel-lavender);
}

.statistics span {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 12px 24px;
  background: var(--pastel-yellow);
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(255, 249, 219, 0.5);
}

/* Services Grid */
.services-grid,
.types-grid,
.districts-grid,
.methods-grid,
.options-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card,
.type-card,
.district-card,
.method,
.option,
.link-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--white);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--soft-shadow);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pastel-rose), var(--pastel-lavender), var(--pastel-mint));
  border-radius: 20px 20px 0 0;
}

.service-card:hover,
.type-card:hover,
.district-card:hover,
.method:hover,
.option:hover,
.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 35px rgba(138, 122, 156, 0.15);
}

.service-card h3,
.type-card h3,
.district-card h3,
.method h3,
.option h3 {
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-card p,
.type-card p,
.district-card p,
.method p,
.option p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Service Detail Sections */
.service-detail {
  background: var(--white);
  padding: 48px 20px;
  margin-bottom: 40px;
  border-radius: 25px;
  box-shadow: 0 6px 30px var(--soft-shadow);
}

.service-detail h2 {
  text-align: left;
  color: var(--text-primary);
}

.service-tagline {
  font-size: 18px;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.service-detail .price {
  font-size: 24px;
  font-weight: 700;
  color: #FFB5C9;
  margin: 24px 0;
  padding: 16px 24px;
  background: var(--pastel-rose);
  border-radius: 15px;
  display: inline-block;
}

.service-detail ul {
  margin: 24px 0;
  padding-left: 0;
}

.service-detail ul li {
  padding: 12px 0 12px 36px;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7BC99C;
  font-weight: 700;
  font-size: 18px;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-yellow) 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
}

.testimonials h2 {
  color: var(--text-primary);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

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

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

.testimonial-card p {
  color: #5A4A6B;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.customer-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--pastel-lavender);
}

.rating {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 24px;
}

/* Process Section */
.process {
  background: var(--white);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.step {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-blue) 100%);
  padding: 28px 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--soft-shadow);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.step:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 30px rgba(213, 244, 230, 0.4);
}

.step h3 {
  color: var(--text-primary);
  margin-bottom: 12px;
  font-size: 22px;
}

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

/* CTA Section */
.cta-section {
  background: var(--dreamy-gradient);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--text-primary);
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 16px;
}

.cta-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin: 24px 0;
}

.cta-section ul li {
  font-size: 16px;
  color: var(--text-secondary);
  padding-left: 32px;
  position: relative;
}

.cta-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7BC99C;
  font-weight: 700;
}

/* Company Story & Expertise */
.company-story,
.expertise,
.achievements,
.credentials,
.office-info {
  background: var(--white);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 8px 35px var(--soft-shadow);
}

.mission-vision {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.mission-vision > div {
  flex: 1 1 300px;
  background: var(--pastel-lavender);
  padding: 28px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 15px var(--soft-shadow);
}

.mission-vision h3 {
  color: var(--text-primary);
}

.values ul,
.milestones ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.values ul li,
.milestones ul li {
  background: var(--pastel-mint);
  padding: 12px 20px;
  border-radius: 15px;
  color: var(--text-primary);
  font-weight: 500;
  box-shadow: 0 2px 10px var(--soft-shadow);
}

.expertise-grid,
.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 32px 0;
}

.expertise-item,
.achievements-grid > div {
  flex: 1 1 250px;
  max-width: 280px;
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-peach) 100%);
  padding: 28px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px var(--soft-shadow);
  transition: all 0.3s ease;
}

.expertise-item:hover,
.achievements-grid > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 229, 236, 0.4);
}

/* Contact Options */
.contact-options {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.option strong {
  color: var(--text-primary);
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
}

/* Form Section */
.contact-form-section {
  background: var(--white);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 8px 35px var(--soft-shadow);
  text-align: center;
}

.form-note {
  background: var(--pastel-blue);
  padding: 24px 28px;
  border-radius: 15px;
  margin: 32px auto;
  max-width: 600px;
}

.form-note p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-note p:last-child {
  margin-bottom: 0;
}

/* Legal Content */
.legal-content {
  background: var(--white);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 8px 35px var(--soft-shadow);
}

.legal-content h2 {
  text-align: left;
  color: var(--text-primary);
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 16px 0 16px 24px;
}

.legal-content ul li {
  color: var(--text-secondary);
  margin-bottom: 12px;
  padding-left: 16px;
  position: relative;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #FFB5C9;
  font-size: 20px;
}

.legal-content strong {
  color: var(--text-primary);
}

/* Quick Links & Suggestions */
.quick-links,
.while-waiting {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.suggestion-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: var(--white);
  padding: 24px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--soft-shadow);
  text-align: center;
  color: var(--text-primary);
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.suggestion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(138, 122, 156, 0.2);
  background: var(--pastel-lavender);
}

/* Steps Grid & Stats */
.steps-grid,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 32px 0;
}

.steps-grid .step,
.stats-grid .stat {
  flex: 1 1 220px;
  max-width: 280px;
  background: linear-gradient(135deg, var(--pastel-yellow) 0%, var(--pastel-peach) 100%);
  padding: 24px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 15px var(--soft-shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.stats-grid .stat {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-blue) 100%);
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.steps-grid .step:hover,
.stats-grid .stat:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(138, 122, 156, 0.25);
}

/* Help & Info Sections */
.help-section,
.immediate-help,
.consultation-banner,
.selling-cta,
.social-proof {
  background: var(--white);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 8px 35px var(--soft-shadow);
  text-align: center;
}

.contact-info {
  background: var(--pastel-blue);
  padding: 28px 32px;
  border-radius: 20px;
  margin: 24px auto;
  max-width: 600px;
}

.contact-info p,
.info-details p {
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.info-details h3 {
  margin-top: 24px;
  color: var(--text-primary);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #5A4A6B 0%, #8B7A9C 100%);
  color: var(--white);
  padding: 48px 20px 24px;
  margin-top: 60px;
}

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

.footer-info {
  flex: 1 1 300px;
}

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

.footer-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-links {
  flex: 1 1 200px;
}

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

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

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

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

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

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-rose) 100%);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px var(--soft-shadow);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.cookie-consent .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.cookie-consent p {
  flex: 1 1 300px;
  margin: 0;
  color: var(--text-primary);
  font-size: 14px;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px var(--soft-shadow);
}

.cookie-accept {
  background: linear-gradient(135deg, #7BC99C, #6AB98C);
  color: var(--white);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(123, 201, 156, 0.4);
}

.cookie-reject {
  background: var(--white);
  color: var(--text-primary);
}

.cookie-reject:hover {
  background: var(--pastel-peach);
  transform: translateY(-2px);
}

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

.cookie-settings:hover {
  background: var(--text-primary);
  color: var(--white);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(90, 74, 107, 0.9);
  backdrop-filter: blur(8px);
  z-index: 2001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 25px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--pastel-rose);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  transform: rotate(90deg);
  background: #FFB5C9;
}

.cookie-modal h2 {
  color: var(--text-primary);
  margin-bottom: 24px;
}

.cookie-category {
  background: var(--pastel-blue);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: var(--text-primary);
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.cookie-toggle.active {
  background: #7BC99C;
}

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

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

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

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cookie-save {
  flex: 1;
  padding: 14px 28px;
  background: linear-gradient(135deg, #FFB5C9, #C9A6E8);
  color: var(--white);
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 181, 201, 0.4);
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hide desktop navigation */
  .nav-menu,
  .cta-buttons {
    display: none;
  }

  .main-nav {
    justify-content: center;
  }

  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }

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

  .hero p {
    font-size: 16px;
  }

  /* Button groups stack on mobile */
  .cta-group {
    flex-direction: column;
    width: 100%;
  }

  .cta-group .btn-primary,
  .cta-group .btn-secondary {
    width: 100%;
    max-width: 300px;
  }

  /* Grids to single column */
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .expertise-grid,
  .types-grid,
  .districts-grid,
  .methods-grid,
  .options-grid {
    flex-direction: column;
  }

  .benefit,
  .service-card,
  .testimonial-card,
  .expertise-item,
  .type-card,
  .district-card,
  .method,
  .option {
    max-width: 100%;
  }

  /* Statistics stack */
  .statistics {
    flex-direction: column;
    align-items: stretch;
  }

  .statistics span {
    width: 100%;
    text-align: center;
  }

  /* Footer stack */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  /* Cookie consent stack */
  .cookie-consent .container {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-buttons button {
    flex: 1;
    min-width: 120px;
  }

  /* Trust indicators stack */
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }

  /* Mission vision stack */
  .mission-vision {
    flex-direction: column;
  }

  /* Error code smaller */
  .error-code {
    font-size: 80px;
  }

  /* Success icon smaller */
  .success-icon {
    font-size: 60px;
    width: 100px;
    height: 100px;
    line-height: 100px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  h1 {
    font-size: 40px;
  }

  .benefit,
  .service-card,
  .expertise-item {
    flex: 1 1 calc(50% - 24px);
  }
}

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

.hero .container,
.service-card,
.benefit,
.testimonial-card {
  animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 3px solid #FFB5C9;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }

  body {
    background: var(--white);
  }
}