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

:root {
  --dark: #1B3A2D;
  --dark-2: #2A4A3A;
  --green: #5BB543;
  --green-light: #72CC55;
  --green-dark: #469932;
  --green-muted: rgba(91,181,67,0.12);
  --green-muted-2: rgba(91,181,67,0.07);
  --cream: #F5F3EE;
  --cream-2: #EDEAE3;
  --white: #FFFFFF;
  --slate: #6B7A70;
  --border: #DDD9D0;
  --text-dark: #1B3A2D;
  --text-body: #3D5047;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(27,58,45,0.06);
  --shadow: 0 4px 20px rgba(27,58,45,0.08);
  --shadow-md: 0 8px 28px rgba(27,58,45,0.11);
  --shadow-hover: 0 16px 44px rgba(27,58,45,0.16);

  /* spacing scale */
  --sp-4: 4px;
  --sp-8: 8px;
  --sp-12: 12px;
  --sp-16: 16px;
  --sp-20: 20px;
  --sp-24: 24px;
  --sp-32: 32px;
  --sp-40: 40px;
  --sp-48: 48px;
  --sp-64: 64px;
  --sp-80: 80px;
  --sp-100: 100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  animation: pageFadeIn 0.5s ease forwards;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  color: var(--text-dark);
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── UTILITY ── */
.py-80  { padding-top: var(--sp-80);  padding-bottom: var(--sp-80); }
.py-100 { padding-top: var(--sp-100); padding-bottom: var(--sp-100); }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.section-sub {
  color: var(--slate);
  font-size: 17px;
  max-width: 600px;
  line-height: 1.8;
}

/* ── DIVIDER ── */
.section-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 3px;
  margin: 0 0 32px;
}
.text-center .section-divider { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-2);
  color: var(--text-dark) !important;
  padding: 13px 30px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  border: 1px solid var(--cream-2);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-light:hover {
  background: var(--green-muted);
  color: var(--green-dark) !important;
}
.btn-light:visited { color: var(--text-dark) !important; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  padding: 13px 34px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  border: 1.5px solid var(--dark);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover {
  background: var(--dark);
  color: var(--white);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,181,67,0.32);
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 13px 32px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.55);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: var(--white);
  padding: 13px 32px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.22s;
}
.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,58,45,0.35);
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(245,243,238,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(27,58,45,0.06);
  transition: all 0.3s ease;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-logo {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-links > li > a:not(.btn-primary)::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: width 0.25s ease, left 0.25s ease;
}
.nav-links > li > a:not(.btn-primary):hover::after,
.nav-links > li > a.active::after {
  width: 55%;
  left: 22.5%;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--green);
  background: var(--green-muted);
}
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { display: none !important; }
.nav-dropdown > a .dd-arrow {
  display: inline-block;
  font-size: 10px;
  opacity: 0.55;
  margin-left: 3px;
  transition: transform 0.2s;
}
.nav-dropdown:hover > a .dd-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 200px;
  padding: 6px;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 8px;
  color: var(--text-body);
}
.nav-dropdown-menu a::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.4;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav-dropdown-menu a:hover { background: var(--cream); color: var(--green); }
.nav-dropdown-menu a:hover::before { opacity: 1; }
.nav-cta { margin-left: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger:hover { background: var(--green-muted); }

.navbar.scrolled {
  background: rgba(245,243,238,0.98);
  box-shadow: 0 4px 28px rgba(27,58,45,0.13);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0d1f14;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-typed {
  color: var(--green-light);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
  min-height: 26px;
}
.hero-typed .typed-cursor { color: var(--green-light); }
.hero-image-col {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: grayscale(15%);
}
.hero-image-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,32,20,0.72) 0%,
    rgba(15,32,20,0.55) 50%,
    rgba(27,58,45,0.65) 100%
  );
}
/* decorative grid overlay */
.hero-image-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91,181,67,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,181,67,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
  padding: 0 24px;
  animation: heroEntrance 0.9s ease forwards;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(91,181,67,0.15);
  border: 1px solid rgba(91,181,67,0.35);
  color: #A5E882;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 40px;
  margin-bottom: 30px;
  backdrop-filter: blur(8px);
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(91,181,67,0.3);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(91,181,67,0.3); }
  50%       { box-shadow: 0 0 0 6px rgba(91,181,67,0.12); }
}
.hero h1 {
  color: var(--white);
  font-size: clamp(36px, 5.5vw, 66px);
  margin-bottom: 10px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -1px;
}
.hero h1 em {
  font-style: italic;
  color: var(--green-light);
}
.hero-sub {
  color: rgba(255,255,255,0.76);
  font-size: 18px;
  line-height: 1.8;
  margin: 22px auto 44px;
  max-width: 560px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--dark);
  padding: 56px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 12px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  color: var(--green);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.stat-label {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── INTRO SECTION ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.intro-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hover);
}
/* floating badge on image */
.intro-img-badge {
  position: absolute;
  bottom: 28px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.intro-img-badge .badge-icon {
  width: 44px; height: 44px;
  background: var(--green);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px;
  flex-shrink: 0;
}
.intro-img-badge strong {
  display: block;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Fraunces', serif;
  line-height: 1;
  margin-bottom: 3px;
}
.intro-img-badge span {
  font-size: 12px;
  color: var(--slate);
}
.intro-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px; height: 120px;
  background: var(--green-muted);
  border-radius: var(--radius-xl);
  z-index: -1;
  border: 2px solid rgba(91,181,67,0.2);
}
.intro-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 34px;
}
.pillar-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}
.pillar-card:hover {
  border-left-color: var(--green);
  background: var(--cream-2);
}
.pillar-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
}
.pillar-icon img { width: 22px; height: 22px; }
.pillar-card h4 { font-size: 15px; margin-bottom: 4px; font-weight: 600; }
.pillar-card p  { font-size: 13.5px; color: var(--slate); line-height: 1.65; }

/* ── WHY CHOOSE US ── */
.why-grid-duo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  margin-top: 56px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.why-grid-duo-divider {
  width: 1px;
  background: var(--border);
  margin: 8px 0;
}
.why-card-duo {
  padding: 12px 44px;
  position: relative;
}
.why-card-duo-icon {
  width: 52px; height: 52px;
  background: var(--green-muted-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: background 0.25s, transform 0.25s;
}
.why-card-duo-icon img { width: 24px; height: 24px; }
.why-card-duo:hover .why-card-duo-icon { background: var(--green-muted); transform: scale(1.08); }
.why-card-duo h3 { font-size: 21px; margin-bottom: 12px; font-weight: 600; }
.why-card-duo p  { font-size: 15px; color: var(--slate); line-height: 1.7; }
@media (max-width: 700px) {
  .why-grid-duo { grid-template-columns: 1fr; }
  .why-grid-duo-divider { width: 100%; height: 1px; margin: 24px 0; }
  .why-card-duo { padding: 0; }
}
.why-section { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card-icon {
  width: 52px; height: 52px;
  background: var(--dark);
  color: #fff;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: background 0.25s;
}
.why-card:hover .why-card-icon { background: var(--green); }
.why-card h3 { font-size: 18px; margin-bottom: 10px; font-weight: 600; }
.why-card p  { font-size: 14px; color: var(--slate); line-height: 1.7; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transition: width 0.4s ease;
}
.service-card:hover { box-shadow: var(--shadow-hover); border-color: transparent; transform: translateY(-4px); }
.service-card:hover::after { width: 100%; }
.service-card-icon { font-size: 40px; margin-bottom: 24px; }
.service-card-icon img { width: 40px; height: 40px; }
.service-card h3  { font-size: 23px; margin-bottom: 12px; font-weight: 600; }
.service-card p   { color: var(--slate); font-size: 15px; line-height: 1.78; margin-bottom: 28px; }
.service-link {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  letter-spacing: 0.3px;
}
.service-link:hover { gap: 12px; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--dark); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-label { color: var(--green-light); }
.testimonials-section .section-label::before { background: var(--green-light); }
.testimonials-section .section-sub { color: rgba(255,255,255,0.52); }
.testimonials-slider { margin-top: 48px; position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.55s cubic-bezier(.4,0,.2,1); }
.testimonial-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(91,181,67,0.25);
}
.testimonial-card .quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 72px;
  color: var(--green);
  line-height: 0.5;
  margin-bottom: 22px;
  display: block;
  opacity: 0.7;
}
.testimonial-card p {
  color: rgba(255,255,255,0.78);
  font-size: 14.5px;
  line-height: 1.82;
  margin-bottom: 26px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
  box-shadow: 0 0 0 3px rgba(91,181,67,0.2);
}
.testimonial-author strong { display: block; color: var(--white); font-size: 14.5px; font-family: 'Plus Jakarta Sans'; }
.testimonial-author span  { font-size: 12.5px; color: var(--green-light); }
.slider-controls { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.slider-dot.active { background: var(--green); width: 32px; border-radius: 4px; }

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.team-card-img { height: 268px; overflow: hidden; background: var(--cream); }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s; }
.team-card:hover .team-card-img img { transform: scale(1.06); }
.team-card-info {
  padding: 20px 24px;
  border-top: 3px solid var(--green);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.team-card-info h4   { font-size: 16.5px; font-weight: 600; }
.team-card-info span { font-size: 13px; color: var(--slate); }
.team-card-bio {
  font-size: 12.5px;
  color: var(--text-body);
  line-height: 1.6;
  margin-top: 8px;
}
.team-card-phone {
  display: block;
  font-size: 12.5px;
  color: var(--slate);
  margin-top: 6px;
}
.team-card-email {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--green-dark);
  font-weight: 600;
  word-break: break-all;
  transition: color 0.2s;
}
.team-card-email:hover { color: var(--green); text-decoration: underline; }

/* ── BLOG ── */
.blog-section { background: var(--cream); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s; }
.blog-card:hover .blog-card-img img { transform: scale(1.07); }
.blog-card-body { padding: 26px 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-muted-2);
  border: 1px solid rgba(91,181,67,0.2);
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
}
.blog-card-body h3 { font-size: 16px; line-height: 1.45; font-weight: 600; }
.blog-card-body h3 a { color: var(--text-dark); transition: color 0.2s; }
.blog-card-body h3 a:hover { color: var(--green); }
.blog-card-body p { font-size: 13.5px; color: var(--slate); line-height: 1.68; flex: 1; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255,255,255,0.06);
  transform: skewX(-20deg);
  animation: shimmer 6s infinite linear;
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 20%;
  height: 200%;
  background: rgba(255,255,255,0.04);
  transform: skewX(-20deg);
  animation: shimmer 6s 2s infinite linear;
}
.cta-banner h2 { color: var(--white); font-size: clamp(26px, 4vw, 46px); margin-bottom: 16px; font-weight: 700; position: relative; z-index: 1; }
.cta-banner p  { color: rgba(255,255,255,0.88); font-size: 18px; margin-bottom: 40px; position: relative; z-index: 1; }
.cta-banner .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── FOOTER ── */
.footer { background: #0B1D11; padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 14px; line-height: 1.82;
  margin: 16px 0 24px; max-width: 280px;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 700;
  color: var(--white);
  display: flex; align-items: center; gap: 10px;
}
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: rgba(255,255,255,0.45);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s;
}
.footer-socials a:hover {
  transform: translateY(-3px) scale(1.1);
  border-color: transparent;
}
.footer-col h5 {
  color: var(--white);
  font-family: 'Plus Jakarta Sans';
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  transition: color 0.2s, padding-left 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: '›';
  font-size: 16px;
  color: var(--green);
  opacity: 0;
  transition: opacity 0.2s;
}
.footer-col ul li a:hover { color: var(--green-light); padding-left: 4px; }
.footer-col ul li a:hover::before { opacity: 1; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-item .icon {
  font-size: 15px;
  margin-top: 1px;
  color: var(--green);
  flex-shrink: 0;
}
.footer-contact-item span,
.footer-contact-item a { color: rgba(255,255,255,0.45); font-size: 13.5px; line-height: 1.6; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--green-light); }
.footer-bottom {
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.38); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--green-light); }

/* ── SOCIAL HOVER COLORS ── */
.footer-socials a[title="Facebook"]:hover  { background: #1877F2 !important; color: #fff !important; }
.footer-socials a[title="Twitter"]:hover   { background: #1DA1F2 !important; color: #fff !important; }
.footer-socials a[title="Instagram"]:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888) !important; color: #fff !important; }
.footer-socials a[title="YouTube"]:hover   { background: #FF0000 !important; color: #fff !important; }
.footer-socials a[title="WhatsApp"]:hover  { background: #25D366 !important; color: #fff !important; }
.footer-socials a[title="Email"]:hover     { background: #EA4335 !important; color: #fff !important; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2A5C3F 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91,181,67,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,181,67,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(32px, 5vw, 56px); margin-bottom: 12px; font-weight: 700; letter-spacing: -0.5px; }
.page-hero p  { color: rgba(255,255,255,0.68); font-size: 18px; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  color: rgba(255,255,255,0.4); font-size: 13px; margin-bottom: 16px;
}
.breadcrumb a { color: var(--green-light); }
.breadcrumb span { color: rgba(255,255,255,0.2); }

/* ── SERVICES LIST ── */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 48px;
}
.service-list-card {
  display: flex; gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all 0.3s;
}
.service-list-card:hover { box-shadow: var(--shadow-hover); border-color: var(--green); transform: translateY(-3px); }
.service-list-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: var(--green-muted-2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  transition: background 0.25s;
}
.service-list-icon img { width: 26px; height: 26px; }
.service-list-card:hover .service-list-icon { background: var(--green-muted); }
.service-list-card h3 { font-size: 17px; margin-bottom: 8px; font-weight: 600; }
.service-list-card p  { font-size: 14px; color: var(--slate); line-height: 1.65; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px; align-items: start;
}
.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius-lg); padding: 44px 36px;
  color: var(--white);
  transition: box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(91,181,67,0.07);
  border-radius: 50%;
}
.contact-info-card:hover { box-shadow: 0 20px 56px rgba(91,181,67,0.18); }
.contact-info-card h3 { color: var(--white); font-size: 24px; margin-bottom: 8px; font-weight: 600; position: relative; }
.contact-info-card > p { color: rgba(255,255,255,0.52); font-size: 14.5px; margin-bottom: 36px; line-height: 1.72; position: relative; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(91,181,67,0.14);
  border: 1px solid rgba(91,181,67,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-detail strong { display: block; color: var(--green-light); font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.contact-detail span, .contact-detail a { color: rgba(255,255,255,0.72); font-size: 14px; line-height: 1.6; }
.contact-detail a:hover { color: var(--green-light); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg); padding: 44px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 { font-size: 26px; margin-bottom: 8px; font-weight: 600; }
.contact-form-wrap > p { color: var(--slate); font-size: 15px; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 12.5px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 7px;
  letter-spacing: 0.3px; text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(91,181,67,0.13);
  background: var(--white);
  transform: translateY(-1px);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-check { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 24px; }
.form-check input { width: auto; margin-top: 3px; accent-color: var(--green); }
.form-check label { font-size: 13px; color: var(--slate); }
.form-success {
  display: none; background: #d1fae5; color: #065f46;
  padding: 14px 18px; border-radius: 10px; font-size: 14px; margin-bottom: 16px;
  border: 1px solid #a7f3d0;
}

/* ── GET QUOTE ── */
.quote-section { background: var(--cream); }
.quote-wrap {
  max-width: 820px; margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl); padding: 60px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.quote-wrap h2 { font-size: 32px; margin-bottom: 8px; font-weight: 600; }
.quote-wrap > p { color: var(--slate); margin-bottom: 36px; }

/* ── ABOUT PAGE ── */
.about-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-intro-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-hover); }
.about-intro-img img { width: 100%; height: 500px; object-fit: cover; }
.about-badges { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.about-badge {
  display: flex; align-items: center; gap: 16px;
  background: var(--cream); border-radius: var(--radius);
  padding: 16px 20px; border-left: 4px solid var(--green);
  transition: background 0.2s, box-shadow 0.2s;
}
.about-badge:hover { background: var(--cream-2); box-shadow: var(--shadow-sm); }
.about-badge strong { display: block; font-size: 15px; color: var(--text-dark); }
.about-badge span   { font-size: 13px; color: var(--slate); }

/* ── BLOG MAGAZINE LAYOUT ── */
.blog-featured {
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-featured:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.blog-featured-img { position: relative; height: 490px; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,26,16,0.93) 0%, rgba(10,26,16,0.45) 55%, rgba(10,26,16,0.08) 100%);
}
.blog-featured-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 44px; }
.blog-featured-content h2 { color: var(--white); font-size: clamp(22px, 3vw, 36px); font-weight: 700; margin: 12px 0 10px; line-height: 1.2; letter-spacing: -0.3px; }
.blog-featured-content p  { color: rgba(255,255,255,0.72); font-size: 15px; max-width: 640px; line-height: 1.72; margin-bottom: 20px; }
.blog-sub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.blog-sub-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-sub-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.blog-sub-img { height: 210px; overflow: hidden; }
.blog-sub-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s; }
.blog-sub-card:hover .blog-sub-img img { transform: scale(1.06); }
.blog-sub-body { padding: 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-sub-body h3 { font-size: 17px; font-weight: 600; color: var(--text-dark); line-height: 1.38; }
.blog-sub-body p  { font-size: 14px; color: var(--slate); line-height: 1.65; flex: 1; }
.blog-read-more   { display: inline-block; font-size: 13px; font-weight: 700; color: var(--green); letter-spacing: 0.3px; }
.blog-featured-content .blog-read-more { color: var(--green-light); }

/* ── ANIMATIONS ── */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { left: -60%; }
  100% { left: 130%; }
}

/* ── SCROLL REVEAL ── */
.reveal       { opacity: 0; transform: translateY(36px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
.reveal:nth-child(1) { transition-delay: 0.0s; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ── BACK TO TOP ── */
#backToTop {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 46px; height: 46px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(91,181,67,0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}
#backToTop.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
#backToTop:hover   { background: var(--green-dark); transform: translateY(-3px); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .team-grid   { grid-template-columns: repeat(2, 1fr); }
  .intro-grid  { gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--cream);
    padding: 20px 24px; box-shadow: var(--shadow-md);
    z-index: 999; gap: 4px;
    border-top: 1px solid var(--border);
  }
  .nav-links.mobile-open .nav-cta {
    display: block;
    margin: 10px 0 0;
    width: 100%;
  }
  .nav-links.mobile-open .nav-cta .btn-primary {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .nav-dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 12px; }
  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown.open .nav-dropdown-menu  { display: block; }
  .hero { min-height: auto; padding: 70px 0 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hero-badge { margin-bottom: 18px; }
  .hero h1 { margin-bottom: 14px; }
  .hero-typed { margin-bottom: 10px; }
  .hero-sub { margin-bottom: 26px; }
  .hero-btns { margin-top: 4px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child, .stat-item:nth-child(3) { border-bottom: none; }
  .intro-grid         { grid-template-columns: 1fr; gap: 48px; }
  .intro-img-badge    { left: 0; }
  .why-grid           { grid-template-columns: 1fr; }
  .services-grid      { grid-template-columns: 1fr; }
  .testimonial-slide  { grid-template-columns: 1fr; }
  .team-grid          { grid-template-columns: 1fr 1fr; }
  .blog-grid          { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; }
  .contact-grid       { grid-template-columns: 1fr; }
  .about-intro-grid   { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; }
  .services-list      { grid-template-columns: 1fr; }
  .quote-wrap         { padding: 36px 24px; }
  .footer-bottom      { flex-direction: column; gap: 8px; text-align: center; }
  .blog-featured-img  { height: 340px; }
  .blog-featured-content { padding: 24px; }
  .blog-sub-grid      { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px; /* prevents iOS Safari from auto-zooming on focus */
  }
  .subcategory-add-row {
    flex-direction: column;
  }
  .subcategory-add-row .subcategory-input {
    width: 100%;
  }
  .subcategory-add-row button {
    width: 100%;
  }
  .subcategory-chip {
    font-size: 13.5px;
    padding: 7px 10px 7px 14px;
  }
  .subcategory-chip button {
    font-size: 18px;
    padding: 0 6px;
  }
  .team-grid  { grid-template-columns: 1fr; }
  .hero-btns  { flex-direction: column; align-items: center; }
  .hero h1    { font-size: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── ADMIN: ACTION LINKS & STATUS BADGES ── */
.action-link {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  margin-right: 6px;
  margin-bottom: 4px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.action-edit   { background: rgba(59,130,246,0.12);  color: #2563eb; }
.action-edit:hover   { background: rgba(59,130,246,0.22); }
.action-view   { background: rgba(91,181,67,0.14);  color: var(--green-dark); }
.action-view:hover   { background: rgba(91,181,67,0.24); }
.action-pdf    { background: rgba(168,85,247,0.12); color: #7e22ce; }
.action-pdf:hover    { background: rgba(168,85,247,0.22); }
.action-delete { background: rgba(239,68,68,0.12);  color: #b91c1c; }
.action-delete:hover { background: rgba(239,68,68,0.22); }
.action-restore { background: rgba(91,181,67,0.14); color: var(--green-dark); }
.action-restore:hover { background: rgba(91,181,67,0.24); }

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: capitalize;
  background: var(--cream-2);
  color: var(--text-dark);
}
.status-new         { background: rgba(59,130,246,0.14);  color: #2563eb; }
.status-pending     { background: rgba(234,179,8,0.16);   color: #a16207; }
.status-approved    { background: rgba(91,181,67,0.16);   color: var(--green-dark); }
.status-rejected    { background: rgba(239,68,68,0.14);   color: #b91c1c; }
.status-reviewed    { background: rgba(234,179,8,0.16);   color: #a16207; }
.status-shortlisted { background: rgba(168,85,247,0.14);  color: #7e22ce; }
.status-placed      { background: rgba(91,181,67,0.16);   color: var(--green-dark); }
.status-contacted   { background: rgba(59,130,246,0.14);  color: #2563eb; }
.status-quoted      { background: rgba(234,179,8,0.16);   color: #a16207; }
.status-converted   { background: rgba(91,181,67,0.16);   color: var(--green-dark); }
.status-closed      { background: rgba(107,122,112,0.16); color: var(--slate); }
.status-archived    { background: rgba(107,122,112,0.16); color: var(--slate); }

/* ── SUBCATEGORY TAGS ── */
.subcategory-chips { display: flex; flex-wrap: wrap; gap: 8px; min-height: 4px; }
.subcategory-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-muted);
  color: var(--green-dark);
  padding: 5px 8px 5px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.subcategory-chip button {
  background: none;
  border: none;
  color: var(--green-dark);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  opacity: 0.7;
}
.subcategory-chip button:hover { opacity: 1; }
