/* ============================================
   BULL HORN LANDSCAPING — Brand Stylesheet
   ============================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- CSS Variables (Brand Colors) ---------- */
:root {
  --green-dark:    #1B4D2E;   /* Bull Forest Green */
  --green-mid:     #2D6B3C;   /* Rolling Green */
  --green-light:   #4A8C5C;   /* Accent Green */
  --gold:          #9A8040;   /* Earth / Gold */
  --gold-light:    #C4A84F;   /* Warm Gold Accent */
  --canvas:        #F5F0E8;   /* Canvas Off-White */
  --canvas-dark:   #EDE6D8;   /* Slightly darker canvas */
  --concrete:      #8A8A8A;   /* Concrete Gray */
  --dark:          #0E1F14;   /* Near-black dark */
  --text-dark:     #1A2B1E;
  --text-mid:      #3D5443;
  --text-light:    #F5F0E8;
  --white:         #FFFFFF;

  --shadow-sm:  0 2px 8px rgba(14,31,20,.10);
  --shadow-md:  0 6px 24px rgba(14,31,20,.15);
  --shadow-lg:  0 16px 48px rgba(14,31,20,.20);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--green-dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; font-weight: 700; }

p { color: var(--text-mid); font-size: 1.05rem; line-height: 1.75; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ---------- Utility ---------- */
.container {
  width: 90%;
  max-width: 1180px;
  margin-inline: auto;
}

.text-center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,77,46,.35);
}
.btn-primary:hover {
  background: var(--green-mid);
  box-shadow: 0 6px 22px rgba(27,77,46,.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.28);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold-light);
  color: var(--white);
  box-shadow:
    0 4px 16px rgba(196,168,79,.45),
    0 0 0 0 rgba(196,168,79,.5);
  animation: gold-glow-pulse 2.5s ease-in-out infinite;
  position: relative;
}
.btn-gold:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow:
    0 6px 24px rgba(196,168,79,.65),
    0 0 32px rgba(196,168,79,.45),
    0 0 60px rgba(196,168,79,.2);
  animation: none;
}

@keyframes gold-glow-pulse {
  0%, 100% {
    box-shadow:
      0 4px 16px rgba(196,168,79,.45),
      0 0 0px rgba(196,168,79,.0);
  }
  50% {
    box-shadow:
      0 4px 22px rgba(196,168,79,.65),
      0 0 28px rgba(196,168,79,.35),
      0 0 50px rgba(196,168,79,.15);
  }
}

/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(14,31,20,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 54px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.3));
}

.nav-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.85);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 0.5rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}
.nav-mobile a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--gold-light); }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    url('brand_assets/IMG_5289.png') center center / cover no-repeat;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(14,31,20,.92) 0%,
      rgba(27,77,46,.80) 50%,
      rgba(45,107,60,.70) 100%);
  z-index: 1;
}

/* Decorative circles */
.hero-bg::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154,128,64,.18) 0%, transparent 70%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,140,92,.20) 0%, transparent 70%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='140' height='140' viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='1'%3E%3Cellipse cx='25' cy='105' rx='8' ry='26' transform='rotate(-25,25,105)'/%3E%3Cellipse cx='75' cy='35' rx='6' ry='20' transform='rotate(20,75,35)'/%3E%3Cellipse cx='115' cy='95' rx='9' ry='24' transform='rotate(-15,115,95)'/%3E%3Cellipse cx='50' cy='70' rx='5' ry='15' transform='rotate(35,50,70)'/%3E%3Cellipse cx='100' cy='20' rx='5' ry='14' transform='rotate(-30,100,20)'/%3E%3Cpath d='M25 105 Q28 80 25 60' stroke-width='0.5'/%3E%3Cpath d='M75 35 Q78 55 75 70' stroke-width='0.5'/%3E%3Cpath d='M115 95 Q118 72 115 55' stroke-width='0.5'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  z-index: 1;
}

/* Large decorative leaf shapes in hero corners */
.hero::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 400px; height: 400px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='80' cy='140' rx='50' ry='130' transform='rotate(-30,80,140)' fill='rgba(74,140,92,0.12)'/%3E%3Cellipse cx='120' cy='60' rx='35' ry='90' transform='rotate(20,120,60)' fill='rgba(74,140,92,0.08)'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -60px;
  width: 380px; height: 380px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='100' cy='160' rx='45' ry='120' transform='rotate(25,100,160)' fill='rgba(196,168,79,0.10)'/%3E%3Cellipse cx='60' cy='50' rx='30' ry='80' transform='rotate(-20,60,50)' fill='rgba(74,140,92,0.09)'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(154,128,64,.2);
  border: 1px solid rgba(196,168,79,.35);
  border-radius: var(--radius-pill);
  padding: 6px 16px 6px 8px;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
.hero-badge span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.4rem;
}

.hero-title .highlight {
  color: var(--gold-light);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: var(--gold-light);
  opacity: 0.35;
  border-radius: 2px;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

/* Hero visual / logo display */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-logo-ring {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(196,168,79,.25);
  animation: spin-slow 20s linear infinite;
}

.hero-logo-ring::after {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-logo-glow {
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,77,46,.6) 0%, transparent 70%);
}

.hero-logo-img {
  position: relative;
  z-index: 1;
  width: 300px;
  height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,.5));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* Floating dots decoration */
.hero-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0.6;
  animation: float 4s ease-in-out infinite;
}
.hero-dot:nth-child(1) { width: 10px; height: 10px; top: 60px;  right: 30px; animation-delay: 0s;  }
.hero-dot:nth-child(2) { width: 6px;  height: 6px;  top: 140px; left: 20px;  animation-delay: 1s;  }
.hero-dot:nth-child(3) { width: 14px; height: 14px; bottom: 80px; right: 60px; animation-delay: 2s; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.4; }
}

/* ================================================
   SERVICES
   ================================================ */
.services {
  padding: 100px 0;
  background: var(--canvas);
}

.section-header {
  margin-bottom: 3.5rem;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27,77,46,.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  font-size: 1.6rem;
}

.service-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 1.4rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.service-link svg { transition: var(--transition); }
.service-link:hover { color: var(--green-mid); }
.service-link:hover svg { transform: translateX(4px); }

/* ================================================
   STATS BAR
   ================================================ */
.stats-bar {
  background: var(--green-dark);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -55deg,
      rgba(255,255,255,.03) 0px,
      rgba(255,255,255,.03) 1px,
      transparent 1px,
      transparent 28px
    ),
    url("data:image/svg+xml,%3Csvg width='160' height='80' viewBox='0 0 160 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='20' cy='70' rx='7' ry='22' transform='rotate(-20,20,70)' fill='rgba(255,255,255,0.04)'/%3E%3Cellipse cx='80' cy='65' rx='6' ry='18' transform='rotate(15,80,65)' fill='rgba(255,255,255,0.03)'/%3E%3Cellipse cx='140' cy='72' rx='8' ry='20' transform='rotate(-10,140,72)' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.stats-bar .container { position: relative; z-index: 1; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 0 1rem;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.15);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

/* ================================================
   ABOUT
   ================================================ */
.about {
  padding: 110px 0;
  background: var(--white);
}

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

.about-visual {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-badge-card {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-badge-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.about-badge-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-dark);
}
.about-badge-text span {
  font-size: 0.82rem;
  color: var(--concrete);
}

.about-img-accent {
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-content h2 { margin-bottom: 1.2rem; }
.about-content > p { margin-bottom: 2rem; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feature-icon {
  width: 36px; height: 36px;
  background: rgba(27,77,46,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 2px;
}
.about-feature-text p {
  font-size: 0.9rem;
  margin: 0;
}

/* About placeholder image (green gradient) */
.about-img-placeholder {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.about-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img-placeholder:hover .about-img-photo {
  transform: scale(1.04);
}

/* ================================================
   PROCESS
   ================================================ */
.process {
  padding: 100px 0;
  background: var(--canvas);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 36px);
  right: calc(12.5% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  opacity: 0.2;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(27,77,46,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--green-dark);
  margin: 0 auto 1.4rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.process-step:hover .process-step-num {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
  transform: scale(1.1);
}

.process-step h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.process-step p { font-size: 0.9rem; }

/* ================================================
   GALLERY
   ================================================ */
.gallery {
  padding: 100px 0;
  background: var(--canvas);
}

.gallery-grid {
  display: flex;
  gap: 1.2rem;
  margin-top: 3.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--green-mid) var(--canvas-dark);
}

.gallery-grid::-webkit-scrollbar {
  height: 6px;
}
.gallery-grid::-webkit-scrollbar-track {
  background: var(--canvas-dark);
  border-radius: 10px;
}
.gallery-grid::-webkit-scrollbar-thumb {
  background: var(--green-mid);
  border-radius: 10px;
}

.gallery-grid.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  flex: 0 0 320px;
  height: 380px;
  scroll-snap-align: start;
}

.gallery-item--featured {
  flex: 0 0 420px;
  height: 380px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,31,20,.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  background: rgba(27,77,46,.65);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

@media (max-width: 768px) {
  .gallery-item { flex: 0 0 80vw; height: 320px; }
  .gallery-item--featured { flex: 0 0 88vw; }
  .gallery-overlay { opacity: 1; }
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

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

.testimonial-card {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  border: 1px solid var(--canvas-dark);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--green-light);
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
  opacity: 0.4;
}

.testimonial-card p {
  font-size: 0.97rem;
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--gold-light);
  font-size: 0.9rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--canvas-dark);
  padding-top: 1rem;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-info strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
}
.testimonial-info span {
  font-size: 0.8rem;
  color: var(--concrete);
}

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-pattern {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='180' height='160' viewBox='0 0 180 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'%3E%3Cellipse cx='30' cy='130' rx='10' ry='32' transform='rotate(-25,30,130)'/%3E%3Cellipse cx='90' cy='120' rx='8' ry='26' transform='rotate(15,90,120)'/%3E%3Cellipse cx='150' cy='135' rx='10' ry='30' transform='rotate(-10,150,135)'/%3E%3Cellipse cx='60' cy='40' rx='7' ry='22' transform='rotate(30,60,40)'/%3E%3Cellipse cx='130' cy='30' rx='6' ry='18' transform='rotate(-20,130,30)'/%3E%3Cpath d='M30 130 Q32 100 30 75' stroke-width='0.6'/%3E%3Cpath d='M90 120 Q93 95 90 72' stroke-width='0.6'/%3E%3Cpath d='M150 135 Q153 105 150 82' stroke-width='0.6'/%3E%3C/g%3E%3C/svg%3E"),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.02) 0px,
      rgba(255,255,255,.02) 1px,
      transparent 1px,
      transparent 32px
    );
  pointer-events: none;
  z-index: 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(196,168,79,.08);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,.75); max-width: 540px; margin: 0 auto 2.5rem; font-size: 1.1rem; }

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

.cta-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}
.cta-phone:hover { color: var(--gold-light); }
.cta-phone .icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ================================================
   CONTACT
   ================================================ */
.contact {
  padding: 100px 0;
  background: var(--canvas);
}

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

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-detail-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text span {
  display: block;
  font-size: 0.78rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--concrete);
  margin-bottom: 2px;
}
.contact-detail-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
}

/* Contact form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--canvas-dark);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(27,77,46,.12);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--canvas);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27,77,46,.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(61,84,67,.4);
}

.form-group textarea { min-height: 120px; }

.form-submit { width: 100%; margin-top: 1rem; justify-content: center; }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--dark);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 2rem;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
}

.footer-logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}

.footer-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.2;
}
.footer-logo-text span {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: 0.9rem;
  margin-bottom: 1.4rem;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
}

.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

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

.footer-bottom p {
  color: rgba(255,255,255,.3);
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--gold-light); }

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .hero-content { gap: 2.5rem; }
  .hero-logo-ring { width: 340px; height: 340px; }
  .hero-logo-img  { width: 240px; height: 240px; }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .about-grid     { gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-mobile { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 100px 0 60px;
  }
  .hero-visual { order: -1; }
  .hero-logo-ring { width: 260px; height: 260px; }
  .hero-logo-img  { width: 200px; height: 200px; }
  .hero-desc { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .services-grid      { grid-template-columns: 1fr; }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .about-grid         { grid-template-columns: 1fr; }
  .about-visual       { order: -1; }
  .about-img-accent   { display: none; }
  .about-badge-card   { right: 0; bottom: 10px; }
  .process-steps      { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .contact-grid       { grid-template-columns: 1fr; }
  .form-grid          { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom      { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid     { grid-template-columns: 1fr 1fr; }
  .hero-stats     { flex-direction: column; align-items: center; }
  .process-steps  { grid-template-columns: 1fr; }
}
