@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   Design System & Variables
   ========================================================================== */
:root {
  /* Color Palette based on Brand Logo */
  --primary-green: hsl(93, 55%, 42%);      /* Vibrant organic green */
  --primary-green-light: hsl(93, 55%, 95%);/* Very soft green background */
  --primary-green-dark: hsl(93, 60%, 25%); /* Deep forest green for text/headers */
  --secondary-yellow: hsl(48, 95%, 52%);   /* Warm golden yellow from chick logo */
  --secondary-yellow-light: hsl(48, 95%, 94%); /* Pastel yellow for soft cards */
  --accent-yellow-dark: hsl(45, 95%, 40%); /* Rich mustard for active outlines */
  
  /* Neutral Palette */
  --bg-organic: hsl(60, 20%, 98%);         /* Off-white, soft on the eyes */
  --bg-card: hsl(0, 0%, 100%);             /* Pure white for depth contrast */
  --text-dark: hsl(120, 10%, 15%);         /* Forest charcoal for readability */
  --text-muted: hsl(120, 5%, 45%);         /* Soft gray for meta info */
  --border-light: hsl(93, 20%, 90%);       /* Leafy gray border */
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(118, 184, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(46, 125, 50, 0.12);
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  /* Layout constraints */
  --max-width: 1280px;
  --header-height: 80px;
}

/* ==========================================================================
   Reset & Global Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-organic);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary-green-dark);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

section {
  padding: 100px 0;
  position: relative;
}

/* ==========================================================================
   Typography Utilities
   ========================================================================== */
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--primary-green-light);
  color: var(--primary-green-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  border: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 50px;
}

/* ==========================================================================
   Buttons & Links
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  gap: 10px;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--primary-green);
  color: white;
  box-shadow: 0 4px 15px rgba(118, 184, 42, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-green-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

.btn-secondary {
  background-color: var(--secondary-yellow);
  color: var(--primary-green-dark);
  box-shadow: 0 4px 15px rgba(253, 216, 53, 0.2);
}

.btn-secondary:hover {
  background-color: var(--accent-yellow-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(253, 216, 53, 0.3);
}

.btn-outline {
  border: 2px solid var(--primary-green);
  color: var(--primary-green-dark);
}

.btn-outline:hover {
  background-color: var(--primary-green);
  color: white;
  transform: translateY(-3px);
}

/* ==========================================================================
   Header & Sticky Navigation
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  height: 70px;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 48px;
  width: auto;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary-green-dark);
}

.logo-text span {
  color: var(--secondary-yellow);
  font-weight: 500;
  font-size: 0.95rem;
  display: block;
  line-height: 1;
}

nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-green);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary-green);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--primary-green-dark);
  background: var(--primary-green-light);
  padding: 10px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.header-contact i {
  color: var(--primary-green);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-green-dark);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 40px);
  background: radial-gradient(circle at 80% 20%, var(--secondary-yellow-light) 0%, transparent 40%),
              radial-gradient(circle at 10% 80%, var(--primary-green-light) 0%, transparent 45%),
              var(--bg-organic);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-green-light);
  color: var(--primary-green-dark);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid var(--border-light);
}

.hero-tag i {
  color: var(--secondary-yellow);
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 25px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

.hero-illustration {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-blob-bg {
  position: absolute;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--secondary-yellow-light) 100%);
  filter: blur(40px);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 55%;
  animation: blob-animate 12s infinite alternate ease-in-out;
  z-index: 1;
}

.hero-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  max-width: 440px;
  width: 100%;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 15px;
}

.hero-card-logo {
  height: 36px;
}

.hero-card-badge {
  background: var(--secondary-yellow);
  color: var(--primary-green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}

.hero-card-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.hero-card-item i {
  color: var(--primary-green);
  background: var(--primary-green-light);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

@keyframes blob-animate {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 55%; transform: rotate(0deg); }
  100% { border-radius: 60% 40% 50% 70% / 50% 60% 45% 65%; transform: rotate(180deg); }
}

/* ==========================================================================
   Stats Bar
   ========================================================================== */
.stats-bar {
  background-color: var(--primary-green-dark);
  color: white;
  padding: 50px 0;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary-yellow);
  margin-bottom: 5px;
}

.stat-item p {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

/* ==========================================================================
   Specialties (Our Farm Produce)
   ========================================================================== */
.specialties {
  background-color: var(--bg-card);
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.spec-card {
  background-color: var(--bg-organic);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.spec-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
  background-color: white;
}

.spec-icon-box {
  width: 70px;
  height: 70px;
  background-color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.spec-card:hover .spec-icon-box {
  background-color: var(--primary-green);
  color: white;
  transform: rotate(10deg);
}

.spec-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.spec-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.spec-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

.spec-list li i {
  color: var(--primary-green);
}

/* ==========================================================================
   Agritourism (Farm Visits)
   ========================================================================== */
.tours {
  background: radial-gradient(circle at left bottom, var(--primary-green-light) 0%, transparent 35%),
              var(--bg-organic);
}

.tours-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background-color: var(--bg-card);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.tours-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tours-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0 40px;
}

.tours-highlight-item {
  display: flex;
  gap: 12px;
}

.tours-highlight-item i {
  color: var(--primary-green);
  background-color: var(--primary-green-light);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.tours-highlight-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.tours-highlight-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.tours-pricing-box {
  background-color: var(--primary-green-light);
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-left: 1px solid var(--border-light);
}

.tours-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-green-dark);
  line-height: 1;
  margin-bottom: 5px;
}

.tours-price span {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
}

.tours-duration {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  background-color: white;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-light);
}

/* ==========================================================================
   Produce Catalog & WhatsApp Order Builder
   ========================================================================== */
.catalog {
  background-color: var(--bg-card);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.catalog-item-card {
  background-color: var(--bg-organic);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.catalog-item-card:hover {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-sm);
  background-color: white;
}

.catalog-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.catalog-item-title {
  font-size: 1.2rem;
  font-weight: 700;
}

.catalog-item-unit {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: white;
  padding: 3px 8px;
  border-radius: 5px;
  border: 1px solid var(--border-light);
  margin-top: 4px;
  display: inline-block;
}

.catalog-item-price-range {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.counter-control {
  display: flex;
  align-items: center;
  gap: 15px;
}

.counter-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: white;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  cursor: pointer;
  color: var(--primary-green-dark);
  transition: var(--transition-fast);
}

.counter-btn:hover {
  background-color: var(--primary-green);
  color: white;
  border-color: var(--primary-green);
}

.counter-value {
  width: 40px;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Order Summary Box */
.order-summary-box {
  background-color: var(--primary-green-light);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--border-light);
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-md);
}

.summary-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 15px;
}

.summary-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
  min-height: 80px;
}

.summary-list-empty {
  color: var(--text-muted);
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
  background-color: white;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
}

.summary-item-remove {
  cursor: pointer;
  color: #d32f2f;
  margin-left: 10px;
  font-size: 0.85rem;
}

.summary-total {
  border-top: 2px dashed var(--border-light);
  padding-top: 20px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.summary-total-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-green-dark);
}

.summary-total-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-green-dark);
}

/* ==========================================================================
   Image Gallery Section
   ========================================================================== */
.gallery {
  background-color: var(--bg-organic);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 260px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(46, 125, 50, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-info {
  color: white;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.gallery-info h4 {
  color: var(--secondary-yellow);
  font-size: 1.1rem;
  font-weight: 600;
}

.gallery-info p {
  font-size: 0.85rem;
  opacity: 0.9;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
}

/* ==========================================================================
   Training Hub
   ========================================================================== */
.training {
  background-color: var(--bg-card);
}

.training-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.training-content {
  position: relative;
}

.training-tech-cards {
  display: grid;
  gap: 25px;
}

.tech-card {
  background-color: var(--bg-organic);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid var(--border-light);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.tech-card:hover {
  background-color: white;
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.tech-card-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.tech-card:nth-child(2) .tech-card-icon {
  background-color: var(--secondary-yellow-light);
  color: var(--accent-yellow-dark);
}

.tech-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.tech-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Testimonials Slider
   ========================================================================== */
.testimonials {
  background-color: var(--bg-organic);
  overflow: hidden;
}

.slider-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-quote {
  font-size: 1.35rem;
  font-weight: 500;
  font-style: italic;
  color: var(--primary-green-dark);
  margin-bottom: 30px;
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  font-size: 5rem;
  position: absolute;
  top: -50px;
  left: -20px;
  opacity: 0.1;
  color: var(--primary-green);
  font-family: serif;
}

.testimonial-client {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-green-light);
  color: var(--primary-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  border: 2px solid var(--border-light);
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--border-light);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background-color: var(--primary-green);
  width: 30px;
  border-radius: 10px;
}

/* ==========================================================================
   Contact & Map Section
   ========================================================================== */
.contact {
  background-color: var(--bg-card);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-detail-card {
  display: flex;
  gap: 20px;
  background-color: var(--bg-organic);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
}

.contact-detail-icon {
  width: 46px;
  height: 46px;
  background-color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-detail-text h4 {
  font-size: 1.05rem;
  margin-bottom: 5px;
}

.contact-detail-text p, .contact-detail-text a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-detail-text a:hover {
  color: var(--primary-green);
}

.contact-social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.contact-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-organic);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.contact-social-btn:hover {
  background-color: var(--primary-green);
  color: white;
  border-color: var(--primary-green);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-card {
  background-color: var(--bg-organic);
  border-radius: 28px;
  padding: 40px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.form-title {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.form-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

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

.form-group-full {
  grid-column: span 2;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-green-dark);
}

.form-input, .form-textarea {
  background-color: white;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px var(--primary-green-light);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-message {
  margin-top: 15px;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
  display: block;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
footer {
  background-color: var(--primary-green-dark);
  color: white;
  padding: 80px 0 30px;
  border-top: 5px solid var(--secondary-yellow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand h3 {
  font-size: 1.6rem;
  color: white;
  margin-bottom: 15px;
}

.footer-brand p {
  opacity: 0.8;
  font-size: 0.95rem;
  margin-bottom: 25px;
  max-width: 320px;
}

.footer-brand span {
  color: var(--secondary-yellow);
}

.footer-links-col h4 {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 8px;
}

.footer-links-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--secondary-yellow);
}

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

.footer-links-list a {
  opacity: 0.8;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-links-list a:hover {
  opacity: 1;
  color: var(--secondary-yellow);
  padding-left: 5px;
}

.footer-address-col h4 {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 8px;
}

.footer-address-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--secondary-yellow);
}

.footer-address-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-address-item {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  opacity: 0.85;
}

.footer-address-item i {
  color: var(--secondary-yellow);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-grid, .catalog-layout, .training-layout, .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .order-summary-box {
    position: static;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .menu-toggle {
    display: block;
  }
  nav {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - var(--header-height));
    background-color: white;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 30px;
    transition: var(--transition-smooth);
    z-index: 999;
  }
  nav.active {
    left: 0;
  }
  .nav-links {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  .nav-link {
    display: block;
    width: 100%;
    font-size: 1.1rem;
  }
  .header-contact {
    margin-top: auto;
    width: 100%;
    justify-content: center;
  }
  .hero-btns {
    flex-direction: column;
  }
  .specialties-grid {
    grid-template-columns: 1fr;
  }
  .tours-card {
    grid-template-columns: 1fr;
  }
  .tours-pricing-box {
    border-left: none;
    border-top: 1px solid var(--border-light);
  }
  .tours-highlights {
    grid-template-columns: 1fr;
  }
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.3rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
