/* ============================================================
   WEPPIA - Unified Stylesheet
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

:root {
  --green-dark: #1a3a2a;
  --green-mid: #2d5a3f;
  --green-accent: #3a6b4a;
  --green-light: #d6e8d0;
  --green-pale: #eef5ec;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #444;
  --text-light: #666;
  --border: #dde8d8;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

/* ============================================================ */
/* ===== HEADER / NAVIGATION ===== */
/* ============================================================ */

nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 85px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo img {
  height: 60px;
  width: auto;
  /* object-fit: contain;
  transition: transform 0.3s ease; */
}

/* .nav-logo img:hover {
  transform: scale(1.05);
} */

.nav-logo .logo-text-fallback {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: 3px;
  display: none;
}

/* Brand divider line */
.nav-divider {
  width: 2px;
  height: 40px;
  background: var(--border);
  margin: 0 4px;
}

.nav-tagline {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-tagline .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 2px;
}

.nav-tagline .brand-sub {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.25s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--green-accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 60%;
}

.nav-links a.active {
  color: var(--green-dark);
  font-weight: 600;
  background: var(--green-pale);
}

.nav-links a.active::after {
  width: 60%;
}

/* Nav CTA Button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dark);
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all 0.3s ease !important;
  border-bottom: none !important;
  letter-spacing: 0.5px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--green-mid) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 58, 42, 0.25);
  color: white !important;
}

.nav-cta .cta-icon {
  font-size: 1rem;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.hamburger:hover {
  background: var(--green-pale);
}

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

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dark);
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--green-dark);
  color: var(--green-dark);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.2s;
  background: white;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--green-dark);
  color: white;
}

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.section-title .underline {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--green-accent);
  margin: 0 auto;
  border-radius: 2px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 70px 5%;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: white;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
footer {
  background: #0f2419;
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 5% 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.5fr 1.3fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.footer-brand .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.83rem;
  line-height: 1.75;
  max-width: 240px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 0.75rem;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: var(--green-accent);
}

.footer-col h5 {
  color: white;
  font-size: 0.87rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--green-light);
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  line-height: 1.5;
}

.contact-line .ic {
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-map {
  width: 100%;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 4px;
  background: #1a3a2a;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  text-align: center;
  font-size: 0.8rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================================ */
/* ===== INDEX.HTML SPECIFIC STYLES ===== */
/* ============================================================ */

/* HERO */
.hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/f/f1/Prestige_Shantiniketan_In_Whitefield_Main_Road.jpg');
  background-size: cover;
  /* background-position: center; */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.96) 18%, rgba(255, 255, 255, 0.5) 55%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 5%;
  max-width: 560px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero-content p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 420px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* STATS BAR */
.stats-bar {
  background: var(--green-dark);
  padding: 28px 5%;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-icon {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.stat-text .big {
  font-size: 1.45rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
}

.stat-text .label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-top: 1px;
}

.stat-text .sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
  line-height: 1.4;
}

/* WHO WE ARE */
.who-section {
  padding: 70px 5%;
  background: white;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.who-image {
  border-radius: 8px;
  overflow: hidden;
}

.who-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.who-text .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.who-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--green-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.who-text .underbar {
  width: 48px;
  height: 3px;
  background: var(--green-dark);
  margin-bottom: 20px;
  border-radius: 2px;
}

.who-text p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* ACHIEVEMENTS */
.achievements {
  padding: 70px 5%;
  background: white;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.achievement-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
  background: white;
  transition: box-shadow 0.2s;
}

.achievement-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.ach-icon {
  width: 52px;
  height: 52px;
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 14px;
}

.achievement-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.achievement-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* INFRASTRUCTURE INITIATIVES */
.initiatives {
  padding: 70px 5%;
  background: white;
}

.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.initiative-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.initiative-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.initiative-img-icon {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.initiative-body {
  padding: 22px 20px;
}

.initiative-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.initiative-body ul {
  list-style: none;
}

.initiative-body ul li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.initiative-body ul li::before {
  content: '✓';
  color: var(--green-accent);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.green-bar {
  width: 36px;
  height: 3px;
  background: var(--green-accent);
  margin-bottom: 12px;
  border-radius: 2px;
}

/* JOURNEY TIMELINE */
.journey {
  padding: 70px 5%;
  background: white;
}

.timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 26px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.timeline-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

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

.timeline-dot {
  width: 52px;
  height: 52px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 12px;
  position: relative;
}

.timeline-item .year {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 3px;
}

.timeline-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
  line-height: 1.3;
}

.timeline-item p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================================ */
/* ===== ABOUT.HTML SPECIFIC STYLES ===== */
/* ============================================================ */

.about-intro {
  padding: 70px 5%;
  background: white;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-intro-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--green-dark);
  margin-bottom: 16px;
}

.about-intro-text p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.96rem;
}

.about-visual {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  border-radius: 10px;
  padding: 40px;
  color: white;
}

.about-visual h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--green-light);
}

.vision-mission {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vm-item {
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--green-accent);
  padding: 14px 16px;
  border-radius: 0 6px 6px 0;
}

.vm-item h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-light);
  margin-bottom: 6px;
}

.vm-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* Timeline - About */
.timeline-section {
  padding: 70px 5%;
  background: var(--green-pale);
}

.timeline-about {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline-about::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--green-light);
}

.tl-item {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}

.tl-year {
  min-width: 50px;
  text-align: right;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--green-accent);
  font-size: 1rem;
  padding-top: 2px;
}

.tl-dot {
  position: relative;
  z-index: 1;
}

.tl-dot::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background: var(--green-accent);
  border-radius: 50%;
  margin-top: 6px;
  margin-left: -5px;
}

.tl-body h4 {
  font-family: 'Playfair Display', serif;
  color: var(--green-dark);
  margin-bottom: 5px;
  font-size: 1rem;
}

.tl-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Team - About */
.team-section {
  padding: 70px 5%;
  background: white;
}

.team-intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 48px;
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
  padding: 24px 20px;
  background: var(--green-pale);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: transform 0.2s;
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 14px;
  border: 3px solid var(--green-light);
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 0.78rem;
  color: var(--green-accent);
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

.team-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================================ */
/* ===== SERVICES.HTML SPECIFIC STYLES ===== */
/* ============================================================ */

.services-section {
  padding: 70px 5%;
  background: white;
}

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

.service-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(26, 58, 42, 0.1);
}

.service-card-top {
  background: var(--green-dark);
  padding: 28px 24px 20px;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--green-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.service-card-top h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: white;
  font-weight: 700;
}

.service-card-body {
  padding: 20px 24px 24px;
  background: var(--green-pale);
}

.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 14px;
}

.service-card-body ul {
  list-style: none;
  padding: 0;
}

.service-card-body ul li {
  font-size: 0.86rem;
  color: var(--text-light);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 18px;
  position: relative;
}

.service-card-body ul li::before {
  content: '✓';
  color: var(--green-accent);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.service-card-body ul li:last-child {
  border-bottom: none;
}

.process-section {
  padding: 70px 5%;
  background: var(--green-pale);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 28px 20px;
}

.step-num {
  width: 48px;
  height: 48px;
  background: var(--green-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 14px;
}

.step-card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--green-dark);
  margin-bottom: 8px;
  font-size: 1rem;
}

.step-card p {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================ */
/* ===== CONTACT.HTML SPECIFIC STYLES ===== */
/* ============================================================ */

.contact-section {
  padding: 70px 5%;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 20px;
}

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

.contact-detail .ci-icon {
  width: 38px;
  height: 38px;
  background: var(--green-pale);
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail .ci-text h5 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--green-accent);
  margin-bottom: 3px;
}

.contact-detail .ci-text p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.contact-form-wrap {
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px;
}

.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-accent);
  box-shadow: 0 0 0 3px rgba(74, 140, 92, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--green-dark);
  color: white;
  border: none;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.3px;
}

.form-submit:hover {
  background: var(--green-accent);
  transform: translateY(-1px);
}

.form-success {
  display: none;
  background: var(--green-light);
  border: 1px solid var(--green-accent);
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 0.9rem;
  color: var(--green-dark);
  margin-top: 16px;
  font-weight: 500;
}

.map-section {
  padding: 0 5% 70px;
  background: white;
}

.map-placeholder {
  max-width: 1000px;
  margin: 0 auto;
  height: 280px;
  background: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: white;
}

.map-placeholder .map-icon {
  font-size: 2.5rem;
}

.map-placeholder h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}

.map-placeholder p {
  font-size: 0.88rem;
  opacity: 0.8;
}

.map-placeholder a {
  color: var(--green-light);
  font-size: 0.88rem;
  margin-top: 4px;
}

/* ============================================================ */
/* ===== RESPONSIVE ===== */
/* ============================================================ */

@media (max-width: 1024px) {
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .initiatives-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  /* Hide tagline on tablet */
  .nav-tagline {
    display: none;
  }
  
  .nav-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    height: 72px;
    padding: 0 4%;
  }

  .nav-logo img {
    height: 44px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 2px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 199;
    padding: 8px 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 14px 24px;
    border-radius: 0;
    font-size: 1rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a.active {
    background: var(--green-pale);
    border-left: 4px solid var(--green-accent);
  }

  .nav-cta {
    margin: 0 16px 8px 16px !important;
    border-radius: 6px !important;
    text-align: center;
    justify-content: center;
  }

  .hero {
    min-height: 360px;
  }

  .hero-overlay {
    background: rgba(255, 255, 255, 0.88);
  }

  .hero-content {
    padding: 48px 5%;
    max-width: 100%;
  }

  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .who-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .who-image img {
    height: 240px;
  }

  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .initiatives-grid {
    grid-template-columns: 1fr;
  }

  .timeline-line {
    display: none;
  }

  .timeline-items {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-about::before {
    left: 30px;
  }

  .tl-year {
    min-width: 35px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .achievements-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-bar-inner {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-items {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  nav {
    height: 64px;
  }

  .nav-logo img {
    height: 38px;
  }
}