@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Poppins:wght@400;500;600&display=swap');

:root{
  --green-700: #1a6232;
  --green-800: #0f4020;
  --brown-600: #6d5229;
  --brown-700: #5a421f;
  --accent: #d4b673;
  --accent-light: #e8d4a0;
  --bg: #fdf8f3;
  --card-shadow: 0 8px 30px rgba(0,0,0,0.08);
  --card-hover-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: #333;
  line-height: 1.7;
  overflow-x: hidden;
}

/* === HEADER === */
header {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-800) 100%);
  color: #fff;
  padding: 1.2rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
}

/* Logo link styling */
header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

header .logo:hover {
  color: var(--accent);
}

header .logo img { 
  height: 40px; 
  width: auto; 
  display:block;
  transition: transform 0.3s ease;
}

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

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  margin-left: auto;
  z-index: 1300;
  line-height: 1;
  background: transparent;
  border: none;
  color: #fff;
  transition: color 0.3s ease;
}

.menu-toggle:hover {
  color: var(--accent);
}

/* === NAV === */
nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 6px;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--accent);
  transition: transform 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  transform: translateX(-50%) scaleX(1);
}

nav a:hover,
nav a.active { 
  color: var(--accent);
}

/* mobile menu active */
nav.active {
  display: flex !important;
}

/* === HERO HOME === */
.home-hero {
  background: linear-gradient(135deg, rgba(26,98,50,0.85) 0%, rgba(15,64,32,0.9) 100%),
              url('assets/spices.webp') no-repeat center/cover;
  color: #fff;
  padding: 8rem 2rem 6rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212,182,115,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.home-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  animation: fadeInUp 0.8s ease-out;
}

.home-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  font-weight: 900;
  letter-spacing: -1px;
  text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.home-hero p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  max-width: 650px;
  margin: 0 auto 2rem;
  color: #f8f8f8;
  text-shadow: 1px 2px 4px rgba(0,0,0,0.2);
  line-height: 1.6;
}

.hero {
  position: relative;
  text-align: center;
  color: #fff;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,98,50,0.7) 0%, rgba(15,64,32,0.8) 100%);
  z-index: 0;
}

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

/* hero text */
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0 auto 1rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.hero p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  margin-bottom: 1.5rem;
  color: #f8f8f8;
  text-shadow: 1px 2px 4px rgba(0,0,0,0.2);
}

/* buttons inline */
.hero .btn { margin: 0.5rem; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brown-600) 0%, var(--brown-700) 100%);
  color: #fff;
  border: 2px solid transparent;
}

.btn-primary:hover { 
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(109,82,41,0.4);
  background: linear-gradient(135deg, var(--brown-700) 0%, var(--brown-600) 100%);
}

.btn-secondary {
  background: rgba(255,255,255,0.95);
  color: var(--green-700);
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover { 
  background: var(--accent);
  color: var(--green-800);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212,182,115,0.4);
}

/* === SECTIONS === */
section {
  padding: 4rem 1.5rem;
  text-align: center;
}

/* headings */
h2 {
  font-family: 'Playfair Display', serif;
  color: var(--brown-600);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--green-700) 100%);
  border-radius: 2px;
}

/* small tweak for spacing between specific sections */
.why { 
  margin-bottom: 1rem;
  background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
}

.featured { 
  margin-top: 1rem;
  background: #fff;
}

/* === FEATURES === */
.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 2rem;
}

/* Why Choose Us - Centered */
.feature-box {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.6rem;
  width: 260px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(212,182,115,0.1);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-700) 0%, var(--accent) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-box:hover::before {
  transform: scaleX(1);
}

.feature-box img {
  height: 70px;
  margin: 0 auto 16px;
  display: block;
  transition: transform 0.4s ease;
}

.feature-box:hover img {
  transform: scale(1.1) rotate(5deg);
}

.feature-box h3 {
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--green-700);
  font-size: 1.2rem;
}

.feature-box p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.feature-box:hover { 
  transform: translateY(-10px);
  box-shadow: var(--card-hover-shadow);
}

/* === PRODUCT SLIDER / GRID === */
.product-slider {
  position: relative;
  padding: 3rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

/* Product Grid Center - untuk 3 produk featured */
.product-grid-center {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1rem;
}

.product-grid-center .product-card {
  flex: 0 0 auto;
  width: 300px;
}

/* Responsive untuk mobile */
@media (max-width: 992px) {
  .product-grid-center {
    flex-wrap: wrap;
  }
  
  .product-grid-center .product-card {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .product-grid-center {
    flex-direction: column;
    align-items: center;
  }
  
  .product-grid-center .product-card {
    width: 100%;
    max-width: 400px;
  }
}

.product-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.product-track::-webkit-scrollbar {
  height: 8px;
}

.product-track::-webkit-scrollbar-track {
  background: rgba(212,182,115,0.1);
  border-radius: 10px;
}

.product-track::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

.product-track::-webkit-scrollbar-thumb:hover {
  background: var(--brown-600);
}

/* Product Card */
.product-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 0;
  min-width: 260px;
  max-width: 300px;
  flex: 0 0 auto;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: left;
  overflow: hidden;
  border: 1px solid rgba(212,182,115,0.1);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-card h3 {
  font-weight: 600;
  margin: 1rem 1.2rem 0.6rem;
  color: var(--green-700);
  font-size: 1.3rem;
}

.product-card p {
  margin: 0 1.2rem 1.2rem;
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Hover effect */
.product-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--card-hover-shadow);
}

/* Overlay detail produk saat hover */
.product-card .product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,98,50,0.95) 0%, rgba(15,64,32,0.98) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

/* Button overlay */
.product-card .product-overlay .btn-detail {
  display: inline-block;
  padding: 12px 28px;
  margin-top: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--green-800);
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212,182,115,0.3);
  font-size: 1rem;
}

.product-card .product-overlay .btn-detail:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 25px rgba(212,182,115,0.5);
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.95);
  border: 2px solid var(--accent);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  z-index: 6;
  transition: all 0.3s ease;
  color: var(--green-700);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.arrow:hover {
  background: var(--accent);
  color: var(--green-800);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(212,182,115,0.4);
}

.arrow.left { left: -20px; }
.arrow.right { right: -20px; }

/* WHY SLIDER */
.why {
  margin-bottom: 1rem;
  background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
  padding: 4rem 1.5rem 2rem; /* Kurangi padding bottom */
}

.why-slider {
  position: relative;
  padding: 2rem 0 0.5rem; /* Kurangi padding bottom */
  max-width: 1200px;
  margin: 0 auto;
}

.why-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: visible; /* Pastikan tidak terpotong vertikal */
  scroll-behavior: smooth;
  padding: 0 10px 1rem; /* Tambah padding bottom untuk card shadow */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.why-track::-webkit-scrollbar {
  display: none;
}

.why-track .feature-box {
  min-width: 250px;
  max-width: 280px;
  flex: 0 0 auto;
}
/* reuse arrow from product slider */
.why-slider .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.95);
  border: 2px solid var(--accent);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  z-index: 6;
  transition: all 0.3s ease;
  color: var(--green-700);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.why-slider .arrow:hover { 
  background: var(--accent);
  color: var(--green-800);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(212,182,115,0.4);
}

.why-slider .arrow.left { left: -20px; }
.why-slider .arrow.right { right: -20px; }

/* === ARTICLES SECTION === */
.articles {
  background: linear-gradient(180deg, #fff 0%, #f9f6f1 100%);
  padding: 4rem 1.5rem;
}

.articles h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--brown-600);
  margin-bottom: 3rem;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Article card - full height */
.article-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  border: 1px solid rgba(212,182,115,0.1);
}

.article-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-hover-shadow);
}

.article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover img {
  transform: scale(1.08);
}

.article-content {
  padding: 1.5rem 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--green-700);
  flex-grow: 0;
  font-weight: 600;
  line-height: 1.4;
}

.article-content .date {
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: auto;
  line-height: 1.7;
}

.article-content .btn {
  align-self: flex-start;
  margin-top: 1.2rem;
  padding: 10px 24px;
  font-size: 0.9rem;
}

.see-more {
  text-align: center;
  margin-top: 3rem;
}

/* Animasi sederhana */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* === ABOUT === */
.about-hero {
  background: linear-gradient(135deg, rgba(26,98,50,0.85) 0%, rgba(15,64,32,0.9) 100%),
              url('assets/spices.webp') no-repeat center/cover;
  color: #fff;
  padding: 8rem 2rem 6rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 50%, rgba(212,182,115,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.about-hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 600px;
  margin: 0 auto;
  color: #f8f8f8;
  text-shadow: 1px 2px 4px rgba(0,0,0,0.2);
}

.about-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  animation: fadeInUp 0.8s ease-out;
}

/* === ABOUT SECTION === */
.about {
  padding: 5rem 1.5rem;
  background: #fff;
}

.about-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.about-text {
  flex: 1 1 450px;
  text-align: left;
}

.about-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 0.5rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.about-text h2 {
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.5rem;
  color: var(--brown-600);
  position: relative;
  display: block;
}

.about-text h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--green-700) 0%, var(--accent) 100%);
  margin-top: 12px;
  border-radius: 2px;
}

.about-text p {
  margin-bottom: 1.2rem;
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-img {
  flex: 1 1 450px;
  text-align: center;
}

.about-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
}

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

/* === VISION & MISSION === */
.vision-mission {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #f9f6f1 0%, var(--bg) 100%);
}

.vision-mission h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--brown-600);
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.vm-card {
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--green-700) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.vm-card:hover::before {
  transform: scaleX(1);
}

.vm-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-hover-shadow);
}

.vm-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  font-family: 'Playfair Display', serif;
}

.vm-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

/* beda warna tiap card */
.vm-card.vision {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-800) 100%);
  color: #fff;
}

.vm-card.vision h3 {
  color: #fff;
}

.vm-card.vision p {
  color: #f1f1f1;
}

.vm-card.mission {
  background: #fff;
  color: #333;
}

.vm-card.mission h3 {
  color: var(--green-700);
}

/* === CERTIFICATIONS === */
.certifications {
  background: #fff;
  padding: 5rem 1.5rem;
  text-align: center;
}

.certifications h2 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.5rem;
  color: var(--brown-600);
}

.certifications p {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.cert-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  text-align: center;
  font-weight: 600;
  color: #333;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(212,182,115,0.1);
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-700) 0%, var(--accent) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.cert-card:hover::before {
  transform: scaleX(1);
}

.cert-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-hover-shadow);
}

.cert-card i {
  font-size: 2.5rem;
  color: var(--green-700);
  transition: transform 0.3s ease;
}

.cert-card:hover i {
  transform: scale(1.1) rotate(5deg);
}

/* CONTACT HERO */
.contact-hero {
  background: linear-gradient(135deg, rgba(26,98,50,0.85) 0%, rgba(15,64,32,0.9) 100%),
              url('assets/spices.webp') no-repeat center/cover;
  color: #fff;
  padding: 8rem 2rem 6rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 30%, rgba(212,182,115,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.contact-hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 600px;
  margin: 0 auto;
  color: #f8f8f8;
  text-shadow: 1px 2px 4px rgba(0,0,0,0.2);
}

.contact-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  animation: fadeInUp 0.8s ease-out;
}

/* CONTACT GRID */
.contact-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
}

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

.contact-info,
.contact-form {
  flex: 1 1 450px;
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  text-align: left;
  border: 1px solid rgba(212,182,115,0.1);
  transition: box-shadow 0.3s ease;
}

.contact-info:hover,
.contact-form:hover {
  box-shadow: var(--card-hover-shadow);
}

.contact-info h2,
.contact-form h2 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--green-700);
  font-family: 'Playfair Display', serif;
  position: relative;
  display: inline-block;
}

.contact-info h2::after,
.contact-form h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--green-700) 100%);
  border-radius: 2px;
}

.contact-info p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* FORM */
form input,
form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 2px solid rgba(212,182,115,0.3);
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  background: #fafafa;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 4px 15px rgba(212,182,115,0.2);
}

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

form .btn {
  width: 100%;
  cursor: pointer;
  border: none;
  font-family: 'Poppins', sans-serif;
}

/* MAP */
.map {
  margin-top: 3rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* === FOOTER === */
footer {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 100%);
  color: #fff;
  padding: 3.5rem 2rem 1.5rem;
  font-size: 0.95rem;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer-logo {
  height: 50px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

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

.footer-brand h3 {
  margin: 0 0 0.8rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
}

.footer-brand p {
  margin-bottom: 1.2rem;
  color: #ddd;
  font-size: 0.9rem;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  font-size: 1.3rem;
  color: #fff;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.social-icons a:hover { 
  color: var(--accent);
  background: rgba(212,182,115,0.2);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-links a {
  display: block;
  color: #ddd;
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-links a:hover { 
  color: var(--accent);
  padding-left: 8px;
}

.footer-contact p {
  margin: 0.6rem 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ddd;
}

.footer-contact i {
  color: var(--accent);
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  text-align: center;
  color: #ccc;
  font-size: 0.9rem;
}

/* === RESPONSIVE RULES === */
@media (max-width: 992px) {
  .hero { 
    min-height: 60vh; 
    padding: 4rem 1.5rem;
  }
  
  .hero h1 { 
    font-size: clamp(1.8rem, 5vw, 3rem);
  }
  
  .home-hero {
    min-height: 60vh;
    padding: 7rem 1.5rem 5rem;
  }
  
  nav { 
    gap: 16px;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .arrow.left { left: 5px; }
  .arrow.right { right: 5px; }
  
  .why-slider .arrow.left { left: 5px; }
  .why-slider .arrow.right { right: 5px; }
}

@media (max-width: 768px) {
  header { 
    flex-direction: row;
    padding: 1rem 1.5rem;
  }
  
  .menu-toggle { 
    display: inline-flex;
  }
  
  nav { 
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--green-700) 0%, var(--green-800) 100%);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    z-index: 1250;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  
  nav.active { 
    display: flex;
  }
  
  nav a { 
    padding: 14px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  
  nav a::after {
    display: none;
  }
  
  .hero { 
    padding: 4rem 1rem;
    min-height: 50vh;
  }
  
  .hero h1 { 
    font-size: 2rem;
  }
  
  .home-hero {
    min-height: 55vh;
    padding: 6rem 1.5rem 4rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  section {
    padding: 3rem 1rem;
  }
  
  .features { 
    gap: 16px;
  }
  
  .feature-box { 
    width: 100%;
    max-width: 520px;
  }
  
  .product-card { 
    min-width: 85%;
    max-width: 95%;
  }
  
  .arrow { 
    display: none;
  }
  
  .why-slider .arrow {
    display: none;
  }
  
  .about-content,
  .contact-grid { 
    flex-direction: column;
  }
  
  .vm-grid {
    gap: 1.5rem;
  }
  
  .article-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

/* small desktop tweaks */
@media (min-width: 1200px) {
  .hero-content { 
    padding: 2rem;
  }
  
  .product-slider { 
    padding: 4rem 0;
  }
  
  .why-slider {
    padding: 4rem 0;
  }
  
  section {
    padding: 5rem 2rem;
  }
}

/* Extra large screens */
@media (min-width: 1400px) {
  .arrow.left { left: -30px; }
  .arrow.right { right: -30px; }
  
  .why-slider .arrow.left { left: -30px; }
  .why-slider .arrow.right { right: -30px; }
}