/* ===================================
   EMIRAX SKI WASH - MONOCHROME SOPHISTICATED
   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: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY - MONOCHROME SOPHISTICATED
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  color: #333333;
  font-size: 16px;
}

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

ul {
  list-style: none;
}

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

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

/* ===================================
   BUTTONS - MONOCHROME SOPHISTICATED
   =================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: #000000;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: #ffffff;
  color: #000000;
}

.btn-secondary:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ===================================
   HEADER - SOPHISTICATED BLACK & WHITE
   =================================== */

header {
  background-color: #ffffff;
  border-bottom: 2px solid #000000;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

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

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000000;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  border-bottom-color: #000000;
}

.header-cta {
  display: flex;
  align-items: center;
}

/* ===================================
   MOBILE MENU - ELEGANT SLIDE-IN
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #000000;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle:hover {
  background-color: #333333;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  padding: 80px 40px 40px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #000000;
  color: #ffffff;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000000;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  padding-left: 10px;
  color: #666666;
}

/* ===================================
   HERO SECTION - DRAMATIC MONOCHROME
   =================================== */

.hero {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
  pointer-events: none;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 16px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: #cccccc;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.badge {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.badge:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ===================================
   PAGE HERO - MINIMALIST
   =================================== */

.page-hero {
  background-color: #f8f8f8;
  border-bottom: 3px solid #000000;
  padding: 80px 20px;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 8px;
}

.page-hero p {
  font-size: 18px;
  color: #666666;
  font-weight: 300;
}

/* ===================================
   SECTIONS - CLEAN SPACING
   =================================== */

section {
  padding: 80px 20px;
  margin-bottom: 0;
}

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

section > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  color: #666666;
  font-size: 18px;
}

/* ===================================
   SERVICES GRID - FLEXBOX LAYOUT
   =================================== */

.services-preview {
  background-color: #ffffff;
}

.services-grid,
.benefits-grid,
.steps-grid,
.testimonials-grid,
.contact-grid,
.pricing-grid,
.package-grid,
.values-grid,
.stats-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card,
.benefit,
.step,
.testimonial-card,
.contact-item,
.pricing-card,
.package-card,
.value,
.stat,
.link-card {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #ffffff;
  border: 2px solid #000000;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover,
.pricing-card:hover,
.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-card h3,
.pricing-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.service-card p,
.pricing-card p {
  color: #666666;
  margin-bottom: 16px;
}

.service-card .price,
.pricing-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin-top: 16px;
}

.services-preview .btn-primary {
  display: block;
  margin: 40px auto 0;
  width: fit-content;
}

/* ===================================
   WHY CHOOSE US - ELEGANT BENEFITS
   =================================== */

.why-choose-us {
  background-color: #f8f8f8;
}

.benefit {
  background-color: #ffffff;
  text-align: center;
  border: 1px solid #e0e0e0;
}

.benefit:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.benefit p {
  font-size: 15px;
  color: #666666;
}

/* ===================================
   PROCESS SECTION - NUMBERED STEPS
   =================================== */

.process {
  background-color: #ffffff;
}

.step {
  text-align: center;
  border: none;
  background-color: transparent;
  max-width: 250px;
}

.step-number {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: #000000;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  border-radius: 0;
}

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

.step p {
  font-size: 14px;
  color: #666666;
}

/* ===================================
   TESTIMONIALS - HIGH CONTRAST
   =================================== */

.testimonials {
  background-color: #f8f8f8;
}

.testimonial-card {
  background-color: #ffffff;
  border: 2px solid #000000;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.rating {
  color: #000000;
  font-size: 20px;
  letter-spacing: 4px;
}

.testimonial-card p {
  color: #333333;
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-card .author {
  color: #000000;
  font-weight: 700;
  font-style: normal;
  margin-top: 8px;
}

/* ===================================
   CTA BANNER - BOLD & CENTERED
   =================================== */

.cta-banner,
.cta-section {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.cta-banner h2,
.cta-section h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p {
  color: #e0e0e0;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-banner .btn-primary,
.cta-section .btn-primary {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.cta-banner .btn-primary:hover,
.cta-section .btn-primary:hover {
  background-color: transparent;
  color: #ffffff;
}

.urgency {
  font-size: 14px;
  color: #cccccc;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===================================
   CONTACT INFO - ELEGANT CARDS
   =================================== */

.contact-info {
  background-color: #f8f8f8;
}

.contact-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  text-align: center;
  flex: 1 1 250px;
  max-width: 300px;
}

.contact-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item p {
  font-size: 15px;
  color: #666666;
}

/* ===================================
   FOOTER - SOPHISTICATED BLACK
   =================================== */

footer {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 20px 20px;
}

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

.footer-col {
  flex: 1 1 200px;
  max-width: 300px;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col p,
.footer-col a {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-legal a {
  color: #cccccc;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-legal a:hover {
  color: #ffffff;
}

.footer-bottom p {
  color: #999999;
  font-size: 13px;
  text-align: center;
}

/* ===================================
   SERVICES PAGE - DETAILED LAYOUT
   =================================== */

.services-detailed {
  background-color: #ffffff;
}

.service-detail {
  background-color: #f8f8f8;
  border-left: 4px solid #000000;
  padding: 32px;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.service-detail:hover {
  border-left-width: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.service-detail h3 {
  margin-bottom: 8px;
}

.service-detail .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
}

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

.service-detail li {
  padding-left: 24px;
  margin-bottom: 8px;
  position: relative;
  color: #666666;
}

.service-detail li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: #000000;
}

/* ===================================
   PRICING PAGE - HIGHLIGHT STYLES
   =================================== */

.pricing {
  background-color: #ffffff;
}

.pricing-card.popular {
  border-width: 3px;
  position: relative;
}

.pricing-card.popular::before {
  content: 'PIÙ VENDUTO';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000000;
  color: #ffffff;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.pricing-card.featured {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.pricing-card.featured h3,
.pricing-card.featured .price {
  color: #ffffff;
}

.pricing-card.featured p {
  color: #cccccc;
}

.pricing-card ul {
  margin-top: 16px;
  padding-left: 0;
}

.pricing-card li {
  padding-left: 24px;
  margin-bottom: 8px;
  position: relative;
  font-size: 14px;
}

.pricing-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
}

.pricing-card.featured li::before {
  color: #ffffff;
}

.old-price {
  text-decoration: line-through;
  color: #999999;
  font-size: 18px;
  margin-bottom: 4px;
}

.savings {
  color: #000000;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

/* ===================================
   CHI SIAMO PAGE
   =================================== */

.story {
  background-color: #ffffff;
}

.story p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.mission {
  background-color: #000000;
  color: #ffffff;
  padding: 32px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-top: 40px;
  border-left: 4px solid #ffffff;
}

.values {
  background-color: #f8f8f8;
}

.value {
  background-color: #ffffff;
  border: 2px solid #000000;
  text-align: center;
}

.stats {
  background-color: #000000;
  color: #ffffff;
}

.stats h2 {
  color: #ffffff;
}

.stat {
  background-color: transparent;
  border: 2px solid #ffffff;
  text-align: center;
  padding: 40px 20px;
}

.stat .number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.stat p {
  color: #cccccc;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-methods {
  background-color: #ffffff;
}

.contact-card {
  background-color: #f8f8f8;
  border: 2px solid #000000;
  text-align: center;
  padding: 40px;
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.contact-card .description {
  color: #666666;
  font-size: 14px;
  font-style: italic;
}

.contact-form-section {
  background-color: #f8f8f8;
}

.form-notice {
  background-color: #ffffff;
  border-left: 4px solid #000000;
  padding: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.form-notice p {
  color: #333333;
  margin-bottom: 0;
}

.hours {
  background-color: #ffffff;
}

.hours-table {
  max-width: 600px;
  margin: 0 auto;
  background-color: #f8f8f8;
  border: 2px solid #000000;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  border-bottom: 1px solid #e0e0e0;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  font-weight: 600;
  color: #000000;
}

.hours-row span:last-child {
  color: #666666;
}

.hours .note {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: #999999;
  font-style: italic;
}

.location {
  background-color: #f8f8f8;
}

.address {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 32px;
}

.directions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.direction-item {
  flex: 1 1 300px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 32px;
}

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

.direction-item p {
  color: #666666;
  font-size: 15px;
}

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-content {
  background-color: #ffffff;
  padding: 40px 20px;
}

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

.legal-content h2 {
  text-align: left;
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  border-bottom: 2px solid #000000;
  padding-bottom: 8px;
}

.legal-content p {
  text-align: left;
  margin-bottom: 16px;
  line-height: 1.8;
}

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

.thank-you-hero {
  background-color: #f8f8f8;
  text-align: center;
  padding: 100px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background-color: #000000;
  color: #ffffff;
  font-size: 48px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
}

.thank-you-hero h1 {
  margin-bottom: 16px;
}

.next-steps {
  background-color: #ffffff;
}

.contact-info-card {
  background-color: #f8f8f8;
  text-align: center;
}

.contact-methods {
  background-color: #ffffff;
  border: 2px solid #000000;
  padding: 24px;
  max-width: 600px;
  margin: 24px auto 0;
}

.contact-methods p {
  margin-bottom: 8px;
  font-weight: 600;
}

.explore-more {
  background-color: #ffffff;
}

.link-card {
  background-color: #f8f8f8;
  border: 2px solid #000000;
  text-align: center;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.link-card h3 {
  margin-bottom: 8px;
}

.link-card p {
  margin-bottom: 16px;
  color: #666666;
}

.return-home {
  background-color: #f8f8f8;
  text-align: center;
  padding: 60px 20px;
}

.return-home .btn-primary,
.return-home .btn-secondary {
  margin: 0 10px;
}

.contact-quick {
  background-color: #f8f8f8;
  text-align: center;
}

.contact-quick p {
  margin-bottom: 8px;
  color: #333333;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 14px;
  color: #e0e0e0;
}

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

.cookie-banner button {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #ffffff;
  color: #000000;
}

.cookie-accept:hover {
  background-color: #000000;
  color: #ffffff;
}

.cookie-reject,
.cookie-settings {
  background-color: transparent;
  color: #ffffff;
}

.cookie-reject:hover,
.cookie-settings:hover {
  background-color: #ffffff;
  color: #000000;
}

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

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

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #000000;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid #e0e0e0;
}

.cookie-category h4 {
  margin-bottom: 8px;
  font-size: 16px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.cookie-toggle label {
  font-size: 14px;
  color: #666666;
}

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

.cookie-modal-buttons button {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid #000000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save {
  background-color: #000000;
  color: #ffffff;
}

.cookie-save:hover {
  background-color: #ffffff;
  color: #000000;
}

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

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  /* Header */
  .main-nav,
  .header-cta {
    display: none;
  }

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

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

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

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

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

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }

  .trust-badges {
    flex-direction: column;
  }

  /* Sections */
  section {
    padding: 60px 20px;
  }

  /* Grid layouts */
  .services-grid,
  .benefits-grid,
  .steps-grid,
  .testimonials-grid,
  .contact-grid,
  .pricing-grid,
  .package-grid,
  .values-grid,
  .stats-grid,
  .links-grid,
  .directions {
    flex-direction: column;
  }

  .service-card,
  .benefit,
  .step,
  .testimonial-card,
  .contact-item,
  .pricing-card,
  .package-card,
  .value,
  .stat,
  .link-card,
  .direction-item {
    max-width: 100%;
  }

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

  .footer-col {
    max-width: 100%;
  }

  .footer-legal {
    flex-direction: column;
    text-align: center;
  }

  /* Cookie Banner */
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

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

  .cookie-banner button {
    width: 100%;
  }

  /* Contact Hours */
  .hours-row {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Thank You */
  .return-home .btn-primary,
  .return-home .btn-secondary {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .container {
    padding: 0 40px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

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

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

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

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

/* Stagger animation for cards */
.service-card:nth-child(1),
.benefit:nth-child(1),
.pricing-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2),
.benefit:nth-child(2),
.pricing-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3),
.benefit:nth-child(3),
.pricing-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-card:nth-child(4),
.benefit:nth-child(4),
.pricing-card:nth-child(4) {
  animation-delay: 0.4s;
}

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

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

  body {
    color: #000000;
    background: #ffffff;
  }

  a {
    color: #000000;
    text-decoration: underline;
  }
}