/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #2D2A26;
  background: #FDF8F3;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; line-height: 1.2; font-weight: 700; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== COLOR SYSTEM ===== */
:root {
  --terracotta: #C45A3C;
  --terracotta-dark: #A84830;
  --terracotta-light: #E8856A;
  --sand: #E8D5C0;
  --sand-light: #F5EDE4;
  --sand-dark: #C4A882;
  --dark: #2D2A26;
  --dark-mid: #4A4540;
  --cream: #FDF8F3;
  --white: #FFFFFF;
  --accent: #D4845A;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 243, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196, 90, 60, 0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(45, 42, 38, 0.08); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--dark);
}
.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--terracotta);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.2s ease;
}
.nav-logo:hover .nav-logo-icon { transform: rotate(-8deg) scale(1.05); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark-mid);
  transition: all 0.2s ease;
}
.nav-links a:hover { color: var(--terracotta); background: rgba(196, 90, 60, 0.06); }
.nav-cta {
  background: var(--terracotta) !important;
  color: white !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  padding: 10px 20px !important;
  transition: all 0.2s ease !important;
}
.nav-cta:hover { background: var(--terracotta-dark) !important; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--cream);
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.geo { position: absolute; }
.geo-circle-1 {
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,90,60,0.07) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.geo-circle-2 {
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,213,192,0.5) 0%, transparent 70%);
  bottom: 10%; left: 5%;
}
.geo-triangle {
  width: 0; height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid rgba(196,90,60,0.06);
  top: 20%; left: 8%;
  transform: rotate(-15deg);
}
.geo-dots {
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, rgba(196,90,60,0.15) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  bottom: 25%; right: 15%;
}
.geo-ring {
  width: 160px; height: 160px;
  border: 3px solid rgba(196,90,60,0.08);
  border-radius: 50%;
  top: 30%; right: 35%;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 90, 60, 0.08);
  border: 1px solid rgba(196, 90, 60, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.title-accent {
  color: var(--terracotta);
  position: relative;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--dark-mid);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--terracotta);
  color: white;
  box-shadow: 0 4px 20px rgba(196, 90, 60, 0.3);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 90, 60, 0.35);
}
.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border: 2px solid rgba(45, 42, 38, 0.12);
}
.btn-secondary:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  transform: translateY(-2px);
}
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }
.btn-white {
  background: white;
  color: var(--terracotta);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; transform: translateY(-2px); }

/* Hero Stat Cards */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 400px;
}
.stat-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(45, 42, 38, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(45, 42, 38, 0.1); }
.stat-card--primary { background: var(--terracotta); color: white; }
.stat-card--sand { background: var(--sand); color: var(--dark); }
.stat-card--terracotta { background: var(--terracotta-light); color: white; }
.stat-card--dark { background: var(--dark); color: white; }
.stat-card-accent {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  top: -20px; right: -20px;
}
.stat-card-icon { margin-bottom: 12px; opacity: 0.9; }
.stat-card-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-card-label { font-size: 0.82rem; opacity: 0.8; font-weight: 500; }

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  color: var(--white);
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ===== SECTION COMMON ===== */
.section-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  background: rgba(196, 90, 60, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--dark-mid);
  max-width: 560px;
  line-height: 1.7;
}
.section-header--center { text-align: center; }
.section-header--center .section-desc { margin: 0 auto; }

/* ===== SERVICES ===== */
.services {
  background: var(--white);
  padding: 100px 24px;
  position: relative;
}
.services-bg-block {
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(232,213,192,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
.service-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(45, 42, 38, 0.08);
  border-color: rgba(196, 90, 60, 0.15);
  background: var(--white);
}
.service-card-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(196, 90, 60, 0.08);
  line-height: 1;
  margin-bottom: 16px;
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--terracotta);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
.service-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-desc {
  font-size: 0.95rem;
  color: var(--dark-mid);
  line-height: 1.7;
}
.service-card-deco {
  position: absolute;
  bottom: 16px; right: 16px;
  opacity: 0.15;
  color: var(--terracotta);
}

/* ===== ABOUT ===== */
.about {
  background: var(--cream);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(45, 42, 38, 0.1);
}
.about-img-wrap img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,42,38,0.3) 0%, transparent 50%);
}
.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.about-img-badge svg { color: var(--terracotta); }
.about-geo-1 {
  position: absolute;
  width: 120px; height: 120px;
  background: var(--sand);
  border-radius: 24px;
  top: -30px; right: -30px;
  z-index: -1;
  transform: rotate(12deg);
}
.about-geo-2 {
  position: absolute;
  width: 80px; height: 80px;
  background: var(--terracotta);
  border-radius: 50%;
  bottom: -20px; left: -20px;
  z-index: -1;
  opacity: 0.2;
}
.about-content { position: relative; z-index: 1; }
.about-text {
  font-size: 1.05rem;
  color: var(--dark-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--dark);
}
.about-feature-icon {
  width: 28px; height: 28px;
  background: rgba(196, 90, 60, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
}

/* ===== WHY US ===== */
.why-us {
  background: var(--dark);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
.why-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(196,90,60,0.12) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(232,213,192,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.why-us .section-tag { background: rgba(196,90,60,0.2); }
.why-us .section-title { color: white; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 32px 24px;
  transition: all 0.3s ease;
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-6px);
  border-color: rgba(196, 90, 60, 0.3);
}
.why-card-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.why-card-visual {
  width: 72px; height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.terracotta-bg { background: var(--terracotta); }
.sand-bg { background: var(--sand); }
.dark-bg { background: var(--dark-mid); border: 1px solid rgba(255,255,255,0.1); }
.accent-bg { background: var(--accent); }
.why-card-title {
  font-size: 1.15rem;
  color: white;
  margin-bottom: 10px;
}
.why-card-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--cream);
  padding: 100px 24px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 28px;
  position: relative;
  border: 1px solid rgba(45, 42, 38, 0.04);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(45, 42, 38, 0.07);
}
.testimonial-quote-mark {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--terracotta);
  opacity: 0.15;
  line-height: 1;
  position: absolute;
  top: 20px; right: 28px;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--dark-mid);
  line-height: 1.8;
  margin-bottom: 24px;
  margin-top: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--sand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
}
.testimonial-name {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
}
.testimonial-detail {
  font-size: 0.82rem;
  color: var(--dark-mid);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--terracotta);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-geo { position: absolute; }
.cta-geo-circle {
  width: 300px; height: 300px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  top: -80px; left: -80px;
}
.cta-geo-square {
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  bottom: -30px; right: 10%;
  transform: rotate(25deg);
}
.cta-geo-tri {
  width: 0; height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 87px solid rgba(255,255,255,0.06);
  top: 15%; right: 5%;
  transform: rotate(-20deg);
}
.cta-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: white;
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact {
  background: var(--white);
  padding: 100px 24px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-detail-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark-mid);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-detail-value {
  display: block;
  font-size: 1rem;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.6;
}
.contact-detail-value a:hover { color: var(--terracotta); }
.contact-desc {
  font-size: 1.05rem;
  color: var(--dark-mid);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Contact Form */
.contact-form-wrap { position: relative; }
.contact-form-bg {
  position: absolute;
  inset: -20px;
  background: var(--sand-light);
  border-radius: 32px;
  z-index: -1;
}
.contact-form {
  background: var(--white);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(45, 42, 38, 0.06);
}
.contact-form-title {
  font-size: 1.5rem;
  margin-bottom: 6px;
  color: var(--dark);
}
.contact-form-sub {
  font-size: 0.9rem;
  color: var(--dark-mid);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(45, 42, 38, 0.08);
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--cream);
  transition: all 0.2s ease;
  outline: none;
}
.form-input:focus {
  border-color: var(--terracotta);
  background: white;
  box-shadow: 0 0 0 4px rgba(196, 90, 60, 0.08);
}
.form-input::placeholder { color: var(--sand-dark); }
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C45A3C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 64px; height: 64px;
  background: rgba(196, 90, 60, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--terracotta);
}
.form-success p { font-size: 1.1rem; color: var(--dark); font-weight: 600; }

/* ===== MAP ===== */
.map-section { padding: 0; }
.map-placeholder iframe { width: 100%; height: 380px; border: none; display: block; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 80px 24px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 16px;
}
.footer-logo-icon {
  width: 38px; height: 38px;
  background: var(--terracotta);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.footer-tagline { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a {
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-links ul li a:hover { color: var(--terracotta-light); }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-contact-list li svg { flex-shrink: 0; margin-top: 3px; opacity: 0.6; }
.footer-contact-list a:hover { color: var(--terracotta-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--terracotta);
  color: white;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(196, 90, 60, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s ease;
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--terracotta-dark); transform: translateY(-2px); }

/* ===== 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);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-cards { margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253, 248, 243, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(196, 90, 60, 0.08);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hero { padding: 100px 24px 60px; min-height: auto; }
  .hero-cards { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap img { height: 400px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .why-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-cards { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .contact-form { padding: 24px; }
}
