/* ============================================================
   NILACHAL AGRO — MAIN STYLESHEET
   Nature-inspired | Premium | Modern Eco-Friendly
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --green-deep:     #1a4a1e;
  --green-forest:   #2d6a30;
  --green-mid:      #3d8b40;
  --green-light:    #5ab05e;
  --green-pale:     #a8d5aa;
  --green-mist:     #e8f5e9;
  --earth-dark:     #3e2c1c;
  --earth-mid:      #7b5e3a;
  --earth-warm:     #b08850;
  --earth-sand:     #d4b896;
  --earth-cream:    #f5efe6;
  --white:          #ffffff;
  --off-white:      #fafaf8;
  --text-dark:      #1c2b1d;
  --text-mid:       #3d5440;
  --text-muted:     #6b8068;
  --border-soft:    #d6e8d7;
  --shadow-green:   rgba(45, 106, 48, 0.15);
  --shadow-dark:    rgba(26, 74, 30, 0.25);

  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'DM Sans', system-ui, sans-serif;

  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      32px;
  --radius-full:    9999px;

  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--green-deep);
  line-height: 1.25;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1.05rem; color: var(--text-mid); }

/* ── UTILITY CLASSES ── */
.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
}
.section-pad { padding-block: 90px; }
.section-pad-sm { padding-block: 60px; }
.text-center { text-align: center; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--green-light);
  border-radius: 2px;
}

.section-intro {
  max-width: 640px;
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--earth-warm));
  border-radius: var(--radius-full);
  margin: 18px auto 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--green-forest), var(--green-deep));
  color: var(--white);
  box-shadow: 0 4px 20px var(--shadow-green);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--shadow-dark);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.btn-earth {
  background: linear-gradient(135deg, var(--earth-warm), var(--earth-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(176,136,80,0.3);
}
.btn-earth:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(176,136,80,0.4);
}

.btn-green-outline {
  border: 2px solid var(--green-forest);
  color: var(--green-forest);
  background: transparent;
}
.btn-green-outline:hover {
  background: var(--green-forest);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(26,74,30,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo svg { height: 40px; width: auto; }
.nav-logo .logo-wordmark { height: 30px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--green-deep);
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--green-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
  border-radius: var(--radius-full);
}
.nav-links a:hover { color: var(--green-mid); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Transparent state (on hero) */
#navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.9); }
#navbar:not(.scrolled) .nav-links a:hover { color: var(--white); }
#navbar:not(.scrolled) .nav-links a::after { background: var(--white); }

.nav-cta { margin-left: 12px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-deep);
  border-radius: var(--radius-full);
  transition: var(--transition);
}
#navbar:not(.scrolled) .nav-toggle span { background: var(--white); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--green-deep);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: var(--transition);
}
.nav-mobile.open { display: flex; opacity: 1; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--green-pale); }
.nav-mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(26,74,30,0.85) 0%, rgba(45,106,48,0.7) 50%, rgba(62,44,28,0.65) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cdefs%3E%3CradialGradient id='g' cx='50%25' cy='40%25' r='70%25'%3E%3Cstop offset='0%25' stop-color='%232d6a30' stop-opacity='.4'/%3E%3Cstop offset='100%25' stop-color='%231a4a1e' stop-opacity='.9'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect fill='url(%23g)' width='100%25' height='100%25'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

/* Nature texture overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(90,176,94,0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(176,136,80,0.15) 0%, transparent 40%);
}

/* Animated particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(168,213,170,0.4);
  border-radius: 50%;
  animation: float-particle 8s infinite ease-in-out;
}
.particle:nth-child(2) { width: 4px; height: 4px; left: 20%; animation-delay: -2s; animation-duration: 10s; }
.particle:nth-child(3) { left: 40%; top: 60%; animation-delay: -4s; animation-duration: 7s; background: rgba(212,184,150,0.35); }
.particle:nth-child(4) { left: 60%; top: 30%; animation-delay: -6s; animation-duration: 9s; }
.particle:nth-child(5) { left: 80%; top: 70%; animation-delay: -1s; animation-duration: 11s; background: rgba(212,184,150,0.3); }
.particle:nth-child(6) { left: 70%; top: 20%; animation-delay: -3s; animation-duration: 8s; }

@keyframes float-particle {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  33%       { transform: translate(30px, -40px) scale(1.2); opacity: 0.7; }
  66%       { transform: translate(-20px, -20px) scale(0.8); opacity: 0.3; }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-pale);
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.7; }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--green-pale);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce-scroll 2.5s infinite;
}
.hero-scroll svg {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}
@keyframes bounce-scroll {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--white);
  box-shadow: 0 4px 30px rgba(26,74,30,0.08);
  border-radius: var(--radius-lg);
  margin-top: -50px;
  position: relative;
  z-index: 10;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border-soft);
  position: relative;
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--green-mist); }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green-forest);
  line-height: 1;
}
.stat-unit { color: var(--earth-warm); }
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ── SERVICE HIGHLIGHTS ── */
.highlights {
  background: var(--off-white);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--border-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.highlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-forest), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px var(--shadow-green); }
.highlight-card:hover::before { transform: scaleX(1); }

.highlight-icon {
  width: 64px;
  height: 64px;
  background: var(--green-mist);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.8rem;
  transition: var(--transition);
}
.highlight-card:hover .highlight-icon {
  background: var(--green-forest);
  transform: scale(1.05);
}
.highlight-card:hover .highlight-icon span { filter: brightness(100) saturate(0); }

.highlight-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}
.highlight-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── IMAGE GALLERY STRIP ── */
.gallery-strip {
  padding: 0;
  overflow: hidden;
}
.gallery-track {
  display: flex;
  gap: 0;
  height: 380px;
}
.gallery-frame {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-frame:hover { flex: 1.8; }
.gallery-frame { transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1); }

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-frame:hover .gallery-img { transform: scale(1.05); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,74,30,0.9), transparent);
  color: var(--white);
  padding: 30px 20px 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.gallery-frame:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* Fallback gradient "images" (no real images used) */
.gallery-img-1 { background: linear-gradient(135deg, #1a4a1e 0%, #2d6a30 40%, #3d8b40 70%, #5ab05e 100%); }
.gallery-img-2 { background: linear-gradient(135deg, #3e2c1c 0%, #7b5e3a 50%, #b08850 100%); }
.gallery-img-3 { background: linear-gradient(135deg, #2d6a30 0%, #1a4a1e 50%, #3e2c1c 100%); }
.gallery-img-4 { background: linear-gradient(135deg, #3d8b40 0%, #2d6a30 60%, #1a4a1e 100%); }
.gallery-img-5 { background: linear-gradient(135deg, #b08850 0%, #7b5e3a 50%, #3e2c1c 100%); }

/* Nature SVG decoration inside gallery frames */
.gallery-frame .nature-art {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 6rem;
  padding-bottom: 20px;
  opacity: 0.5;
}

/* ── ABOUT TEASER ── */
.about-teaser {
  background: var(--white);
}
.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-visual-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--green-forest) 0%, var(--green-deep) 60%, var(--earth-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
}
.about-visual-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--earth-warm), var(--earth-sand));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  box-shadow: 0 16px 40px rgba(176,136,80,0.3);
}
.about-visual-badge {
  position: absolute;
  top: 24px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 0 8px 30px rgba(26,74,30,0.12);
}
.about-visual-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-forest);
  line-height: 1;
}
.about-visual-badge span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.about-text-content .section-label { margin-bottom: 10px; }
.about-text-content h2 { margin-bottom: 16px; }
.about-text-content p { margin-bottom: 20px; line-height: 1.8; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}
.about-feature .check {
  width: 20px; height: 20px;
  background: var(--green-mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-forest);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-forest) 50%, var(--earth-dark) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: rgba(90,176,94,0.1);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 10%;
  width: 240px; height: 240px;
  background: rgba(176,136,80,0.08);
  border-radius: 50%;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 { color: var(--white); font-size: 2rem; margin-bottom: 10px; }
.cta-text p  { color: rgba(255,255,255,0.75); font-size: 1rem; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--earth-dark);
  color: rgba(255,255,255,0.8);
}
.footer-main {
  padding: 64px 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 18px 0 24px;
}
.footer-brand .logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand .logo-area img { height: 38px; filter: brightness(0) invert(1); }

.footer-socials {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}
.social-link:hover {
  background: var(--green-forest);
  border-color: var(--green-forest);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--green-light); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer-contact-item .icon {
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
  color: var(--green-light);
}
.footer-contact-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--green-light); }

/* ── ABOUT PAGE ── */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-forest) 60%, var(--earth-dark) 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(90,176,94,0.15), transparent 60%);
}
.page-hero h1 { color: var(--white); position: relative; z-index: 2; }
.page-hero p  { color: rgba(255,255,255,0.75); position: relative; z-index: 2; margin-top: 14px; font-size: 1.1rem; }

.breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: 0.4; }

/* Story section */
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-text h2 { margin-bottom: 20px; }
.story-text p  { line-height: 1.85; margin-bottom: 18px; }

.story-visual {
  position: relative;
}
.story-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(160deg, var(--green-forest) 0%, var(--green-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10rem;
}
.story-img-float {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 160px;
  height: 160px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--earth-warm) 0%, var(--earth-sand) 100%);
  box-shadow: 0 16px 40px rgba(176,136,80,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* Mission Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}
.mv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}
.mv-card.mission { border-left: 5px solid var(--green-forest); }
.mv-card.vision   { border-left: 5px solid var(--earth-warm); }
.mv-card h3 { margin-bottom: 14px; }
.mv-card p  { line-height: 1.8; }
.mv-card .mv-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
  display: block;
}

/* Objectives */
.objectives { background: var(--white); }
.objectives-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.obj-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  transition: var(--transition);
}
.obj-item:hover {
  background: var(--green-mist);
  border-color: var(--green-pale);
  transform: translateX(4px);
}
.obj-number {
  width: 48px;
  height: 48px;
  background: var(--green-forest);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.obj-content h4 { margin-bottom: 6px; }
.obj-content p  { font-size: 0.9rem; color: var(--text-muted); }

/* Team / Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px var(--shadow-green); }
.value-card .v-icon { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.value-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.value-card p  { font-size: 0.9rem; color: var(--text-muted); }

/* Why choose us */
.why-us { background: var(--green-deep); }
.why-us .section-label { color: var(--green-pale); }
.why-us .section-label::before { background: var(--green-light); }
.why-us h2 { color: var(--white); margin-bottom: 10px; }
.why-us .section-intro { color: rgba(255,255,255,0.7); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.why-card .w-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.why-card h4 { color: var(--white); margin-bottom: 8px; font-size: 1rem; font-family: var(--font-body); }
.why-card p  { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: 0 8px 40px rgba(26,74,30,0.06);
  border: 1px solid var(--border-soft);
}
.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form-wrap > p { margin-bottom: 32px; font-size: 0.95rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-forest);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(45,106,48,0.1);
}
.form-group textarea {
  min-height: 130px;
  resize: vertical;
}
.form-success {
  display: none;
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 0.95rem;
  color: var(--green-deep);
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}
.form-success.show { display: flex; }

/* Contact info */
.contact-info {
  padding-top: 10px;
}
.contact-info h3 { margin-bottom: 8px; }
.contact-info > p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 36px; }

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  margin-bottom: 16px;
  transition: var(--transition);
}
.info-item:hover {
  border-color: var(--green-pale);
  box-shadow: 0 4px 20px var(--shadow-green);
}
.info-icon {
  width: 46px; height: 46px;
  background: var(--green-mist);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.info-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-forest);
  margin-bottom: 4px;
}
.info-text span {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.info-text a {
  color: var(--green-forest);
  transition: var(--transition);
  font-size: 0.93rem;
}
.info-text a:hover { color: var(--green-mid); text-decoration: underline; }

/* Map */
.map-section { background: var(--off-white); }
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26,74,30,0.08);
  border: 1px solid var(--border-soft);
  margin-top: 48px;
}
.map-wrap iframe {
  width: 100%;
  height: 440px;
  display: block;
  border: none;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: 1px solid var(--border-soft); }
  .stat-item:nth-child(2n) { border-right: none; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .about-teaser-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 480px; margin: auto; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-layout { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .highlights-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .objectives-list { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-track { height: 240px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .section-pad { padding-block: 64px; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 24px 16px; }
  .values-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
}

/* ── LOGO STYLING ── */
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon { display: block; height: 42px; width: auto; }

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-deep);
  transition: var(--transition);
  white-space: nowrap;
}
#navbar:not(.scrolled) .nav-logo-text { color: var(--white); }

/* Footer logo */
.logo-area { display: flex; align-items: center; gap: 12px; }
.footer-logo-icon { display: block; height: 44px; width: auto; }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}
