/* ============================================
   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);
  --radius:     14px;
}

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; }
}
