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

:root {
  --primary: #8B4513;
  --primary-dark: #6B3410;
  --primary-light: #A55D2A;
  --secondary: #2F4F2F;
  --secondary-dark: #1F3F1F;
  --accent: #F4E4C1;
  --accent-dark: #E4D4B1;
  --gold: #D4AF37;
  --gold-light: #F0D978;
  --cream: #FFF8E7;
  --cream-dark: #F5EDD7;
  --dark: #2C1810;
  --gray: #8B7D6B;
  --light-gray: #F5F1EB;
  --white: #FFFFFF;
  --shadow: rgba(139, 69, 19, 0.15);
  --shadow-strong: rgba(139, 69, 19, 0.25);
}

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, sans-serif;
  color: var(--dark);
  line-height: 1.7;
  background: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', 'Georgia', serif;
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

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

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: var(--dark);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--gold);
}

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

ul {
  list-style: none;
}

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

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 20px 0;
  box-shadow: 0 4px 12px var(--shadow-strong);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--gold);
}

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

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

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

.main-nav {
  display: flex;
  gap: 14px;
  align-items: center;
}
.tips-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.main-nav a {
  color: var(--cream);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
}

.main-nav a:hover {
  background: var(--gold);
  color: var(--primary-dark);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: var(--gold);
  color: var(--primary-dark);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px var(--shadow-strong);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--gold-light);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px var(--shadow-strong);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--primary-dark);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--gold-light);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: var(--cream);
  padding: 16px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  text-align: center;
}

.mobile-nav a:hover {
  background: var(--gold);
  color: var(--primary-dark);
  border-color: var(--gold-light);
  transform: translateX(-5px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--accent) 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--gold);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
}

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

.hero h1 {
  color: var(--primary-dark);
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero h2 {
  color: var(--secondary);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 24px;
}

.hero p {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 32px;
  line-height: 1.8;
}

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

.trust-badge,
.badge {
  display: inline-block;
  background: var(--gold);
  color: var(--primary-dark);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px var(--shadow);
  border: 2px solid var(--gold-light);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px var(--shadow);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--primary-dark);
  border-color: var(--gold-light);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-strong);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-strong);
}

.btn-large {
  padding: 20px 48px;
  font-size: 18px;
}

/* Sections */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section h2 {
  text-align: center;
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 18px;
  margin-bottom: 48px;
  font-style: italic;
}

/* Value Proposition */
.value-proposition {
  background: var(--white);
  border-radius: 16px;
  padding: 60px 20px;
  box-shadow: 0 8px 24px var(--shadow);
  border: 2px solid var(--accent-dark);
}

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

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  padding: 32px;
  background: var(--cream);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-dark);
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px var(--shadow-strong);
  border-color: var(--gold);
}

.value-item img {
  width: 80px;
  height: 80px;
  filter: brightness(0) saturate(100%) invert(34%) sepia(32%) saturate(2045%) hue-rotate(356deg) brightness(94%) contrast(88%);
}

.value-item h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

/* Recipe Grid */
.recipe-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.recipe-card {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 20px var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid var(--accent-dark);
  position: relative;
  margin-bottom: 20px;
}

.recipe-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 12px 12px 0 0;
}

.recipe-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px var(--shadow-strong);
  border-color: var(--gold);
}

.recipe-card h3 {
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-size: 20px;
}

.recipe-card p {
  color: var(--gray);
  margin-bottom: 8px;
}

.recipe-time,
.time {
  color: var(--secondary);
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  background: var(--accent);
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid var(--gold);
}

.difficulty,
.rating {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-right: 8px;
  margin-top: 8px;
  background: var(--cream);
  color: var(--primary);
  border: 1px solid var(--accent-dark);
}

/* Service Cards */
.service-grid,
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.service-card,
.pricing-card {
  flex: 1 1 320px;
  max-width: 400px;
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px var(--shadow);
  transition: all 0.3s ease;
  border: 3px solid var(--accent-dark);
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card.featured,
.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--cream) 0%, var(--accent) 100%);
  transform: scale(1.05);
}

.service-card:hover,
.pricing-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 16px 40px var(--shadow-strong);
  border-color: var(--gold);
}

.service-card h3,
.pricing-card h2 {
  color: var(--primary-dark);
  margin-bottom: 16px;
  font-size: 24px;
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  margin: 24px 0;
  font-family: 'Merriweather', serif;
}

.price span {
  font-size: 18px;
  color: var(--gray);
  font-weight: 400;
}

.tagline {
  color: var(--secondary);
  font-style: italic;
  margin-bottom: 16px;
}

.features,
.benefits {
  margin: 24px 0;
  padding-left: 0;
}

.features li,
.benefits li {
  padding: 12px 0;
  color: var(--dark);
  font-size: 16px;
  border-bottom: 1px solid var(--accent-dark);
}

.features li:last-child,
.benefits li:last-child {
  border-bottom: none;
}

.trial,
.guarantee,
.value {
  text-align: center;
  color: var(--secondary);
  font-size: 14px;
  margin-top: 16px;
  font-weight: 600;
}

.featured .badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--gold);
  color: var(--primary-dark);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px var(--shadow-strong);
  border: 2px solid var(--gold-light);
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, var(--cream) 0%, var(--accent) 100%);
  padding: 60px 20px;
  border-radius: 16px;
  border: 2px solid var(--accent-dark);
}

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

.testimonial-card {
  flex: 1 1 400px;
  max-width: 550px;
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 20px var(--shadow);
  border: 2px solid var(--gold);
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: var(--gold);
  font-family: 'Merriweather', serif;
  opacity: 0.3;
}

.testimonial-card p {
  color: var(--dark);
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}

.author {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}

.rating {
  color: var(--gold);
  font-size: 18px;
  background: transparent;
  border: none;
  padding: 0;
}

.trust-indicator {
  text-align: center;
  margin-top: 32px;
  color: var(--secondary);
  font-weight: 700;
  font-size: 18px;
}

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 60px 20px;
  border-radius: 16px;
  text-align: center;
  color: var(--cream);
  border: 3px solid var(--gold);
}

.newsletter h2 {
  color: var(--cream);
  margin-bottom: 16px;
}

.newsletter p {
  color: var(--accent);
  margin-bottom: 32px;
  font-size: 18px;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 24px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.email-input {
  flex: 1 1 300px;
  padding: 16px 24px;
  border-radius: 8px;
  border: 2px solid var(--gold);
  font-size: 16px;
  background: var(--white);
  color: var(--dark);
}

.email-input:focus {
  outline: none;
  border-color: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.bonus,
.subscriber-count {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
}

/* CTA Final */
.cta-final {
  background: linear-gradient(135deg, var(--cream) 0%, var(--accent) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 16px;
  border: 3px solid var(--gold);
}

.cta-final h2 {
  margin-bottom: 24px;
}

.cta-final p {
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-final .benefits {
  max-width: 600px;
  margin: 32px auto;
  text-align: left;
}

/* Filter System */
.filter-system {
  margin-bottom: 40px;
}

.filter-sidebar {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 20px var(--shadow);
  margin-bottom: 32px;
  border: 2px solid var(--accent-dark);
}

.filter-sidebar h3 {
  color: var(--primary-dark);
  margin-bottom: 24px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 12px;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group h4 {
  color: var(--secondary);
  margin-bottom: 12px;
  font-size: 16px;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  cursor: pointer;
  color: var(--dark);
  transition: all 0.2s ease;
}

.filter-group label:hover {
  color: var(--primary);
  padding-left: 8px;
}

.filter-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--gold);
}

.quick-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}

.filter-btn {
  padding: 12px 24px;
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: var(--primary);
  color: var(--cream);
  transform: translateY(-2px);
}

.search-bar {
  display: flex;
  gap: 16px;
  max-width: 800px;
  margin: 32px auto;
  flex-wrap: wrap;
}

.search-bar input {
  flex: 1 1 300px;
  padding: 16px 24px;
  border-radius: 8px;
  border: 2px solid var(--gold);
  font-size: 16px;
  background: var(--white);
}

.search-bar input:focus {
  outline: none;
  border-color: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.results-count {
  color: var(--secondary);
  font-weight: 600;
}

.sort-select {
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid var(--primary);
  background: var(--white);
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
}

/* Collections */
.collection-grid,
.category-grid,
.region-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
}

.collection-card,
.time-category,
.region-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 20px var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-dark);
  margin-bottom: 20px;
}

.collection-card:hover,
.time-category:hover,
.region-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px var(--shadow-strong);
  border-color: var(--gold);
}

.collection-card img,
.time-category img {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  filter: brightness(0) saturate(100%) invert(34%) sepia(32%) saturate(2045%) hue-rotate(356deg) brightness(94%) contrast(88%);
}

.collection-card h3,
.time-category h3,
.region-card h3 {
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.count {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 16px;
}

/* Contact Form */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.contact-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 20px var(--shadow);
  text-align: center;
  border: 2px solid var(--accent-dark);
  margin-bottom: 20px;
}

.contact-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  filter: brightness(0) saturate(100%) invert(34%) sepia(32%) saturate(2045%) hue-rotate(356deg) brightness(94%) contrast(88%);
}

.contact-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.description {
  color: var(--gray);
  font-size: 14px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px var(--shadow);
  border: 2px solid var(--accent-dark);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 8px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 20px;
  border-radius: 8px;
  border: 2px solid var(--accent-dark);
  font-size: 16px;
  font-family: inherit;
  background: var(--cream);
  color: var(--dark);
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
  background: var(--white);
}

.form-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  accent-color: var(--gold);
}

.form-note {
  color: var(--gray);
  font-size: 14px;
  margin-top: 16px;
}

/* Legal Content */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.text-section {
  background: var(--white);
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 20px var(--shadow);
  border-left: 4px solid var(--gold);
}

.text-section h2 {
  color: var(--primary-dark);
  margin-bottom: 20px;
  text-align: left;
}

.text-section h3 {
  color: var(--primary);
  margin-top: 24px;
  margin-bottom: 12px;
}

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

.text-section li {
  color: var(--dark);
  margin-bottom: 8px;
  padding-left: 8px;
  position: relative;
}

.text-section li::before {
  content: '•';
  color: var(--gold);
  font-weight: 700;
  position: absolute;
  left: -16px;
}

.last-updated {
  color: var(--gray);
  font-size: 14px;
  font-style: italic;
}

blockquote {
  background: var(--accent);
  border-left: 4px solid var(--gold);
  padding: 24px 32px;
  margin: 32px 0;
  font-style: italic;
  font-size: 18px;
  color: var(--primary-dark);
  border-radius: 0 8px 8px 0;
}

/* Timeline */
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 48px 0;
}

.milestone {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 6px 20px var(--shadow);
  border: 2px solid var(--gold);
}

.milestone h3 {
  color: var(--gold);
  font-size: 32px;
  margin-bottom: 12px;
}

/* Stats */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.stat {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 32px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 6px 20px var(--shadow);
  border: 2px solid var(--gold);
}

.stat h3 {
  color: var(--gold);
  font-size: 48px;
  margin-bottom: 8px;
  font-family: 'Merriweather', serif;
}

.stat p {
  color: var(--primary);
  font-weight: 600;
}

/* Process Steps */
.process-steps,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 48px 0;
}

.step,
.tip-card {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 6px 20px var(--shadow);
  border: 2px solid var(--accent-dark);
  transition: all 0.3s ease;
}

.step:hover,
.tip-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.step img,
.tip-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  filter: brightness(0) saturate(100%) invert(34%) sepia(32%) saturate(2045%) hue-rotate(356deg) brightness(94%) contrast(88%);
}

.step h3,
.tip-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 20px;
}

/* Thank You Page */
.success-icon {
  width: 100px;
  height: 100px;
  background: var(--gold);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 700;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px var(--shadow-strong);
  border: 4px solid var(--gold-light);
}

.confirmation {
  font-size: 24px;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 32px;
}

.time-estimate,
.note {
  color: var(--gray);
  font-style: italic;
  margin-top: 24px;
}

.resource-grid,
.navigation-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
}

.resource-card,
.nav-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 20px var(--shadow);
  text-align: center;
  border: 2px solid var(--accent-dark);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.resource-card:hover,
.nav-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.benefits-grid,
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
}

.benefit,
.value-item {
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 6px 20px var(--shadow);
  border: 2px solid var(--gold);
}

/* Hours Table */
.hours-table {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 20px var(--shadow);
  max-width: 600px;
  margin: 0 auto;
  border: 2px solid var(--accent-dark);
}

.hours-table p {
  padding: 12px 0;
  border-bottom: 1px solid var(--accent-dark);
}

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

/* FAQ */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 12px;
  box-shadow: 0 6px 20px var(--shadow);
  border-left: 4px solid var(--gold);
}

.faq-item h3 {
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.faq-item p {
  color: var(--dark);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--cream);
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-top: 4px solid var(--gold);
}

.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,
.footer-section h4 {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: var(--accent);
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.footer-nav a {
  color: var(--accent);
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-nav a:hover {
  color: var(--gold-light);
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid rgba(244, 228, 193, 0.2);
  color: var(--accent);
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--cream);
  padding: 24px;
  box-shadow: 0 -4px 20px var(--shadow-strong);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid var(--gold);
}

.cookie-consent.active {
  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: var(--accent);
}

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

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
}

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

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

.cookie-modal-content {
  background: var(--cream);
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 12px 40px var(--shadow-strong);
  border: 3px solid var(--gold);
}

.cookie-modal h2 {
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.cookie-category {
  background: var(--white);
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 2px solid var(--accent-dark);
}

.cookie-category h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 18px;
}

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

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: var(--gray);
  border-radius: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-switch.active {
  background: var(--gold);
}

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

.toggle-switch.active::after {
  left: 27px;
}

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

/* Link Styles */
.link {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  margin-top: 24px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .main-nav {
    display: none;
  }

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

  .hero {
    padding: 60px 20px;
  }

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

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

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

  .btn {
    width: 100%;
    text-align: center;
  }

  .value-grid,
  .recipe-grid,
  .service-grid,
  .pricing-grid,
  .testimonial-grid,
  .collection-grid,
  .category-grid,
  .region-grid,
  .contact-grid,
  .stats-grid,
  .process-steps,
  .steps-grid,
  .resource-grid,
  .navigation-cards,
  .benefits-grid,
  .values-grid,
  .timeline {
    flex-direction: column;
    align-items: center;
  }

  .value-item,
  .recipe-card,
  .service-card,
  .pricing-card,
  .testimonial-card,
  .collection-card,
  .time-category,
  .region-card,
  .contact-card,
  .stat,
  .step,
  .tip-card,
  .resource-card,
  .nav-card,
  .benefit,
  .milestone {
    max-width: 100%;
    width: 100%;
  }

  .service-card.featured,
  .pricing-card.featured {
    transform: scale(1);
  }

  .newsletter-form,
  .search-bar {
    flex-direction: column;
  }

  .email-input,
  .search-bar input {
    width: 100%;
  }

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

  .footer-section {
    width: 100%;
  }

  .results-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

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

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

  .form-wrapper {
    padding: 24px;
  }

  .text-section {
    padding: 24px;
  }

  section {
    padding: 32px 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .value-item,
  .recipe-card,
  .service-card,
  .pricing-card,
  .collection-card,
  .time-category,
  .region-card {
    flex: 1 1 45%;
  }
}

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

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

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

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

  body {
    background: white;
    color: black;
  }

  section {
    page-break-inside: avoid;
  }
}