/* ============================================================
   Sumitra Surveyor & Consultant — Main Stylesheet
   ============================================================ */

:root {
  --gold: #C8A96E;
  --gold-light: #E8C988;
  --gold-dark: #9A7A45;
  --earth: #2C2416;
  --earth-mid: #3D3220;
  --cream: #F5F0E8;
  --cream-dark: #EAE2D0;
  --sand: #D4C5A0;
  --white: #FDFAF4;
  --text-dark: #1A1508;
  --text-mid: #4A3F2A;
  --text-light: #7A6E58;
  --accent: #8B4513;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(44, 36, 22, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
  transition: all 0.3s;
}

.nav-logo { display: flex; flex-direction: column; gap: 0; }

.nav-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.nav-logo-sub {
  font-size: 0.6rem;
  color: var(--sand);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }

.nav-links a {
  color: var(--sand);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold);
  color: var(--earth) !important;
  padding: 0.5rem 1.2rem;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  transition: background 0.3s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }

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

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--earth);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--cream);
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2rem;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Playfair Display', serif;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background: var(--earth);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-compass {
  position: absolute;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 550px; height: 550px;
  opacity: 0.06;
  animation: rotate-slow 40s linear infinite;
}

@keyframes rotate-slow { to { transform: translateY(-50%) rotate(360deg); } }

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up 0.8s 0.2s forwards;
}

.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }

.hero-eyebrow-text {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up 0.8s 0.4s forwards;
}

.hero-title em { font-style: normal; color: var(--gold); display: block; }

.hero-desc {
  font-size: 1rem;
  color: var(--sand);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fade-up 0.8s 0.6s forwards;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.8s 0.8s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--earth);
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.3s;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,169,110,0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(200,169,110,0.5);
  color: var(--gold);
  padding: 0.85rem 2rem;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.3s;
  text-transform: uppercase;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(200,169,110,0.08);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200,169,110,0.15);
  opacity: 0;
  animation: fade-up 0.8s 1s forwards;
  flex-wrap: wrap;
}

.stat-item { text-align: left; }

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.2rem;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── SECTION BASE ─── */
section { padding: 5rem 1.5rem; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.section-tag span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.section-tag::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title em { font-style: normal; color: var(--gold-dark); }

.section-desc {
  color: var(--text-light);
  line-height: 1.8;
  max-width: 560px;
  font-size: 0.95rem;
}

/* ─── MARQUEE ─── */
.marquee-band {
  background: var(--gold);
  padding: 0.8rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 20s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--earth);
}

.marquee-dot {
  width: 5px; height: 5px;
  background: var(--earth);
  border-radius: 50%;
  opacity: 0.4;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── ABOUT ─── */
#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-card {
  background: var(--earth);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.about-card-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

.about-icon-ring {
  position: relative;
  z-index: 1;
  width: 80px; height: 80px;
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.about-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.about-card-text {
  color: var(--sand);
  line-height: 1.8;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.about-badge {
  position: absolute;
  bottom: -1rem; right: -1rem;
  background: var(--gold);
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.about-badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--earth);
  line-height: 1;
}

.about-badge-text {
  font-size: 0.5rem;
  color: var(--earth);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
}

.about-content h2 { margin-bottom: 1.5rem; }

.about-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.about-list-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.founder-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 0.75rem 1rem;
  background: var(--cream-dark);
  border-left: 3px solid var(--gold);
}

.founder-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.founder-title {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ─── SERVICES ─── */
#services { background: var(--earth); position: relative; overflow: hidden; }
#services .section-title { color: var(--cream); }
#services .section-desc { color: var(--sand); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(200,169,110,0.1);
}

.service-card {
  background: rgba(44,36,22,0.8);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  cursor: default;
  border: 1px solid rgba(200,169,110,0.05);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s;
}

.service-card:hover::before { height: 100%; }
.service-card:hover { background: rgba(61,50,32,0.9); transform: translateY(-3px); }

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: rgba(200,169,110,0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: color 0.4s;
}

.service-card:hover .service-num { color: rgba(200,169,110,0.25); }

.service-icon { font-size: 1.8rem; margin-bottom: 1rem; }

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.82rem;
  color: var(--sand);
  line-height: 1.7;
  opacity: 0.8;
}

/* ─── WHY CHOOSE US ─── */
#why { background: var(--cream-dark); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.skill-bars { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }

.skill-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.skill-name {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mid);
}

.skill-pct {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: var(--gold-dark);
}

.skill-track {
  height: 4px;
  background: var(--sand);
  border-radius: 2px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 2px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  padding: 1.75rem;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}

.why-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.why-card-icon { font-size: 1.6rem; margin-bottom: 0.75rem; }

.why-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.why-card-text { font-size: 0.78rem; color: var(--text-light); line-height: 1.6; }

/* ─── PROJECTS ─── */
#projects { background: var(--white); }

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--earth-mid);
}

.project-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--earth) 0%, var(--earth-mid) 100%);
  transition: transform 0.5s;
}

.project-card:hover .project-card-bg { transform: scale(1.05); }

.project-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.08) 1px, transparent 1px);
  background-size: 20px 20px;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,22,8,0.95) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: all 0.3s;
}

.project-category {
  font-size: 0.6rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.project-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
}

.project-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: 0.15;
  transition: all 0.3s;
}

.project-card:hover .project-icon { opacity: 0.25; transform: translate(-50%, -50%) scale(1.1); }

/* ─── TESTIMONIALS ─── */
#testimonials { background: var(--earth); position: relative; overflow: hidden; }
#testimonials .section-title { color: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(61,50,32,0.6);
  border: 1px solid rgba(200,169,110,0.1);
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(200,169,110,0.3);
  transform: translateY(-3px);
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -0.5rem;
}

.testimonial-text {
  font-size: 0.88rem;
  color: var(--sand);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }

.testimonial-avatar {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--earth);
  flex-shrink: 0;
}

.testimonial-name { font-weight: 600; font-size: 0.85rem; color: var(--cream); }
.testimonial-role { font-size: 0.7rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; }
.stars { color: var(--gold); font-size: 0.75rem; margin-bottom: 0.75rem; }

/* ─── CTA BAND ─── */
#cta {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(44,36,22,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44,36,22,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

#cta .section-inner { position: relative; z-index: 1; }

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--earth);
  margin-bottom: 1rem;
}

.cta-desc {
  color: rgba(44,36,22,0.7);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--earth);
  color: var(--gold);
  padding: 0.9rem 2.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-dark:hover {
  background: var(--earth-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ─── CONTACT ─── */
#contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item { display: flex; gap: 1rem; align-items: flex-start; }

.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--earth);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.contact-item-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-item-value { font-size: 0.9rem; color: var(--text-dark); font-weight: 500; line-height: 1.5; }

/* ─── FORM ─── */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }

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

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }

.form-field label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }

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

.form-submit {
  background: var(--earth);
  color: var(--gold);
  border: none;
  padding: 1rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  align-self: flex-start;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.form-submit:hover {
  background: var(--earth-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ─── FORM ALERT MESSAGES ─── */
.form-alert {
  padding: 0.85rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-left: 3px solid;
  display: none;
}

.form-alert.success {
  background: #edfaf0;
  border-color: #27ae60;
  color: #1a6b3c;
  display: block;
}

.form-alert.error {
  background: #fdf0ef;
  border-color: #e74c3c;
  color: #922b21;
  display: block;
}

/* ─── FOOTER ─── */
footer {
  background: var(--earth);
  padding: 3rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(200,169,110,0.15);
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200,169,110,0.1);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-tagline { font-size: 0.75rem; color: var(--sand); line-height: 1.6; margin-bottom: 1.5rem; }

.footer-col-title {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

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

.footer-links a {
  color: var(--sand);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.3s;
  opacity: 0.8;
}

.footer-links a:hover { color: var(--gold); opacity: 1; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy { font-size: 0.75rem; color: var(--text-light); }
.footer-copy a { color: var(--gold); text-decoration: none; }

.footer-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-phone:hover { opacity: 0.8; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

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

  .hero-inner { padding: 3rem 1.25rem; }
  .hero-stats { gap: 2rem; }

  .about-grid,
  .why-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .about-badge { width: 80px; height: 80px; bottom: -0.5rem; right: -0.5rem; }
  .about-badge-num { font-size: 1.5rem; }

  .services-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .projects-header { flex-direction: column; align-items: flex-start; }

  .form-row { grid-template-columns: 1fr; }
  .hero-compass { width: 300px; height: 300px; right: -80px; }
}

@media (max-width: 480px) {
  section { padding: 3.5rem 1.25rem; }
  .hero-title { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; }
  .projects-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-submit { align-self: stretch; text-align: center; }
}