/* ==========================================
   WUDTECH INTERIOR — PREMIUM CSS
   Color Palette from Logo:
   Dark Wood Brown, Natural Greens, Beige
   ========================================== */

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

:root {
  --brown-dark:   #3B2507;
  --brown-mid:    #5C3910;
  --brown-light:  #7A4F1D;
  --green-dark:   #2A4A1F;
  --green-mid:    #3D6B2A;
  --green-light:  #5B9741;
  --olive:        #6E7C3A;
  --gold:         #C8961A;
  --beige:        #F5EFE4;
  --beige-dark:   #EDE4D3;
  --cream:        #FAF6EF;
  --white:        #FFFFFF;
  --text-dark:    #1E1409;
  --text-mid:     #4A3520;
  --text-light:   #7A6550;
  --shadow-sm:    0 2px 12px rgba(59,37,7,0.10);
  --shadow-md:    0 8px 32px rgba(59,37,7,0.14);
  --shadow-lg:    0 16px 56px rgba(59,37,7,0.18);
  --radius:       12px;
  --radius-lg:    20px;
  --trans:        all 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

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

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

em { font-style: italic; color: var(--green-mid); }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

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

section { padding: 80px 0; }

/* ---- SECTION LABELS & HEADINGS ---- */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}

.section-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown-dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 56px; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(45,90,35,0.3);
  transition: var(--trans);
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,90,35,0.4);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--trans);
}
.btn-secondary:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

.btn-secondary-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--trans);
}
.btn-secondary-light:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--green-dark);
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid var(--green-mid);
  cursor: pointer;
  transition: var(--trans);
}
.btn-outline:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--trans);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* ==========================================
   FLOATING BUTTONS
   ========================================== */
.float-wa, .float-call {
  position: fixed;
  right: 20px;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--trans);
  animation: floatPulse 2.5s ease-in-out infinite;
}
.float-wa { background: #25D366; bottom: 88px; }
.float-call { background: var(--green-dark); bottom: 28px; }
.float-wa svg, .float-call svg { width: 26px; height: 26px; }
.float-wa:hover, .float-call:hover { transform: scale(1.12) rotate(-5deg); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0.3); }
  50% { box-shadow: 0 4px 20px rgba(0,0,0,0.25), 0 0 0 10px rgba(37,211,102,0); }
}

/* ==========================================
   POPUP
   ========================================== */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(30,20,9,0.7);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.popup-overlay.active { opacity: 1; pointer-events: all; }

.popup-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  max-width: 480px; width: 100%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-lg);
}
.popup-overlay.active .popup-box { transform: scale(1) translateY(0); }

.popup-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  font-size: 1.6rem; color: var(--text-light);
  cursor: pointer; line-height: 1;
}
.popup-close:hover { color: var(--brown-dark); }

.popup-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #e0a820);
  color: #fff;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 50px;
  margin-bottom: 14px;
}

.popup-box h3 { font-size: 1.7rem; color: var(--brown-dark); margin-bottom: 8px; }
.popup-box p { color: var(--text-light); margin-bottom: 24px; }

.popup-form { display: flex; flex-direction: column; gap: 12px; }
.popup-form input, .popup-form select {
  padding: 12px 16px;
  border: 1.5px solid var(--beige-dark);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s;
}
.popup-form input:focus, .popup-form select:focus {
  outline: none;
  border-color: var(--green-mid);
  background: #fff;
}

/* ==========================================
   HEADER
   ========================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0;
  transition: var(--trans);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 24px rgba(59,37,7,0.12);
}

.header-inner {
  display: flex; align-items: center;
  gap: 24px;
  padding-top: 14px; padding-bottom: 14px;
}

.logo-img { height: 56px; width: auto; }

.main-nav {
  display: flex; align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 0.85rem; font-weight: 500;
  color: var(--white);
  padding: 6px 10px;
  border-radius: 6px;
  transition: var(--trans);
  white-space: nowrap;
}
.site-header.scrolled .main-nav a { color: var(--brown-dark); }
.main-nav a:hover { background: rgba(255,255,255,0.15); color: #fff; }
.site-header.scrolled .main-nav a:hover { background: var(--beige); color: var(--green-dark); }

.header-ctas { display: flex; gap: 8px; flex-shrink: 0; }

.btn-call-sm, .btn-wa-sm {
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-call-sm {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: #fff;
}
.btn-call-sm:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(45,90,35,0.35); }
.btn-wa-sm { background: #25D366; color: #fff; }
.btn-wa-sm:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,211,102,0.4); }

.hamburger {
  display: none; flex-direction: column;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--trans);
}
.site-header.scrolled .hamburger span { background: var(--brown-dark); }

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 0;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,15,5,0.82) 0%,
    rgba(42,74,31,0.6) 60%,
    rgba(30,15,5,0.7) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  padding-top: 100px;
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 50px;
  margin-bottom: 24px;
}

.hero-h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-accent {
  color: var(--green-light);
  position: relative;
}

.hero-sub {
  font-size: 1.2rem; color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}
.hero-tagline {
  font-size: 1rem; color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  font-style: italic;
}

.hero-trust {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.trust-badge {
  display: flex; flex-direction: column;
}
.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--green-light);
  line-height: 1;
}
.trust-badge span:last-child { font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.trust-sep { font-size: 1.5rem; color: rgba(255,255,255,0.3); }

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

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  text-align: center; color: rgba(255,255,255,0.5); font-size: 0.75rem;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  margin: 8px auto 0;
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop { 0% { opacity: 0; transform: scaleY(0) translateY(-10px); } 50% { opacity: 1; } 100% { opacity: 0; transform: scaleY(1) translateY(10px); } }

/* ==========================================
   ABOUT
   ========================================== */
.about-section { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px; align-items: center;
}

.about-img-wrap { position: relative; }
.about-img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; object-fit: cover;
}
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: #fff; border-radius: var(--radius);
  padding: 20px 24px; text-align: center;
  box-shadow: var(--shadow-md);
}
.badge-num { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; }

.about-rebrand {
  margin-bottom: 20px;
}
.rebrand-tag {
  background: var(--beige-dark);
  border-left: 3px solid var(--green-mid);
  padding: 8px 16px;
  font-size: 0.85rem; color: var(--brown-mid);
  display: inline-block; border-radius: 0 6px 6px 0;
  font-weight: 500;
}

.about-content p {
  color: var(--text-mid); margin-bottom: 16px; font-size: 1rem;
}

.founder-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-dark);
}
.founder-avatar img {
  width: 64px; height: 64px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.founder-info strong { display: block; font-size: 1rem; color: var(--brown-dark); }
.founder-info span { display: block; font-size: 0.8rem; color: var(--green-mid); margin-bottom: 6px; }
.founder-info p { font-size: 0.88rem; color: var(--text-light); font-style: italic; margin: 0; }

.about-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================
   SERVICES
   ========================================== */
.services-section { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-dark);
  transition: var(--trans);
  background: var(--white);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9;
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.06); }
.service-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,15,5,0.5), transparent 60%);
}
.service-icon {
  position: absolute; bottom: 14px; left: 14px;
  font-size: 1.8rem; line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.service-body { padding: 22px 24px 28px; }
.service-body h3 {
  font-size: 1.15rem; color: var(--brown-dark);
  margin-bottom: 10px;
}
.service-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }

.service-cta {
  display: inline-flex; align-items: center;
  background: none; border: none;
  color: var(--green-dark); font-weight: 600;
  font-size: 0.88rem; cursor: pointer;
  padding: 0;
  transition: var(--trans);
  font-family: 'DM Sans', sans-serif;
}
.service-cta:hover { color: var(--green-mid); gap: 6px; }

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.why-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.why-bg { position: absolute; inset: 0; z-index: 0; }
.why-bg img { width: 100%; height: 100%; object-fit: cover; }
.why-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,15,5,0.92) 0%, rgba(42,74,31,0.88) 100%);
}
.why-section .container { position: relative; z-index: 2; }

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

.why-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--trans);
}
.why-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
.why-icon { font-size: 2.4rem; margin-bottom: 16px; }
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 800;
  color: var(--green-light);
  line-height: 1;
}
.why-unit { font-size: 1.2rem; color: var(--green-light); font-weight: 600; }
.why-label { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-top: 8px; }

.why-features {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-bottom: 44px;
}
.feat-item {
  color: rgba(255,255,255,0.85); font-size: 0.9rem;
  display: flex; align-items: center; gap: 10px;
}
.feat-item span { color: var(--green-light); font-size: 1rem; flex-shrink: 0; }

.why-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================
   SERVICE AREAS
   ========================================== */
.areas-section { background: var(--beige); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px; margin-bottom: 44px;
}

.area-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: center;
  border: 1.5px solid var(--beige-dark);
  transition: var(--trans);
  cursor: pointer;
}
.area-card:hover {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.area-icon { font-size: 1.4rem; margin-bottom: 8px; }
.area-card strong { display: block; font-size: 1rem; color: var(--brown-dark); margin-bottom: 4px; }
.area-card span { font-size: 0.74rem; color: var(--text-light); line-height: 1.4; }

.areas-seo {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  border-left: 4px solid var(--green-mid);
  box-shadow: var(--shadow-sm);
}
.areas-seo p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.75; }

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-section { background: var(--cream); }

.testi-slider-wrap { overflow: hidden; }

.testi-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.testi-card {
  flex: 0 0 calc(33.333% - 19px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1.5px solid var(--beige-dark);
  box-shadow: var(--shadow-sm);
}

.testi-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }

.testi-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 24px;
}

.testi-client { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
.testi-client strong { display: block; font-size: 0.92rem; color: var(--brown-dark); }
.testi-client span { font-size: 0.78rem; color: var(--text-light); }

.testi-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 32px;
}
.testi-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--beige-dark);
  color: var(--brown-dark);
  font-size: 1.1rem; cursor: pointer;
  transition: var(--trans);
  display: flex; align-items: center; justify-content: center;
}
.testi-btn:hover { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }

.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--beige-dark); cursor: pointer;
  transition: var(--trans);
}
.testi-dot.active { background: var(--green-mid); width: 24px; border-radius: 4px; }

/* ==========================================
   FAQ
   ========================================== */
.faq-section { background: var(--white); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px; align-items: start;
}

.faq-left p { color: var(--text-light); margin-bottom: 28px; margin-top: 16px; }
.faq-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.faq-item {
  border-bottom: 1px solid var(--beige-dark);
  margin-bottom: 4px;
}

.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  background: none; border: none;
  padding: 18px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.96rem; font-weight: 600;
  color: var(--brown-dark); cursor: pointer;
  text-align: left; gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--green-mid); }
.faq-q span {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--beige);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 400; flex-shrink: 0;
  transition: var(--trans);
}
.faq-item.open .faq-q span {
  background: var(--green-dark); color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 0 0 18px;
  color: var(--text-light); font-size: 0.9rem; line-height: 1.75;
}

/* ==========================================
   CTA STRIP
   ========================================== */
.cta-strip {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-strip-bg { position: absolute; inset: 0; z-index: 0; }
.cta-strip-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(59,37,7,0.93) 0%, rgba(42,74,31,0.88) 100%);
}
.cta-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.cta-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; }
.cta-text p { color: rgba(255,255,255,0.7); margin-top: 10px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================
   CONTACT
   ========================================== */
.contact-section { background: var(--beige); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px; align-items: start;
}

.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 20px;
}
.cicon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; }
.contact-detail a { color: var(--brown-dark); font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.contact-detail a:hover { color: var(--green-mid); }
.contact-detail span { color: var(--text-mid); font-size: 0.95rem; }

.map-placeholder {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--beige-dark);
  position: relative;
}
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.map-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 8px;
}
.map-fallback span { font-size: 2rem; }
.map-fallback p { color: var(--text-mid); text-align: center; font-size: 0.9rem; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 { font-size: 1.6rem; color: var(--brown-dark); margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--beige-dark);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark); background: var(--cream);
  transition: border-color 0.2s;
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green-mid); background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.8rem; color: var(--text-light); text-align: center; }

/* ==========================================
   FOOTER
   ========================================== */
.site-footer { background: var(--brown-dark); }

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; padding: 60px 24px 48px;
}

.footer-logo { height: 60px; width: auto; margin-bottom: 16px; }
.footer-brand p {
  color: rgba(255,255,255,0.65); font-size: 0.88rem;
  line-height: 1.7; margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  padding: 7px 14px; border-radius: 6px;
  font-size: 0.8rem; font-weight: 500;
  transition: var(--trans);
  border: 1px solid rgba(255,255,255,0.15);
}
.footer-social a:hover { background: var(--green-mid); color: #fff; border-color: var(--green-mid); }

.footer-links h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-light); margin-bottom: 16px;
}
.footer-links a {
  display: block; color: rgba(255,255,255,0.65);
  font-size: 0.87rem; margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { max-width: 420px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-features { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .testi-card { flex: 0 0 calc(50% - 14px); }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }

  .hamburger { display: flex; }

  .main-nav {
    position: fixed; inset: 0; top: 0; left: 0;
    background: rgba(30,15,5,0.97);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 16px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 800;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1.2rem; color: #fff !important; padding: 10px 24px; }

  .header-ctas { display: none; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-features { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .testi-card { flex: 0 0 calc(100% - 0px); }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }

  .hero-content { max-width: 100%; }
  .hero-h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .popup-box { padding: 32px 24px; }
}
