/* ============================================
   BLÜTENBERG GARTEN - LUXURY PREMIUM STYLES
   Design Style: 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: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: #2C2C2C;
  background: #FDFBF7;
  overflow-x: hidden;
}

/* ============================================
   LUXURY TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1A1A1A;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #2D5016 0%, #1A3010 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 36px;
  color: #2D5016;
  position: relative;
  padding-bottom: 16px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37 0%, #F4E4C1 100%);
  border-radius: 2px;
}

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

p {
  margin-bottom: 16px;
  color: #3C3C3C;
  font-size: 16px;
}

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

ul {
  list-style: none;
}

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

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

.section {
  margin-bottom: 80px;
  padding: 60px 0;
}

/* ============================================
   LUXURY BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #2D5016 0%, #1A3010 100%);
  color: #F4E4C1;
  border-color: #D4AF37;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.4);
  background: linear-gradient(135deg, #1A3010 0%, #2D5016 100%);
}

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

.btn-secondary:hover {
  background: #7A9D54;
  color: #FDFBF7;
  border-color: #2D5016;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(122, 157, 84, 0.3);
}

/* ============================================
   HEADER - LUXURY DESIGN
   ============================================ */

header {
  background: linear-gradient(180deg, #FDFBF7 0%, #F8F6F0 100%);
  border-bottom: 2px solid #D4AF37;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: column;
}

.logo img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 2px 8px rgba(45, 80, 22, 0.2));
}

.tagline {
  font-family: 'Merriweather', serif;
  font-size: 14px;
  color: #7A9D54;
  font-style: italic;
  letter-spacing: 0.5px;
}

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

.main-nav a {
  color: #2D5016;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
}

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

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

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

.header-cta {
  display: flex;
  align-items: center;
}

/* ============================================
   MOBILE MENU - LUXURY DESIGN
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #2D5016 0%, #1A3010 100%);
  color: #F4E4C1;
  border: 2px solid #D4AF37;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1A3010 0%, #2D5016 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  color: #F4E4C1;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  border-left-color: #D4AF37;
  background: rgba(244, 228, 193, 0.1);
  padding-left: 24px;
}

/* ============================================
   HERO SECTION - LUXURY DESIGN
   ============================================ */

.hero {
  background: linear-gradient(135deg, #1A3010 0%, #2D5016 50%, #3A6020 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero h1 {
  color: #F4E4C1;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #F4E4C1 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: #E8DCC0;
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 300;
}

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

.trust-badge {
  display: inline-block;
  background: rgba(244, 228, 193, 0.15);
  color: #F4E4C1;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(212, 175, 55, 0.3);
  letter-spacing: 0.5px;
}

/* ============================================
   INTERNAL HERO
   ============================================ */

.hero-internal {
  background: linear-gradient(135deg, #2D5016 0%, #3A6020 100%);
  padding: 80px 0 60px;
  text-align: center;
}

.hero-internal h1 {
  color: #F4E4C1;
  font-size: 48px;
}

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: #E8DCC0;
  text-align: left;
}

.breadcrumb a {
  color: #F4E4C1;
  text-decoration: underline;
}

.breadcrumb a:hover {
  color: #D4AF37;
}

/* ============================================
   CARDS & GRIDS - LUXURY DESIGN
   ============================================ */

.services-grid,
.services-full-grid,
.benefits-grid,
.values-grid,
.team-grid,
.testimonials-grid,
.articles-featured,
.categories-grid,
.articles-list,
.plants-featured,
.plants-list,
.contact-methods-grid,
.stats-grid,
.process-steps,
.content-links {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin: 48px 0;
}

.service-card,
.service-card-full,
.benefit-item,
.value-item,
.team-member,
.testimonial-card,
.article-card-featured,
.category-card,
.article-card,
.plant-card-featured,
.plant-card,
.contact-method,
.stat-item,
.step,
.content-link-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F6F0 100%);
  border: 2px solid #D4AF37;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(45, 80, 22, 0.1);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.service-card::before,
.service-card-full::before,
.benefit-item::before,
.category-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 4px;
  background: linear-gradient(90deg, #D4AF37, #F4E4C1, #D4AF37);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::before,
.service-card-full:hover::before,
.benefit-item:hover::before,
.category-card:hover::before {
  opacity: 1;
}

.service-card,
.benefit-item,
.value-item,
.team-member,
.category-card,
.article-card,
.plant-card,
.contact-method,
.stat-item,
.content-link-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
}

.service-card-full {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
}

.service-card:hover,
.service-card-full:hover,
.benefit-item:hover,
.value-item:hover,
.team-member:hover,
.category-card:hover,
.article-card:hover,
.plant-card:hover,
.content-link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(45, 80, 22, 0.2);
  border-color: #2D5016;
}

.service-card h3,
.service-card-full h3,
.benefit-item h3,
.value-item h3,
.category-card h3 {
  color: #2D5016;
  font-size: 22px;
  margin-bottom: 16px;
  font-family: 'Merriweather', serif;
}

.price {
  display: inline-block;
  background: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 100%);
  color: #1A3010;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  margin: 16px 0;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #3C3C3C;
  font-size: 15px;
}

.features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #7A9D54 0%, #2D5016 100%);
  color: #F4E4C1;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS - LUXURY DESIGN
   ============================================ */

.testimonials {
  background: linear-gradient(135deg, #F8F6F0 0%, #FDFBF7 100%);
  padding: 80px 0;
}

.testimonial-card {
  background: #FFFFFF;
  border: 2px solid #D4AF37;
  border-radius: 12px;
  padding: 40px;
  position: relative;
  box-shadow: 0 8px 30px rgba(45, 80, 22, 0.1);
}

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

.testimonial-card p {
  color: #2C2C2C;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  color: #2D5016;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

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

/* ============================================
   PROCESS STEPS
   ============================================ */

.process {
  background: linear-gradient(135deg, #FDFBF7 0%, #F8F6F0 100%);
  padding: 80px 0;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin: 48px 0;
}

.step {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 280px;
  text-align: center;
  padding: 40px 24px;
  background: #FFFFFF;
  border: 2px solid #D4AF37;
  border-radius: 12px;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2D5016 0%, #1A3010 100%);
  color: #F4E4C1;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 700;
  line-height: 70px;
  margin-bottom: 24px;
  border: 3px solid #D4AF37;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.2);
}

.step h3 {
  color: #2D5016;
  margin-bottom: 16px;
}

.step p {
  color: #3C3C3C;
  line-height: 1.7;
}

/* ============================================
   STATS SECTION
   ============================================ */

.achievements {
  background: linear-gradient(135deg, #2D5016 0%, #1A3010 100%);
  padding: 80px 0;
  text-align: center;
}

.achievements h2 {
  color: #F4E4C1;
}

.achievements h2::after {
  background: linear-gradient(90deg, #D4AF37, #F4E4C1);
  left: 50%;
  transform: translateX(-50%);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-around;
  margin: 48px 0;
}

.stat-item {
  flex: 1 1 200px;
  text-align: center;
  padding: 32px;
  background: rgba(244, 228, 193, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: #D4AF37;
  font-family: 'Merriweather', serif;
  line-height: 1;
}

.stat-label {
  color: #E8DCC0;
  font-size: 16px;
  font-weight: 600;
}

/* ============================================
   CTA BANNER - LUXURY DESIGN
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, #1A3010 0%, #2D5016 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
}

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

.cta-banner h2::after {
  background: linear-gradient(90deg, #D4AF37, #F4E4C1);
  left: 50%;
  transform: translateX(-50%);
}

.cta-banner p {
  color: #E8DCC0;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* ============================================
   ARTICLES & BLOG
   ============================================ */

.article-card-featured,
.article-card {
  background: #FFFFFF;
  border: 2px solid #D4AF37;
  border-radius: 12px;
  padding: 32px;
  position: relative;
}

.article-card-featured {
  flex: 1 1 calc(50% - 32px);
  min-width: 400px;
}

.category {
  display: inline-block;
  background: linear-gradient(135deg, #7A9D54 0%, #2D5016 100%);
  color: #F4E4C1;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.reading-time,
.article-count,
.count {
  color: #7A9D54;
  font-size: 14px;
  font-weight: 600;
}

.article-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.article-meta .date,
.article-meta .reading-time {
  color: #7A9D54;
  font-size: 14px;
}

/* ============================================
   PLANTS & CATEGORIES
   ============================================ */

.plant-card-featured {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
}

.plant-category,
.plant-type {
  display: inline-block;
  background: linear-gradient(135deg, #7A9D54, #2D5016);
  color: #F4E4C1;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.plant-features,
.plant-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.plant-features span,
.plant-info span {
  background: rgba(122, 157, 84, 0.15);
  color: #2D5016;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(122, 157, 84, 0.3);
}

/* ============================================
   CONTACT FORM - LUXURY DESIGN
   ============================================ */

.contact-form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #F8F6F0 0%, #FDFBF7 100%);
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 48px;
  border: 2px solid #D4AF37;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(45, 80, 22, 0.1);
}

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

.form-field label {
  display: block;
  color: #2D5016;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 15px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #D4AF37;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
  background: #FDFBF7;
}

.form-input:focus {
  outline: none;
  border-color: #2D5016;
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
  background: #FFFFFF;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #3C3C3C;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #2D5016;
}

.form-note {
  color: #7A9D54;
  font-size: 14px;
  margin-top: 8px;
  font-style: italic;
}

/* ============================================
   CONTACT METHODS
   ============================================ */

.contact-methods,
.contact-info-compact {
  padding: 80px 0;
}

.contact-method,
.contact-item {
  text-align: center;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
}

.contact-value {
  color: #2D5016;
  font-size: 18px;
  font-weight: 700;
  margin: 16px 0;
  line-height: 1.6;
}

.contact-detail {
  color: #7A9D54;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-around;
  margin: 48px 0;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-hero {
  background: linear-gradient(135deg, #2D5016 0%, #3A6020 100%);
  padding: 60px 0;
}

.legal-hero h1 {
  color: #F4E4C1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.last-updated {
  color: #E8DCC0;
  font-size: 14px;
  font-style: italic;
  margin-top: 16px;
}

.legal-content {
  padding: 80px 0;
  max-width: 900px;
  margin: 0 auto;
}

.text-section {
  margin-bottom: 48px;
  padding: 32px;
  background: #FFFFFF;
  border-left: 4px solid #D4AF37;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.text-section h2 {
  color: #2D5016;
  font-size: 28px;
  margin-bottom: 16px;
}

.text-section h3 {
  color: #2D5016;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.text-section p {
  color: #3C3C3C;
  line-height: 1.8;
  margin-bottom: 16px;
}

.highlight-quote {
  background: linear-gradient(135deg, #F8F6F0 0%, #FDFBF7 100%);
  border-left: 4px solid #D4AF37;
  padding: 24px 32px;
  margin: 32px 0;
  font-size: 20px;
  font-style: italic;
  color: #2D5016;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.1);
}

.legal-navigation {
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(135deg, #F8F6F0 0%, #FDFBF7 100%);
  border: 2px solid #D4AF37;
  border-radius: 12px;
}

.legal-navigation h3 {
  color: #2D5016;
  margin-bottom: 16px;
}

.legal-navigation ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-navigation li a {
  color: #7A9D54;
  font-weight: 600;
  text-decoration: underline;
}

.legal-navigation li a:hover {
  color: #2D5016;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-hero {
  background: linear-gradient(135deg, #2D5016 0%, #3A6020 100%);
  padding: 100px 0;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 100%);
  color: #1A3010;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 700;
  margin: 0 auto 32px;
  border: 4px solid #F4E4C1;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.thank-you-hero h1 {
  color: #F4E4C1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.thank-you-hero .hero-subtitle {
  color: #E8DCC0;
}

.confirmation-text {
  color: #D4AF37;
  font-size: 18px;
  font-weight: 600;
  margin-top: 16px;
}

.next-steps,
.related-content {
  padding: 80px 0;
}

.urgent-note {
  text-align: center;
  color: #7A9D54;
  font-style: italic;
  margin-top: 32px;
}

.back-home {
  text-align: center;
  padding: 40px 0;
}

/* ============================================
   SECTION SUBTITLES
   ============================================ */

.section-subtitle {
  text-align: center;
  color: #7A9D54;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ============================================
   FOOTER - LUXURY DESIGN
   ============================================ */

footer {
  background: linear-gradient(135deg, #1A3010 0%, #0F1F08 100%);
  color: #E8DCC0;
  padding: 60px 0 24px;
  border-top: 3px solid #D4AF37;
}

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

.footer-col {
  flex: 1 1 250px;
}

.footer-col h3 {
  color: #F4E4C1;
  font-size: 20px;
  margin-bottom: 20px;
  font-family: 'Merriweather', serif;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 12px;
}

.footer-col p {
  color: #E8DCC0;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-col ul li a {
  color: #E8DCC0;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

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

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A3010 0%, #2D5016 100%);
  border-top: 3px solid #D4AF37;
  padding: 24px;
  z-index: 1998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-banner-text {
  flex: 1 1 400px;
  color: #E8DCC0;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-banner button {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-accept {
  background: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 100%);
  color: #1A3010;
  border-color: #D4AF37;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #F4E4C1 0%, #D4AF37 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cookie-reject,
.cookie-settings {
  background: transparent;
  color: #F4E4C1;
  border-color: rgba(244, 228, 193, 0.3);
}

.cookie-reject:hover,
.cookie-settings:hover {
  border-color: #D4AF37;
  background: rgba(212, 175, 55, 0.1);
}

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

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

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

.cookie-modal-content h3 {
  color: #2D5016;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background: #F8F6F0;
  border-left: 4px solid #7A9D54;
  border-radius: 8px;
}

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

.cookie-category h4 {
  color: #2D5016;
  font-size: 16px;
  margin-bottom: 0;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #C0C0C0;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #7A9D54;
}

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

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-category p {
  color: #3C3C3C;
  font-size: 13px;
  margin-bottom: 0;
}

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

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

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 40px; }
  .hero-subtitle { font-size: 16px; }
  
  /* Header */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .logo {
    flex-direction: row;
  }
  
  /* Sections */
  .section {
    padding: 40px 0;
    margin-bottom: 40px;
  }
  
  .hero,
  .hero-internal {
    padding: 60px 0 40px;
  }
  
  /* Cards */
  .service-card,
  .service-card-full,
  .benefit-item,
  .value-item,
  .team-member,
  .category-card,
  .article-card,
  .article-card-featured,
  .plant-card,
  .plant-card-featured,
  .contact-method,
  .stat-item,
  .step,
  .content-link-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Hero CTA */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Process Steps */
  .process-steps {
    flex-direction: column;
    gap: 24px;
  }
  
  /* Form */
  .form-container {
    padding: 32px 24px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-banner button {
    width: 100%;
  }
  
  /* Stats Grid */
  .stats-grid {
    flex-direction: column;
    gap: 24px;
  }
  
  .stat-item {
    flex: 1 1 100%;
  }
  
  /* Text Sections */
  .text-section {
    padding: 24px;
  }
  
  /* Testimonials */
  .testimonial-card {
    padding: 32px 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card-full {
    flex: 1 1 calc(50% - 32px);
  }
  
  .step {
    flex: 1 1 calc(50% - 40px);
  }
  
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
}

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

@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);
  }
}

.section {
  animation: fadeIn 0.8s ease-out;
}

.success-icon {
  animation: pulse 2s infinite;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

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

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

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .section {
    page-break-inside: avoid;
  }
}

/* ============================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================ */

:focus-visible {
  outline: 3px solid #D4AF37;
  outline-offset: 2px;
}

.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 support */
@media (prefers-contrast: high) {
  .btn {
    border-width: 3px;
  }
  
  .service-card,
  .benefit-item,
  .testimonial-card {
    border-width: 3px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   END OF STYLES
   ============================================ */