/* ===================================
   NEURO LOOP - LUXURY PREMIUM STYLES
   Luxury & Premium Brand Aesthetic
   =================================== */

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Cormorant Garamond', 'Merriweather', serif;
  color: #2C1810;
  background: linear-gradient(135deg, #FFFAF5 0%, #FFF8F0 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Luxury Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Merriweather', serif;
  font-weight: 700;
  color: #1A0F08;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h2 {
  font-size: 38px;
  line-height: 1.3;
  letter-spacing: 1.5px;
}

h3 {
  font-size: 28px;
  line-height: 1.4;
}

h4 {
  font-size: 22px;
  line-height: 1.4;
}

p {
  font-size: 17px;
  margin-bottom: 16px;
  color: #3D2817;
  font-family: 'Lora', 'Open Sans', sans-serif;
}

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

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

ul {
  list-style: none;
}

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.site-header {
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.98) 0%, rgba(255, 248, 240, 0.95) 100%);
  backdrop-filter: blur(10px);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(197, 61, 20, 0.1);
  border-bottom: 2px solid #D4AF37;
}

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

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 55px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

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

.main-nav a {
  font-family: 'Lora', serif;
  font-size: 15px;
  font-weight: 600;
  color: #2C1810;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 10px 16px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

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

.main-nav a:hover::before {
  width: 100%;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 2000;
  background: linear-gradient(135deg, #C53D14, #A33310);
  color: #FFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(197, 61, 20, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(197, 61, 20, 0.4);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #2C1810 0%, #1A0F08 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px 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;
  border: 2px solid #D4AF37;
  color: #D4AF37;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: #D4AF37;
  color: #1A0F08;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FFF;
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.mobile-nav a:hover {
  border-left-color: #D4AF37;
  background: rgba(212, 175, 55, 0.1);
  padding-left: 28px;
}

/* ===================================
   BUTTONS - LUXURY STYLE
   =================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Lora', serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary::before,
.btn-secondary::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, height 0.6s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #C53D14, #A33310);
  color: #FFF;
  box-shadow: 0 6px 20px rgba(197, 61, 20, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(197, 61, 20, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #C53D14;
  border: 2px solid #C53D14;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #C53D14, #A33310);
  color: #FFF;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(197, 61, 20, 0.3);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  background: linear-gradient(135deg, rgba(255, 243, 224, 0.9) 0%, rgba(255, 250, 245, 0.95) 100%),
              url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23FFF3E0" width="1200" height="600"/></svg>');
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(197, 61, 20, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #1A0F08, #C53D14);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subheadline {
  font-size: 24px;
  font-family: 'Lora', serif;
  font-style: italic;
  color: #5D4037;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #3D2817;
}

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

/* ===================================
   PAGE HERO (Internal Pages)
   =================================== */

.page-hero {
  background: linear-gradient(135deg, #2C1810 0%, #1A0F08 100%);
  color: #FFF;
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="rgba(212,175,55,0.1)" cx="10" cy="10" r="2"/><circle fill="rgba(212,175,55,0.1)" cx="50" cy="30" r="3"/><circle fill="rgba(212,175,55,0.1)" cx="80" cy="60" r="2"/></svg>');
  opacity: 0.3;
}

.page-hero h1 {
  color: #FFF;
  font-size: 48px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  text-shadow: none;
  background: none;
  -webkit-text-fill-color: inherit;
}

.page-hero p {
  font-size: 20px;
  color: #FFF3E0;
  position: relative;
  z-index: 1;
}

.page-hero .badge {
  display: inline-block;
  background: linear-gradient(135deg, #D4AF37, #C5A028);
  color: #1A0F08;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 16px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* ===================================
   SECTIONS - LUXURY SPACING
   =================================== */

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

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

/* ===================================
   VALUE PROPOSITION
   =================================== */

.value-proposition {
  background: #FFF;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

.value-proposition h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37, #C5A028);
}

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

.feature-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  padding: 40px 32px;
  background: linear-gradient(135deg, #FFFAF5 0%, #FFF8F0 100%);
  border: 2px solid #F5E6D3;
  border-radius: 8px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #D4AF37, #C5A028);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(197, 61, 20, 0.15);
  border-color: #D4AF37;
}

.feature-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.3));
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #2C1810;
}

.feature-card p {
  font-size: 16px;
  color: #5D4037;
  line-height: 1.6;
}

/* ===================================
   RECIPE CATEGORIES
   =================================== */

.recipe-categories {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFFAF5 100%);
}

.category-grid,
.region-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.category-card,
.region-card {
  flex: 1 1 calc(50% - 28px);
  min-width: 260px;
  max-width: 320px;
  background: #FFF;
  padding: 32px 28px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.category-card:hover,
.region-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(197, 61, 20, 0.15);
  border-color: #D4AF37;
}

.category-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 3px 8px rgba(212, 175, 55, 0.3));
}

.category-card h3,
.region-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1A0F08;
}

.category-card p,
.region-card p {
  font-size: 15px;
  color: #5D4037;
  margin-bottom: 20px;
}

.category-card a,
.region-card a {
  display: inline-block;
  color: #C53D14;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 10px 20px;
  border: 2px solid #C53D14;
  border-radius: 2px;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.category-card a:hover,
.region-card a:hover {
  background: #C53D14;
  color: #FFF;
}

.recipe-count {
  display: block;
  font-size: 13px;
  color: #D4AF37;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* ===================================
   SOCIAL PROOF / TESTIMONIALS
   =================================== */

.social-proof {
  background: linear-gradient(135deg, #2C1810 0%, #1A0F08 100%);
  color: #FFF;
}

.social-proof h2 {
  color: #FFF;
  text-align: center;
  margin-bottom: 60px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 36px;
  border-radius: 8px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #D4AF37;
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  color: #1A0F08;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}

.testimonial-author strong {
  font-size: 17px;
  color: #D4AF37;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 14px;
  color: #1A0F08;
  opacity: 0.9;
}

.testimonial-author .rating {
  color: #D4AF37;
  font-size: 16px;
  letter-spacing: 2px;
}

/* ===================================
   PRICING CARDS - PREMIUM STYLE
   =================================== */

.membership-preview,
.pricing-section {
  background: linear-gradient(135deg, #FFFAF5 0%, #FFF8F0 100%);
}

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

.pricing-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  max-width: 380px;
  background: #FFF;
  padding: 48px 36px;
  border-radius: 8px;
  border: 3px solid #F5E6D3;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #D4AF37, #C5A028);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card.featured {
  border-color: #D4AF37;
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.25);
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(197, 61, 20, 0.15);
  border-color: #D4AF37;
}

.pricing-card .badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: linear-gradient(135deg, #D4AF37, #C5A028);
  color: #1A0F08;
  padding: 6px 40px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transform: rotate(45deg);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.pricing-card h3 {
  font-size: 26px;
  color: #1A0F08;
  margin-bottom: 16px;
  text-align: center;
}

.pricing-card .price {
  font-size: 42px;
  font-weight: 700;
  color: #C53D14;
  text-align: center;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.pricing-card .price span {
  font-size: 18px;
  color: #5D4037;
  font-weight: 400;
}

.pricing-card .description {
  font-size: 15px;
  color: #5D4037;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-card .features {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-card .features li {
  font-size: 15px;
  color: #3D2817;
  padding-left: 28px;
  position: relative;
}

.pricing-card .features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
  font-size: 18px;
}

.pricing-card .btn-primary {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

/* ===================================
   TRUST INDICATORS & STATS
   =================================== */

.trust-indicators {
  background: #FFF;
}

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

.stat-item {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
  text-align: center;
  padding: 32px 20px;
  background: linear-gradient(135deg, #FFFAF5 0%, #FFF8F0 100%);
  border-radius: 8px;
  border: 2px solid #F5E6D3;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: #D4AF37;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.stat-item h3 {
  font-size: 48px;
  color: #C53D14;
  margin-bottom: 12px;
  font-weight: 700;
}

.stat-item p {
  font-size: 16px;
  color: #5D4037;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}

/* ===================================
   RECIPE GRID
   =================================== */

.recipe-grid-section {
  background: #FFF;
}

.recipe-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 40px;
}

.recipe-card {
  flex: 1 1 calc(33.333% - 28px);
  min-width: 280px;
  max-width: 380px;
  background: #FFFAF5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  border: 2px solid #F5E6D3;
  margin-bottom: 20px;
  position: relative;
}

.recipe-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(197, 61, 20, 0.15);
  border-color: #D4AF37;
}

.recipe-image-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
  position: relative;
  overflow: hidden;
}

.recipe-image-placeholder::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.recipe-card h3 {
  padding: 20px 24px 12px;
  font-size: 22px;
  color: #1A0F08;
}

.recipe-meta {
  display: flex;
  gap: 16px;
  padding: 0 24px 12px;
  flex-wrap: wrap;
}

.recipe-meta span {
  font-size: 13px;
  color: #5D4037;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.recipe-meta .time::before {
  content: '⏱ ';
  color: #D4AF37;
}

.recipe-meta .difficulty::before {
  content: '◆ ';
  color: #C53D14;
}

.recipe-meta .rating {
  color: #D4AF37;
  letter-spacing: 1px;
}

.recipe-card p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: #5D4037;
  line-height: 1.5;
}

.recipe-card .btn-secondary {
  margin: 0 24px 24px;
  text-align: center;
  padding: 12px 24px;
}

.region-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #D4AF37, #C5A028);
  color: #1A0F08;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* ===================================
   FILTER BAR
   =================================== */

.recipe-filter {
  background: #FFF;
  padding: 40px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  font-size: 13px;
  font-weight: 700;
  color: #2C1810;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-group select {
  padding: 12px 20px;
  border: 2px solid #F5E6D3;
  border-radius: 4px;
  font-size: 14px;
  color: #2C1810;
  background: #FFFAF5;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Lora', serif;
}

.filter-group select:hover,
.filter-group select:focus {
  border-color: #D4AF37;
  outline: none;
}

.results-count {
  font-size: 15px;
  color: #5D4037;
  margin-bottom: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================
   TIME TABS
   =================================== */

.time-filter {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFFAF5 100%);
}

.time-tabs {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.time-tabs button {
  padding: 14px 32px;
  background: #FFF;
  border: 2px solid #F5E6D3;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  color: #2C1810;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-family: 'Lora', serif;
}

.time-tabs button:hover,
.time-tabs button.active {
  background: linear-gradient(135deg, #C53D14, #A33310);
  color: #FFF;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(197, 61, 20, 0.3);
}

/* ===================================
   CTA BANNER
   =================================== */

.cta-banner,
.premium-upgrade,
.membership-cta,
.final-cta {
  background: linear-gradient(135deg, #2C1810 0%, #1A0F08 100%);
  color: #FFF;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.premium-upgrade::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2,
.premium-upgrade h2,
.membership-cta h2,
.final-cta h2 {
  color: #FFF;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-banner p,
.premium-upgrade p,
.membership-cta p {
  color: #FFF3E0;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-banner ul,
.premium-upgrade ul,
.membership-cta ul {
  max-width: 500px;
  margin: 0 auto 32px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.cta-banner li,
.premium-upgrade li,
.membership-cta li {
  font-size: 16px;
  color: #FFF3E0;
  padding: 12px 0 12px 32px;
  position: relative;
}

.cta-banner li::before,
.premium-upgrade li::before,
.membership-cta li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
  font-size: 18px;
}

.premium-upgrade .price {
  font-size: 36px;
  color: #D4AF37;
  font-weight: 700;
  margin: 24px 0;
  position: relative;
  z-index: 1;
}

.guarantee {
  font-size: 14px;
  color: #FFF3E0;
  margin-top: 16px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.trust-badge {
  display: inline-block;
  background: linear-gradient(135deg, #D4AF37, #C5A028);
  color: #1A0F08;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* ===================================
   BENEFITS & TIPS SECTIONS
   =================================== */

.benefits-section,
.tips-section,
.value-highlights {
  background: #FFF;
}

.benefits-grid,
.tips-grid,
.highlights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.benefit-card,
.tip-card,
.highlight-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  max-width: 350px;
  text-align: center;
  padding: 36px 28px;
  background: linear-gradient(135deg, #FFFAF5 0%, #FFF8F0 100%);
  border-radius: 8px;
  border: 2px solid #F5E6D3;
  transition: all 0.3s ease;
}

.benefit-card:hover,
.tip-card:hover,
.highlight-card:hover {
  transform: translateY(-6px);
  border-color: #D4AF37;
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.15);
}

.benefit-card img,
.tip-card img,
.highlight-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 3px 8px rgba(212, 175, 55, 0.3));
}

.benefit-card h3,
.tip-card h4,
.highlight-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1A0F08;
}

.benefit-card p,
.tip-card p,
.highlight-card p {
  font-size: 15px;
  color: #5D4037;
  line-height: 1.6;
}

/* ===================================
   STORY & CONTENT SECTIONS
   =================================== */

.story-section,
.cultural-context {
  background: linear-gradient(135deg, #FFFAF5 0%, #FFF8F0 100%);
}

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

.story-content p {
  margin-bottom: 24px;
  color: #3D2817;
}

.context-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.context-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  padding: 36px 32px;
  background: #FFF;
  border-radius: 8px;
  border-left: 4px solid #D4AF37;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.context-card:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.context-card h3 {
  color: #1A0F08;
  margin-bottom: 16px;
  font-size: 24px;
}

.context-card p {
  font-size: 16px;
  color: #5D4037;
  line-height: 1.7;
}

/* ===================================
   VALUES & EXPERTISE
   =================================== */

.values-section,
.expertise-section,
.achievements-section {
  background: #FFF;
}

.values-grid,
.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.value-card,
.expertise-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  text-align: center;
  padding: 40px 28px;
  background: linear-gradient(135deg, #FFFAF5 0%, #FFF8F0 100%);
  border-radius: 8px;
  border: 2px solid #F5E6D3;
  transition: all 0.3s ease;
}

.value-card:hover,
.expertise-card:hover {
  transform: translateY(-6px);
  border-color: #D4AF37;
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.15);
}

.value-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 3px 8px rgba(212, 175, 55, 0.3));
}

.value-card h3,
.expertise-card h4 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #1A0F08;
}

.value-card p,
.expertise-card p {
  font-size: 15px;
  color: #5D4037;
  line-height: 1.6;
}

/* ===================================
   CONTACT SECTIONS
   =================================== */

.contact-options {
  background: linear-gradient(135deg, #FFFAF5 0%, #FFF8F0 100%);
}

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

.contact-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  max-width: 350px;
  text-align: center;
  padding: 40px 32px;
  background: #FFF;
  border-radius: 8px;
  border: 2px solid #F5E6D3;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: #D4AF37;
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.15);
}

.contact-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 3px 8px rgba(212, 175, 55, 0.3));
}

.contact-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1A0F08;
}

.contact-info {
  font-size: 16px;
  font-weight: 700;
  color: #C53D14;
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 14px;
  color: #5D4037;
}

/* ===================================
   CONTACT FORM
   =================================== */

.contact-form-section {
  background: #FFF;
}

.form-wrapper {
  max-width: 700px;
  margin: 40px auto 0;
  padding: 40px;
  background: linear-gradient(135deg, #FFFAF5 0%, #FFF8F0 100%);
  border-radius: 8px;
  border: 2px solid #F5E6D3;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.form-note {
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid #D4AF37;
  padding: 20px;
  margin-bottom: 32px;
  border-radius: 4px;
}

.form-note p {
  font-size: 14px;
  color: #2C1810;
  margin-bottom: 12px;
}

.form-note strong {
  color: #C53D14;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: #2C1810;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid #F5E6D3;
  border-radius: 4px;
  font-size: 15px;
  color: #2C1810;
  background: #FFF;
  font-family: 'Lora', serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #D4AF37;
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input:disabled,
.form-group select:disabled,
.form-group textarea:disabled {
  background: #F5E6D3;
  cursor: not-allowed;
  opacity: 0.7;
}

/* ===================================
   FAQ SECTIONS
   =================================== */

.faq-section,
.faq-quick-help {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFFAF5 100%);
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #FFF;
  padding: 28px 32px;
  border-radius: 6px;
  border-left: 4px solid #D4AF37;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}

.faq-item h4 {
  font-size: 18px;
  color: #1A0F08;
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 15px;
  color: #5D4037;
  line-height: 1.6;
}

/* ===================================
   LEGAL CONTENT
   =================================== */

.legal-content {
  background: #FFF;
}

.legal-section {
  max-width: 900px;
  margin: 0 auto 48px;
  padding: 36px 40px;
  background: linear-gradient(135deg, #FFFAF5 0%, #FFF8F0 100%);
  border-radius: 8px;
  border-left: 4px solid #D4AF37;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.legal-section h2 {
  font-size: 28px;
  color: #1A0F08;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #F5E6D3;
}

.legal-section h3 {
  font-size: 22px;
  color: #2C1810;
  margin: 24px 0 12px;
}

.legal-section p {
  font-size: 16px;
  color: #3D2817;
  margin-bottom: 16px;
  line-height: 1.7;
}

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

.legal-section li {
  font-size: 15px;
  color: #3D2817;
  margin-bottom: 8px;
  position: relative;
  padding-left: 12px;
}

.legal-section li::before {
  content: '•';
  position: absolute;
  left: -12px;
  color: #D4AF37;
  font-weight: 700;
}

.legal-section a {
  color: #C53D14;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.legal-section a:hover {
  color: #D4AF37;
}

.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.right-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 24px;
  background: #FFF;
  border-radius: 6px;
  border: 2px solid #F5E6D3;
  transition: all 0.3s ease;
}

.right-card:hover {
  border-color: #D4AF37;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.1);
}

.right-card h3 {
  font-size: 18px;
  color: #1A0F08;
  margin-bottom: 12px;
}

.right-card p {
  font-size: 14px;
  color: #5D4037;
}

/* ===================================
   LOCATION SECTION
   =================================== */

.location-section {
  background: linear-gradient(135deg, #FFFAF5 0%, #FFF8F0 100%);
}

.location-info {
  max-width: 700px;
  margin: 32px auto 0;
  padding: 36px;
  background: #FFF;
  border-radius: 8px;
  border: 2px solid #F5E6D3;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.location-info p {
  font-size: 16px;
  color: #3D2817;
  margin-bottom: 20px;
  line-height: 1.7;
}

.location-info strong {
  color: #1A0F08;
  font-weight: 700;
}

/* ===================================
   CONFIRMATION / THANK YOU PAGES
   =================================== */

.confirmation-hero,
.error-hero {
  background: linear-gradient(135deg, #FFFAF5 0%, #FFF8F0 100%);
  padding: 100px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, #D4AF37, #C5A028);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  color: #FFF;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.confirmation-hero h1,
.error-hero h1 {
  font-size: 48px;
  color: #1A0F08;
  margin-bottom: 20px;
}

.subheadline {
  font-size: 22px;
  color: #5D4037;
  margin-bottom: 16px;
  font-family: 'Lora', serif;
  font-style: italic;
}

.confirmation-hero p,
.error-hero p {
  font-size: 17px;
  color: #3D2817;
  margin-bottom: 32px;
}

.next-steps,
.suggested-content {
  background: #FFF;
}

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

.step-card,
.suggestion-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  max-width: 350px;
  text-align: center;
  padding: 36px 28px;
  background: linear-gradient(135deg, #FFFAF5 0%, #FFF8F0 100%);
  border-radius: 8px;
  border: 2px solid #F5E6D3;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card:hover,
.suggestion-card:hover {
  transform: translateY(-6px);
  border-color: #D4AF37;
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.15);
}

.step-number {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background: linear-gradient(135deg, #D4AF37, #C5A028);
  color: #1A0F08;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.step-card h3,
.suggestion-card h3 {
  font-size: 20px;
  color: #1A0F08;
}

.step-card p,
.suggestion-card p {
  font-size: 15px;
  color: #5D4037;
  line-height: 1.6;
}

.suggestion-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  filter: drop-shadow(0 3px 8px rgba(212, 175, 55, 0.3));
}

/* ===================================
   ERROR 404 PAGE
   =================================== */

.error-code {
  font-size: 120px;
  color: #D4AF37;
  font-weight: 700;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(212, 175, 55, 0.3);
}

.helpful-links {
  background: #FFF;
}

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

.link-card {
  flex: 1 1 calc(25% - 28px);
  min-width: 240px;
  max-width: 280px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, #FFFAF5 0%, #FFF8F0 100%);
  border-radius: 8px;
  border: 2px solid #F5E6D3;
  transition: all 0.3s ease;
}

.link-card:hover {
  transform: translateY(-6px);
  border-color: #D4AF37;
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.15);
}

.link-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 3px 8px rgba(212, 175, 55, 0.3));
}

.link-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1A0F08;
}

.link-card p {
  font-size: 14px;
  color: #5D4037;
  margin-bottom: 20px;
}

/* ===================================
   SERVICES SECTIONS
   =================================== */

.all-services {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFFAF5 100%);
}

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

.service-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  background: #FFF;
  padding: 36px 32px;
  border-radius: 8px;
  border: 2px solid #F5E6D3;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #D4AF37;
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.15);
}

.service-card h3 {
  font-size: 22px;
  color: #1A0F08;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: #5D4037;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card .price {
  font-size: 28px;
  color: #C53D14;
  font-weight: 700;
  margin-top: auto;
  font-family: 'Playfair Display', serif;
}

/* ===================================
   FOOTER
   =================================== */

.site-footer {
  background: linear-gradient(135deg, #2C1810 0%, #1A0F08 100%);
  color: #FFF;
  padding: 60px 20px 30px;
  margin-top: 0;
}

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

.footer-col {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.footer-col h4 {
  font-size: 16px;
  color: #D4AF37;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col p {
  font-size: 14px;
  color: #FFF3E0;
  line-height: 1.7;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

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

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

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

.footer-bottom p {
  font-size: 14px;
  color: #FFF3E0;
  opacity: 0.8;
}

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

#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #2C1810 0%, #1A0F08 100%);
  color: #FFF;
  padding: 24px 20px;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 3px solid #D4AF37;
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

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

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

.cookie-buttons button {
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Lora', serif;
}

#accept-cookies {
  background: linear-gradient(135deg, #D4AF37, #C5A028);
  color: #1A0F08;
}

#accept-cookies:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

#reject-cookies {
  background: transparent;
  color: #FFF3E0;
  border: 2px solid #FFF3E0;
}

#reject-cookies:hover {
  background: rgba(255, 255, 255, 0.1);
}

#cookie-settings {
  background: transparent;
  color: #D4AF37;
  border: 2px solid #D4AF37;
}

#cookie-settings:hover {
  background: rgba(212, 175, 55, 0.1);
}

/* Cookie Settings Modal */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, #FFFAF5 0%, #FFF8F0 100%);
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 3px solid #D4AF37;
}

.cookie-modal-content h3 {
  color: #1A0F08;
  margin-bottom: 24px;
  font-size: 26px;
}

.cookie-category {
  margin-bottom: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: 6px;
  border-left: 4px solid #D4AF37;
}

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

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

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

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  position: relative;
  appearance: none;
  background: #ccc;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #D4AF37, #C5A028);
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFF;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  transform: translateX(24px);
}

.cookie-toggle label {
  font-size: 14px;
  color: #2C1810;
  font-weight: 600;
}

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

#save-cookie-preferences,
#close-cookie-modal {
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Lora', serif;
}

#save-cookie-preferences {
  background: linear-gradient(135deg, #C53D14, #A33310);
  color: #FFF;
  flex: 1;
}

#save-cookie-preferences:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(197, 61, 20, 0.3);
}

#close-cookie-modal {
  background: transparent;
  color: #C53D14;
  border: 2px solid #C53D14;
}

#close-cookie-modal:hover {
  background: #C53D14;
  color: #FFF;
}

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

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  h4 { font-size: 18px; }
  p { font-size: 16px; }

  /* Header */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }

  /* Hero */
  .hero { padding: 60px 20px 50px; }
  .hero h1 { font-size: 32px; }
  .hero-subheadline { font-size: 18px; }
  .hero p { font-size: 16px; }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

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

  /* Page Hero */
  .page-hero { padding: 60px 20px 40px; }
  .page-hero h1 { font-size: 32px; }
  
  /* Error Code */
  .error-code { font-size: 80px; }

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

  /* Grids - Stack on Mobile */
  .features-grid,
  .category-grid,
  .region-grid,
  .pricing-grid,
  .testimonials-grid,
  .stats-grid,
  .recipe-grid,
  .benefits-grid,
  .tips-grid,
  .highlights-grid,
  .contact-grid,
  .values-grid,
  .expertise-grid,
  .context-grid,
  .services-grid,
  .steps-grid,
  .suggestions-grid,
  .links-grid {
    flex-direction: column;
    gap: 24px;
  }

  .feature-card,
  .category-card,
  .region-card,
  .pricing-card,
  .testimonial-card,
  .stat-item,
  .recipe-card,
  .benefit-card,
  .tip-card,
  .highlight-card,
  .contact-card,
  .value-card,
  .expertise-card,
  .context-card,
  .service-card,
  .step-card,
  .suggestion-card,
  .link-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Pricing Cards */
  .pricing-card.featured {
    transform: scale(1);
  }

  /* Filter Bar */
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    width: 100%;
  }

  /* Time Tabs */
  .time-tabs {
    flex-direction: column;
  }

  .time-tabs button {
    width: 100%;
  }

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

  .footer-col {
    flex: 1 1 100%;
  }

  /* Cookie Consent */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

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

  /* Cookie Modal */
  .cookie-modal-content {
    padding: 28px 20px;
    max-height: 90vh;
  }

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

  #save-cookie-preferences,
  #close-cookie-modal {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }

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

  .feature-card,
  .category-card,
  .pricing-card,
  .benefit-card,
  .value-card,
  .service-card {
    flex: 1 1 calc(50% - 32px);
  }

  .stat-item,
  .link-card {
    flex: 1 1 calc(50% - 40px);
  }
}

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Smooth scroll for anchor links */
html {
  scroll-padding-top: 100px;
}

/* Selection color */
::selection {
  background: rgba(212, 175, 55, 0.3);
  color: #1A0F08;
}

/* Print Styles */
@media print {
  .site-header,
  .site-footer,
  .mobile-menu,
  .mobile-menu-toggle,
  #cookie-consent,
  #cookie-modal,
  .btn-primary,
  .btn-secondary {
    display: none;
  }

  body {
    background: #FFF;
  }

  * {
    box-shadow: none !important;
  }
}