/* ============================================
   NOTAR BATHENONN - SOFT PASTEL DESIGN
   Mobile-First Responsive CSS with Flexbox
   ============================================ */

/* 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;
  line-height: 1.6;
  color: #4A4A4A;
  background: linear-gradient(135deg, #FFF5F7 0%, #E8F5F1 100%);
  min-height: 100vh;
}

/* SOFT PASTEL COLOR PALETTE */
:root {
  --primary-soft: #B8A7D4;
  --primary-light: #D4C4E8;
  --secondary-soft: #F4C2C2;
  --accent-soft: #FFE5D9;
  --accent-peach: #FFC9C9;
  --mint-soft: #C2E9E0;
  --lavender: #E8DCF0;
  --cream: #FFF8F3;
  --text-dark: #6B5B7A;
  --text-medium: #8E7FA3;
  --text-light: #B5A7C4;
  --white: #FFFFFF;
  --shadow-soft: rgba(184, 167, 212, 0.15);
  --shadow-medium: rgba(184, 167, 212, 0.25);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 16px;
  font-weight: 600;
}

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

h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

p {
  margin-bottom: 16px;
  color: var(--text-medium);
}

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

a:hover {
  color: var(--secondary-soft);
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: var(--text-medium);
}

strong {
  color: var(--text-dark);
  font-weight: 600;
}

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

/* HEADER */
header {
  background: linear-gradient(135deg, var(--white) 0%, var(--lavender) 100%);
  padding: 20px 0;
  box-shadow: 0 2px 15px var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

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

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

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

/* MAIN NAVIGATION - Desktop */
.main-nav {
  display: none;
  gap: 24px;
  align-items: center;
}

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

.main-nav a:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--lavender));
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-soft);
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-soft), var(--primary-light));
  border: none;
  border-radius: 12px;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px var(--shadow-soft);
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px var(--shadow-medium);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, var(--white) 0%, var(--lavender) 100%);
  box-shadow: -4px 0 20px var(--shadow-medium);
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

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

.mobile-menu-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  background: var(--secondary-soft);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 20px;
  border-radius: 12px;
  background: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px var(--shadow-soft);
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--lavender));
  transform: translateX(8px);
  box-shadow: 0 4px 12px var(--shadow-medium);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  min-height: 48px;
  box-shadow: 0 4px 12px var(--shadow-soft);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-soft), var(--primary-light));
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--shadow-medium);
  background: linear-gradient(135deg, var(--primary-light), var(--lavender));
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-soft), var(--accent-peach));
  color: var(--white);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--shadow-medium);
  background: linear-gradient(135deg, var(--accent-peach), var(--secondary-soft));
}

.btn-link {
  background: transparent;
  color: var(--primary-soft);
  padding: 8px 0;
  box-shadow: none;
  font-weight: 600;
  min-height: auto;
}

.btn-link:hover {
  color: var(--secondary-soft);
  transform: translateX(5px);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--lavender) 0%, var(--mint-soft) 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 10px 30px var(--shadow-soft);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  gap: 24px;
}

.hero h1 {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-subheadline {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 24px;
  line-height: 1.6;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 24px 0;
}

.trust-indicators span {
  background: var(--white);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  color: var(--text-dark);
  box-shadow: 0 4px 12px var(--shadow-soft);
  font-weight: 500;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--lavender) 0%, var(--mint-soft) 100%);
  padding: 60px 20px 40px;
  margin-bottom: 40px;
  border-radius: 0 0 30px 30px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 16px;
  color: var(--text-medium);
}

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

.availability-badge {
  display: inline-block;
  background: var(--mint-soft);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 16px;
  box-shadow: 0 4px 12px var(--shadow-soft);
}

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

section {
  margin-bottom: 60px;
}

section h2 {
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-dark);
}

section > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  color: var(--text-medium);
}

/* SERVICE CARDS */
.service-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.service-card,
.card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px var(--shadow-soft);
  transition: all 0.3s ease;
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px var(--shadow-medium);
  background: linear-gradient(135deg, var(--white) 0%, var(--lavender) 100%);
}

.service-card h3,
.card h3 {
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card .price,
.card .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-soft);
  margin: 16px 0;
}

.service-card .requirements {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

/* DETAILED SERVICES */
.services-detailed {
  padding: 40px 20px;
}

.service-detail {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 6px 20px var(--shadow-soft);
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
  list-style: none;
  margin-left: 0;
}

.benefits li {
  padding-left: 32px;
  position: relative;
  color: var(--text-medium);
}

.benefits li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--mint-soft);
  font-weight: 700;
  font-size: 18px;
}

/* TRUST BAR / STATS */
.trust-bar,
.statistics {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--lavender) 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
}

.stats,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  align-items: center;
}

.stat,
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  background: var(--white);
  padding: 24px 32px;
  border-radius: 20px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  flex: 1 1 200px;
  min-width: 180px;
}

.stat strong,
.stat-card strong {
  font-size: 36px;
  color: var(--primary-soft);
  font-family: 'Playfair Display', serif;
}

.stat span,
.stat-card span {
  font-size: 14px;
  color: var(--text-medium);
}

/* PROCESS STEPS */
.process {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--accent-soft) 100%);
  border-radius: 30px;
  margin-bottom: 60px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  flex: 1 1 220px;
  max-width: 280px;
  background: var(--white);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 12px var(--shadow-soft);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-soft), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 4px 12px var(--shadow-soft);
}

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

/* TESTIMONIALS */
.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--mint-soft) 0%, var(--cream) 100%);
  border-radius: 30px;
  margin-bottom: 60px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px var(--shadow-soft);
  flex: 1 1 400px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.testimonial-card:before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 60px;
  color: var(--lavender);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.testimonial-card p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  color: var(--primary-soft);
  font-weight: 600;
  font-style: italic;
  margin-top: 8px;
}

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

/* VALUES & FEATURES */
.values {
  padding: 60px 20px;
}

.values-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 40px 0;
}

.value-card,
.feature-item {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px var(--shadow-soft);
  flex: 1 1 280px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}

.value-card:hover,
.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow-medium);
}

.value-card h3 {
  color: var(--primary-soft);
  margin-bottom: 12px;
}

/* PRICING */
.pricing-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
  padding: 0 20px;
}

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

.pricing-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px var(--shadow-soft);
  flex: 1 1 320px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px var(--shadow-medium);
  background: linear-gradient(135deg, var(--white) 0%, var(--lavender) 100%);
}

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

.pricing-card .price {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-soft);
  margin: 16px 0;
  font-family: 'Playfair Display', serif;
}

.pricing-card ul {
  list-style: none;
  margin-left: 0;
  text-align: left;
  margin: 20px 0;
}

.pricing-card li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: var(--text-medium);
}

.pricing-card li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--mint-soft);
  font-weight: 700;
}

.note {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 32px;
}

/* APPOINTMENT & CONTACT OPTIONS */
.appointment-options,
.contact-methods {
  padding: 40px 20px;
}

.options-grid,
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.option-card,
.contact-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px var(--shadow-soft);
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.option-card:hover,
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow-medium);
}

.contact-primary {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-soft);
  margin: 8px 0;
}

.phone-large {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-soft);
  margin: 16px 0;
  font-family: 'Playfair Display', serif;
}

/* TEXT-IMAGE SECTIONS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 40px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 6px 20px var(--shadow-soft);
}

.text-image-section img {
  max-width: 100%;
  border-radius: 15px;
  flex: 1 1 300px;
}

.text-image-section .content {
  flex: 1 1 400px;
}

/* DIRECTIONS & OFFICE INFO */
.directions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.direction-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px var(--shadow-soft);
  flex: 1 1 320px;
  max-width: 400px;
}

.office-hours {
  background: linear-gradient(135deg, var(--cream) 0%, var(--accent-soft) 100%);
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
  text-align: center;
}

.office-hours ul {
  list-style: none;
  margin: 24px auto;
  max-width: 400px;
}

.office-hours li {
  padding: 12px;
  margin-bottom: 8px;
  background: var(--white);
  border-radius: 12px;
  color: var(--text-dark);
  font-weight: 500;
}

/* CTA SECTIONS */
.cta-banner,
.cta-services,
.cta-pricing,
.cta-about,
.cta-appointment,
.cta-contact {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--lavender) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 10px 30px var(--shadow-soft);
}

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

.contact-info,
.trust-element,
.trust-badges {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, var(--mint-soft) 0%, var(--cream) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-soft), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 32px;
  box-shadow: 0 8px 20px var(--shadow-medium);
}

.confirmation-text {
  font-size: 16px;
  color: var(--text-medium);
  margin-top: 16px;
}

.expected-response {
  text-align: center;
  font-weight: 600;
  color: var(--primary-soft);
  margin-top: 24px;
  font-size: 16px;
}

.next-steps,
.immediate-needs,
.useful-links {
  padding: 40px 20px;
}

.steps-grid,
.links-grid,
.indicators-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.step-card,
.link-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px var(--shadow-soft);
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover,
.link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow-medium);
}

.indicator {
  background: var(--white);
  padding: 16px 24px;
  border-radius: 20px;
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
  box-shadow: 0 4px 12px var(--shadow-soft);
}

.emergency-note {
  background: var(--accent-soft);
  padding: 16px 24px;
  border-radius: 15px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
  text-align: center;
}

/* LEGAL PAGES */
.legal-page {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  margin-bottom: 32px;
  text-align: center;
}

.legal-page h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  text-align: left;
}

.legal-page h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  text-align: left;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-medium) 100%);
  color: var(--white);
  padding: 60px 20px 30px;
  margin-top: 60px;
  border-radius: 40px 40px 0 0;
}

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

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

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

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.8;
}

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

.footer-nav a {
  transition: all 0.3s ease;
  padding: 4px 0;
}

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

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--lavender) 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px var(--shadow-medium);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-radius: 30px 30px 0 0;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: var(--text-dark);
}

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

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

.cookie-accept {
  background: linear-gradient(135deg, var(--primary-soft), var(--primary-light));
  color: var(--white);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow-medium);
}

.cookie-reject {
  background: var(--secondary-soft);
  color: var(--white);
}

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

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(107, 91, 122, 0.7);
  backdrop-filter: blur(5px);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

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

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

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

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

.cookie-toggle.active {
  background: var(--primary-soft);
}

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

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

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

/* MEDIA QUERIES */
@media (min-width: 768px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 26px;
  }

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

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

  .main-nav {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .text-image-section {
    flex-direction: row;
  }

  .service-grid,
  .pricing-grid {
    justify-content: space-between;
  }

  .service-card,
  .pricing-card {
    flex: 1 1 calc(33.333% - 24px);
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 60px 20px;
  }

  .service-card,
  .pricing-card,
  .value-card,
  .option-card,
  .contact-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .stats,
  .stats-grid {
    flex-direction: column;
  }

  .stat,
  .stat-card {
    width: 100%;
  }

  .text-image-section {
    flex-direction: column;
    padding: 24px;
  }

  .footer-content {
    flex-direction: column;
  }

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

  .btn {
    width: 100%;
  }
}

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

.service-card,
.testimonial-card,
.value-card,
.step {
  animation: fadeIn 0.6s ease forwards;
}

/* ACCESSIBILITY */
.btn:focus,
a:focus,
button:focus {
  outline: 3px solid var(--primary-light);
  outline-offset: 3px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cookie-modal,
  .cta-banner,
  .cta-buttons {
    display: none !important;
  }
}