/* ===================================
   AZURE KARMA - PLAYFUL DYNAMIC DESIGN
   Bright colors, animated elements, fun fonts, energetic feel
   =================================== */

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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8f5 100%);
  overflow-x: hidden;
}

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

h1 {
  font-size: 48px;
  animation: bounceIn 0.8s ease-out;
}

h2 {
  font-size: 32px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #D97642, #ff9966);
  border-radius: 2px;
  animation: slideIn 0.6s ease-out;
}

h3 {
  font-size: 24px;
  color: #D97642;
}

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

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

a:hover {
  color: #D97642;
  transform: translateY(-2px);
}

ul {
  list-style: none;
}

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

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

/* ANIMATIONS */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(-50px);
  }
  50% {
    transform: scale(1.05) translateY(10px);
  }
  70% {
    transform: scale(0.95) translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes slideIn {
  from {
    width: 0;
  }
  to {
    width: 60%;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}

@keyframes rainbow {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #D97642, #ff9966);
  color: white;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(217, 118, 66, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 12px 32px rgba(217, 118, 66, 0.6);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #2B5F8C 0%, #3498db 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.mobile-nav a {
  color: white;
  font-size: 24px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  max-width: 300px;
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: white;
  color: #2B5F8C;
  transform: scale(1.05) translateY(-4px);
  border-color: white;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

/* HEADER */
header {
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  animation: slideDown 0.5s ease-out;
}

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

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

.logo img {
  height: 60px;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.1) rotate(5deg);
  animation: wiggle 0.5s ease;
}

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

.nav-menu li a {
  font-weight: 600;
  font-size: 16px;
  color: #2B5F8C;
  padding: 8px 16px;
  border-radius: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-menu li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(217, 118, 66, 0.3), transparent);
  transition: left 0.5s ease;
}

.nav-menu li a:hover::before {
  left: 100%;
}

.nav-menu li a:hover {
  background: linear-gradient(135deg, #D97642, #ff9966);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 118, 66, 0.3);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #D97642, #ff9966);
  color: white;
  box-shadow: 0 8px 24px rgba(217, 118, 66, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff9966, #D97642);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(217, 118, 66, 0.6);
}

.btn-secondary {
  background: white;
  color: #2B5F8C;
  border: 3px solid #2B5F8C;
  box-shadow: 0 8px 24px rgba(43, 95, 140, 0.2);
}

.btn-secondary:hover {
  background: #2B5F8C;
  color: white;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(43, 95, 140, 0.4);
}

.button-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #2B5F8C 0%, #3498db 50%, #D97642 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '🍳';
  position: absolute;
  font-size: 120px;
  opacity: 0.1;
  top: 20px;
  left: 10%;
  animation: float 3s ease-in-out infinite;
}

.hero::after {
  content: '🥘';
  position: absolute;
  font-size: 100px;
  opacity: 0.1;
  bottom: 20px;
  right: 10%;
  animation: float 4s ease-in-out infinite;
  animation-delay: 1s;
}

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

.hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: bounceIn 0.8s ease-out;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  color: #F4E8D8;
  animation: fadeInUp 1s ease-out 0.3s both;
}

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

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.brand-statement {
  font-size: 24px;
  font-weight: 700;
  color: #F4E8D8;
  margin-top: 24px;
  font-style: italic;
}

.trust-indicator, .trust-badge {
  font-size: 18px;
  font-weight: 600;
  color: #F4E8D8;
  margin-top: 20px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  display: inline-block;
  backdrop-filter: blur(10px);
}

/* SECTION STYLES */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #7f8c8d;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* FLEXBOX GRID PATTERNS */
.values-grid, .services-grid, .benefits-grid, .categories-grid,
.testimonials-grid, .pricing-grid, .features-grid, .guarantees-grid,
.achievements-grid, .blog-grid, .contact-grid, .trust-grid,
.audience-grid, .collections-grid, .recipe-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

/* CARD STYLES */
.value-item, .service-card, .benefit-item, .category-card,
.testimonial-card, .pricing-card, .feature-item, .guarantee-item,
.achievement-item, .blog-card, .contact-item, .trust-item,
.audience-card, .collection-card, .recipe-card, .card {
  background: white;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.value-item::before, .service-card::before, .blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #D97642, #ff9966, #2B5F8C);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.value-item:hover::before, .service-card:hover::before, .blog-card:hover::before {
  transform: translateX(0);
}

.value-item:hover, .service-card:hover, .benefit-item:hover,
.category-card:hover, .pricing-card:hover, .blog-card:hover,
.audience-card:hover, .collection-card:hover, .recipe-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 16px 40px rgba(217, 118, 66, 0.3);
}

.value-item h3, .service-card h3, .category-card h3,
.pricing-card h3, .blog-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.value-item p, .service-card p, .category-card p,
.blog-card p {
  color: #555;
  line-height: 1.8;
}

/* PRICE DISPLAY */
.price {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #D97642;
  margin-top: 20px;
  font-family: 'Playfair Display', serif;
}

.pricing-card {
  text-align: center;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: #D97642;
  background: linear-gradient(135deg, #fff 0%, #fff5f0 100%);
}

.pricing-card .price {
  font-size: 42px;
  margin: 20px 0;
  background: linear-gradient(135deg, #D97642, #2B5F8C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #F4E8D8 0%, #fff 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-left: 6px solid #D97642;
  font-style: italic;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #D97642;
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-card p {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-weight: 700;
  color: #2B5F8C;
  font-style: normal;
  text-align: right;
  font-size: 16px;
}

/* CTA BANNER */
.cta-banner, .cta-consultation {
  background: linear-gradient(135deg, #D97642 0%, #ff9966 100%);
  color: white;
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-banner h2, .cta-consultation h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-banner h2::after {
  background: white;
}

.cta-banner p, .cta-consultation p {
  font-size: 20px;
  margin-bottom: 32px;
  color: #F4E8D8;
  position: relative;
  z-index: 1;
}

.cta-banner .btn, .cta-consultation .btn {
  position: relative;
  z-index: 1;
}

.guarantee {
  margin-top: 24px;
  font-size: 16px;
  color: #F4E8D8;
}

/* TEXT-IMAGE SECTIONS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  padding: 40px 20px;
}

.text-image-section:nth-child(even) {
  flex-direction: row-reverse;
}

.text-image-section > * {
  flex: 1 1 45%;
  min-width: 300px;
}

/* ERROR PAGE */
.error-hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8f5 100%);
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #D97642;
  line-height: 1;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}

.error-content h1 {
  font-size: 36px;
  color: #2B5F8C;
  margin-bottom: 20px;
}

.popular-pages, .help-section {
  padding: 60px 20px;
  text-align: center;
}

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

.page-link {
  padding: 20px 32px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-weight: 600;
  color: #2B5F8C;
}

.page-link:hover {
  background: linear-gradient(135deg, #D97642, #ff9966);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(217, 118, 66, 0.3);
}

/* TIMELINE */
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.timeline-item {
  flex: 1 1 250px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #D97642;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(217, 118, 66, 0.2);
}

.timeline-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(217, 118, 66, 0.3);
}

.timeline-item h3 {
  font-size: 32px;
  color: #D97642;
  margin-bottom: 12px;
}

/* BLOG SPECIFIC */
.category-tag {
  display: inline-block;
  padding: 12px 24px;
  background: white;
  border-radius: 50px;
  margin: 8px;
  font-weight: 600;
  color: #2B5F8C;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-tag:hover {
  background: linear-gradient(135deg, #D97642, #ff9966);
  color: white;
  transform: scale(1.1);
}

.meta {
  display: block;
  font-size: 14px;
  color: #7f8c8d;
  margin-top: 16px;
  font-weight: 600;
}

.popular-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.popular-item {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.popular-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(217, 118, 66, 0.3);
}

/* LEGAL PAGES */
.legal-hero {
  background: linear-gradient(135deg, #2B5F8C 0%, #3498db 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.legal-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.last-updated {
  font-size: 14px;
  color: #F4E8D8;
  margin-top: 12px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.legal-content ul {
  list-style: disc;
  margin-left: 32px;
  margin-bottom: 20px;
}

.legal-content ul li {
  margin-bottom: 8px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #D97642 0%, #ff9966 100%);
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thank-you-hero::before {
  content: '🎉';
  position: absolute;
  font-size: 100px;
  top: 20px;
  left: 10%;
  animation: float 3s ease-in-out infinite;
}

.thank-you-hero::after {
  content: '✨';
  position: absolute;
  font-size: 80px;
  bottom: 20px;
  right: 10%;
  animation: float 4s ease-in-out infinite;
  animation-delay: 1s;
}

.thank-you-content h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 24px;
}

.next-steps, .meanwhile-suggestions, .explore-more {
  padding: 60px 20px;
}

.steps-grid, .suggestions-grid, .explore-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.step-item, .suggestion-item, .explore-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.step-item:hover, .suggestion-item:hover, .explore-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(217, 118, 66, 0.3);
}

.response-time {
  text-align: center;
  font-weight: 600;
  color: #D97642;
  margin-top: 32px;
  font-size: 18px;
}

.back-home, .return-home {
  text-align: center;
  padding: 40px 20px;
}

/* FORM NOTICE */
.form-notice {
  background: #F4E8D8;
  padding: 32px;
  border-radius: 16px;
  border-left: 6px solid #D97642;
  margin-top: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-notice p {
  font-size: 18px;
  color: #2c3e50;
  margin: 0;
}

/* LOCATION INFO */
.location-info {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-top: 32px;
}

.location-info p {
  margin-bottom: 16px;
  line-height: 1.8;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #2B5F8C 0%, #1a3d5c 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

.footer-section h3, .footer-section h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 22px;
}

.footer-section p {
  color: #F4E8D8;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-section ul li a {
  color: #F4E8D8;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section ul li a:hover {
  color: #D97642;
  transform: translateX(8px);
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  text-align: center;
}

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  padding: 24px;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 4px solid #D97642;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #2c3e50;
}

.cookie-text h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #2B5F8C;
}

.cookie-text p {
  font-size: 14px;
  margin: 0;
}

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

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

.cookie-accept {
  background: linear-gradient(135deg, #D97642, #ff9966);
  color: white;
}

.cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(217, 118, 66, 0.4);
}

.cookie-reject {
  background: #f0f0f0;
  color: #2c3e50;
}

.cookie-reject:hover {
  background: #e0e0e0;
}

.cookie-settings {
  background: white;
  color: #2B5F8C;
  border: 2px solid #2B5F8C;
}

.cookie-settings:hover {
  background: #2B5F8C;
  color: white;
}

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

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

.cookie-modal-content {
  background: white;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: bounceIn 0.5s ease-out;
}

.cookie-modal h2 {
  color: #2B5F8C;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
}

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

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

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: #ccc;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #D97642;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active::after {
  transform: translateX(30px);
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .nav-menu {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Flex items full width on mobile */
  .value-item, .service-card, .benefit-item, .category-card,
  .testimonial-card, .pricing-card, .feature-item, .guarantee-item,
  .achievement-item, .blog-card, .contact-item, .trust-item,
  .audience-card, .collection-card, .recipe-card,
  .step-item, .suggestion-item, .explore-item, .timeline-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Text-image sections stack vertically */
  .text-image-section {
    flex-direction: column;
  }
  
  .text-image-section:nth-child(even) {
    flex-direction: column;
  }
  
  /* Button groups stack */
  .hero-buttons, .button-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie banner stacks */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  /* Error code smaller */
  .error-code {
    font-size: 80px;
  }
  
  /* Padding adjustments */
  .section {
    padding: 40px 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  .cta-banner, .cta-consultation {
    padding: 60px 16px;
  }
}

@media (max-width: 480px) {
  /* Further mobile optimizations */
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .error-code {
    font-size: 60px;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 16px;
  }
  
  .mobile-nav a {
    font-size: 20px;
    padding: 14px 24px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .btn,
  .cta-banner {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .container {
    max-width: 100%;
  }
}

/* ACCESSIBILITY */
*:focus {
  outline: 3px solid #D97642;
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
  .btn-primary {
    border: 3px solid white;
  }
  
  .btn-secondary {
    border-width: 4px;
  }
}

/* REDUCED MOTION */
@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-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

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

/* END OF STYLES */