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

:root {
  --green:       #1e7c3a;
  --green-light: #28a34d;
  --green-dark:  #145a2a;
  --green-muted: #e8f5ec;
  --white:       #ffffff;
  --text:        #1a2218;
  --text-muted:  #5a6b57;
  --radius:      8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--green);
  color: #d4edda;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding: 7px 0;
}

.topbar .inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  align-items: center;
}

.topbar a { color: #d4edda; text-decoration: none; }
.topbar a:hover { color: var(--white); }
.topbar span { display: flex; align-items: center; gap: 6px; }

/* ── NAV ── */
nav {
  background: var(--white);
  box-shadow: 0 2px 18px rgba(0,0,0,.07);
  position: sticky;
  top: 0;
  z-index: 200;
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 56px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--green); }

.nav-links li.active > a { color: var(--green); font-weight: 600; }

/* ── DROPDOWN ── */
.has-dropdown { position: relative; }

.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.has-dropdown > a::after {
  content: '▾';
  font-size: 0.75rem;
  transition: transform 0.2s;
}

.has-dropdown:hover > a::after { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,.15);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
  /* padding-top closes the gap so mouse can travel into menu */
  margin-top: 0;
}

/* invisible bridge between nav link and dropdown */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--white);
}

.dropdown-menu li { list-style: none; }

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 400;
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu li a:hover {
  background: var(--green-muted);
  color: var(--green);
}

.dropdown-menu li a .dd-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ── CONTACT BUTTON ── */
.btn-contact {
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s, transform 0.15s;
}
.btn-contact:hover { background: var(--green-dark) !important; transform: translateY(-1px); }

/* ── BUTTONS ── */
.btn-cta {
  display: inline-block;
  margin-top: 32px;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  animation: fadeUp 0.9s 0.2s ease both;
}
.btn-cta:hover { background: transparent; border-color: var(--white); transform: translateY(-2px); }

.btn-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}
.btn-read:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-read::after { content: '›'; font-size: 1.1rem; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: var(--radius);
  border: 2px solid var(--green);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-primary:hover { background: transparent; color: var(--green); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: var(--radius);
  border: 2px solid var(--green);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover { background: var(--green); color: var(--white); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(20,80,40,.82) 38%, rgba(20,80,40,.30) 70%, transparent 100%),
    url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80') center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px;
}

.hero-content h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  max-width: 520px;
  animation: fadeUp 0.8s ease both;
}

.hero-content h1 em { font-style: normal; color: #a8e6bc; }

.hero-dots { margin-top: 48px; display: flex; gap: 8px; animation: fadeUp 0.9s 0.35s ease both; }
.hero-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.35); cursor: pointer; transition: background 0.2s;
}
.hero-dots span.active { background: var(--white); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 64px 24px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.page-hero .breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--white); }

.page-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
}

/* ── WAVE DIVIDER ── */
.wave-bottom { display: block; width: 100%; margin-bottom: -2px; }

/* ── CARDS SECTION (home) ── */
.cards-section { background: var(--white); padding: 64px 24px 32px; }
.cards-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.card {
  text-align: center;
  padding: 40px 28px 36px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 4px 32px rgba(30,124,58,.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(30,124,58,.16); }

.card-icon {
  width: 72px; height: 72px;
  background: var(--green-muted);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.card-icon svg { width: 36px; height: 36px; fill: var(--green); }

.card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 28px; }

/* ── INNER PAGE CONTENT ── */
.page-section { padding: 72px 24px; }
.page-section-alt { background: #f7fbf8; }

.container { max-width: 1160px; margin: 0 auto; }
.container-sm { max-width: 800px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 620px;
}

/* ── ABOUT PAGE ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-split img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 56px rgba(0,0,0,.12);
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  border: 1.5px solid #e3f0e7;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.value-card:hover { box-shadow: 0 8px 32px rgba(30,124,58,.1); transform: translateY(-3px); }

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.value-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.value-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: 16px;
  padding: 32px 20px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

.team-avatar {
  width: 80px; height: 80px;
  background: var(--green-muted);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 2rem;
}

.team-card h4 { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.team-card span { font-size: 0.8rem; color: var(--green); font-weight: 500; }

/* ── CONCEPTS / MENU PAGE ── */
.concept-brand {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 40px rgba(0,0,0,.09);
  transition: transform 0.25s, box-shadow 0.25s;
  margin-bottom: 48px;
}
.concept-brand:hover { transform: translateY(-4px); box-shadow: 0 16px 56px rgba(0,0,0,.14); }

.concept-brand-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.concept-brand-inner.reverse { direction: rtl; }
.concept-brand-inner.reverse > * { direction: ltr; }

.concept-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.concept-info {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.concept-tag {
  display: inline-block;
  background: var(--green-muted);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.concept-info h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.concept-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.concept-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.highlight-pill {
  background: var(--green-muted);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
}

/* ── PARTNERSHIP PAGE ── */
.partner-hero-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 24px;
}

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

.partner-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0,0,0,.07);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.partner-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.13); }

.partner-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.partner-card-body { padding: 22px 20px 24px; }

.partner-logo-placeholder {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.partner-card-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.partner-card-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }

.partner-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--green-muted);
  color: var(--green);
}

/* Individual partner page */
.partner-detail-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.partner-detail-img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 24px;
  object-fit: cover;
  height: 300px;
}

.partner-info-box {
  background: #f7fbf8;
  border-radius: 14px;
  padding: 28px 24px;
  border: 1.5px solid #d9eed e;
}

.partner-info-box h4 {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #e8f0ea;
  font-size: 0.88rem;
}

.info-row:last-child { border-bottom: none; }
.info-row .label { color: var(--text-muted); min-width: 90px; font-weight: 500; }
.info-row .value { color: var(--text); font-weight: 600; }

/* ── NEWS PAGE ── */
.news-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}

.news-featured-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.news-featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-tag {
  display: inline-block;
  background: var(--green-muted);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.news-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.news-featured-content h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
}

.news-featured-content p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

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

.news-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(0,0,0,.12); }

.news-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, var(--green-muted) 0%, #c8e6d0 100%);
}

.news-card-img-placeholder {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.news-card-body { padding: 20px 18px 22px; }
.news-card-body .news-tag { margin-bottom: 8px; }
.news-card-body .news-date { margin-bottom: 8px; }

.news-card-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.news-card-body p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; }

/* ── FOOTER ── */
footer {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(40,163,77,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(40,163,77,.12) 0%, transparent 60%);
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 24px 48px;
  text-align: center;
  color: rgba(255,255,255,.85);
}

.footer-logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
}
.footer-logo-text span { color: #a8e6bc; }

.footer-site { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,.7); margin-bottom: 28px; }

.footer-contact-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 28px;
}
.footer-contact-row a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer-contact-row a:hover { color: var(--white); }
.footer-contact-row span { display: flex; align-items: center; gap: 5px; }

.footer-divider { width: 60px; height: 2px; background: rgba(255,255,255,.2); margin: 24px auto; border-radius: 2px; }

.footer-socials { display: flex; justify-content: center; gap: 14px; }

.footer-socials a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.footer-socials a:hover { background: var(--green-light); transform: translateY(-2px); }
.footer-socials svg { width: 18px; height: 18px; fill: var(--white); }

.footer-copy { margin-top: 36px; font-size: 0.75rem; color: rgba(255,255,255,.4); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeUp 0.7s ease both; }
.fade-in-2 { animation: fadeUp 0.7s 0.15s ease both; }
.fade-in-3 { animation: fadeUp 0.7s 0.3s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-split,
  .concept-brand-inner,
  .concept-brand-inner.reverse,
  .news-featured,
  .partner-detail-split { grid-template-columns: 1fr; }
  .concept-brand-inner.reverse { direction: ltr; }
  .concept-img { height: 240px; }
  .values-grid,
  .team-grid,
  .partner-grid,
  .news-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .cards-inner,
  .values-grid,
  .team-grid,
  .partner-grid,
  .news-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-content h1 { font-size: 2rem; }
}
