/* ============================================
   DAZZLING AXLE - VINTAGE RETRO DESIGN SYSTEM
   Complete CSS Stylesheet
   ============================================ */

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

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

body {
  font-family: 'Georgia', 'Garamond', serif;
  line-height: 1.7;
  color: #2c1810;
  background-color: #f9f5f0;
  overflow-x: hidden;
}

/* TYPOGRAPHY - VINTAGE RETRO FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2c1810;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

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

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

a:hover {
  color: #6b3569;
}

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

ul {
  list-style-position: inside;
}

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

/* HEADER - VINTAGE STYLE */
header {
  background: linear-gradient(to bottom, #2c1810 0%, #4a2f1f 100%);
  padding: 20px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #D4AF37;
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

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

.main-nav a {
  color: #f9f5f0;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #D4AF37;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #D4AF37;
}

.main-nav a:hover::after {
  width: 80%;
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #8B4789;
  color: #f9f5f0;
  border: 2px solid #D4AF37;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(139, 71, 137, 0.3);
  transition: all 0.3s ease;
}

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(to bottom, #2c1810 0%, #4a2f1f 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  transition: right 0.4s ease;
  overflow-y: auto;
  border-left: 3px solid #D4AF37;
}

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

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

.mobile-menu-close:hover {
  background: #8B4789;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #f9f5f0;
  font-size: 18px;
  padding: 16px 20px;
  border-radius: 8px;
  background: rgba(139, 71, 137, 0.2);
  border: 1px solid #D4AF37;
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background: #8B4789;
  transform: translateX(-5px);
}

/* HERO SECTION - VINTAGE STYLE */
.hero {
  background: linear-gradient(135deg, #F8E8EE 0%, #e8d8de 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  border-bottom: 3px solid #D4AF37;
  box-shadow: inset 0 0 50px rgba(139, 71, 137, 0.1);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  pointer-events: none;
}

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

.hero h1 {
  color: #2c1810;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.2);
}

.subheadline {
  font-size: 20px;
  color: #4a2f1f;
  margin-bottom: 32px;
  font-style: italic;
}

/* BUTTONS - RETRO STYLE */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: #8B4789;
  color: #f9f5f0;
  border-color: #D4AF37;
  box-shadow: 0 4px 12px rgba(139, 71, 137, 0.3), inset 0 -2px 0 rgba(0,0,0,0.2);
}

.btn-primary:hover {
  background: #6b3569;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 71, 137, 0.4), inset 0 -2px 0 rgba(0,0,0,0.2);
}

.btn-secondary {
  background: transparent;
  color: #8B4789;
  border-color: #8B4789;
}

.btn-secondary:hover {
  background: #8B4789;
  color: #f9f5f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 71, 137, 0.3);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* TRUST BADGES */
.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.badge {
  background: rgba(212, 175, 55, 0.2);
  color: #2c1810;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #D4AF37;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

/* BREADCRUMBS - VINTAGE */
.breadcrumbs {
  font-size: 14px;
  color: #4a2f1f;
  margin-bottom: 24px;
  padding: 12px 0;
  border-bottom: 1px dotted #D4AF37;
}

.breadcrumbs a {
  color: #8B4789;
  text-decoration: underline;
}

/* SECTION STYLING */
section {
  padding: 60px 20px;
  margin-bottom: 0;
}

section h2 {
  text-align: center;
  margin-bottom: 16px;
  color: #2c1810;
  position: relative;
  padding-bottom: 16px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #D4AF37;
  border-radius: 2px;
}

.subtitle {
  text-align: center;
  font-size: 18px;
  color: #4a2f1f;
  margin-bottom: 48px;
  font-style: italic;
}

/* BENEFITS GRID - FLEXBOX */
.benefits, .services, .process, .testimonials, .guarantee {
  background: #ffffff;
  border-top: 3px solid #D4AF37;
  border-bottom: 3px solid #D4AF37;
}

.benefits-grid, .services-grid, .use-cases-grid, .guarantees-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.benefit-item, .service-card, .use-case, .guarantee-item {
  flex: 1 1 280px;
  max-width: 350px;
  background: #f9f5f0;
  padding: 32px 24px;
  border-radius: 12px;
  border: 2px solid #D4AF37;
  box-shadow: 0 4px 12px rgba(139, 71, 137, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #D4AF37, #8B4789);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.benefit-item:hover::before {
  opacity: 0.3;
}

.benefit-item:hover, .service-card:hover, .use-case:hover, .guarantee-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(139, 71, 137, 0.25);
}

.benefit-item h3, .service-card h3, .use-case h3, .guarantee-item h3 {
  color: #8B4789;
  margin-bottom: 12px;
  font-size: 22px;
}

.benefit-item p, .service-card p, .use-case p, .guarantee-item p {
  color: #4a2f1f;
  line-height: 1.6;
}

/* SERVICE CARDS */
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #D4AF37;
  margin: 16px 0;
  font-family: 'Playfair Display', serif;
}

.service-card .min-order {
  font-size: 14px;
  color: #8B4789;
  font-style: italic;
}

.service-card .features {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}

.service-card .features li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #4a2f1f;
}

.service-card .features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
}

/* PROCESS STEPS - FLEXBOX */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.step {
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  padding: 32px 20px;
  background: #f9f5f0;
  border-radius: 12px;
  border: 2px solid #D4AF37;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8B4789, #6b3569);
  color: #f9f5f0;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  border: 3px solid #D4AF37;
  box-shadow: 0 4px 12px rgba(139, 71, 137, 0.3);
}

.step h3 {
  color: #2c1810;
  margin-bottom: 12px;
}

.step p {
  color: #4a2f1f;
}

/* TESTIMONIALS - VINTAGE CARDS */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 450px;
  max-width: 550px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #D4AF37;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: rgba(212, 175, 55, 0.3);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

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

.testimonial-card .author {
  color: #8B4789;
  font-weight: 600;
  font-size: 14px;
  font-style: italic;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #D4AF37;
}

.rating {
  text-align: center;
  font-size: 18px;
  color: #D4AF37;
  font-weight: 700;
  margin-top: 32px;
}

/* CTA BANNER - VINTAGE STYLE */
.cta-banner, .cta-contact, .cta-visit {
  background: linear-gradient(135deg, #8B4789 0%, #6b3569 100%);
  color: #f9f5f0;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  border-top: 3px solid #D4AF37;
  border-bottom: 3px solid #D4AF37;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(212, 175, 55, 0.05) 10px, rgba(212, 175, 55, 0.05) 20px);
  pointer-events: none;
}

.cta-banner h2, .cta-contact h2, .cta-visit h2 {
  color: #f9f5f0;
  margin-bottom: 16px;
  position: relative;
}

.cta-banner h2::after {
  background: #D4AF37;
}

.cta-banner p, .cta-contact p, .cta-visit p {
  color: #F8E8EE;
  font-size: 18px;
  margin-bottom: 32px;
}

.guarantee {
  font-size: 14px;
  color: #F8E8EE;
  margin-top: 24px;
  font-style: italic;
}

/* CONTACT & INFO SECTIONS */
.contact-options, .location-info, .opening-hours {
  padding: 60px 20px;
}

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

.contact-option {
  flex: 1 1 280px;
  max-width: 350px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #D4AF37;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-option h3 {
  color: #8B4789;
  margin-bottom: 16px;
}

.contact-info {
  background: #f9f5f0;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #D4AF37;
  margin-top: 32px;
  text-align: center;
}

.contact-info p {
  color: #2c1810;
  font-size: 16px;
  margin-bottom: 12px;
}

/* FORM PLACEHOLDER */
.form-placeholder {
  background: #ffffff;
  padding: 48px 32px;
  border-radius: 12px;
  border: 2px dashed #D4AF37;
  margin-top: 40px;
  text-align: center;
}

.form-note {
  color: #4a2f1f;
  font-size: 16px;
  margin-bottom: 24px;
  font-weight: 600;
}

.form-fields-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 500px;
  margin: 24px auto;
}

.form-fields-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #4a2f1f;
}

.form-fields-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-size: 20px;
}

.submit-info {
  color: #8B4789;
  font-style: italic;
  margin-top: 24px;
}

/* FAQ SECTION */
.faq {
  background: #f9f5f0;
  padding: 60px 20px;
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 2px solid #D4AF37;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-item h3 {
  color: #8B4789;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #4a2f1f;
  margin-bottom: 0;
}

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

.text-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 40px;
  background: #f9f5f0;
  border-radius: 12px;
  border: 2px solid #D4AF37;
}

.text-section h2 {
  color: #8B4789;
  text-align: left;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
}

.text-section h2::after {
  display: none;
}

.text-section p {
  color: #2c1810;
  margin-bottom: 16px;
}

.text-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.text-section ul li {
  color: #4a2f1f;
  margin-bottom: 8px;
}

/* LISTS & TABLES */
.options-list, .tiers-list, .pricing-list, .hours-list, .values-list {
  max-width: 700px;
  margin: 32px auto;
  padding: 32px;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #D4AF37;
}

.options-list li, .tiers-list li, .pricing-list li, .hours-list p, .values-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #2c1810;
  border-bottom: 1px dotted #D4AF37;
}

.options-list li::before, .tiers-list li::before, .pricing-list li::before, .values-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-size: 14px;
}

.note {
  color: #8B4789;
  font-style: italic;
  font-size: 14px;
  text-align: center;
  margin-top: 24px;
}

/* MISSION/VISION SECTION */
.mission-vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
}

.mission, .vision {
  flex: 1 1 400px;
  background: #f9f5f0;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #D4AF37;
}

.mission h2, .vision h2 {
  text-align: left;
  color: #8B4789;
}

.mission h2::after, .vision h2::after {
  left: 0;
  transform: none;
}

.values {
  margin-top: 40px;
  padding: 40px;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #D4AF37;
}

/* ACHIEVEMENTS GRID */
.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.achievement {
  flex: 1 1 220px;
  max-width: 250px;
  background: linear-gradient(135deg, #8B4789, #6b3569);
  color: #f9f5f0;
  padding: 32px 24px;
  border-radius: 12px;
  border: 3px solid #D4AF37;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(139, 71, 137, 0.3);
}

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

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: #D4AF37;
  color: #ffffff;
  border-radius: 50%;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 32px;
  border: 5px solid #8B4789;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

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

.next-steps .step {
  flex: 1 1 200px;
  max-width: 250px;
}

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

.suggestion {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #D4AF37;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.suggestion h3 {
  color: #8B4789;
  margin-bottom: 16px;
}

/* CATEGORIES & OPTIONS */
.options-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.category {
  flex: 1 1 280px;
  background: #f9f5f0;
  padding: 32px 24px;
  border-radius: 12px;
  border: 2px solid #D4AF37;
}

.category h3 {
  color: #8B4789;
  margin-bottom: 16px;
}

.category ul {
  list-style: none;
  padding: 0;
}

.category ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #4a2f1f;
}

.category ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
}

/* FOOTER - VINTAGE STYLE */
footer {
  background: linear-gradient(to bottom, #2c1810 0%, #1a0f08 100%);
  color: #f9f5f0;
  padding: 60px 20px 20px;
  border-top: 3px solid #D4AF37;
}

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

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

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

.footer-section p {
  color: #e8d8de;
  font-size: 14px;
  line-height: 1.6;
}

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

.footer-nav a {
  color: #e8d8de;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 12px;
  position: relative;
}

.footer-nav a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #D4AF37;
}

.footer-nav a:hover {
  color: #D4AF37;
  padding-left: 20px;
}

.footer-nav a:hover::before {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-bottom p {
  color: #e8d8de;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
#cookie-consent-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, #2c1810 0%, #4a2f1f 100%);
  padding: 24px;
  z-index: 1998;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  border-top: 3px solid #D4AF37;
}

#cookie-consent-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-text {
  flex: 1 1 400px;
  color: #f9f5f0;
  font-size: 14px;
}

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

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

.cookie-btn-accept {
  background: #8B4789;
  color: #f9f5f0;
}

.cookie-btn-accept:hover {
  background: #6b3569;
}

.cookie-btn-reject {
  background: transparent;
  color: #f9f5f0;
}

.cookie-btn-reject:hover {
  background: rgba(139, 71, 137, 0.2);
}

.cookie-btn-settings {
  background: transparent;
  color: #D4AF37;
}

.cookie-btn-settings:hover {
  background: rgba(212, 175, 55, 0.2);
}

/* COOKIE SETTINGS MODAL */
#cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  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;
  border: 3px solid #D4AF37;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  background: linear-gradient(135deg, #8B4789, #6b3569);
  color: #f9f5f0;
  padding: 24px;
  border-radius: 9px 9px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-close {
  background: transparent;
  color: #f9f5f0;
  border: 2px solid #D4AF37;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: rgba(212, 175, 55, 0.3);
  transform: rotate(90deg);
}

.cookie-modal-body {
  padding: 32px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f9f5f0;
  border-radius: 8px;
  border: 1px solid #D4AF37;
}

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

.cookie-category h3 {
  color: #8B4789;
  font-size: 18px;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

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

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

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

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: #8B4789;
}

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
  background: #D4AF37;
  cursor: not-allowed;
}

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

.cookie-modal-footer {
  padding: 24px 32px;
  border-top: 1px solid #D4AF37;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .subheadline {
    font-size: 18px;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  /* Button stacking */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  /* Grid adjustments */
  .benefits-grid, .services-grid, .process-steps, .testimonials-grid, .contact-grid, .achievements-grid {
    gap: 20px;
  }
  
  .benefit-item, .service-card, .step, .testimonial-card, .contact-option, .achievement {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Sections padding */
  section {
    padding: 40px 20px;
  }
  
  /* Text sections */
  .text-section {
    padding: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .container {
    padding: 0 32px;
  }
  
  .benefit-item, .service-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .step {
    flex: 1 1 calc(50% - 12px);
  }
}

/* PRINT STYLES */
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, .cta-buttons, #cookie-consent-banner {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ACCESSIBILITY IMPROVEMENTS */
*:focus {
  outline: 3px solid #D4AF37;
  outline-offset: 2px;
}

button:focus, a:focus {
  outline: 3px solid #8B4789;
}

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

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* END OF STYLESHEET */