/* =================================================================
   ParamClicc - Modern Bold Design System
   CSS Stylesheet with Mobile Navigation & Cookie Consent
   ================================================================= */

/* ===== CSS RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #2C3E50;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

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

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

h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

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

a:hover {
  color: #2C3E50;
}

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

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

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

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

/* ===== MOBILE MENU TOGGLE BUTTON ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: #C77D6C;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(199, 125, 108, 0.3);
  transition: all 0.3s ease;
}

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

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #2C3E50;
  z-index: 9999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav a:hover {
  background: #C77D6C;
  transform: translateX(10px);
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
}

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

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  margin: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: #2C3E50;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  background: #F4E8E0;
  color: #C77D6C;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.btn-primary:hover {
  background: #2C3E50;
  border-color: #2C3E50;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(199, 125, 108, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #2C3E50;
  border-color: #2C3E50;
}

.btn-secondary:hover {
  background: #2C3E50;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(44, 62, 80, 0.2);
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #2C3E50 0%, #34495e 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="%23C77D6C" opacity="0.05"/></svg>');
  opacity: 0.3;
}

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

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

.hero-subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  color: #F4E8E0;
  line-height: 1.6;
}

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

.trust-badge {
  font-size: 14px;
  color: #F4E8E0;
  margin-top: 24px;
  font-weight: 600;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: #F4E8E0;
  padding: 60px 20px 40px;
  text-align: center;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: #666;
}

.breadcrumb a {
  color: #C77D6C;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
  padding: 60px 20px;
  background: #ffffff;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.benefit-card {
  flex: 1 1 250px;
  max-width: 280px;
  padding: 32px;
  text-align: center;
  background: #F4E8E0;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(199, 125, 108, 0.2);
}

.benefit-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

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

.benefit-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* ===== SERVICES SECTIONS ===== */
.services-preview,
.services-detailed {
  padding: 60px 20px;
  background: #ffffff;
}

.services-preview h2,
.services-detailed h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.service-card,
.service-detail {
  flex: 1 1 280px;
  max-width: 320px;
  padding: 32px;
  background: #F4E8E0;
  border-radius: 12px;
  border: 3px solid #C77D6C;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card:hover,
.service-detail:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(199, 125, 108, 0.3);
  border-color: #2C3E50;
}

.service-card h3,
.service-detail h3 {
  font-size: 24px;
  color: #2C3E50;
  margin-bottom: 12px;
}

.service-card p,
.service-detail p {
  font-size: 15px;
  color: #333;
  margin-bottom: 12px;
}

.service-price,
.service-meta {
  font-size: 20px;
  font-weight: 700;
  color: #C77D6C;
  margin-top: 8px;
}

.service-includes {
  list-style-type: none;
  padding-left: 0;
  margin-top: 16px;
}

.service-includes li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 15px;
}

.service-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C77D6C;
  font-weight: 700;
}

/* ===== COLLECTIONS ===== */
.collections {
  padding: 60px 20px;
  background: #ffffff;
}

.collections h2 {
  text-align: center;
  margin-bottom: 48px;
}

.collection-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.collection-category {
  flex: 1 1 280px;
  max-width: 320px;
  padding: 32px;
  background: #F4E8E0;
  border-radius: 12px;
  border-left: 6px solid #C77D6C;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.collection-category:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(199, 125, 108, 0.2);
}

.collection-category h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.collection-price {
  font-size: 22px;
  font-weight: 700;
  color: #C77D6C;
  margin: 12px 0;
}

.collection-features {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

/* ===== CUSTOM TAILORING ===== */
.custom-tailoring {
  padding: 60px 20px;
  background: #F4E8E0;
  text-align: center;
}

.custom-tailoring h2 {
  margin-bottom: 24px;
}

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

.step {
  flex: 1 1 200px;
  max-width: 240px;
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  border: 3px solid #C77D6C;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.step h4 {
  font-size: 36px;
  color: #C77D6C;
  margin-bottom: 8px;
}

.step p {
  font-size: 16px;
  font-weight: 600;
  color: #2C3E50;
}

/* ===== TESTIMONIALS ===== */
.testimonials,
.testimonial-single {
  padding: 60px 20px;
  background: #F4E8E0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.testimonial-card {
  flex: 1 1 400px;
  max-width: 500px;
  padding: 32px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 6px solid #C77D6C;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  font-style: italic;
}

.testimonial-author {
  font-size: 14px;
  color: #2C3E50;
  font-style: normal;
  margin-top: 8px;
}

.testimonial-author strong {
  color: #C77D6C;
  font-size: 16px;
}

/* ===== BRAND STORY & VALUES ===== */
.brand-story,
.values,
.team,
.achievements {
  padding: 60px 20px;
}

.brand-story {
  background: #ffffff;
}

.values {
  background: #F4E8E0;
}

.team {
  background: #ffffff;
}

.achievements {
  background: #F4E8E0;
}

.brand-story h2,
.values h2,
.team h2,
.achievements h2 {
  text-align: center;
  margin-bottom: 32px;
}

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

.values-grid,
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.value-card,
.team-member {
  flex: 1 1 250px;
  max-width: 280px;
  padding: 32px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-card h3,
.team-member h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #C77D6C;
}

.member-role {
  font-size: 14px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.stat {
  flex: 1 1 200px;
  max-width: 240px;
  padding: 32px;
  background: #ffffff;
  border-radius: 12px;
  text-align: center;
  border: 3px solid #C77D6C;
}

.stat h3 {
  font-size: 48px;
  color: #C77D6C;
  margin-bottom: 8px;
}

.stat p {
  font-size: 16px;
  color: #2C3E50;
  font-weight: 600;
}

/* ===== CONTACT SECTIONS ===== */
.contact-methods,
.location-details,
.faq-contact {
  padding: 60px 20px;
}

.contact-methods {
  background: #F4E8E0;
}

.location-details {
  background: #ffffff;
}

.faq-contact {
  background: #F4E8E0;
}

.contact-methods h2,
.location-details h2,
.faq-contact h2 {
  text-align: center;
  margin-bottom: 48px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-method {
  flex: 1 1 300px;
  max-width: 360px;
  padding: 32px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-method img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.contact-method h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.contact-detail {
  font-size: 18px;
  font-weight: 700;
  color: #C77D6C;
  margin: 12px 0;
}

.contact-detail a {
  color: #C77D6C;
}

.contact-detail a:hover {
  color: #2C3E50;
}

.location-info {
  max-width: 800px;
  margin: 0 auto;
}

.location-info h3,
.location-info h4 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.location-info ul {
  list-style-type: none;
  padding-left: 0;
}

.location-info li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.location-info li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #C77D6C;
  font-weight: 700;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 32px;
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #C77D6C;
}

.faq-item h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2C3E50;
}

/* ===== BOOKING PROCESS ===== */
.booking-process {
  padding: 60px 20px;
  background: #F4E8E0;
  text-align: center;
}

.booking-process h2 {
  margin-bottom: 32px;
}

.process-list {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  padding-left: 20px;
}

.process-list li {
  padding: 12px 0;
  font-size: 17px;
  font-weight: 600;
  color: #2C3E50;
}

/* ===== CTA SECTIONS ===== */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #C77D6C 0%, #B56E5F 100%);
  text-align: center;
  color: #ffffff;
}

.cta-section h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 24px;
}

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

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

.cta-section .btn-primary {
  background: #ffffff;
  color: #C77D6C;
  border-color: #ffffff;
}

.cta-section .btn-primary:hover {
  background: #2C3E50;
  color: #ffffff;
  border-color: #2C3E50;
}

.cta-section .btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-section .btn-secondary:hover {
  background: #ffffff;
  color: #C77D6C;
}

.trust-element {
  font-size: 14px;
  margin-top: 24px;
  font-weight: 600;
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
  padding: 60px 20px;
  background: #ffffff;
}

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

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.content-wrapper h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 22px;
}

.content-wrapper h4 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 18px;
}

.content-wrapper ul {
  padding-left: 32px;
  margin-bottom: 20px;
}

.content-wrapper li {
  padding: 8px 0;
  font-size: 16px;
}

.legal-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid #F4E8E0;
  text-align: center;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #C77D6C 0%, #B56E5F 100%);
  text-align: center;
  color: #ffffff;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.thank-you-content img {
  width: 80px;
  height: 80px;
}

.thank-you-content h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 16px;
}

.confirmation-details,
.next-steps,
.contact-reminder,
.homepage-link {
  padding: 60px 20px;
  text-align: center;
}

.confirmation-details {
  background: #F4E8E0;
}

.next-steps {
  background: #ffffff;
}

.contact-reminder {
  background: #F4E8E0;
}

.homepage-link {
  background: #ffffff;
}

.confirmation-steps {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  list-style-type: none;
  padding-left: 0;
}

.confirmation-steps li {
  padding: 16px 0;
  padding-left: 32px;
  position: relative;
  font-size: 17px;
  font-weight: 600;
}

.confirmation-steps li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C77D6C;
  font-size: 24px;
  font-weight: 700;
}

.next-steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.next-step-card {
  flex: 1 1 280px;
  max-width: 320px;
  padding: 32px;
  background: #F4E8E0;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* ===== FOOTER ===== */
footer {
  background: #2C3E50;
  color: #ffffff;
  padding: 60px 20px 20px;
}

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

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

.footer-section h3 {
  color: #F4E8E0;
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #C77D6C;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-section p {
  font-size: 15px;
  line-height: 1.7;
  color: #F4E8E0;
  margin-bottom: 12px;
}

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

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #F4E8E0;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #C77D6C;
  padding-left: 8px;
}

.footer-copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(244, 232, 224, 0.2);
  font-size: 14px;
  color: #F4E8E0;
}

/* ===== COOKIE CONSENT BANNER ===== */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2C3E50;
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 15px;
  line-height: 1.6;
}

.cookie-text a {
  color: #C77D6C;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-btn-accept:hover {
  background: #B56E5F;
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cookie-btn-reject:hover {
  background: #ffffff;
  color: #2C3E50;
}

.cookie-btn-settings {
  background: transparent;
  color: #F4E8E0;
  border: 2px solid #F4E8E0;
}

.cookie-btn-settings:hover {
  background: #F4E8E0;
  color: #2C3E50;
}

/* ===== COOKIE SETTINGS MODAL ===== */
#cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #2C3E50;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-close:hover {
  color: #C77D6C;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F4E8E0;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-category-info {
  flex: 1;
}

.cookie-category h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #2C3E50;
}

.cookie-category p {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 28px;
}

.cookie-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: #C77D6C;
}

input:checked + .cookie-slider:before {
  transform: translateX(24px);
}

input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .nav-menu {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  /* Button adjustments */
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  /* Grid adjustments */
  .benefits-grid,
  .services-grid,
  .collection-grid,
  .values-grid,
  .team-grid,
  .stats-grid,
  .contact-grid,
  .testimonials-grid,
  .next-steps-grid {
    gap: 20px;
  }
  
  .benefit-card,
  .service-card,
  .service-detail,
  .collection-category,
  .value-card,
  .team-member,
  .stat,
  .contact-method,
  .testimonial-card,
  .next-step-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    max-width: 100%;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
  
  /* Process steps */
  .process-steps {
    flex-direction: column;
  }
  
  .step {
    max-width: 100%;
  }
  
  /* CTA section */
  .cta-section h2 {
    font-size: 28px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  /* Further mobile optimizations */
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subheadline {
    font-size: 15px;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 13px;
    width: 100%;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .benefit-card,
  .service-card,
  .value-card,
  .contact-method {
    padding: 24px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .mobile-menu {
    width: 90%;
    max-width: 320px;
  }
}