/* ============================================
   MindShaper Quest - Elegant Classic Design
   CSS Reset & Base Styles
   ============================================ */

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #2c2c2c;
  background-color: #faf8f5;
  overflow-x: hidden;
}

/* ============================================
   Typography - Elegant Classic Style
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Garamond', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.3;
  color: #2D5016;
  margin-bottom: 20px;
}

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

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

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

p {
  margin-bottom: 16px;
  color: #4a4a4a;
}

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

a:hover {
  color: #8B4513;
}

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #4a4a4a;
}

/* ============================================
   Layout & Container
   ============================================ */

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

/* ============================================
   Header & Navigation - Elegant Classic
   ============================================ */

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0ddd8;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo img {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  font-size: 16px;
  font-weight: 400;
  color: #2D5016;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #8B4513;
  border-bottom-color: #F4A460;
}

/* ============================================
   Mobile Menu - Burger Navigation
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #2D5016;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #8B4513;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: right 0.4s ease;
  padding: 80px 32px 32px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #2D5016;
  cursor: pointer;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-size: 18px;
  color: #2D5016;
  padding: 12px 0;
  border-bottom: 1px solid #e0ddd8;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #8B4513;
  padding-left: 8px;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

/* ============================================
   Buttons - Elegant Classic Style
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-family: 'Georgia', serif;
  font-weight: 400;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #2D5016;
  color: #ffffff;
  border-color: #2D5016;
}

.btn-primary:hover {
  background-color: #8B4513;
  border-color: #8B4513;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #2D5016;
  border-color: #2D5016;
}

.btn-secondary:hover {
  background-color: #2D5016;
  color: #ffffff;
}

/* ============================================
   Hero Section - Elegant Classic
   ============================================ */

.hero {
  background: linear-gradient(to bottom, #faf8f5 0%, #f5f3ef 100%);
  padding: 80px 24px;
  margin-bottom: 60px;
  border-bottom: 1px solid #e0ddd8;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: #2D5016;
}

.hero-subheadline {
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-badge {
  font-size: 14px;
  color: #8B4513;
  font-style: italic;
}

/* ============================================
   Page Hero - Subpages
   ============================================ */

.page-hero {
  background-color: #f5f3ef;
  padding: 60px 24px 40px;
  margin-bottom: 60px;
  border-bottom: 1px solid #e0ddd8;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 16px;
  color: #8B4513;
}

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

/* ============================================
   Sections - Elegant Spacing
   ============================================ */

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

.intro-text {
  font-size: 18px;
  color: #4a4a4a;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.7;
}

.section-subtext {
  font-size: 16px;
  color: #8B4513;
  text-align: center;
  font-style: italic;
  margin-top: 32px;
}

/* ============================================
   Benefits Grid - Flexbox Layout
   ============================================ */

.benefits {
  background-color: #ffffff;
  border-top: 1px solid #e0ddd8;
  border-bottom: 1px solid #e0ddd8;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 40px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.benefit-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #faf8f5;
  padding: 32px;
  border: 1px solid #e0ddd8;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.benefit-card h3 {
  color: #2D5016;
  margin-bottom: 12px;
  font-size: 22px;
}

.benefit-card p {
  color: #4a4a4a;
}

@media (max-width: 768px) {
  .benefit-card {
    flex: 1 1 100%;
  }
}

/* ============================================
   Services Grid - Flexbox Layout
   ============================================ */

.services-preview {
  background-color: #faf8f5;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #e0ddd8;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-color: #F4A460;
}

.service-card h3 {
  color: #2D5016;
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card .price {
  font-size: 24px;
  color: #8B4513;
  font-weight: 600;
  margin-top: 16px;
}

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

@media (max-width: 768px) {
  .service-card {
    flex: 1 1 100%;
  }
}

/* ============================================
   Process Steps - Flexbox Layout
   ============================================ */

.process {
  background-color: #ffffff;
  border-top: 1px solid #e0ddd8;
}

.process h2 {
  text-align: center;
  margin-bottom: 40px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  padding: 24px;
  background-color: #faf8f5;
  border-left: 3px solid #F4A460;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step:hover {
  border-left-color: #2D5016;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.step h3 {
  color: #2D5016;
  margin-bottom: 12px;
  font-size: 20px;
}

.step p {
  color: #4a4a4a;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .step {
    flex: 1 1 100%;
  }
}

/* ============================================
   Testimonials - Elegant Cards
   ============================================ */

.testimonials {
  background-color: #f5f3ef;
  padding: 60px 24px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #e0ddd8;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: #2c2c2c;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-card .author {
  color: #8B4513;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 1 1 100%;
  }
}

/* ============================================
   CTA Section - Elegant Emphasis
   ============================================ */

.cta-section {
  background: linear-gradient(to bottom, #2D5016 0%, #1a3009 100%);
  padding: 60px 24px;
  text-align: center;
  border-top: 3px solid #F4A460;
  margin-bottom: 0;
}

.cta-section h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-section p {
  color: #e8e8e8;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  background-color: #F4A460;
  border-color: #F4A460;
  color: #2D5016;
  font-weight: 600;
}

.cta-section .btn-primary:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #2D5016;
}

.contact-info {
  color: #e8e8e8;
  margin-top: 24px;
  font-size: 16px;
}

/* ============================================
   Content Sections - O nás, Služby, etc.
   ============================================ */

.story-section,
.values-section,
.team-section {
  padding: 60px 24px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.text-section p {
  margin-bottom: 20px;
  color: #4a4a4a;
}

.mission-statement {
  font-size: 20px;
  color: #2D5016;
  font-style: italic;
  padding: 24px;
  background-color: #f5f3ef;
  border-left: 4px solid #F4A460;
  margin: 32px 0;
}

/* ============================================
   Values Grid - Flexbox Layout
   ============================================ */

.values-section {
  background-color: #faf8f5;
}

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

.value-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e0ddd8;
  border-radius: 2px;
  margin-bottom: 20px;
}

.value-card h3 {
  color: #2D5016;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .value-card {
    flex: 1 1 100%;
  }
}

/* ============================================
   Team Grid - Flexbox Layout
   ============================================ */

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

.team-member {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  padding: 32px;
  background-color: #faf8f5;
  border: 1px solid #e0ddd8;
  border-radius: 2px;
  text-align: center;
  margin-bottom: 20px;
}

.team-member h3 {
  color: #2D5016;
  margin-bottom: 8px;
}

.team-member .role {
  color: #8B4513;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .team-member {
    flex: 1 1 100%;
  }
}

/* ============================================
   Services Detail Page
   ============================================ */

.services-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
}

.service-block {
  background-color: #ffffff;
  padding: 40px;
  margin-bottom: 32px;
  border: 1px solid #e0ddd8;
  border-radius: 2px;
}

.service-block h2 {
  color: #2D5016;
  margin-bottom: 12px;
}

.service-block .price {
  font-size: 28px;
  color: #8B4513;
  font-weight: 600;
  margin-bottom: 16px;
}

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

.service-block ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.service-block li {
  margin-bottom: 8px;
}

.duration {
  font-size: 14px;
  color: #8B4513;
  font-style: italic;
  margin-top: 16px;
}

.pricing-info {
  background-color: #f5f3ef;
  padding: 32px;
  margin-top: 40px;
  border-left: 4px solid #F4A460;
}

/* ============================================
   Portfolio & Projects
   ============================================ */

.portfolio-intro {
  text-align: center;
  padding: 40px 24px;
  background-color: #faf8f5;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 900px;
  margin: 40px auto 0;
  justify-content: center;
}

.stat {
  flex: 1 1 calc(25% - 18px);
  min-width: 180px;
  text-align: center;
  padding: 24px;
  background-color: #ffffff;
  border: 1px solid #e0ddd8;
  border-radius: 2px;
  margin-bottom: 20px;
}

.stat h3 {
  font-size: 36px;
  color: #2D5016;
  margin-bottom: 8px;
}

.stat p {
  font-size: 14px;
  color: #4a4a4a;
}

.projects {
  padding: 60px 24px;
}

.project-card {
  background-color: #ffffff;
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid #e0ddd8;
  border-radius: 2px;
}

.project-card h2 {
  color: #2D5016;
  margin-bottom: 16px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.project-meta span {
  font-size: 14px;
  color: #8B4513;
  padding: 4px 12px;
  background-color: #f5f3ef;
  border-radius: 2px;
}

.project-card .quote {
  font-size: 18px;
  font-style: italic;
  color: #2D5016;
  padding: 20px;
  background-color: #f5f3ef;
  border-left: 3px solid #F4A460;
  margin: 24px 0;
}

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

/* ============================================
   Blog & Articles - Pěstitelské rady
   ============================================ */

.blog-intro {
  padding: 40px 24px;
  text-align: center;
}

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

.categories span {
  font-size: 14px;
  color: #2D5016;
  padding: 8px 16px;
  background-color: #f5f3ef;
  border: 1px solid #e0ddd8;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.categories span:hover {
  background-color: #2D5016;
  color: #ffffff;
}

.featured-articles {
  padding: 60px 24px;
  background-color: #faf8f5;
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.article-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #e0ddd8;
  border-radius: 2px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.article-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.article-card h3 {
  color: #2D5016;
  margin-bottom: 12px;
  font-size: 20px;
}

.article-card .meta {
  font-size: 12px;
  color: #8B4513;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .article-card {
    flex: 1 1 100%;
  }
}

.latest-articles {
  padding: 60px 24px;
}

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

.article-item {
  background-color: #ffffff;
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid #e0ddd8;
  border-left: 3px solid #F4A460;
  transition: all 0.3s ease;
}

.article-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-left-color: #2D5016;
}

.article-item h3 {
  color: #2D5016;
  margin-bottom: 8px;
  font-size: 20px;
}

.article-item .date {
  font-size: 12px;
  color: #8B4513;
  margin-top: 8px;
}

/* ============================================
   Seasonal Guide - Flexbox Layout
   ============================================ */

.seasonal-guide {
  padding: 60px 24px;
  background-color: #f5f3ef;
}

.seasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.season-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #e0ddd8;
  border-radius: 2px;
  margin-bottom: 20px;
}

.season-card h3 {
  color: #2D5016;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .season-card {
    flex: 1 1 100%;
  }
}

/* ============================================
   Tips Section - Flexbox Layout
   ============================================ */

.tips-section {
  padding: 60px 24px;
}

.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.tip-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #faf8f5;
  padding: 24px;
  border-left: 4px solid #F4A460;
  margin-bottom: 20px;
}

.tip-card h3 {
  color: #2D5016;
  margin-bottom: 8px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .tip-card {
    flex: 1 1 100%;
  }
}

/* ============================================
   Contact Page
   ============================================ */

.contact-section {
  padding: 60px 24px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info {
  flex: 1 1 calc(40% - 20px);
  min-width: 280px;
}

.contact-form-wrapper {
  flex: 1 1 calc(60% - 20px);
  min-width: 280px;
}

.info-block {
  margin-bottom: 32px;
}

.info-block h3 {
  color: #2D5016;
  margin-bottom: 8px;
  font-size: 18px;
}

.info-block p {
  color: #4a4a4a;
  line-height: 1.7;
}

.form-placeholder {
  background-color: #f5f3ef;
  padding: 32px;
  border: 1px solid #e0ddd8;
  border-radius: 2px;
}

.form-placeholder p {
  margin-bottom: 16px;
  color: #4a4a4a;
}

.consultation-info {
  padding: 60px 24px;
  background-color: #faf8f5;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.steps-grid .step {
  flex: 1 1 calc(25% - 18px);
  min-width: 240px;
}

@media (max-width: 768px) {
  .steps-grid .step {
    flex: 1 1 100%;
  }
}

.service-areas {
  padding: 60px 24px;
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   Thank You Page
   ============================================ */

.thank-you-hero {
  background: linear-gradient(to bottom, #2D5016 0%, #1a3009 100%);
  padding: 80px 24px;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.icon-check {
  width: 80px;
  height: 80px;
  background-color: #F4A460;
  color: #2D5016;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  margin: 0 auto 24px;
}

.thank-you-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.thank-you-hero p {
  color: #e8e8e8;
  font-size: 18px;
  margin-bottom: 32px;
}

.next-steps {
  padding: 60px 24px;
}

.useful-links {
  padding: 60px 24px;
  background-color: #faf8f5;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.link-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #e0ddd8;
  border-radius: 2px;
  text-align: center;
  margin-bottom: 20px;
}

.link-card h3 {
  color: #2D5016;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .link-card {
    flex: 1 1 100%;
  }
}

.contact-confirmation {
  padding: 40px 24px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   Legal Pages
   ============================================ */

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

.legal-content h2 {
  color: #2D5016;
  margin-top: 32px;
  margin-bottom: 16px;
}

.last-update {
  font-size: 14px;
  color: #8B4513;
  font-style: italic;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e0ddd8;
}

/* ============================================
   Footer - Elegant Classic
   ============================================ */

footer {
  background-color: #2D5016;
  color: #e8e8e8;
  padding: 60px 24px 24px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 calc(25% - 30px);
  min-width: 220px;
}

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

.footer-section p {
  color: #e8e8e8;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

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

.footer-nav a {
  color: #e8e8e8;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #F4A460;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(244, 164, 96, 0.3);
  text-align: center;
}

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

@media (max-width: 768px) {
  .footer-section {
    flex: 1 1 100%;
  }
}

/* ============================================
   Cookie Consent Banner
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #e0ddd8;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px 24px;
  z-index: 999;
  display: none;
}

.cookie-banner.active {
  display: block;
  animation: slideUp 0.4s ease;
}

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

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

.cookie-banner-text {
  flex: 1 1 60%;
  min-width: 280px;
}

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

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

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

.cookie-settings-btn {
  background-color: transparent;
  color: #2D5016;
  border: 1px solid #2D5016;
  padding: 10px 24px;
  font-size: 14px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-settings-btn:hover {
  background-color: #2D5016;
  color: #ffffff;
}

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

.cookie-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 2px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

.cookie-modal-header h2 {
  color: #2D5016;
  margin-bottom: 0;
}

.cookie-modal-close {
  background-color: transparent;
  border: none;
  font-size: 28px;
  color: #2D5016;
  cursor: pointer;
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #8B4513;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #faf8f5;
  border: 1px solid #e0ddd8;
  border-radius: 2px;
}

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

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

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

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

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

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

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #2D5016;
}

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

/* ============================================
   Responsive Design - Mobile Optimizations
   ============================================ */

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-banner-buttons .btn,
  .cookie-settings-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .contact-grid {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  section {
    padding: 32px 16px;
  }
}

/* ============================================
   Utility Classes
   ============================================ */

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

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

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

.hidden {
  display: none;
}

/* ============================================
   Animations & Transitions
   ============================================ */

.fade-in {
  animation: fadeIn 0.6s ease;
}

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

/* Smooth scrolling for all links */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #F4A460;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background-color: white;
    color: black;
  }
}