/* ============================================
   KAII REALTY – GLOBAL CSS
   Brand: #99d3a0 (Green) | #fd9d36 (Orange)
   Fonts: Playfair Display + Poppins
============================================ */

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

:root {
  --green:      #99d3a0;
  --green-dark: #6db87a;
  --orange:     #fd9d36;
  --orange-dark:#e0841a;
  --charcoal:   #1C1C1E;
  --beige:      #F5F0EA;
  --white:      #ffffff;
  --grey:       #6B6B6B;
  --light-grey: #f9f9f9;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.12);
  --radius:     14px;
  --radius-lg:  20px;
}

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

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

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

/* ============================================
   TYPOGRAPHY UTILITIES
============================================ */
.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--grey);
  max-width: 600px;
  line-height: 1.75;
}

/* ============================================
   LAYOUT
============================================ */
.section { padding: 96px 0; }
.section-alt { background: var(--beige); }
.section-dark {
  background: linear-gradient(135deg, #0f2c14, #1a4a24);
  color: var(--white);
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(153,211,160,0.2);
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}

.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--orange); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================
   BUTTONS
============================================ */
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(253,157,54,0.35);
  cursor: pointer;
  border: none;
  font-family: 'Poppins', sans-serif;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(253,157,54,0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(153,211,160,0.5);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: rgba(153,211,160,0.1);
  border-color: var(--green);
  transform: translateY(-2px);
}

.btn-secondary-dark {
  background: transparent;
  color: var(--charcoal);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(28,28,30,0.3);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary-dark:hover {
  background: rgba(28,28,30,0.06);
  border-color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--orange-dark);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.3s;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all 0.3s;
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

/* ============================================
   PAGE HERO (for inner pages)
============================================ */
.page-hero {
  background: linear-gradient(135deg, #0f2c14 0%, #1a4a24 40%, #1c3a10 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(253,157,54,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(153,211,160,0.1) 0%, transparent 50%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(153,211,160,0.15);
  border: 1px solid rgba(153,211,160,0.3);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero h1 span { color: var(--orange); }

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
}

.breadcrumb a { color: var(--green); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb i { font-size: 0.65rem; }

/* ============================================
   TRUST BAR
============================================ */
.trust-bar {
  background: var(--beige);
  padding: 28px 0;
  border-bottom: 1px solid rgba(153,211,160,0.2);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
}

.trust-item i { color: var(--green-dark); font-size: 1rem; }

.trust-divider {
  width: 1px; height: 30px;
  background: rgba(0,0,0,0.12);
}

/* ============================================
   SERVICE CARDS
============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(153,211,160,0.2);
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(153,211,160,0.2);
  border-color: var(--green);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.service-card:hover .service-icon { transform: scale(1.1); }

.si-green { background: rgba(153,211,160,0.15); color: var(--green-dark); }
.si-orange { background: rgba(253,157,54,0.12); color: var(--orange-dark); }

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.service-card p {
  font-size: 0.87rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.service-link:hover { gap: 10px; }

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(153,211,160,0.15);
  position: relative;
}

.testi-quote {
  font-size: 3.5rem;
  color: var(--green);
  font-family: 'Playfair Display', serif;
  line-height: 0.5;
  margin-bottom: 16px;
  opacity: 0.4;
}

.testi-text {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}

.av-green { background: var(--green-dark); }
.av-orange { background: var(--orange); }
.av-dark { background: var(--charcoal); }
.av-blue { background: #3b82f6; }
.av-purple { background: #7c3aed; }

.testi-info h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.testi-info span { font-size: 0.78rem; color: var(--grey); }

.testi-stars {
  position: absolute;
  top: 28px; right: 28px;
  color: var(--orange);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

/* ============================================
   CONTACT FORM
============================================ */
.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(153,211,160,0.15);
}

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

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

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(153,211,160,0.3);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-dark); }

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

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(253,157,54,0.3);
}

.form-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(253,157,54,0.4);
}

/* ============================================
   CTA BANNER
============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #e07820 100%);
  border-radius: 24px;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 250px; height: 250px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 30%;
  width: 180px; height: 180px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 12px;
}

.cta-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* ============================================
   NEWSLETTER SECTION
============================================ */
.newsletter-section {
  background: linear-gradient(135deg, #0f2c14, #1a4a24);
  padding: 80px 0;
}

.newsletter-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-inner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.newsletter-inner p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 50px;
  border: 1.5px solid rgba(153,211,160,0.3);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--green); }

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--charcoal);
  padding: 72px 0 0;
}

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

.footer-brand p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin: 16px 0 24px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-socials { display: flex; gap: 10px; }

.footer-social {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.footer-social:hover { background: var(--green); color: var(--white); }

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--green); }
.footer-links i { font-size: 0.7rem; color: var(--orange); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item i {
  color: var(--green);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: var(--green); }

/* ============================================
   FLOATING WHATSAPP
============================================ */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: float-pulse 2.5s infinite;
}

.float-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.65); }
}

/* ============================================
   ANIMATIONS
============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ICON COLOR HELPERS
============================================ */
.icon-green { background: rgba(153,211,160,0.2); color: var(--green); }
.icon-orange { background: rgba(253,157,54,0.2); color: var(--orange); }

/* ============================================
   STATS ROW
============================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.stat-box {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(153,211,160,0.2);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.stat-box:hover { transform: translateY(-4px); }

.stat-box .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-box .label {
  font-size: 0.85rem;
  color: var(--grey);
  font-weight: 500;
}

/* ============================================
   WHATSAPP CTA
============================================ */
.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}

/* ============================================
   BACKED CARDS
============================================ */
.backed-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(153,211,160,0.15);
  transition: transform 0.3s;
}

.backed-card:hover { transform: translateY(-6px); }

.backed-logo {
  width: 72px; height: 72px;
  border-radius: 16px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.backed-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.backed-card p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ============================================
   PROJECT CARDS
============================================ */
.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  background: var(--white);
}

.project-card:hover { transform: translateY(-6px); }

.project-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.4);
  position: relative;
}

.project-status {
  position: absolute;
  top: 16px; left: 16px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.status-ongoing { background: var(--orange); color: var(--white); }
.status-upcoming { background: var(--green-dark); color: var(--white); }
.status-completed { background: var(--charcoal); color: var(--white); }

.project-body { padding: 24px; }

.project-body h3 {
  font-size: 1.05rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
}

.project-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.project-meta span {
  font-size: 0.78rem;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 4px;
}

.project-meta i { color: var(--green-dark); font-size: 0.72rem; }

.project-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.project-link:hover { gap: 10px; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

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

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 999;
  }

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

  .cta-banner {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    text-align: center;
  }

  .cta-btns { flex-direction: row; justify-content: center; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .newsletter-form { flex-direction: column; }

  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cta-btns { flex-direction: column; }
}

/* ============================================
   PROJECTS PAGE (filter bar + full project cards)
============================================ */
.filter-bar { display:flex; gap:12px; margin-bottom:40px; flex-wrap:wrap; }
.filter-btn { padding:10px 22px; border-radius:50px; font-family:'Poppins',sans-serif; font-size:0.85rem; font-weight:600; cursor:pointer; border:2px solid rgba(153,211,160,0.3); background:transparent; color:var(--charcoal); transition:all 0.3s; }
.filter-btn:hover, .filter-btn.active { background:var(--orange); color:#fff; border-color:var(--orange); }
.projects-full-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.project-card-full { border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); transition:transform 0.3s; background:var(--white); border:1px solid rgba(153,211,160,0.12); }
.project-card-full:hover { transform:translateY(-6px); box-shadow:0 20px 56px rgba(0,0,0,0.12); }
.project-img-full { height:240px; display:flex; align-items:center; justify-content:center; font-size:3.5rem; color:rgba(255,255,255,0.35); position:relative; overflow: hidden; }
.project-img-full img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.project-body-full { padding:28px; }
.project-body-full h3 { font-size:1.1rem; font-family:'Poppins',sans-serif; font-weight:600; margin-bottom:8px; }
.project-desc { font-size:0.86rem; color:var(--grey); line-height:1.7; margin-bottom:16px; }
.project-specs { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:20px; }
.project-spec { background:var(--beige); border-radius:8px; padding:10px 12px; font-size:0.78rem; }
.project-spec span { color:var(--grey); display:block; font-size:0.7rem; margin-bottom:2px; }
.project-spec strong { color:var(--charcoal); font-weight:600; }
.projects-empty { text-align: center; padding: 80px 20px; }
.projects-empty i { font-size: 3rem; color: rgba(153,211,160,0.4); margin-bottom: 16px; display: block; }
.projects-empty p { color: var(--grey); font-size: 0.95rem; }
@media (max-width:1024px) { .projects-full-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:768px) { .projects-full-grid { grid-template-columns:1fr; } }

/* ============================================
   PAGINATION
============================================ */
.kaii-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 56px; flex-wrap: wrap; }
.kaii-pagination a, .kaii-pagination span {
  display: flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 14px;
  border-radius: 10px; font-size: 0.88rem; font-weight: 600;
  color: var(--charcoal); background: var(--white);
  border: 1.5px solid rgba(153,211,160,0.25); transition: all 0.2s;
}
.kaii-pagination a:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.kaii-pagination span.current { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }
.kaii-pagination span.dots { border: none; background: none; }

/* ============================================
   ABOUT PAGE (story / team / values / milestones)
============================================ */
.story-grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.story-img { border-radius:20px; aspect-ratio:4/5; overflow:hidden; background:linear-gradient(135deg,#0f2c14,#1a4a24); display:flex; align-items:center; justify-content:center; position:relative; }
.story-img img { width:100%; height:100%; object-fit:cover; border-radius:20px; }
.story-img-placeholder { font-size:5rem; color:rgba(153,211,160,0.3); }
.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; margin-top:56px; }
.team-card { background:var(--white); border-radius:20px; overflow:hidden; box-shadow:var(--shadow); border:1px solid rgba(153,211,160,0.15); transition:transform 0.3s; }
.team-card:hover { transform:translateY(-6px); }
.team-photo { height:260px; background:linear-gradient(135deg,#1a4a24,#0f2c14); display:flex; align-items:center; justify-content:center; font-size:4rem; color:rgba(153,211,160,0.3); position:relative; }
.team-photo.founder-photo { background:none; }
.team-photo.founder-photo img { width:100%; height:100%; object-fit:cover; object-position:top; }
.team-body { padding:24px; }
.team-body h3 { font-size:1.1rem; font-family:'Poppins',sans-serif; font-weight:600; margin-bottom:4px; }
.team-body .role { font-size:0.82rem; color:var(--orange); font-weight:600; margin-bottom:10px; display:block; }
.team-body p { font-size:0.84rem; color:var(--grey); line-height:1.7; }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:56px; }
.value-card { background:var(--white); border-radius:var(--radius); padding:32px; border:1px solid rgba(153,211,160,0.2); text-align:center; transition:all 0.35s; position:relative; overflow:hidden; }
.value-card::before { content:''; position:absolute; top:0;left:0; width:100%; height:3px; background:linear-gradient(90deg,var(--green),var(--orange)); transform:scaleX(0); transform-origin:left; transition:transform 0.35s; }
.value-card:hover { transform:translateY(-6px); box-shadow:0 16px 48px rgba(153,211,160,0.2); }
.value-card:hover::before { transform:scaleX(1); }
.value-icon { width:64px; height:64px; border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:1.5rem; margin:0 auto 20px; }
.value-card h3 { font-size:1rem; font-family:'Poppins',sans-serif; font-weight:600; margin-bottom:10px; }
.value-card p { font-size:0.85rem; color:var(--grey); line-height:1.7; }
.milestones { display:flex; flex-direction:column; gap:0; position:relative; margin-top:56px; }
.milestones::before { content:''; position:absolute; left:28px; top:0; bottom:0; width:2px; background:linear-gradient(180deg,var(--green),var(--orange)); }
.milestone { display:flex; gap:28px; padding:0 0 40px 0; position:relative; }
.milestone-dot { width:58px; height:58px; border-radius:50%; background:var(--white); border:3px solid var(--green); display:flex; align-items:center; justify-content:center; font-weight:700; font-family:'Playfair Display',serif; color:var(--green-dark); flex-shrink:0; font-size:0.85rem; z-index:1; box-shadow:0 4px 12px rgba(153,211,160,0.3); }
.milestone-dot.orange { border-color:var(--orange); color:var(--orange); }
.milestone-content { padding-top:12px; }
.milestone-content h4 { font-family:'Poppins',sans-serif; font-size:1rem; font-weight:600; margin-bottom:6px; }
.milestone-content p { font-size:0.87rem; color:var(--grey); line-height:1.7; }
@media (max-width:768px) { .story-grid { grid-template-columns:1fr; } .story-img { display:none; } .team-grid { grid-template-columns:1fr; } .values-grid { grid-template-columns:1fr; } }
@media (max-width:1024px) { .team-grid { grid-template-columns:1fr 1fr; } .values-grid { grid-template-columns:1fr 1fr; } }

/* ============================================
   SERVICES PAGE
============================================ */
.services-full-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; margin-top:56px; }
.service-full-card { background:var(--white); border-radius:20px; padding:40px; border:1px solid rgba(153,211,160,0.2); transition:all 0.35s; display:flex; gap:28px; position:relative; overflow:hidden; }
.service-full-card::before { content:''; position:absolute; top:0;left:0; width:3px; height:100%; background:linear-gradient(180deg,var(--green),var(--orange)); transform:scaleY(0); transform-origin:top; transition:transform 0.35s; }
.service-full-card:hover { transform:translateY(-4px); box-shadow:0 16px 48px rgba(153,211,160,0.15); border-color:var(--green); }
.service-full-card:hover::before { transform:scaleY(1); }
.service-full-icon { width:72px; height:72px; border-radius:18px; display:flex; align-items:center; justify-content:center; font-size:1.8rem; flex-shrink:0; }
.service-full-body h3 { font-size:1.2rem; font-family:'Poppins',sans-serif; font-weight:600; margin-bottom:10px; }
.service-full-body p { font-size:0.88rem; color:var(--grey); line-height:1.75; margin-bottom:16px; }
.service-features { display:flex; flex-direction:column; gap:8px; }
.service-feature { display:flex; align-items:center; gap:10px; font-size:0.83rem; color:var(--charcoal); }
.service-feature i { color:var(--green-dark); font-size:0.75rem; }
.process-section { background:linear-gradient(135deg,#0f2c14,#1a4a24); padding:96px 0; }
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:28px; margin-top:56px; position:relative; }
.process-step { text-align:center; padding:32px 20px; position:relative; }
.process-num { width:64px; height:64px; border-radius:50%; background:rgba(253,157,54,0.15); border:2px solid rgba(253,157,54,0.3); color:var(--orange); font-family:'Playfair Display',serif; font-size:1.3rem; font-weight:700; display:flex; align-items:center; justify-content:center; margin:0 auto 20px; }
.process-step h4 { font-family:'Poppins',sans-serif; font-size:0.95rem; font-weight:600; color:var(--white); margin-bottom:10px; }
.process-step p { font-size:0.83rem; color:rgba(255,255,255,0.55); line-height:1.7; }
@media (max-width:768px) { .services-full-grid { grid-template-columns:1fr; } .process-steps { grid-template-columns:1fr 1fr; } }
@media (max-width:1024px) { .services-full-grid { grid-template-columns:1fr; } .process-steps { grid-template-columns:1fr 1fr; } }

/* ============================================
   PRICING PAGE
============================================ */
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:56px; }
.pricing-card { background:var(--white); border-radius:20px; padding:40px 32px; border:1.5px solid rgba(153,211,160,0.2); transition:all 0.35s; position:relative; overflow:hidden; }
.pricing-card:hover { transform:translateY(-8px); box-shadow:0 20px 60px rgba(0,0,0,0.1); }
.pricing-card.featured { border-color:var(--orange); background:linear-gradient(135deg,#fff9f2,#fff); }
.featured-badge { position:absolute; top:0; right:0; background:var(--orange); color:#fff; font-size:0.72rem; font-weight:700; letter-spacing:1px; padding:8px 20px; border-radius:0 20px 0 12px; }
.pricing-icon { width:64px; height:64px; border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:1.6rem; margin-bottom:20px; }
.pricing-card h3 { font-size:1.2rem; font-family:'Poppins',sans-serif; font-weight:700; margin-bottom:8px; }
.pricing-card .tagline { font-size:0.83rem; color:var(--grey); margin-bottom:24px; }
.pricing-amount { margin-bottom:28px; padding-bottom:28px; border-bottom:1px solid rgba(153,211,160,0.2); }
.pricing-amount .from { font-size:0.78rem; color:var(--grey); margin-bottom:4px; display:block; }
.pricing-amount .amount { font-family:'Playfair Display',serif; font-size:2.4rem; font-weight:700; color:var(--charcoal); }
.pricing-amount .currency { font-size:1.2rem; color:var(--grey); vertical-align:top; margin-top:8px; display:inline-block; }
.pricing-amount .period { font-size:0.83rem; color:var(--grey); }
.pricing-features { display:flex; flex-direction:column; gap:12px; margin-bottom:32px; }
.pricing-feature { display:flex; align-items:center; gap:12px; font-size:0.87rem; color:var(--charcoal); }
.pricing-feature i { width:20px; height:20px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.65rem; flex-shrink:0; }
.pf-yes { background:rgba(153,211,160,0.2); color:var(--green-dark); }
.pf-no { background:rgba(107,107,107,0.1); color:var(--grey); }
.pf-no span { color:var(--grey); text-decoration:line-through; }
.pricing-note { font-size:0.78rem; color:var(--grey); text-align:center; margin-top:16px; line-height:1.6; }
.compare-table { width:100%; border-collapse:collapse; margin-top:56px; border-radius:16px; overflow:hidden; box-shadow:var(--shadow); }
.compare-table th { background:linear-gradient(135deg,#0f2c14,#1a4a24); color:#fff; padding:18px 20px; font-family:'Poppins',sans-serif; font-size:0.88rem; font-weight:600; text-align:left; }
.compare-table th:not(:first-child) { text-align:center; }
.compare-table td { padding:16px 20px; border-bottom:1px solid rgba(153,211,160,0.12); font-size:0.87rem; }
.compare-table td:not(:first-child) { text-align:center; }
.compare-table tr:last-child td { border-bottom:none; }
.compare-table tr:nth-child(even) td { background:var(--beige); }
.check-yes { color:var(--green-dark); font-size:1rem; }
.check-no { color:#ccc; }
@media (max-width:1024px) { .pricing-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:768px) { .pricing-grid { grid-template-columns:1fr; } .compare-table { font-size:0.78rem; } }

/* ============================================
   BLOG PAGE
============================================ */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.blog-grid { display: flex; flex-direction: column; gap: 32px; }
.blog-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(153,211,160,0.12);
  transition: transform 0.3s, box-shadow 0.3s; display: grid; grid-template-columns: 280px 1fr;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 100%; min-height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: rgba(255,255,255,0.4); overflow: hidden; position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; top:0; left:0; }
.blog-card-body { padding: 28px; display: flex; flex-direction: column; justify-content: space-between; }
.blog-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-cat {
  background: rgba(153,211,160,0.12); color: var(--green-dark); border: 1px solid rgba(153,211,160,0.3);
  padding: 3px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.blog-cat.cat-orange { background: rgba(253,157,54,0.1); color: var(--orange-dark); border-color: rgba(253,157,54,0.3); }
.blog-date { font-size: 0.78rem; color: var(--grey); display: flex; align-items: center; gap: 5px; }
.blog-card-body h3 { font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 600; line-height: 1.5; margin-bottom: 10px; transition: color 0.2s; }
.blog-card-body h3 a { color: inherit; }
.blog-card:hover h3 { color: var(--orange); }
.blog-card-body p { font-size: 0.87rem; color: var(--grey); line-height: 1.75; margin-bottom: 20px; }
.blog-footer-row { display: flex; align-items: center; justify-content: space-between; }
.blog-author { display: flex; align-items: center; gap: 10px; }
.blog-author-avatar {
  width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; color: var(--white);
}
.blog-author-info { font-size: 0.78rem; color: var(--grey); }
.blog-author-info strong { display: block; font-weight: 600; color: var(--charcoal); font-size: 0.82rem; }
.read-more { font-size: 0.83rem; font-weight: 600; color: var(--orange); display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.read-more:hover { gap: 10px; }
.blog-featured {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(153,211,160,0.15); margin-bottom: 32px;
}
.blog-featured-img {
  height: 300px; background: linear-gradient(135deg, #0f2c14, #1a4a24, #fd9d36);
  display: flex; align-items: center; justify-content: center; font-size: 5rem; color: rgba(255,255,255,0.3); position: relative; overflow: hidden;
}
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.featured-badge {
  position: absolute; top: 20px; left: 20px; background: var(--orange); color: var(--white);
  font-size: 0.72rem; font-weight: 700; padding: 5px 14px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 1px; z-index: 2;
}
.blog-featured-body { padding: 32px; }
.blog-featured-body h2 { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; line-height: 1.4; }
.blog-featured-body h2 a { color: inherit; }
.blog-featured-body h2:hover { color: var(--orange); }
.blog-featured-body p { font-size: 0.92rem; color: var(--grey); line-height: 1.8; margin-bottom: 20px; }
.sidebar-widget { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border: 1px solid rgba(153,211,160,0.12); margin-bottom: 28px; }
.sidebar-widget h4 { font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--charcoal); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--orange); display: inline-block; }
.sidebar-cats { display: flex; flex-direction: column; gap: 8px; }
.sidebar-cat { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-radius: 8px; background: var(--beige); font-size: 0.85rem; font-weight: 500; transition: all 0.2s; cursor: pointer; }
.sidebar-cat:hover, .sidebar-cat.active { background: rgba(153,211,160,0.15); color: var(--green-dark); }
.sidebar-cat span { background: var(--orange); color: var(--white); font-size: 0.72rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; }
.recent-posts { display: flex; flex-direction: column; gap: 16px; }
.recent-post { display: flex; gap: 14px; align-items: flex-start; }
.recent-post-img { width: 60px; height: 60px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: rgba(255,255,255,0.5); overflow: hidden; position: relative; }
.recent-post-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.recent-post-text h5 { font-family: 'Poppins', sans-serif; font-size: 0.84rem; font-weight: 600; margin-bottom: 4px; line-height: 1.4; transition: color 0.2s; }
.recent-post-text h5 a { color: inherit; }
.recent-post-text h5:hover { color: var(--orange); cursor: pointer; }
.recent-post-text span { font-size: 0.75rem; color: var(--grey); }
.newsletter-widget input {
  width: 100%; padding: 12px 14px; border: 1.5px solid rgba(153,211,160,0.3); border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-size: 0.88rem; outline: none; margin-bottom: 10px; transition: border-color 0.2s;
}
.newsletter-widget input:focus { border-color: var(--green-dark); }
.newsletter-widget button {
  width: 100%; padding: 12px; background: var(--orange); color: var(--white); border: none; border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: background 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.newsletter-widget button:hover { background: var(--orange-dark); }
.blog-empty { text-align: center; padding: 60px 20px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.blog-empty i { font-size: 2.5rem; color: rgba(153,211,160,0.4); margin-bottom: 16px; display: block; }
.blog-empty p { color: var(--grey); }
.single-post-content { font-size: 0.98rem; color: var(--charcoal); line-height: 1.9; }
.single-post-content h2 { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 700; margin: 36px 0 14px; }
.single-post-content h3 { font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 600; margin: 28px 0 12px; }
.single-post-content p { margin-bottom: 18px; }
.single-post-content ul, .single-post-content ol { padding-left: 22px; margin-bottom: 18px; }
.single-post-content li { margin-bottom: 8px; line-height: 1.8; }
.single-post-content img { border-radius: var(--radius); margin: 24px 0; }
.single-post-content a { color: var(--orange); text-decoration: underline; }
.single-post-hero-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 40px; box-shadow: var(--shadow); }
.single-post-hero-img img { width: 100%; max-height: 440px; object-fit: cover; }
@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-card-img { min-height: 180px; height: 180px; }
}

/* ============================================
   FAQ PAGE
============================================ */
.faq-layout { display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: start; }
.faq-nav { position: sticky; top: 100px; }
.faq-nav-link {
  display: block; padding: 10px 16px; border-radius: 8px; font-size: 0.88rem; font-weight: 500;
  color: var(--charcoal); transition: all 0.2s; margin-bottom: 4px; border-left: 3px solid transparent;
}
.faq-nav-link:hover, .faq-nav-link.active { background: rgba(153,211,160,0.1); color: var(--green-dark); border-left-color: var(--green-dark); }
.faq-section { margin-bottom: 56px; }
.faq-section-title { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 2px; font-size: 0.78rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.faq-section-title::after { content: ''; flex: 1; height: 1px; background: rgba(153,211,160,0.2); }
.faq-item { border: 1px solid rgba(153,211,160,0.2); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--green-dark); box-shadow: 0 4px 20px rgba(153,211,160,0.12); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px;
  background: var(--white); border: none; cursor: pointer; font-family: 'Poppins', sans-serif;
  font-size: 0.95rem; font-weight: 600; color: var(--charcoal); text-align: left; gap: 16px; transition: background 0.2s;
}
.faq-question:hover { background: rgba(153,211,160,0.04); }
.faq-item.open .faq-question { color: var(--green-dark); background: rgba(153,211,160,0.06); }
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%; background: var(--beige); display: flex; align-items: center;
  justify-content: center; font-size: 0.8rem; color: var(--orange); flex-shrink: 0; transition: all 0.3s;
}
.faq-item.open .faq-icon { background: var(--green-dark); color: var(--white); transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 24px; }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 24px 20px; }
.faq-answer p { font-size: 0.9rem; color: var(--grey); line-height: 1.8; }
.faq-answer ul { list-style: disc; padding-left: 20px; margin-top: 8px; }
.faq-answer ul li { font-size: 0.9rem; color: var(--grey); line-height: 1.8; }
@media (max-width: 768px) { .faq-layout { grid-template-columns: 1fr; } .faq-nav { display: none; } }

/* ============================================
   LEGAL PAGES (privacy / terms)
============================================ */
.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: start; }
.legal-nav { position: sticky; top: 100px; background: var(--beige); border-radius: var(--radius); padding: 24px; }
.legal-nav p { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--grey); margin-bottom: 12px; }
.legal-nav a { display: block; font-size: 0.85rem; color: var(--charcoal); padding: 8px 0; border-bottom: 1px solid rgba(153,211,160,0.15); transition: color 0.2s; }
.legal-nav a:last-child { border-bottom: none; }
.legal-nav a:hover { color: var(--orange); }
.legal-content h2 { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--charcoal); margin: 40px 0 14px; padding-bottom: 10px; border-bottom: 2px solid rgba(153,211,160,0.2); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 0.92rem; color: var(--grey); line-height: 1.85; margin-bottom: 14px; }
.legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.legal-content ul li { font-size: 0.92rem; color: var(--grey); line-height: 1.85; margin-bottom: 6px; }
.legal-meta { background: var(--beige); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 36px; display: flex; align-items: center; gap: 12px; border-left: 4px solid var(--orange); }
.legal-meta i { color: var(--orange); }
.legal-meta p { margin: 0; font-size: 0.85rem; }
.legal-highlight { background: linear-gradient(135deg, rgba(153,211,160,0.08), rgba(253,157,54,0.05)); border: 1px solid rgba(153,211,160,0.2); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 20px; }
.legal-highlight p { margin: 0; font-size: 0.88rem; }
@media (max-width: 768px) { .legal-layout { grid-template-columns: 1fr; } .legal-nav { display: none; } }

/* ============================================
   CONTACT PAGE
============================================ */
.contact-info-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 72px; }
.contact-info-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 20px; text-align: center;
  box-shadow: var(--shadow); border: 1px solid rgba(153,211,160,0.15); transition: transform 0.3s;
}
.contact-info-card:hover { transform: translateY(-4px); }
.contact-info-icon {
  width: 56px; height: 56px; border-radius: 50%; background: rgba(153,211,160,0.12);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--green-dark); margin: 0 auto 16px;
}
.contact-info-icon.icon-orange { background: rgba(253,157,54,0.1); color: var(--orange-dark); }
.contact-info-card h4 { font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; }
.contact-info-card p { font-size: 0.85rem; color: var(--grey); line-height: 1.6; }
.contact-info-card a { color: var(--orange); font-weight: 500; }
.form-section-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.contact-sidebar h3 { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.office-card { background: var(--beige); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; border: 1px solid rgba(153,211,160,0.15); }
.office-card h4 { font-family: 'Poppins', sans-serif; font-size: 0.92rem; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.office-card h4 i { color: var(--green-dark); font-size: 0.85rem; }
.office-info { display: flex; flex-direction: column; gap: 8px; }
.office-info-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.84rem; color: var(--grey); }
.office-info-row i { color: var(--orange); font-size: 0.8rem; margin-top: 2px; flex-shrink: 0; }
.hours-table { width: 100%; font-size: 0.84rem; border-collapse: collapse; }
.hours-table td { padding: 6px 0; color: var(--grey); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--charcoal); }
.wa-large {
  width: 100%; padding: 16px; background: #25D366; color: var(--white); border: none; border-radius: 10px;
  font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none;
  transition: all 0.3s; box-shadow: 0 4px 16px rgba(37,211,102,0.3); margin-top: 20px;
}
.wa-large:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.map-placeholder {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9); border-radius: var(--radius-lg); height: 300px;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px;
  border: 1px solid rgba(153,211,160,0.3); margin-top: 20px; overflow: hidden;
}
.map-placeholder iframe { width: 100%; height: 100%; border: 0; }
.map-placeholder i { font-size: 3rem; color: var(--green-dark); opacity: 0.6; }
.map-placeholder p { font-size: 0.88rem; color: var(--grey); }
@media (max-width: 1024px) { .contact-info-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .form-section-grid { grid-template-columns: 1fr; } .contact-info-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .contact-info-cards { grid-template-columns: 1fr; } }

/* ============================================
   FORM SUBMIT FEEDBACK STATES (AJAX leads)
============================================ */
.form-message { display: none; padding: 14px 18px; border-radius: 10px; font-size: 0.88rem; font-weight: 500; margin-bottom: 18px; align-items: center; gap: 10px; }
.form-message.show { display: flex; }
.form-message.success { background: rgba(153,211,160,0.15); color: var(--green-dark); border: 1px solid rgba(153,211,160,0.4); }
.form-message.error { background: rgba(220,53,69,0.08); color: #c0392b; border: 1px solid rgba(220,53,69,0.25); }
.form-submit:disabled, .newsletter-form button:disabled { opacity: 0.65; cursor: not-allowed; }
.form-group .field-error { color: #c0392b; font-size: 0.78rem; margin-top: 4px; display: none; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #c0392b; }
.form-group.has-error .field-error { display: block; }

/* ============================================
   404 PAGE
============================================ */
.error-404-wrap { text-align: center; padding: 100px 20px; }
.error-404-wrap .error-num { font-family: 'Playfair Display', serif; font-size: 7rem; font-weight: 700; color: var(--green); line-height: 1; margin-bottom: 8px; }
.error-404-wrap h1 { font-size: 1.8rem; margin-bottom: 12px; }
.error-404-wrap p { color: var(--grey); max-width: 480px; margin: 0 auto 32px; }
