/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #2D2A26;
  background: #FDF6EE;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.2; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --terra: #C05A28;
  --terra-dark: #A84B1F;
  --terra-light: #D4845A;
  --sand: #FDF6EE;
  --sand-mid: #F5E6D3;
  --dark: #2D2A26;
  --dark-light: #4A4540;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(45,42,38,0.08);
  --shadow-lg: 0 12px 48px rgba(45,42,38,0.12);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,246,238,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192,90,40,0.1);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(45,42,38,0.1); }
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--dark); }
.logo-text { color: var(--terra); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--dark-light); transition: color 0.2s; }
.nav-links a:hover { color: var(--terra); }
.nav-cta {
  background: var(--terra); color: var(--white) !important;
  padding: 10px 22px; border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--terra-dark); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); transition: 0.3s; border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--dark);
  position: relative; overflow: hidden;
  padding: 100px 24px 60px;
}
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.geo-circle { position: absolute; border-radius: 50%; }
.geo-circle--1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(192,90,40,0.25) 0%, transparent 70%); top: -200px; right: -100px; }
.geo-circle--2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(168,113,64,0.15) 0%, transparent 70%); bottom: -100px; left: -50px; }
.geo-tri {
  position: absolute; width: 0; height: 0;
  border-left: 80px solid transparent; border-right: 80px solid transparent; border-bottom: 140px solid rgba(192,90,40,0.12);
  top: 15%; left: 8%; transform: rotate(-15deg);
}
.hero-container {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-block; background: rgba(192,90,40,0.15);
  color: var(--terra-light); border: 1px solid rgba(192,90,40,0.3);
  padding: 6px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 500;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 700;
  color: var(--white); line-height: 1.05; margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-headline .accent { color: var(--terra-light); }
.hero-sub {
  font-size: 1.15rem; color: rgba(253,246,238,0.7);
  max-width: 480px; margin-bottom: 36px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(253,246,238,0.6); font-size: 0.9rem; }
.trust-item svg { flex-shrink: 0; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 600;
  font-size: 1rem; transition: all 0.25s; cursor: pointer; border: none;
}
.btn-primary { background: var(--terra); color: var(--white); }
.btn-primary:hover { background: var(--terra-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,90,40,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(253,246,238,0.3); }
.btn-outline:hover { border-color: var(--white); background: rgba(253,246,238,0.08); }
.btn-outline-light { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn-outline-light:hover { background: var(--dark); color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }

/* HERO RIGHT */
.hero-right { position: relative; }
.hero-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-accent {
  position: absolute; bottom: -20px; left: -20px;
  width: 120px; height: 120px; background: var(--terra);
  border-radius: var(--radius-lg); z-index: -1;
}
.hero-stat-card {
  position: absolute; bottom: 30px; left: -40px;
  background: var(--white); border-radius: var(--radius);
  padding: 20px 28px; box-shadow: var(--shadow-lg);
}
.stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: var(--terra); line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--dark-light); margin-top: 4px; }

/* ===== SECTION COMMON ===== */
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { margin-bottom: 60px; }
.section-header--center { text-align: center; }
.section-tag {
  display: inline-block; background: rgba(192,90,40,0.1); color: var(--terra);
  padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--dark);
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.section-title .accent { color: var(--terra); }
.section-sub { font-size: 1.1rem; color: var(--dark-light); max-width: 600px; line-height: 1.7; }

/* ===== SERVICES ===== */
.services {
  background: var(--sand);
  padding: 100px 0;
  position: relative;
}
.geo-accent { position: absolute; left: 0; right: 0; height: 6px; }
.geo-accent--top { top: 0; background: linear-gradient(90deg, var(--terra), var(--terra-light), var(--sand-mid)); }
.geo-accent--bottom { bottom: 0; background: linear-gradient(90deg, var(--sand-mid), var(--terra-light), var(--terra)); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(192,90,40,0.06);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 64px; height: 64px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.2rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; color: var(--dark-light); line-height: 1.7; }

/* ===== ABOUT ===== */
.about {
  background: var(--white);
  padding: 100px 0;
}
.about-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-image-block { position: relative; }
.about-image-block img {
  width: 100%; height: 640px; object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--terra); color: var(--white);
  padding: 16px 24px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 0.95rem;
  box-shadow: var(--shadow-lg);
}
.about-content .section-tag { margin-bottom: 16px; }
.about-text { font-size: 1.05rem; color: var(--dark-light); line-height: 1.8; margin-bottom: 20px; }
.about-stats {
  display: flex; gap: 32px; margin-top: 40px;
  padding-top: 40px; border-top: 1px solid var(--sand-mid);
}
.stat-num-lg { font-family: 'Space Grotesk', sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--terra); line-height: 1; }
.stat-label-lg { font-size: 0.85rem; color: var(--dark-light); margin-top: 6px; }
.stat-divider { width: 1px; background: var(--sand-mid); align-self: stretch; }

/* ===== WHY US ===== */
.why-us {
  background: var(--dark);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.why-us .section-title { color: var(--white); }
.why-us .section-tag { background: rgba(192,90,40,0.2); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: rgba(253,246,238,0.05); border: 1px solid rgba(253,246,238,0.08);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: background 0.3s, transform 0.3s;
}
.why-card:hover { background: rgba(253,246,238,0.08); transform: translateY(-4px); }
.why-num { font-family: 'Space Grotesk', sans-serif; font-size: 3rem; font-weight: 700; color: rgba(192,90,40,0.3); line-height: 1; margin-bottom: 16px; }
.why-card h3 { font-size: 1.15rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 0.95rem; color: rgba(253,246,238,0.6); line-height: 1.7; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--terra);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.cta-geo { position: absolute; }
.cta-geo--circle { width: 400px; height: 400px; border-radius: 50%; border: 40px solid rgba(253,246,238,0.06); top: -100px; right: -100px; }
.cta-geo--rect { width: 200px; height: 200px; background: rgba(253,246,238,0.05); bottom: -40px; left: 10%; transform: rotate(30deg); border-radius: var(--radius); }
.cta-container { position: relative; z-index: 1; text-align: center; }
.cta-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.cta-title .accent-light { color: var(--sand); }
.cta-sub { font-size: 1.1rem; color: rgba(253,246,238,0.8); max-width: 560px; margin: 0 auto 36px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline-light { border-color: var(--dark); color: var(--dark); }
.btn-outline-light:hover { background: var(--dark); color: var(--white); }

/* ===== CONTACT ===== */
.contact {
  background: var(--sand);
  padding: 100px 0;
}
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-desc { font-size: 1.05rem; color: var(--dark-light); line-height: 1.7; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; }
.contact-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(192,90,40,0.1); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.contact-item strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; color: var(--dark); margin-bottom: 4px; }
.contact-item p { font-size: 0.9rem; color: var(--dark-light); line-height: 1.6; }
.contact-item a { color: var(--terra); text-decoration: underline; text-underline-offset: 3px; }
.contact-item a:hover { color: var(--terra-dark); }

/* FORM */
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow);
  border: 1px solid rgba(192,90,40,0.06);
}
.contact-form h3 { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.form-note { font-size: 0.9rem; color: var(--dark-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--sand-mid);
  border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: 0.95rem;
  color: var(--dark); background: var(--sand); transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--terra); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success svg { margin: 0 auto 16px; }
.form-success p { font-size: 1.05rem; color: var(--dark); font-weight: 500; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 60px 0 0; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--terra-light); }
.footer-desc { font-size: 0.9rem; color: rgba(253,246,238,0.5); line-height: 1.7; max-width: 280px; }
.footer-links h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(253,246,238,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--terra-light); }
.footer-bottom {
  border-top: 1px solid rgba(253,246,238,0.08);
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(253,246,238,0.4); }
.footer-bottom a { color: var(--terra-light); }

/* ===== MOBILE MENU ===== */
.nav-links.open { display: flex; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { max-width: 500px; }
  .hero-stat-card { left: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-container { grid-template-columns: 1fr; gap: 48px; }
  .about-image-block img { height: 400px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--sand); flex-direction: column; padding: 24px;
    border-bottom: 2px solid var(--terra); gap: 16px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 24px 60px; }
  .hero-headline { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-stat-card { position: relative; bottom: auto; left: auto; margin-top: 16px; display: inline-block; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-img-badge { right: 10px; bottom: -10px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .contact-form-wrap { padding: 24px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
