/* Nutjoi Sunflower Seeds – Salted Palette */
:root {
  /* 1. Primary Brand Green (Logo, icons, links) */
  --brand-green: #1F7A3A;
  /* 2. Sunflower Orange (CTA, hero accent, sections) */
  --sunflower-orange: #E55A0A;
  --sunflower-orange-hover: #CC4F09;
  /* 3. Warm Gold / Seed Yellow (badges, secondary highlights) */
  --warm-gold: #E6C15A;
  /* 4. Deep Seed Black (body text, dark areas) */
  --deep-seed-black: #1E1E1E;
  /* 5. Clean White */
  --white: #FFFFFF;
  /* 6. Soft Gray (backgrounds, cards) */
  --soft-gray: #EDEDED;

  /* Semantic mapping */
  --primary: var(--brand-green);
  --secondary: var(--deep-seed-black);
  --accent: var(--sunflower-orange);
  --highlight: var(--warm-gold);
  --hover: var(--sunflower-orange-hover);

  /* Legacy tokens (used elsewhere in CSS) */
  --deep-green: var(--brand-green);
  --dark-forest: var(--deep-seed-black);
  --caramel-bronze: var(--warm-gold);
  --golden-yellow: var(--warm-gold);
  --rich-orange: var(--sunflower-orange);
  --gold: var(--warm-gold);
  --caramel: var(--warm-gold);
  --cream: var(--soft-gray);
  --warm-beige: var(--soft-gray);

  /* Text & backgrounds */
  --text: var(--deep-seed-black);
  --text-light: #666666;
  --text-on-dark: var(--white);
  --muted: #666666;
  --light: var(--soft-gray);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--light);
  font-weight: 400;
  font-size: 16px;
}

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

/* Typography */
h1,
h2,
h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  color: var(--deep-seed-black);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--muted);
}

/* Header */
.header {
  background: transparent;
  color: var(--text-on-dark);
  padding: 1.15rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: var(--soft-gray);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  padding: 1.25rem 0;
}

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

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin: -15px 0;
  padding: 0;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
  transition: all 0.3s ease;
}

.logo:hover {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.logo-img {
  height: 100px;
  width: auto;
  transition: transform 0.3s ease;
  margin: -8px 0;
  padding: 0;
  display: block;
}

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

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: var(--text-on-dark);
  text-decoration: none;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.nav a:hover {
  color: var(--warm-gold);
  background: rgba(255, 255, 255, 0.1);
}

/* Header scrolled: dark text on light background */
.header.scrolled .nav a {
  color: var(--text);
}
.header.scrolled .nav a:hover {
  color: var(--brand-green);
  background: rgba(0, 0, 0, 0.06);
}
.header.scrolled .hamburger span {
  background-color: var(--text);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--text-on-dark);
  transition: all 0.3s ease;
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--dark-forest);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background picture,
.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

main {
  position: relative;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.hero-text-overlay {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  max-width: 320px;
}

.hero-cta {
  font-weight: 700 !important;
  padding: 1rem 2.5rem !important;
  font-size: 1.75rem !important;
  position: relative;
  overflow: hidden;
}

.hero-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: btnShine 2.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btnShine {
  0% {
    left: -100%;
  }
  60% {
    left: -100%;
  }
  100% {
    left: 150%;
  }
}

.hero-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 4.5rem;
  font-weight: 400;
  color: var(--text-on-dark);
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  position: relative;
  display: inline-block;
  background: linear-gradient(
    45deg,
    var(--text-on-dark),
    var(--warm-gold),
    var(--text-on-dark),
    var(--warm-gold),
    var(--text-on-dark)
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroShine 5s ease-in-out infinite;
}

@keyframes heroShine {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-description {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 1.3rem;
  color: var(--text-on-dark);
  margin: 0;
  line-height: 1.4;
  opacity: 0.9;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Primary CTA: Sunflower Orange */
.btn {
  display: inline-block;
  background: var(--sunflower-orange);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--sunflower-orange-hover);
  color: var(--white);
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section:nth-child(even) {
  background: var(--white);
}

/* About Section (Deep Seed Black) */
#about {
  background: var(--deep-seed-black);
}

#about h2,
#about h3 {
  color: var(--text-on-dark);
}

#about p {
  color: var(--text-on-dark);
  opacity: 0.9;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  color: var(--text-on-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
}

.about-text p {
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--text-on-dark);
  opacity: 0.9;
}

.about-image {
  text-align: left;
}

.about-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  transition: transform 0.3s ease;
}

.about-img:hover {
  transform: scale(1.02);
}

/* Products Section (Sunflower Orange) */
#blends {
  background: var(--sunflower-orange);
  padding: 3rem 0;
}

#blends h2,
#blends h3 {
  color: var(--text-on-dark) !important;
}

#blends p {
  color: var(--text-on-dark) !important;
}

/* Product Size Sections */
.product-size-section {
  margin: 3rem 0;
}

/* Chestnuts section: larger image */
.product-size-section--chestnuts .product-image {
  max-width: 380px;
}
.product-size-section--chestnuts .product-img {
  max-height: 380px;
}

.product-size-title {
  color: var(--text-on-dark) !important;
  font-size: 2.5rem !important;
  font-weight: 600 !important;
  text-align: center;
  margin-bottom: 2rem !important;
  padding: 2rem 0 1rem 0;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-size-section:first-child .product-size-title {
  border-top: none;
  padding-top: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  margin: 0;
}

.product-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  min-height: 500px;
}

.product-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  height: 100%;
  justify-content: space-between;
}

.product-image {
  width: 100%;
  max-width: 220px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

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

.product-info {
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-info h3 {
  color: var(--text-on-dark);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-info p {
  color: var(--text-on-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Secondary button: Brand Green */
.product-btn {
  display: inline-block;
  background: var(--brand-green);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
}

.product-btn:hover {
  background: var(--sunflower-orange-hover);
  color: var(--white);
  transform: translateY(-2px);
}

.products-description {
  text-align: left;
  margin-top: 2rem;
  margin-bottom: 1rem;
  max-width: 1000px;
  margin-left: 0;
  margin-right: auto;
}

.products-description h2 {
  color: var(--text-on-dark) !important;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.products-description h3 {
  color: var(--text-on-dark) !important;
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.products-description p {
  color: var(--text-on-dark);
  font-size: 1.3rem;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 700px;
  margin: 0;
}

.download-section {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 2px solid var(--warm-beige);
}

.download-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: var(--secondary);
}

/* Why choose Nutjoi (Brand Green) */
#why {
  background: var(--brand-green);
}

#why h2,
#why h3 {
  color: var(--text-on-dark);
}

#why p {
  color: var(--text-on-dark);
  opacity: 0.9;
}

.section-subtitle {
  text-align: center;
  color: var(--text-on-dark);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  line-height: 1.5;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  background: var(--brand-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(31, 122, 58, 0.3);
}

.feature-card:hover .feature-icon {
  background: var(--warm-gold);
  color: var(--deep-seed-black);
  transform: scale(1.1);
}

.feature-card h3 {
  color: var(--text) !important;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
}

.feature-card p {
  color: var(--text) !important;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
  max-width: 250px;
  opacity: 0.8;
}

/* Scroll animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-60px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-left.animate {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(60px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-right.animate {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.about-image {
  transition-delay: 0.2s;
}

.about-text {
  transition-delay: 0.4s;
}

.about-text h2 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}

.about-text.animate h2 {
  opacity: 1;
  transform: translateY(0);
}

.about-text p {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-text p:nth-child(2) {
  transition-delay: 0.8s;
}

.about-text p:nth-child(3) {
  transition-delay: 1s;
}

.about-text.animate p {
  opacity: 1;
  transform: translateY(0);
}

.product-item:hover {
  transform: translateY(-5px);
}

.btn:hover,
.product-btn:hover,
.download-btn:hover,
.submit-btn:hover {
  transform: translateY(-2px);
}

.testimonial-slide {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-slide.active {
  opacity: 1;
}

/* Testimonials */
#testimonials {
  background: var(--sunflower-orange);
}

#testimonials h2,
#testimonials h3 {
  color: var(--text-on-dark);
}

#testimonials p {
  color: var(--text-on-dark);
  opacity: 0.9;
}

.testimonials-carousel {
  margin-top: 3rem;
  position: relative;
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-slide {
  display: none;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide.active {
  display: block;
  animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.testimonial-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.testimonial-card {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
  border-left: 4px solid var(--accent);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.quote-icon {
  position: absolute;
  top: -15px;
  left: 2rem;
  background: var(--gold);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
}

.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 1rem 0 1.5rem 0;
  color: var(--text);
  position: relative;
}

.testimonial-card cite {
  display: block;
  color: var(--caramel);
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: right;
  position: relative;
}

.testimonial-card cite::before {
  content: "⭐";
  margin-right: 0.5rem;
  color: var(--gold);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.prev-btn,
.next-btn {
  background: var(--deep-green);
  color: var(--text-on-dark);
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(45, 74, 45, 0.3);
}

.prev-btn:hover,
.next-btn:hover {
  background: var(--golden-yellow);
  color: var(--text);
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 164, 4, 0.4);
}

.prev-btn:active,
.next-btn:active {
  transform: scale(0.95);
}

.carousel-dots {
  display: flex;
  gap: 0.8rem;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.dot.active::before {
  background: var(--white);
}

.dot:hover {
  background: var(--caramel);
  transform: scale(1.1);
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info h3,
.contact-form h3 {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.contact-item strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-item p {
  margin: 0;
  color: var(--muted);
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--brand-green);
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--soft-gray);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sunflower-orange);
  box-shadow: 0 0 0 2px rgba(229, 90, 10, 0.2);
  background: var(--white);
}

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

/* Primary CTA: Sunflower Orange */
.submit-btn {
  width: 100%;
  background: var(--sunflower-orange);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--sunflower-orange-hover);
}

/* Footer (Brand Green) */
.footer {
  background: var(--brand-green);
  color: var(--white);
  text-align: center;
  padding: 2rem 0;
}

.footer p {
  color: var(--white);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .logo-img {
    height: 90px;
  }

  .logo {
    margin: -15px 0;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--dark-forest);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    width: 80%;
    text-align: center;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-background img,
  .hero-background .hero-bg-img {
    object-position: center top;
  }

  .hero-text-overlay {
    top: auto;
    bottom: 2rem;
    transform: translateX(-50%);
    padding: 0 1rem;
  }

  .hero-cta {
    font-size: 1.4rem !important;
    padding: 0.875rem 2rem !important;
  }

  .hero-title {
    display: none;
  }

  .hero-description {
    display: none;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .product-section {
    min-height: 450px;
    padding: 1.5rem 1rem;
  }

  .product-img {
    max-height: 220px;
  }

  .product-info h3 {
    font-size: 1.4rem;
  }

  .product-info p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 75px;
  }

  .logo {
    margin: -10px 0;
  }

  .nav {
    width: 80%;
  }

  .hero-background img,
  .hero-background .hero-bg-img {
    object-position: center top;
  }

  .hero-text-overlay {
    top: auto;
    bottom: 1.5rem;
    transform: translateX(-50%);
    padding: 0 1rem;
  }

  .hero-cta {
    font-size: 1.25rem !important;
    padding: 0.75rem 1.5rem !important;
  }

  .hero-title {
    display: none;
  }

  .hero-description {
    display: none;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .section {
    padding: 3rem 0;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .testimonial-pair {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-card blockquote {
    font-size: 1rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .product-section {
    min-height: 400px;
    padding: 1.5rem 1rem;
  }

  .product-img {
    max-height: 180px;
  }

  .product-info h3 {
    font-size: 1.2rem;
  }

  .product-info p {
    font-size: 0.8rem;
  }

  .carousel-controls {
    gap: 1rem;
  }

  .prev-btn,
  .next-btn {
    width: 45px;
    height: 45px;
  }

  .testimonials-wrapper {
    padding: 1.5rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .product-img {
    max-height: 200px;
  }

  .product-btn {
    padding: 0.7rem 1rem;
    font-size: 0.75rem;
  }

  .product-description {
    font-size: 0.8rem;
  }

  .products-description {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .products-description h3 {
    font-size: 1.5rem;
  }

  .products-description p {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-img {
    max-height: 240px;
  }

  .product-item h3 {
    font-size: 1rem;
  }

  .product-btn {
    padding: 0.6rem 0.8rem;
    font-size: 0.7rem;
  }

  .product-description {
    font-size: 0.75rem;
  }

  .products-description {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .products-description h3 {
    font-size: 1.3rem;
  }

  .products-description p {
    font-size: 0.9rem;
  }
}
