/* ============================================
   Greencool Agrotech Trading Pvt. Ltd.
   Premium Agro-Export Website Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0a5c45;
  --primary-dark: #063d2e;
  --primary-light: #127a5c;
  --accent: #c4a35a;
  --accent-hover: #d4b56e;
  --ink: #14201c;
  --ink-soft: #3a4a44;
  --muted: #6b7c74;
  --bg: #f6f8f5;
  --bg-soft: #eef3ef;
  --white: #ffffff;
  --cream: #f9faf7;
  --border: rgba(10, 92, 69, 0.12);
  --shadow: 0 12px 40px rgba(6, 61, 46, 0.1);
  --shadow-lg: 0 24px 60px rgba(6, 61, 46, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --nav-h: 78px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

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

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 18px;
}

.section-lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 640px;
  font-weight: 300;
}

.section-head {
  margin-bottom: 56px;
}

.section-head.center {
  text-align: center;
}

.section-head.center .section-lead {
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 560;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(10, 92, 69, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(10, 92, 69, 0.38);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
}

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

.btn-outline-dark {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

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

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #dbbf74 100%);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(196, 163, 90, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(196, 163, 90, 0.45);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1220;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.navbar .nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1002;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--white);
  padding: 3px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}

.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a,
.nav-drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color var(--transition), background var(--transition);
}

.nav-links > li > a:hover,
.nav-drop-toggle:hover,
.nav-links > li > a.active,
.nav-drop-toggle.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.nav-drop-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.nav-item-drop:hover .nav-drop-toggle svg,
.nav-item-drop.open .nav-drop-toggle svg {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 320px;
  max-height: 70vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.28s ease;
  border: 1px solid var(--border);
  z-index: 1003;
}

@media (hover: hover) and (pointer: fine) {
  .nav-item-drop:hover .dropdown,
  .nav-item-drop.open .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

.nav-item-drop.open .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  border-radius: 8px;
  font-weight: 450;
}

.dropdown a:hover {
  background: var(--bg-soft);
  color: var(--primary);
}

.nav-cta {
  margin-left: 8px;
  padding: 10px 20px !important;
  background: var(--accent) !important;
  color: var(--ink) !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
  color: var(--ink) !important;
}

/* Scrolled / solid nav states */
.navbar.scrolled,
.navbar.solid {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(6, 61, 46, 0.08);
}

.navbar.scrolled .brand-name,
.navbar.solid .brand-name {
  color: var(--primary-dark);
}

.navbar.scrolled .brand-tag,
.navbar.solid .brand-tag {
  color: var(--muted);
}

.navbar.scrolled .nav-links > li > a,
.navbar.scrolled .nav-drop-toggle,
.navbar.solid .nav-links > li > a,
.navbar.solid .nav-drop-toggle {
  color: var(--ink-soft);
}

.navbar.scrolled .nav-links > li > a:hover,
.navbar.scrolled .nav-drop-toggle:hover,
.navbar.scrolled .nav-links > li > a.active,
.navbar.scrolled .nav-drop-toggle.active,
.navbar.solid .nav-links > li > a:hover,
.navbar.solid .nav-drop-toggle:hover,
.navbar.solid .nav-links > li > a.active,
.navbar.solid .nav-drop-toggle.active {
  color: var(--primary);
  background: rgba(10, 92, 69, 0.08);
}

.navbar.scrolled .nav-cta,
.navbar.solid .nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
}

.navbar.scrolled .nav-cta:hover,
.navbar.solid .nav-cta:hover {
  background: var(--primary-dark) !important;
}

.navbar.scrolled .hamburger span,
.navbar.solid .hamburger span {
  background: var(--ink);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1230;
  position: relative;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ---------- Hero Slider ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease, visibility 1.1s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6, 40, 30, 0.88) 0%,
    rgba(10, 70, 52, 0.72) 45%,
    rgba(8, 50, 38, 0.55) 100%
  );
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 80px;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  animation: fadeUp 0.9s ease both;
}

.hero-accent-line {
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 18px 0 22px;
  animation: fadeUp 0.9s 0.1s ease both;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  max-width: 640px;
  line-height: 1.3;
  margin-bottom: 16px;
  animation: fadeUp 0.9s 0.15s ease both;
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  font-weight: 300;
  animation: fadeUp 0.9s 0.25s ease both;
}

.hero-content .btn-group {
  animation: fadeUp 0.9s 0.35s ease both;
}

.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 6px;
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.hero-nav-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.hero-prev { left: 24px; }
.hero-next { right: 24px; }

.hero-sparks {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 230, 160, 0.85);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 210, 120, 0.8), 0 0 20px rgba(196, 163, 90, 0.4);
  animation: sparkFloat linear infinite;
}

@keyframes sparkFloat {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
}

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

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 60px) 0 70px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6, 40, 30, 0.9) 0%, rgba(10, 70, 52, 0.7) 100%);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 560px;
  font-weight: 300;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { opacity: 0.5; }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
  cursor: pointer;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(160deg, #e8f0eb, #f5f8f5);
  transition: transform 0.6s ease;
  padding: 8px;
}

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

.card-img.cover img {
  object-fit: cover;
  padding: 0;
}

.card-body {
  padding: 26px 24px 28px;
}

.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
}

.card-body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.card-link:hover { gap: 10px; color: var(--primary-dark); }

.service-icon-card {
  text-align: left;
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  height: 100%;
}

.service-icon-card:hover {
  transform: translateY(-6px);
  border-color: rgba(10, 92, 69, 0.25);
  box-shadow: var(--shadow-lg);
}

.service-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 14px;
}

.service-icon-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--ink);
}

.service-icon-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

/* ---------- About / Feature ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/12px no-repeat;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.cta-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  top: -120px;
  right: -80px;
  animation: floatOrb 12s ease-in-out infinite;
}

.cta-band::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(196, 163, 90, 0.08);
  bottom: -80px;
  left: 10%;
  animation: floatOrb 9s ease-in-out infinite reverse;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

.cta-band .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 10px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
}

/* ---------- Team ---------- */
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-soft);
  cursor: pointer;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  padding: 12px;
  background: linear-gradient(180deg, #eef4f0, #f8faf8);
}

.team-info {
  padding: 28px 26px 32px;
}

.team-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.team-info p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin-bottom: 16px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 0.75rem;
  padding: 5px 12px;
  background: var(--bg-soft);
  color: var(--primary-dark);
  border-radius: 999px;
  font-weight: 500;
  border: 1px solid var(--border);
}

.profile-detail {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 40px;
}

.profile-photo {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-soft);
  cursor: pointer;
  aspect-ratio: 3 / 4;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  padding: 10px;
}

.profile-detail h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 6px;
}

.profile-detail .role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}

.profile-block {
  margin-bottom: 22px;
}

.profile-block h4 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 700;
}

.profile-block ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profile-block li {
  color: var(--ink-soft);
  padding-left: 16px;
  position: relative;
  font-size: 0.95rem;
}

.profile-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.contact-card .sub {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.contact-row {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-row a {
  color: var(--ink-soft);
  font-weight: 500;
}

.contact-row a:hover { color: var(--primary); }

.address-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  margin-top: 32px;
}

.address-box h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.address-box p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
}

/* ---------- Service detail ---------- */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.service-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.service-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 16px;
}

.service-content p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.service-content ul {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-content li {
  padding-left: 22px;
  position: relative;
  color: var(--ink-soft);
}

.service-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.service-side {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.side-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.side-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.side-card a {
  display: block;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}

.side-card a:last-child { border-bottom: none; }
.side-card a:hover { color: var(--primary); }

.side-cta {
  background: linear-gradient(145deg, var(--primary-dark), var(--primary));
  color: var(--white);
  border: none;
}

.side-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.side-cta .btn {
  width: 100%;
  margin-bottom: 10px;
}

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-item {
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}

.why-item:hover { transform: translateY(-6px); }

.why-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.why-item:hover::after { transform: scaleX(1); }

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 18px;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.why-item p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* ---------- Footer ---------- */
.footer {
  background: #071a14;
  color: rgba(255, 255, 255, 0.78);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--white);
  padding: 3px;
  margin-bottom: 16px;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover { color: var(--accent); }

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  align-items: flex-start;
}

.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--accent);
  font-weight: 500;
}

.footer-bottom a:hover { color: var(--accent-hover); }

/* ---------- Floating Action Buttons ---------- */
.fab-stack {
  position: fixed;
  right: 16px;
  bottom: 20px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.fab-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  position: relative;
}

.fab-options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: max-height 0.35s ease, opacity 0.28s ease, transform 0.28s ease;
}

.fab-group.open .fab-options {
  max-height: 420px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  overflow-y: auto;
}

.fab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 14px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  text-decoration: none;
}

.fab-toggle {
  animation: fabPulse 2.8s ease-in-out infinite;
}

.fab:hover {
  transform: translateX(-4px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.fab svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.fab-wa {
  background: linear-gradient(135deg, #1fad5a, #128c45);
}

.fab-call {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
}

.fab-label {
  max-width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fab-options .fab {
  font-size: 0.78rem;
  padding: 10px 14px 10px 12px;
  animation: none;
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22); }
  50% { box-shadow: 0 8px 28px rgba(10, 92, 69, 0.35), 0 0 0 8px rgba(10, 92, 69, 0.08); }
}

/* Produce gallery */
.produce-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.produce-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.produce-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.produce-item figcaption {
  padding: 14px 16px 18px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
}

.back-top {
  position: fixed;
  left: 16px;
  bottom: 24px;
  z-index: 1090;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--primary-dark);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 18, 14, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img-wrap {
  max-width: min(920px, 94vw);
  max-height: 88vh;
  position: relative;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
  z-index: 2;
}

.lightbox-close:hover { transform: scale(1.08); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Decorative bg pattern */
.bg-pattern {
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse at 10% 20%, rgba(10, 92, 69, 0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 80%, rgba(196, 163, 90, 0.06) 0%, transparent 40%);
}

.bg-soft {
  background: var(--bg-soft);
}

.text-center { text-align: center; }

.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .desktop-nav { display: none !important; }
  .hamburger { display: flex; }

  .card-grid,
  .why-grid,
  .feature-row,
  .contact-grid,
  .service-detail-grid,
  .card-grid-2 {
    grid-template-columns: 1fr;
  }

  .profile-detail {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .profile-photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-prev, .hero-next { display: none; }

  .fab-label { display: none; }
  .fab { padding: 14px; border-radius: 50%; }
  .produce-grid { grid-template-columns: repeat(2, 1fr); }

  .navbar.scrolled .hamburger span,
  .navbar.solid .hamburger span,
  .hamburger span {
    background: var(--ink);
  }

  .navbar:not(.scrolled):not(.solid) .hamburger span {
    background: var(--white);
  }

  body.menu-open .navbar:not(.scrolled):not(.solid) .hamburger span,
  body.menu-open .hamburger span {
    background: var(--ink);
  }

  body.menu-open .navbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: none;
  }

  body.menu-open .navbar .brand-name {
    color: var(--primary-dark);
  }

  body.menu-open .navbar .brand-tag {
    color: var(--muted);
  }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .card-grid-4,
  .stats-row,
  .footer-grid,
  .produce-grid {
    grid-template-columns: 1fr;
  }
  .cta-band .container {
    flex-direction: column;
    text-align: center;
  }
  .cta-band .btn-group {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .hero-brand {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }
  .page-hero { min-height: 340px; }
}

/* Mobile nav overlay + drawer */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 18, 14, 0.55);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100vw);
  height: 100%;
  height: 100dvh;
  background: #fff;
  z-index: 1210;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.18);
  overscroll-behavior: contain;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.mobile-drawer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: contain;
  background: var(--bg-soft);
  padding: 2px;
}

.mobile-drawer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--primary-dark);
  line-height: 1.2;
}

.mobile-drawer-brand span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-close {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.mobile-close:hover,
.mobile-close:active {
  background: rgba(10, 92, 69, 0.12);
  color: var(--primary);
}

.mobile-drawer-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 12px 14px 24px;
}

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 14px;
  margin-bottom: 4px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 560;
  color: var(--ink);
  background: transparent;
  border: none;
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.mobile-link:active,
.mobile-link:hover {
  background: var(--bg-soft);
  color: var(--primary);
}

.mobile-link.active {
  background: rgba(10, 92, 69, 0.1);
  color: var(--primary);
}

.mobile-link-cta {
  margin-top: 10px;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff !important;
  font-weight: 600;
}

.mobile-link-cta:hover,
.mobile-link-cta:active,
.mobile-link-cta.active {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff !important;
}

.mobile-acc {
  margin-bottom: 4px;
}

.mobile-acc.open .mobile-acc-btn svg {
  transform: rotate(180deg);
}

.mobile-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 6px;
}

.mobile-acc.open .mobile-acc-panel {
  max-height: 1200px;
}

.mobile-acc-panel a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.35;
}

.mobile-acc-panel a:hover,
.mobile-acc-panel a:active {
  background: var(--bg-soft);
  color: var(--primary);
}

.mobile-acc-panel .m-num {
  flex-shrink: 0;
  width: 28px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  padding-top: 2px;
}

.mobile-drawer-foot {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px 16px calc(16px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: var(--cream);
}

.mobile-drawer-foot a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

.mobile-drawer-foot a:first-child {
  background: var(--primary);
  color: #fff;
}

.mobile-drawer-foot a:last-child {
  background: #1fad5a;
  color: #fff;
}

@media (min-width: 921px) {
  .mobile-drawer,
  .nav-overlay,
  .hamburger {
    display: none !important;
  }
}
