/* ===================================
   CSS RESET & NORMALIZATION
   =================================== */
* {
  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: #2d3748;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

/* ===================================
   WARM & FRIENDLY DESIGN SYSTEM
   =================================== */
:root {
  /* Warm, Friendly Color Palette */
  --primary-color: #ff8c42;
  --primary-dark: #e67a33;
  --primary-light: #ffb574;
  --secondary-color: #ffd166;
  --accent-warm: #f77f00;
  --accent-soft: #fcbf49;
  
  /* Neutral Warm Tones */
  --bg-cream: #fef9f3;
  --bg-light: #fff8ed;
  --text-dark: #4a3628;
  --text-medium: #7a6250;
  --text-light: #a89079;
  
  /* Semantic Colors */
  --success: #8bc34a;
  --error: #ef5350;
  --white: #ffffff;
  --shadow-warm: rgba(247, 127, 0, 0.1);
  
  /* Spacing Scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  
  /* Typography Scale */
  --font-xs: 14px;
  --font-sm: 16px;
  --font-md: 18px;
  --font-lg: 24px;
  --font-xl: 32px;
  --font-2xl: 48px;
  
  /* Border Radius - Warm & Friendly */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;
  
  /* Shadows - Soft & Gentle */
  --shadow-sm: 0 2px 8px rgba(247, 127, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(247, 127, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(247, 127, 0, 0.15);
}

/* ===================================
   TYPOGRAPHY - FRIENDLY FONTS
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--font-2xl);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: var(--font-xl);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: var(--font-lg);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-sm);
  color: var(--text-medium);
}

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

.section {
  margin-bottom: var(--space-2xl);
  padding: var(--space-xl) var(--space-md);
}

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

/* ===================================
   BUTTONS - WARM & INVITING
   =================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--font-sm);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.btn-primary {
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 24px;
  font-size: var(--font-xs);
}

.btn-large {
  padding: 18px 40px;
  font-size: var(--font-md);
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-sm) 0;
}

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

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

.logo img {
  height: 50px;
  width: auto;
}

.tagline {
  font-size: var(--font-xs);
  color: var(--text-medium);
  font-style: italic;
}

.main-nav {
  display: none;
}

.main-nav a {
  margin: 0 var(--space-sm);
  color: var(--text-dark);
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary-color);
  background-color: var(--bg-light);
}

.header-cta {
  display: none;
}

/* ===================================
   MOBILE MENU - WARM SLIDE-IN
   =================================== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-warm));
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 24px;
  box-shadow: var(--shadow-md);
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, var(--bg-cream), var(--bg-light));
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  z-index: 1002;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: var(--space-xl) var(--space-lg);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: var(--primary-dark);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-top: var(--space-2xl);
}

.mobile-nav a {
  padding: var(--space-sm) var(--space-md);
  color: var(--text-dark);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-warm));
  color: var(--white);
  transform: translateX(8px);
}

/* ===================================
   HERO SECTION - WARM WELCOME
   =================================== */
.hero {
  background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
  padding: var(--space-2xl) var(--space-md);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-2xl);
}

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

.hero h1 {
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-size: var(--font-md);
  color: var(--text-medium);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  margin-bottom: var(--space-lg);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background-color: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  font-size: var(--font-xs);
  color: var(--text-medium);
  font-weight: 600;
}

/* ===================================
   BENEFITS SECTION
   =================================== */
.benefits {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
}

.benefits h2 {
  margin-bottom: var(--space-xl);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.benefit-card {
  flex: 1 1 100%;
  max-width: 280px;
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.benefit-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
}

.benefit-card h3 {
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.benefit-card p {
  color: var(--text-medium);
  font-size: var(--font-sm);
}

/* ===================================
   SERVICES OVERVIEW
   =================================== */
.services-overview {
  background-color: var(--bg-light);
  padding: var(--space-2xl) var(--space-md);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-2xl);
}

.services-overview h2 {
  text-align: center;
  margin-bottom: var(--space-sm);
}

.section-intro {
  text-align: center;
  font-size: var(--font-md);
  color: var(--text-medium);
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  flex: 1 1 100%;
  max-width: 350px;
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card.featured {
  border: 3px solid var(--primary-color);
  background: linear-gradient(180deg, var(--white), var(--bg-light));
}

.service-card .badge {
  position: absolute;
  top: -12px;
  right: var(--space-md);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-warm));
  color: var(--white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--font-xs);
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.service-card h3 {
  color: var(--text-dark);
  font-size: var(--font-lg);
  margin-bottom: var(--space-sm);
}

.service-card p {
  color: var(--text-medium);
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

.service-price {
  font-size: var(--font-lg);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

/* ===================================
   TESTIMONIALS - WARM CARDS
   =================================== */
.testimonials {
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
}

.testimonials h2 {
  margin-bottom: var(--space-xl);
}

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

.testimonial-card {
  flex: 1 1 100%;
  max-width: 500px;
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary-color);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.testimonial-card .rating {
  color: var(--secondary-color);
  font-size: var(--font-lg);
  margin-bottom: var(--space-xs);
}

.testimonial-card p {
  color: var(--text-dark);
  font-style: italic;
  font-size: var(--font-md);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.testimonial-card .author {
  color: var(--text-medium);
  font-weight: 600;
  font-size: var(--font-sm);
  text-align: right;
}

.overall-rating {
  background-color: var(--bg-light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  display: inline-block;
  font-size: var(--font-md);
  color: var(--text-dark);
}

.overall-rating strong {
  color: var(--primary-color);
  font-size: var(--font-lg);
}

/* ===================================
   CTA SECTION - WARM INVITATION
   =================================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-warm));
  color: var(--white);
  padding: var(--space-2xl) var(--space-md);
  border-radius: var(--radius-xl);
  text-align: center;
  margin-bottom: var(--space-2xl);
}

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

.cta-section p {
  color: var(--white);
  font-size: var(--font-md);
  margin-bottom: var(--space-lg);
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  margin-bottom: var(--space-md);
}

.cta-buttons .btn-primary {
  background-color: var(--white);
  color: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px) scale(1.05);
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.cta-buttons .btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.guarantee-text {
  color: var(--white);
  font-weight: 600;
  font-size: var(--font-sm);
}

/* ===================================
   FOOTER - WARM & FRIENDLY
   =================================== */
footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: var(--space-2xl) var(--space-md) var(--space-lg);
}

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

.footer-col {
  flex: 1 1 100%;
  min-width: 250px;
}

.footer-col h4 {
  color: var(--primary-light);
  font-size: var(--font-md);
  margin-bottom: var(--space-md);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-sm);
}

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

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary-light);
}

.footer-col a {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-xs);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-xs);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-light);
}

/* ===================================
   PAGE HERO - BREADCRUMBS
   =================================== */
.page-hero {
  background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
  padding: var(--space-xl) var(--space-md);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.breadcrumbs {
  font-size: var(--font-xs);
  color: var(--text-medium);
  margin-bottom: var(--space-md);
  text-align: left;
}

.breadcrumbs a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--primary-dark);
}

.page-subtitle {
  font-size: var(--font-md);
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
}

/* ===================================
   SERVICES DETAILED
   =================================== */
.services-intro {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  margin-bottom: var(--space-lg);
}

.intro-text {
  font-size: var(--font-md);
  color: var(--text-medium);
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

.intro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.intro-badges .badge {
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--font-xs);
  font-weight: 600;
  border: 2px solid var(--primary-light);
}

.services-detailed {
  padding: var(--space-md);
}

.service-detail-card {
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-lg);
  transition: all 0.3s ease;
  position: relative;
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-detail-card.featured {
  border: 3px solid var(--primary-color);
  background: linear-gradient(180deg, var(--white), var(--bg-light));
}

.badge-top {
  position: absolute;
  top: -12px;
  left: var(--space-md);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-warm));
  color: var(--white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--font-xs);
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  margin: var(--space-md) 0;
}

.service-meta .price {
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--primary-color);
}

.service-meta .duration {
  color: var(--text-medium);
  font-size: var(--font-sm);
  padding: var(--space-xs) var(--space-md);
  background-color: var(--bg-light);
  border-radius: var(--radius-full);
}

/* ===================================
   ADDONS
   =================================== */
.addons {
  background-color: var(--bg-light);
  padding: var(--space-2xl) var(--space-md);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-2xl);
}

.addons h2 {
  text-align: center;
  margin-bottom: var(--space-sm);
}

.addons p {
  text-align: center;
  color: var(--text-medium);
  margin-bottom: var(--space-xl);
}

.addons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.addon-item {
  flex: 1 1 100%;
  max-width: 250px;
  background-color: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s ease;
}

.addon-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.addon-item h3 {
  font-size: var(--font-md);
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}

.addon-price {
  font-size: var(--font-lg);
  font-weight: 700;
  color: var(--primary-color);
}

/* ===================================
   PRICING TABLE
   =================================== */
.pricing-intro {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background-color: var(--bg-light);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-2xl);
}

.guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-md);
}

.guarantee-item {
  background-color: var(--white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--font-xs);
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.payment-methods {
  color: var(--text-medium);
  font-size: var(--font-sm);
}

.pricing-table {
  padding: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.pricing-table h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.price-item {
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.price-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.price-item.featured {
  border: 3px solid var(--primary-color);
  background: linear-gradient(180deg, var(--white), var(--bg-light));
}

.badge-corner {
  position: absolute;
  top: -12px;
  right: var(--space-md);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-warm));
  color: var(--white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--font-xs);
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

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

.price-header h3 {
  flex: 1;
  font-size: var(--font-lg);
  color: var(--text-dark);
  margin: 0;
}

.price-header .price {
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--primary-color);
}

.price-duration {
  color: var(--text-medium);
  font-size: var(--font-sm);
  margin-bottom: var(--space-sm);
}

/* ===================================
   PACKAGES
   =================================== */
.packages {
  background-color: var(--bg-light);
  padding: var(--space-2xl) var(--space-md);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-2xl);
}

.packages h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.package-card {
  flex: 1 1 100%;
  max-width: 350px;
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.package-card.featured {
  border: 3px solid var(--primary-color);
  background: linear-gradient(180deg, var(--white), var(--bg-light));
}

.package-card h3 {
  font-size: var(--font-lg);
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}

.package-card p {
  color: var(--text-medium);
  font-size: var(--font-sm);
  margin-bottom: var(--space-md);
}

.package-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.original-price {
  font-size: var(--font-md);
  color: var(--text-light);
  text-decoration: line-through;
}

.discount-price {
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--primary-color);
}

.savings {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--font-xs);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

/* ===================================
   ADDONS PRICING
   =================================== */
.addons-pricing {
  padding: var(--space-xl) var(--space-md);
  margin-bottom: var(--space-2xl);
}

.addons-pricing h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.addon-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.addon-row:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.addon-row span:first-child {
  color: var(--text-dark);
  font-weight: 600;
}

.addon-row .addon-price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: var(--font-md);
}

/* ===================================
   PRICING NOTES
   =================================== */
.pricing-notes {
  background-color: var(--bg-light);
  padding: var(--space-2xl) var(--space-md);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-2xl);
}

.pricing-notes h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.notes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.note-card {
  flex: 1 1 100%;
  max-width: 450px;
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.note-card h3 {
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  font-size: var(--font-lg);
}

.note-card ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.note-card ul li {
  color: var(--text-medium);
  padding-left: var(--space-md);
  position: relative;
}

.note-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* ===================================
   COMPANY STORY
   =================================== */
.company-story {
  padding: var(--space-2xl) var(--space-md);
  margin-bottom: var(--space-2xl);
}

.company-story h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

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

.story-content p {
  font-size: var(--font-md);
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: var(--space-lg);
}

.milestones {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.milestone {
  background-color: var(--bg-light);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
  color: var(--text-dark);
  font-weight: 600;
}

.milestone strong {
  color: var(--primary-color);
  font-size: var(--font-lg);
}

/* ===================================
   MISSION & VALUES
   =================================== */
.mission-values {
  background-color: var(--bg-light);
  padding: var(--space-2xl) var(--space-md);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-2xl);
}

.mission-values h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

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

.mission-card {
  flex: 1 1 100%;
  max-width: 500px;
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.mission-card h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.mission-card p {
  color: var(--text-medium);
  line-height: 1.7;
}

.values-list {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.values-list h3 {
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  text-align: center;
}

.values-list ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.values-list ul li {
  color: var(--text-medium);
  padding-left: var(--space-lg);
  position: relative;
  line-height: 1.6;
}

.values-list ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: var(--font-lg);
}

.values-list ul li strong {
  color: var(--text-dark);
}

/* ===================================
   TEAM
   =================================== */
.team {
  padding: var(--space-2xl) var(--space-md);
  margin-bottom: var(--space-2xl);
}

.team h2 {
  text-align: center;
  margin-bottom: var(--space-sm);
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.team-member {
  flex: 1 1 100%;
  max-width: 350px;
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-member h3 {
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}

.role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: var(--space-md);
  font-size: var(--font-sm);
}

.team-member p {
  color: var(--text-medium);
  line-height: 1.6;
}

/* ===================================
   ACHIEVEMENTS
   =================================== */
.achievements {
  background-color: var(--bg-light);
  padding: var(--space-2xl) var(--space-md);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-2xl);
}

.achievements h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.achievement-card {
  flex: 1 1 100%;
  max-width: 250px;
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.achievement-number {
  font-size: var(--font-2xl);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.achievement-card p {
  color: var(--text-medium);
  font-size: var(--font-sm);
}

/* ===================================
   GALLERY
   =================================== */
.gallery-intro {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  margin-bottom: var(--space-lg);
}

.gallery-categories {
  margin-bottom: var(--space-2xl);
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.filter-btn {
  padding: var(--space-sm) var(--space-md);
  background-color: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--primary-light);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--font-sm);
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-warm));
  color: var(--white);
  border-color: var(--primary-color);
}

.gallery-grid {
  padding: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.gallery-grid h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.gallery-items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.gallery-item {
  flex: 1 1 100%;
  max-width: 500px;
  background-color: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.before-after {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.image-placeholder {
  flex: 1;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-medium);
  border: 2px dashed var(--primary-light);
}

.gallery-item h3 {
  font-size: var(--font-md);
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}

.gallery-item p {
  color: var(--text-medium);
  font-size: var(--font-sm);
}

/* ===================================
   DIFFICULT CASES
   =================================== */
.difficult-cases {
  background-color: var(--bg-light);
  padding: var(--space-2xl) var(--space-md);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-2xl);
}

.difficult-cases h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

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

.case-card {
  flex: 1 1 100%;
  max-width: 280px;
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.case-card h3 {
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
  font-size: var(--font-md);
}

.case-card p {
  color: var(--text-medium);
  font-size: var(--font-sm);
}

.difficult-cases .note {
  text-align: center;
  color: var(--text-medium);
  font-style: italic;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-methods {
  padding: var(--space-xl) var(--space-md);
  margin-bottom: var(--space-2xl);
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.method-card {
  flex: 1 1 100%;
  max-width: 400px;
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.method-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
}

.method-card h3 {
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.method-card p {
  color: var(--text-medium);
  margin-bottom: var(--space-xs);
}

.method-note {
  font-size: var(--font-xs);
  color: var(--text-light);
  font-style: italic;
}

/* ===================================
   CONTACT FORMS
   =================================== */
.contact-form-section,
.price-quote-section {
  padding: var(--space-2xl) var(--space-md);
  margin-bottom: var(--space-2xl);
}

.contact-form-section h2,
.price-quote-section h2 {
  text-align: center;
  margin-bottom: var(--space-sm);
}

.form-intro {
  text-align: center;
  color: var(--text-medium);
  margin-bottom: var(--space-xl);
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.form-placeholder {
  background-color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-placeholder p {
  margin-bottom: var(--space-md);
  color: var(--text-medium);
}

.form-placeholder strong {
  display: block;
  color: var(--text-dark);
  font-size: var(--font-lg);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.consent-text {
  font-size: var(--font-xs);
  line-height: 1.6;
  padding: var(--space-md);
  background-color: var(--bg-light);
  border-radius: var(--radius-sm);
  margin: var(--space-md) 0;
}

.consent-text a {
  color: var(--primary-color);
  text-decoration: underline;
}

.form-button {
  margin: var(--space-lg) 0;
  text-align: center;
}

.form-note {
  font-size: var(--font-xs);
  color: var(--text-light);
  text-align: center;
}

/* ===================================
   LOCATION INFO
   =================================== */
.location-info {
  background-color: var(--bg-light);
  padding: var(--space-2xl) var(--space-md);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-2xl);
}

.location-info h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  align-items: flex-start;
}

.location-details {
  flex: 1 1 100%;
  min-width: 300px;
}

.location-details h3 {
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}

.location-details h4 {
  color: var(--text-dark);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: var(--font-md);
}

.address {
  color: var(--text-dark);
  font-size: var(--font-md);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.landmark {
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.map-placeholder {
  flex: 1 1 100%;
  min-width: 300px;
}

.map-box {
  background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
  border: 2px dashed var(--primary-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.map-box p {
  color: var(--text-medium);
  font-weight: 600;
}

/* ===================================
   TRANSPORT DIRECTIONS
   =================================== */
.transport-directions {
  padding: var(--space-2xl) var(--space-md);
  margin-bottom: var(--space-2xl);
}

.transport-directions h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.transport-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.transport-method {
  flex: 1 1 100%;
  max-width: 280px;
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
}

.transport-method:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.transport-method h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.transport-method p {
  color: var(--text-medium);
  line-height: 1.6;
}

/* ===================================
   FAQ
   =================================== */
.faq-contact {
  background-color: var(--bg-light);
  padding: var(--space-2xl) var(--space-md);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-2xl);
}

.faq-contact h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.faq-item h3 {
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
  font-size: var(--font-md);
}

.faq-item p {
  color: var(--text-medium);
  line-height: 1.6;
}

/* ===================================
   LEGAL CONTENT
   =================================== */
.legal-content {
  padding: var(--space-xl) var(--space-md);
  margin-bottom: var(--space-2xl);
}

.legal-content .container {
  max-width: 900px;
}

.legal-content h2 {
  color: var(--text-dark);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-size: var(--font-lg);
}

.legal-content h3 {
  color: var(--text-dark);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: var(--font-md);
}

.legal-content p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.legal-content ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.legal-content ul li {
  color: var(--text-medium);
  padding-left: var(--space-lg);
  position: relative;
  line-height: 1.6;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.legal-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--primary-dark);
}

.last-updated,
.effective-date {
  color: var(--text-light);
  font-size: var(--font-sm);
  font-style: italic;
  margin-bottom: var(--space-lg);
}

/* ===================================
   THANK YOU PAGE
   =================================== */
.thank-you-hero {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-2xl);
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-warm));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-2xl);
  font-weight: 700;
  margin: 0 auto var(--space-lg);
  box-shadow: var(--shadow-lg);
}

.thank-you-hero h1 {
  margin-bottom: var(--space-sm);
}

.thank-you-message {
  font-size: var(--font-md);
  color: var(--text-medium);
}

.thank-you-content {
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.thank-you-content h2 {
  margin-bottom: var(--space-lg);
}

.next-steps {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
  margin-top: var(--space-xl);
}

.step-card {
  flex: 1 1 100%;
  max-width: 350px;
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.step-card h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.step-card p {
  color: var(--text-medium);
  line-height: 1.6;
}

.preparation-tips {
  background-color: var(--bg-light);
  padding: var(--space-2xl) var(--space-md);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-2xl);
}

.preparation-tips h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

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

.tips-list li {
  background-color: var(--white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  color: var(--text-dark);
  padding-left: var(--space-xl);
  position: relative;
}

.tips-list li::before {
  content: '✓';
  position: absolute;
  left: var(--space-md);
  color: var(--primary-color);
  font-weight: 700;
  font-size: var(--font-lg);
}

.next-actions {
  padding: var(--space-2xl) var(--space-md);
  margin-bottom: var(--space-2xl);
}

.next-actions h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.action-card {
  flex: 1 1 100%;
  max-width: 350px;
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

.action-card p {
  color: var(--text-medium);
  flex-grow: 1;
}

/* ===================================
   COOKIE CONSENT BANNER - WARM STYLE
   =================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-warm));
  color: var(--white);
  padding: var(--space-lg) var(--space-md);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.cookie-banner p {
  color: var(--white);
  line-height: 1.6;
  margin: 0;
}

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

.cookie-buttons .btn {
  font-size: var(--font-xs);
  padding: 10px 24px;
}

.cookie-buttons .btn-accept {
  background-color: var(--white);
  color: var(--primary-color);
}

.cookie-buttons .btn-accept:hover {
  background-color: var(--bg-light);
}

.cookie-buttons .btn-reject {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cookie-buttons .btn-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-buttons .btn-settings {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cookie-buttons .btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

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

.cookie-modal-content {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.cookie-modal-header {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-warm));
  color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  color: var(--white);
  margin: 0;
}

.cookie-modal-close {
  background-color: transparent;
  color: var(--white);
  font-size: 24px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.cookie-modal-body {
  padding: var(--space-lg);
}

.cookie-category {
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.cookie-category h4 {
  color: var(--text-dark);
  margin: 0;
  font-size: var(--font-md);
}

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

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

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

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

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

.cookie-category p {
  color: var(--text-medium);
  font-size: var(--font-sm);
  line-height: 1.6;
}

.cookie-modal-footer {
  padding: var(--space-lg);
  border-top: 1px solid var(--bg-light);
  display: flex;
  gap: var(--space-sm);
  justify-content: flex-end;
}

/* ===================================
   RESPONSIVE DESIGN - TABLET
   =================================== */
@media (min-width: 768px) {
  h1 {
    font-size: 56px;
  }
  
  h2 {
    font-size: 40px;
  }
  
  .main-nav {
    display: flex;
  }
  
  .header-cta {
    display: block;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .hero-cta {
    flex-direction: row;
  }
  
  .cta-buttons {
    flex-direction: row;
  }
  
  .benefit-card {
    flex: 1 1 calc(50% - var(--space-lg));
  }
  
  .service-card {
    flex: 1 1 calc(50% - var(--space-lg));
  }
  
  .testimonial-card {
    flex: 1 1 calc(50% - var(--space-lg));
  }
  
  .footer-col {
    flex: 1 1 calc(33.333% - var(--space-xl));
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .cookie-banner-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .gallery-item {
    flex: 1 1 calc(50% - var(--space-lg));
  }
  
  .location-grid {
    align-items: center;
  }
  
  .location-details {
    flex: 1 1 45%;
  }
  
  .map-placeholder {
    flex: 1 1 50%;
  }
}

/* ===================================
   RESPONSIVE DESIGN - DESKTOP
   =================================== */
@media (min-width: 1024px) {
  .benefit-card {
    flex: 1 1 calc(25% - var(--space-lg));
  }
  
  .service-card {
    flex: 1 1 calc(33.333% - var(--space-lg));
  }
  
  .package-card {
    flex: 1 1 calc(33.333% - var(--space-lg));
  }
  
  .addon-item {
    flex: 1 1 calc(25% - var(--space-md));
  }
  
  .team-member {
    flex: 1 1 calc(33.333% - var(--space-lg));
  }
  
  .achievement-card {
    flex: 1 1 calc(25% - var(--space-lg));
  }
  
  .case-card {
    flex: 1 1 calc(25% - var(--space-lg));
  }
  
  .transport-method {
    flex: 1 1 calc(25% - var(--space-lg));
  }
  
  .method-card {
    flex: 1 1 calc(50% - var(--space-lg));
  }
  
  .step-card {
    flex: 1 1 calc(33.333% - var(--space-lg));
  }
  
  .action-card {
    flex: 1 1 calc(33.333% - var(--space-lg));
  }
}

/* ===================================
   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);
  }
}

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

/* ===================================
   ACCESSIBILITY
   =================================== */
:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background-color: white;
    color: black;
  }
}