/* =============================================
   Hasiru Agro - Global Stylesheet
   ============================================= */

/* --- Preloader --- */
#preloader {
  position: fixed; inset: 0; z-index: 99999; background: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo { width: 160px; height: auto; margin-bottom: 24px; }
.preloader-tagline {
  font-family: 'DM Serif Display', serif; font-size: 1.05rem; font-weight: 400;
  color: #1B4332; letter-spacing: 0.02em; opacity: 0.85;
}

/* --- Variables & Reset --- */
:root {
  --forest: #1B4332;
  --forest-light: #2D6A4F;
  --forest-dark: #0F2B1F;
  --forest-deep: #0a1f15;
  --gold: #FDC717;
  --gold-light: #FDD44B;
  --gold-dim: rgba(253,199,23,0.12);
  --cream: #FAF6E9;
  --cream-dark: #F0EAD6;
  --earth: #8B7355;
  --text: #2C2C2C;
  --text-light: #5A5A5A;
  --white: #FFFFFF;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 24px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'DM Serif Display', serif; font-weight: 400; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.15; }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.45rem); line-height: 1.3; }
p { font-size: 1rem; line-height: 1.72; color: var(--text-light); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; display: inline-block;
}

/* --- Animations --- */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.6} }
@keyframes scaleIn { from{transform:scale(0.92);opacity:0} to{transform:scale(1);opacity:1} }

/* --- Navigation --- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: all 0.4s ease; background: transparent;
}
nav.scrolled {
  background: rgba(27,67,50,0.97); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.18);
}
nav.nav-solid {
  background: rgba(27,67,50,0.97); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.18);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; z-index: 1002; }
.nav-logo img { height: 42px; width: auto; }
.nav-logo span { display: none; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.78); font-size: 0.86rem; font-weight: 400;
  letter-spacing: 0.01em; transition: color 0.3s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important; color: var(--forest) !important;
  padding: 9px 20px; border-radius: 100px; font-weight: 600 !important;
  font-size: 0.82rem !important; transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-toggle {
  display: none; cursor: pointer; background: none; border: none;
  padding: 8px; z-index: 1002; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 0;
}
.nav-toggle span {
  display: block; width: 24px; height: 2.5px; background: var(--white);
  transition: all 0.35s ease; border-radius: 2px;
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle span:nth-child(2) { width: 18px; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); width: 24px; }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(8px); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); width: 24px; }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0;
  background: rgba(15,43,31,0.98); backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999; flex-direction: column; align-items: stretch;
  padding: 80px 20px 24px; gap: 2px;
  opacity: 0; transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-bottom: 1px solid rgba(253,199,23,0.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.mobile-menu.open { display: flex; opacity: 1; transform: translateY(0); }
.mobile-menu a {
  color: rgba(255,255,255,0.85); font-family: 'Outfit', sans-serif;
  font-size: 0.95rem; font-weight: 500; padding: 14px 16px; transition: all 0.25s;
  border-radius: 10px; text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a:focus { color: var(--gold); background: rgba(253,199,23,0.08); }
.mobile-menu a[style*="color:var(--gold)"] {
  background: var(--gold); color: var(--forest-dark) !important;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.04em; margin-top: 8px; padding: 12px 16px;
  border-radius: 100px; text-align: center; border-bottom: none;
}
.mobile-menu-social {
  display: flex; gap: 12px; justify-content: center;
  margin-top: 12px; padding-top: 8px;
}
.mobile-menu-social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; padding: 0; border-bottom: none;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.3s; font-size: 0; min-width: 40px;
}
.mobile-menu-social a:hover { background: var(--gold); border-color: var(--gold); }
.mobile-menu-social a svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.7); transition: fill 0.3s; }
.mobile-menu-social a:hover svg { fill: var(--forest-dark); }

/* --- Buttons --- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--forest); padding: 14px 28px;
  border-radius: 100px; font-weight: 600; font-size: 0.92rem;
  border: none; cursor: pointer; transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(253,199,23,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 32px rgba(253,199,23,0.4); background: var(--gold-light); }
.btn-primary svg { width: 18px; height: 18px; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white); padding: 14px 28px;
  border-radius: 100px; font-weight: 500; font-size: 0.92rem;
  border: 1.5px solid rgba(255,255,255,0.25); transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* --- Page Hero (Inner Pages) --- */
.page-hero {
  padding: 140px 20px 80px;
  background: linear-gradient(145deg, #0a2e18 0%, var(--forest) 40%, var(--forest-light) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(253,199,23,0.1) 0%, transparent 50%);
}
.page-hero-content { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
.breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 640px; font-size: 1.05rem; }

/* --- Home Hero --- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, #0a2e18 0%, var(--forest) 40%, var(--forest-light) 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(253,199,23,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(45,106,79,0.2) 0%, transparent 50%);
  z-index: 1;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 120px 20px 80px;
  display: flex; gap: 48px; align-items: center;
}
.hero-text { color: var(--white); flex: 0 0 50%; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(253,199,23,0.12); border: 1px solid rgba(253,199,23,0.25);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
  animation: fadeInUp 0.8s ease both;
}
.hero-tag svg { width: 14px; height: 14px; }
.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem); line-height: 1.08;
  margin-bottom: 20px; animation: fadeInUp 0.8s 0.15s ease both;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,0.75);
  max-width: 500px; margin-bottom: 32px; animation: fadeInUp 0.8s 0.3s ease both;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeInUp 0.8s 0.45s ease both; }
.hero-visual { position: relative; animation: fadeInUp 0.8s 0.4s ease both; text-align: center; flex: 1 1 0%; min-width: 0; }
.hero-single-img { border-radius: var(--radius-lg); overflow: hidden; }
.hero-single-img img { width: 100%; height: auto; display: block; object-fit: cover; }
.hero-stat-strip {
  position: relative; margin-top: -36px;
  display: inline-flex; gap: 32px; z-index: 3;
  background: rgba(15,43,31,0.7); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(253,199,23,0.12); border-radius: 16px;
  padding: 16px 40px;
  animation: scaleIn 0.6s 0.6s ease both;
}
.hero-stat { text-align: center; }
.hero-stat-num { font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: 0.68rem; color: rgba(255,255,255,0.5); margin-top: 2px; letter-spacing: 0.03em; }

/* --- Problem Section --- */
.problem-section { padding: 100px 0 80px; background: var(--cream); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.problem-text h2 { color: var(--forest); margin-bottom: 16px; }
.problem-text > p { margin-bottom: 28px; }
.pain-points { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.pain-point {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px; background: var(--white);
  border-radius: var(--radius-sm); border: 1px solid rgba(27,67,50,0.06);
  transition: all 0.3s;
}
.pain-point:hover { border-color: rgba(253,199,23,0.2); transform: translateX(4px); }
.pain-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: #fee2e2; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.pain-icon svg { width: 14px; height: 14px; color: #dc2626; }
.pain-point span { font-size: 0.92rem; color: var(--text); line-height: 1.5; }
.dream-card {
  background: var(--forest); border-radius: var(--radius-lg);
  padding: 40px 36px; color: var(--white); position: relative; overflow: hidden;
}
.dream-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(253,199,23,0.1) 0%, transparent 70%);
}
.dream-card h3 { color: var(--gold); margin-bottom: 20px; font-size: 1.5rem; }
.dream-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.dream-list li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: rgba(255,255,255,0.8); }
.dream-check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: rgba(253,199,23,0.15); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.dream-check svg { width: 13px; height: 13px; color: var(--gold); }
.dream-cta {
  margin-top: 28px; display: inline-block;
  font-size: 0.85rem; font-weight: 600; color: var(--gold);
  border-bottom: 1px solid var(--gold); padding-bottom: 2px;
}

/* --- Problem Section V2 (Split Layout) --- */
.problem-section-v2 { padding: 100px 0 80px; background: var(--forest-dark); }
.problem-section-v2 h2 { color: var(--white); }
.problem-section-v2 p { color: rgba(255,255,255,0.55); }
.problem-cards-v2 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.problem-card-v2 {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 24px; transition: all 0.3s;
}
.problem-card-v2:hover { background: rgba(255,255,255,0.07); border-color: rgba(253,199,23,0.2); transform: translateY(-3px); }
.problem-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(239,68,68,0.12); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.problem-card-icon svg { width: 20px; height: 20px; color: #ef4444; }
.problem-card-v2 h4 { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.05rem; color: var(--white); margin-bottom: 8px; }
.problem-card-v2 p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.55; }

/* Light variant: problem cards on cream background */
.problem-section-v2.light { background: var(--cream); }
.problem-section-v2.light h2 { color: var(--forest); }
.problem-section-v2.light p { color: var(--text-light); }
.problem-section-v2.light .problem-card-v2 {
  background: var(--white); border: 1px solid rgba(27,67,50,0.08);
  box-shadow: 0 4px 20px rgba(27,67,50,0.04);
}
.problem-section-v2.light .problem-card-v2:hover {
  background: var(--white); border-color: rgba(253,199,23,0.3);
  box-shadow: 0 8px 32px rgba(27,67,50,0.08); transform: translateY(-3px);
}
.problem-section-v2.light .problem-card-v2 h4 { color: var(--forest); font-family: 'DM Serif Display', serif; }
.problem-section-v2.light .problem-card-v2 p { color: var(--text-light); }

/* --- Dream Section V2 (Image + Content) --- */
.dream-section-v2 { padding: 90px 0; background: var(--cream); }
.dream-grid-v2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.dream-img-v2 { border-radius: var(--radius-lg); overflow: hidden; }
.dream-img-v2 img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.dream-content-v2 h2 { color: var(--forest); margin-bottom: 24px; }
.dream-list-v2 { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.dream-list-v2 li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; color: var(--text); line-height: 1.5; }
.dream-list-v2 .dream-check {
  width: 26px; height: 26px; min-width: 26px; border-radius: 50%;
  background: rgba(253,199,23,0.15); display: flex; align-items: center; justify-content: center;
}
.dream-list-v2 .dream-check svg { width: 14px; height: 14px; color: var(--gold); }

/* Dark variant: dream section on forest background */
.dream-section-v2.dark {
  background: linear-gradient(145deg, var(--forest-dark), var(--forest));
  position: relative; overflow: hidden;
}
.dream-section-v2.dark::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(253,199,23,0.06) 0%, transparent 70%); border-radius: 50%;
}
.dream-section-v2.dark .dream-content-v2 h2 { color: var(--white); }
.dream-section-v2.dark .dream-list-v2 li { color: rgba(255,255,255,0.85); }
.dream-section-v2.dark .dream-list-v2 .dream-check { background: rgba(253,199,23,0.18); }
.dream-section-v2.dark .btn-primary { position: relative; z-index: 1; }

/* --- Incubation Strip --- */
.incubation-strip { padding: 28px 0; background: var(--white); border-top: 1px solid rgba(27,67,50,0.06); border-bottom: 1px solid rgba(27,67,50,0.06); }
.incubation-inner { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.incubation-inner span { font-size: 0.78rem; font-weight: 600; color: var(--text-light); letter-spacing: 0.08em; text-transform: uppercase; }
.incubation-inner img { height: 64px; width: auto; max-width: 100%; object-fit: contain; }

/* --- Audience Section --- */
.audience-section { padding: 90px 0; background: var(--cream); }
.audience-header { text-align: center; margin-bottom: 50px; }
.audience-header h2 { color: var(--forest); margin-bottom: 10px; }
.audience-header p { max-width: 560px; margin: 0 auto; }
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.audience-card {
  background: var(--white); border-radius: var(--radius); padding: 24px;
  border: 1px solid rgba(27,67,50,0.06); transition: all 0.4s;
  text-align: center; position: relative; overflow: hidden;
}
.audience-card:hover { transform: translateY(-4px); border-color: rgba(253,199,23,0.2); box-shadow: 0 12px 40px rgba(27,67,50,0.08); }
.audience-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold); transform: scaleX(0); transition: transform 0.4s;
}
.audience-card:hover::after { transform: scaleX(1); }
.audience-icon { width: 52px; height: 52px; margin: 0 auto 16px; background: var(--gold-dim); border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.audience-icon svg { width: 26px; height: 26px; color: var(--gold); }
.audience-card h3 { font-size: 1.1rem; color: var(--forest); margin-bottom: 8px; }
.audience-card p { font-size: 0.85rem; line-height: 1.6; }

/* --- Services Section --- */
.services-section { padding: 100px 0; background: var(--forest); position: relative; overflow: hidden; }
.services-section::before {
  content: ''; position: absolute; top: -180px; right: -180px;
  width: 450px; height: 450px; border-radius: 50%;
  background: radial-gradient(circle, rgba(253,199,23,0.07) 0%, transparent 70%);
}
.services-header { text-align: center; margin-bottom: 56px; }
.services-header h2 { color: var(--white); margin-bottom: 12px; }
.services-header p { color: rgba(255,255,255,0.5); max-width: 560px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg); overflow: hidden; transition: all 0.4s;
  display: block; position: relative;
}
.service-card-img { width: 100%; overflow: hidden; }
.service-card-img img { width: 100%; height: auto; display: block; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 24px 22px; }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold); transform: scaleX(0); transition: transform 0.4s; z-index: 2;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); border-color: rgba(253,199,23,0.18); }
.service-icon {
  width: 44px; height: 44px; background: var(--gold-dim); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.service-icon svg { width: 22px; height: 22px; color: var(--gold); }
.service-card h3 { color: var(--white); margin-bottom: 8px; font-size: 1.2rem; }
.service-card p { color: rgba(255,255,255,0.48); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-size: 0.84rem; font-weight: 500; transition: gap 0.3s;
}
.service-card:hover .service-link { gap: 10px; }

/* --- USP Section --- */
.usp-section { padding: 100px 0; background: var(--white); }
.usp-header { text-align: center; margin-bottom: 56px; }
.usp-header h2 { color: var(--forest); margin-bottom: 12px; }
.usp-header p { max-width: 580px; margin: 0 auto; }
.usp-bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 16px; }
.usp-card {
  background: var(--cream); border-radius: var(--radius); padding: 24px;
  border: 1px solid rgba(27,67,50,0.05); transition: all 0.35s;
  position: relative; overflow: hidden;
}
.usp-card:hover { border-color: rgba(253,199,23,0.2); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(27,67,50,0.06); }
.usp-card.featured {
  grid-column: 1 / 3; background: var(--forest); color: var(--white);
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center;
}
.usp-card.featured h3 { color: var(--gold); }
.usp-card.featured p { color: rgba(255,255,255,0.6); }
.usp-card.featured .usp-img { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; }
.usp-card.featured .usp-img img { width: 100%; height: 100%; object-fit: cover; }
.usp-icon {
  width: 44px; height: 44px; background: var(--gold-dim); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.usp-icon svg { width: 22px; height: 22px; color: var(--gold); }
.usp-card h3 { color: var(--forest); margin-bottom: 8px; font-size: 1.15rem; }
.usp-card p { font-size: 0.88rem; line-height: 1.6; }

/* --- Process Section --- */
.process-section { padding: 100px 0; background: var(--cream); }
.process-header { text-align: center; margin-bottom: 56px; }
.process-header h2 { color: var(--forest); margin-bottom: 12px; }
.process-header p { max-width: 560px; margin: 0 auto; }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.process-step {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(27,67,50,0.06); transition: all 0.4s; position: relative;
}
.process-step:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(27,67,50,0.08); border-color: rgba(253,199,23,0.15); }
.process-step-img { overflow: hidden; position: relative; }
.process-step-img img { width: 100%; height: 100%; object-fit: cover; }
.process-step-num {
  position: absolute; top: 10px; left: 10px;
  width: 30px; height: 30px; background: var(--gold);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 0.9rem; color: var(--forest); font-weight: 700;
}
.process-step-body { padding: 16px 14px; }
.process-step h4 { font-size: 0.95rem; color: var(--forest); margin-bottom: 4px; }
.process-step p { font-size: 0.78rem; line-height: 1.5; }

/* --- Gallery Preview (Home) --- */
.gallery-section { padding: 100px 0; background: var(--forest); }
.gallery-header { text-align: center; margin-bottom: 48px; }
.gallery-header h2 { color: var(--white); margin-bottom: 12px; }
.gallery-header p { color: rgba(255,255,255,0.5); max-width: 500px; margin: 0 auto; }
.gallery-masonry {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  grid-auto-rows: 180px;
}
.gallery-masonry .gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.gallery-masonry .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-masonry .gallery-item:hover img { transform: scale(1.06); }
.gallery-masonry .gallery-item.tall { grid-row: span 2; }
.gallery-masonry .gallery-item.wide { grid-column: span 2; }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff; font-size: 0.78rem; font-weight: 500;
}
.gallery-more { display: flex; align-items: center; justify-content: center; margin-top: 32px; }
.gallery-more a {
  color: var(--gold); font-size: 0.88rem; font-weight: 600;
  border: 1px solid rgba(253,199,23,0.3); padding: 10px 24px;
  border-radius: 100px; transition: all 0.3s;
}
.gallery-more a:hover { background: var(--gold); color: var(--forest); }

/* --- Testimonials --- */
.testimonials-section { padding: 100px 0; background: var(--cream); }
.testimonials-header { text-align: center; margin-bottom: 48px; }
.testimonials-header h2 { color: var(--forest); margin-bottom: 12px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 24px;
  border: 1px solid rgba(27,67,50,0.06); position: relative;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 16px; right: 20px;
  font-family: 'DM Serif Display', serif; font-size: 4rem; color: var(--gold-dim); line-height: 1;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testimonial-stars svg { width: 14px; height: 14px; fill: var(--gold); }
.testimonial-card blockquote { font-size: 0.92rem; color: var(--text); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.testimonial-name { font-weight: 600; font-size: 0.88rem; color: var(--forest); }
.testimonial-role { font-size: 0.78rem; color: var(--text-light); }

/* --- Contact Section (Home) --- */
.contact-section {
  padding: 100px 0; position: relative; overflow: hidden;
  background: linear-gradient(145deg, var(--forest-dark) 0%, var(--forest) 100%);
}
.contact-section::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(253,199,23,0.08) 0%, transparent 70%);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.contact-text { color: var(--white); }
.contact-text h2 { margin-bottom: 16px; }
.contact-text p { color: rgba(255,255,255,0.6); margin-bottom: 28px; max-width: 440px; }
.contact-highlights { display: flex; flex-direction: column; gap: 16px; }
.contact-highlight { display: flex; align-items: center; gap: 14px; }
.contact-highlight-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gold-dim); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-highlight-icon svg { width: 20px; height: 20px; color: var(--gold); }
.contact-highlight span { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.contact-form-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 36px 32px;
  backdrop-filter: blur(10px);
}
.contact-form-card h3 { color: var(--white); margin-bottom: 24px; font-size: 1.3rem; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.5); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06);
  color: var(--white); font-family: 'Outfit', sans-serif; font-size: 0.92rem;
  transition: border-color 0.3s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group select option { background: var(--forest); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%; padding: 14px; background: var(--gold); color: var(--forest);
  border: none; border-radius: 100px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: all 0.3s; margin-top: 8px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit svg { width: 18px; height: 18px; flex-shrink: 0; }
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

/* --- CTA Section (Reusable) --- */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(145deg, var(--forest-dark), var(--forest));
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(253,199,23,0.08) 0%, transparent 70%); border-radius: 50%;
}
.cta-inner { max-width: 620px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.6); margin-bottom: 28px; }

/* --- Footer --- */
footer { padding: 60px 0 0; background: var(--forest-deep); color: rgba(255,255,255,0.6); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.5); margin-top: 8px; }
.footer-logo { height: 40px; width: auto; }
.footer-incubated { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 4px; }
.footer-badges { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.footer-badges img { height: 36px; width: auto; border-radius: 4px; background: #fff; padding: 3px 6px; }
.footer-col h4 {
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.82rem;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px;
}
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-address { font-size: 0.82rem; line-height: 1.5; color: rgba(255,255,255,0.4); margin-top: 4px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social a svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); transition: fill 0.3s; }
.footer-social a:hover svg { fill: var(--forest-dark); }
.footer-bottom { padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* --- Floating Buttons (Call + WhatsApp) --- */
.call-float {
  position: fixed; bottom: 90px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(253,199,23,0.35); transition: transform 0.3s;
}
.call-float:hover { transform: scale(1.08); }
.call-float svg { width: 26px; height: 26px; stroke: var(--forest); }
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* --- About Page --- */
.about-collage { padding: 80px 0 60px; background: var(--cream); }
.collage-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 14px; border-radius: var(--radius-lg); overflow: hidden; }
.collage-grid img { width: 100%; height: 100%; object-fit: cover; }
.collage-grid .collage-main { aspect-ratio: 16/10; }
.collage-grid .collage-side { aspect-ratio: 16/10; }
.vision-section { padding: 80px 0; background: var(--white); }
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.vision-card { padding: 28px; }
.vision-card h3 { color: var(--forest); margin-bottom: 12px; }
.vision-card p { color: var(--text-light); }
.values-section { padding: 80px 0; background: var(--cream); }
.values-header { text-align: center; margin-bottom: 48px; }
.values-header h2 { color: var(--forest); margin-bottom: 10px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value-card {
  background: var(--white); border-radius: var(--radius); padding: 24px;
  border: 1px solid rgba(27,67,50,0.06); transition: all 0.35s;
}
.value-card:hover { transform: translateY(-3px); border-color: rgba(253,199,23,0.2); box-shadow: 0 12px 36px rgba(27,67,50,0.06); }
.value-icon {
  width: 48px; height: 48px; background: var(--gold-dim); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.value-icon svg { width: 24px; height: 24px; color: var(--gold); }
.value-card h3 { color: var(--forest); margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; line-height: 1.6; }
.team-section { padding: 80px 0; background: var(--forest); }
.team-header { text-align: center; margin-bottom: 48px; }
.team-header h2 { color: var(--white); margin-bottom: 12px; }
.team-header p { color: rgba(255,255,255,0.5); max-width: 500px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.team-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); overflow: hidden; transition: all 0.35s;
}
.team-card:hover { transform: translateY(-3px); border-color: rgba(253,199,23,0.18); }
.team-card-img { aspect-ratio: 3/4; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 16px; }
.team-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 2px; }
.team-card span { color: var(--gold); font-size: 0.82rem; }
.incubation-about { padding: 60px 0; background: var(--white); text-align: center; }
.incubation-about p { max-width: 600px; margin: 0 auto; font-size: 0.9rem; color: var(--text-light); }
.incubation-about img { height: 56px; width: auto; margin: 20px auto 0; }

/* --- Farm Setup Page --- */
.intro-strip { padding: 50px 0; background: var(--white); }
.intro-strip .container { max-width: 800px; text-align: center; }
.intro-strip p { font-size: 1.05rem; line-height: 1.8; }
.intro-strip em { color: var(--gold); font-style: italic; }
.phase-section { padding: 80px 0; }
.phase-section:nth-child(odd) { background: var(--white); }
.phase-section:nth-child(even) { background: var(--cream); }
.phase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.phase-grid.reverse { direction: rtl; }
.phase-grid.reverse > * { direction: ltr; }
.phase-num-badge { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.phase-badge {
  width: 44px; height: 44px; background: var(--forest); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: var(--gold);
}
.phase-tag { font-family: 'Outfit', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.phase-desc { color: var(--text-light); margin-bottom: 24px; }
.phase-features { display: flex; flex-direction: column; gap: 16px; }
.pf { display: flex; align-items: flex-start; gap: 12px; }
.pf-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.pf h4 { font-size: 0.92rem; color: var(--forest); margin-bottom: 2px; font-family: 'Outfit', sans-serif; font-weight: 600; }
.pf p { font-size: 0.82rem; color: var(--text-light); }
.phase-img-wrap { border-radius: var(--radius-lg); overflow: hidden; position: relative; aspect-ratio: 4/3; }
.phase-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.phase-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
}
.phase-overlay span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); display: block; margin-bottom: 2px; }
.phase-overlay strong { color: var(--white); font-size: 0.92rem; }
.setup-table-section { padding: 80px 0; background: var(--forest); }
.table-header { text-align: center; margin-bottom: 40px; }
.table-header h2 { color: var(--white); margin-bottom: 10px; }
.table-header p { color: rgba(255,255,255,0.5); max-width: 600px; margin: 0 auto; }
.setup-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; }
.setup-table thead { background: var(--forest-dark); }
.setup-table th { padding: 14px 18px; text-align: left; font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase; }
.setup-table td { padding: 12px 18px; font-size: 0.9rem; background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.75); }
.setup-table .tsec td { background: var(--forest-light); color: var(--white); font-weight: 600; font-size: 0.85rem; }

/* --- Farm Management Page --- */
.why-section { padding: 80px 0; background: var(--cream); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.why-grid h2 { color: var(--forest); margin-bottom: 14px; }
.why-grid h2 em { font-style: italic; color: var(--gold); }
.why-img { border-radius: var(--radius-lg); overflow: hidden; }
.why-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.activities-section { padding: 80px 0; background: var(--forest); }
.act-header { text-align: center; margin-bottom: 48px; }
.act-header h2 { color: var(--white); margin-bottom: 12px; }
.act-header p { color: rgba(255,255,255,0.5); max-width: 540px; margin: 0 auto; }
.act-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.act-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 24px; transition: all 0.35s;
}
.act-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); border-color: rgba(253,199,23,0.18); }
.act-card h4 { font-family: 'DM Serif Display', serif; color: var(--gold); font-size: 1rem; margin-bottom: 6px; }
.act-card p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.55; }
.reporting-section { padding: 80px 0; background: var(--white); }
.reporting-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.report-img { border-radius: var(--radius-lg); overflow: hidden; }
.report-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.report-features { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.rf { display: flex; align-items: flex-start; gap: 14px; }
.rf-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gold-dim); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.rf-icon svg { width: 20px; height: 20px; color: var(--gold); }
.rf h4 { font-size: 0.92rem; color: var(--forest); margin-bottom: 2px; font-family: 'Outfit', sans-serif; font-weight: 600; }
.rf p { font-size: 0.85rem; color: var(--text-light); }

/* --- Gallery Page --- */
.gallery-tabs { padding: 40px 0 0; background: var(--cream); text-align: center; }
.tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; padding: 0 20px; }
.tab {
  padding: 8px 18px; border-radius: 100px; font-size: 0.82rem; font-weight: 500;
  cursor: pointer; border: 1px solid rgba(27,67,50,0.12); background: var(--white);
  color: var(--text); transition: all 0.3s;
}
.tab:hover { border-color: var(--gold); }
.tab.active { background: var(--forest); color: var(--white); border-color: var(--forest); }
.gallery-content { padding: 40px 0 80px; background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.g-item {
  border-radius: var(--radius-sm); overflow: hidden; position: relative;
  cursor: pointer; transition: opacity 0.3s, transform 0.3s;
}
.g-item:not(.show) { display: none; }
.g-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.5s; }
.g-item:hover img { transform: scale(1.05); }
.g-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 12px; background: linear-gradient(transparent, rgba(0,0,0,0.55));
  color: #fff; font-size: 0.78rem; font-weight: 500;
}
.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.95);
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.15);
  border: none; width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.lightbox-close svg { width: 22px; height: 22px; color: white; }

/* --- Contact Page --- */
.contact-page-section { padding: 80px 0; background: var(--cream); }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contact-info-card {
  background: var(--forest); border-radius: var(--radius-lg);
  padding: 40px 36px; color: var(--white);
}
.contact-info-card h2 { color: var(--white); margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gold-dim); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--gold); }
.contact-info-item h4 { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.85rem; color: var(--gold); margin-bottom: 4px; }
.contact-info-item p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
.contact-info-item a { color: rgba(255,255,255,0.75); transition: color 0.3s; }
.contact-info-item a:hover { color: var(--gold); }
.opening-hours { margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1); }
.opening-hours h4 { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.85rem; color: var(--gold); margin-bottom: 6px; }
.opening-hours p { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.contact-map { border-radius: var(--radius); overflow: hidden; margin-top: 24px; }
.contact-map iframe { width: 100%; height: 220px; border: 0; }
.contact-form-standalone {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 32px; border: 1px solid rgba(27,67,50,0.06);
  box-shadow: 0 8px 40px rgba(27,67,50,0.06);
}
.contact-form-standalone h3 { color: var(--forest); margin-bottom: 6px; font-size: 1.3rem; }
.contact-form-standalone > p { color: var(--text-light); font-size: 0.88rem; margin-bottom: 24px; }
.contact-form-standalone .form-group label { color: var(--text-light); }
.contact-form-standalone .form-group input,
.contact-form-standalone .form-group select,
.contact-form-standalone .form-group textarea {
  background: var(--cream); border: 1px solid rgba(27,67,50,0.1);
  color: var(--text);
}
.contact-form-standalone .form-group input::placeholder,
.contact-form-standalone .form-group textarea::placeholder { color: var(--text-light); opacity: 0.5; }
.contact-form-standalone .form-group input:focus,
.contact-form-standalone .form-group select:focus,
.contact-form-standalone .form-group textarea:focus { border-color: var(--gold); }
.contact-form-standalone .form-group select option { background: var(--white); color: var(--text); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-content { flex-direction: column; text-align: center; padding: 140px 20px 100px; gap: 40px; }
  .hero-text { flex: none; }
  .hero-visual { order: -1; width: 100%; }
  .hero-stat-strip { margin-top: 8px; }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .problem-cards-v2 { grid-template-columns: repeat(2, 1fr); }
  .dream-grid-v2 { grid-template-columns: 1fr; gap: 32px; }
  .dream-img-v2 img { aspect-ratio: 16/9; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-bento { grid-template-columns: 1fr 1fr; }
  .usp-card.featured { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-masonry .gallery-item.tall { grid-row: span 2; }
  .gallery-masonry .gallery-item.wide { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .phase-grid { grid-template-columns: 1fr; gap: 30px; }
  .phase-grid.reverse { direction: ltr; }
  .why-grid { grid-template-columns: 1fr; gap: 30px; }
  .reporting-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .vision-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
  h1 { font-size: clamp(1.7rem, 5vw, 2.4rem); }
  h2 { font-size: clamp(1.4rem, 4vw, 2rem); }
  .hero-title { font-size: clamp(1.8rem, 5.5vw, 2.6rem); }
  .hero-buttons .btn-secondary { display: none; }
  p { font-size: 0.9rem; }
  .hero-subtitle { font-size: 0.9rem; }
  .page-hero p { font-size: 0.9rem; }
  .intro-strip p { font-size: 0.9rem; }
  .phase-desc { font-size: 0.9rem; }
  .vision-card p { font-size: 0.9rem; }
  .service-card-body p { font-size: 0.9rem; }
  .usp-card p { font-size: 0.9rem; }
  .dream-card p { font-size: 0.9rem; }
  .contact-info-card p { font-size: 0.9rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-body { padding: 16px 14px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .act-grid { grid-template-columns: repeat(2, 1fr); }
  .act-card { padding: 16px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card { padding: 16px; }
  .usp-bento { grid-template-columns: 1fr; }
  .usp-card { padding: 20px; }
  .usp-card.featured { grid-template-columns: 1fr; }
  .problem-card-v2 { padding: 16px; }
  .collage-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(1.5rem, 5.5vw, 2rem); }
  h2 { font-size: clamp(1.25rem, 4.5vw, 1.7rem); }
  .container { padding: 0 12px; }
  .hero-stat-strip { gap: 16px; padding: 12px 20px; }
  .hero-stat-num { font-size: 1.2rem; }
  .audience-grid { grid-template-columns: 1fr; }
  .problem-cards-v2 { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .process-grid {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; gap: 14px; padding-bottom: 12px;
    scrollbar-width: none;
  }
  .process-grid::-webkit-scrollbar { display: none; }
  .process-step {
    min-width: 75vw; max-width: 75vw; flex-shrink: 0;
    scroll-snap-align: center;
  }
  .act-grid { grid-template-columns: 1fr; }
  .act-card { padding: 14px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { padding: 14px; }
  .team-grid { grid-template-columns: 1fr; }
  .tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .service-card-body { padding: 14px 12px; }
  .usp-card { padding: 16px; }
  .problem-card-v2 { padding: 14px; }
  .hero-stat-strip { gap: 16px; padding: 12px 16px; margin-top: 8px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .page-hero { padding: 120px 16px 60px; }
  .page-hero-content { padding: 0 12px; }
  .page-hero h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .problem-cards-v2 { grid-template-columns: 1fr; }
  .contact-map-fullwidth iframe { height: 280px; }
}

/* =============================================
   AUDIT FIXES - April 2026
   ============================================= */

/* --- Skip to Content (Accessibility) --- */
.skip-to-content {
  position: absolute; top: -100px; left: 16px; z-index: 9999;
  background: var(--gold); color: var(--forest); padding: 12px 24px;
  border-radius: 0 0 8px 8px; font-weight: 600; font-size: 0.88rem;
  transition: top 0.3s; text-decoration: none;
}
.skip-to-content:focus { top: 0; outline: none; }

/* --- Focus States (Accessibility) --- */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
nav .nav-links a:focus-visible,
nav .nav-cta:focus-visible { outline-offset: 4px; border-radius: 4px; }
.btn-primary:focus-visible, .btn-secondary:focus-visible { outline-offset: 4px; }
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(253,199,23,0.2); }

/* --- Form Validation --- */
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #dc2626 !important; box-shadow: 0 0 0 3px rgba(220,38,38,0.12); }
.form-error {
  display: none; font-size: 0.78rem; color: #dc2626;
  margin-top: 4px; font-weight: 500;
}
.form-group.has-error .form-error { display: block; }
.form-success-toast {
  display: none; position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%);
  background: var(--forest); color: var(--white); padding: 14px 28px;
  border-radius: 12px; font-size: 0.9rem; font-weight: 500; z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2); align-items: center; gap: 10px;
  animation: fadeInUp 0.4s ease;
}
.form-success-toast.show { display: flex; }
.form-success-toast svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

/* --- Gallery Filter Animation --- */
.g-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.g-item.hiding {
  opacity: 0; transform: scale(0.92);
}
.g-item.show {
  animation: galleryIn 0.4s ease both;
}
@keyframes galleryIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

/* --- Lightbox Navigation --- */
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.3s; z-index: 2001;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-nav svg { width: 24px; height: 24px; color: white; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); font-size: 0.85rem; font-weight: 500;
}

/* --- Activity Card Icons --- */
.act-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(253,199,23,0.12); display: flex;
  align-items: center; justify-content: center; margin-bottom: 12px;
}
.act-card-icon svg { width: 20px; height: 20px; color: var(--gold); }

/* --- Contact Map Full Width --- */
.contact-map-fullwidth {
  margin-top: 48px; border-radius: 0; overflow: hidden;
}
.contact-map-fullwidth iframe {
  width: 100%; height: 380px; border: 0; display: block;
}

/* --- Testimonial Avatars (replace letter circles) --- */
.testimonial-avatar-icon {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial-avatar-icon svg { width: 20px; height: 20px; color: var(--gold); }
