/* ─────────────────────────────────────────────
   SR Digital Leads — main.min.css (recreated)
   Design: Dark green/gold premium agency theme
   ───────────────────────────────────────────── */

/* ─── RESET & BASE ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #5DB033;
  --green-light: #7CC84E;
  --gold: #F5B82A;
  --dark: #080E05;
  --dark2: #0d1809;
  --dark3: #111f0b;
  --text: #e8f0e2;
  --muted: #7a9370;
  --border: rgba(93, 176, 51, 0.15);
  --glass: rgba(13, 24, 9, 0.75);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5 {
  font-family: 'Fira Code', monospace;
  line-height: 1.1;
}

a { text-decoration: none; }

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

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 99px; }

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

/* ─── GRID BACKGROUND ─── */
.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(93, 176, 51, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 176, 51, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ─── ANIMATED BLOBS ─── */
.hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: blobFloat 16s ease-in-out infinite;
}

.blob1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(93,176,51,.12), transparent 70%);
  top: -100px; left: -100px;
}

.blob2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,184,42,.08), transparent 70%);
  bottom: 20%; right: -80px;
  animation-delay: -6s;
}

.blob3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(93,176,51,.07), transparent 70%);
  top: 50%; left: 40%;
  animation-delay: -10s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-30px) scale(1.05); }
  66% { transform: translate(-20px,20px) scale(.95); }
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%,-50%);
  transition: transform .15s ease;
}

.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(93,176,51,.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%,-50%);
  transition: transform .15s ease;
  opacity: .5;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid transparent;
  transition: all .4s ease;
}

.nav-inner {
  width: 100%;
  max-width: 1280px;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav.scrolled {
  background: rgba(8,14,5,.92);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}

.logo {
  font-family: 'Fira Code', monospace;
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--green), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -0.03em;
}

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

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: color .3s;
  position: relative;
}

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

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

.nav-cta {
  background: var(--green);
  color: #fff !important;
  border: none;
  padding: .6rem 1.4rem;
  border-radius: 99px;
  font-family: 'Fira Code', monospace;
  font-weight: 600;
  font-size: .875rem;
  cursor: pointer;
  text-decoration: none;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  -webkit-text-fill-color: #fff;
}

.nav-cta .cta-icon {
  font-size: .8rem;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .25s ease;
  opacity: .85;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left .5s ease;
  pointer-events: none;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 28px rgba(93,176,51,.5), 0 0 0 3px rgba(93,176,51,.15);
  background: linear-gradient(135deg, #6bc83e, #4a9e22);
}

.nav-cta:hover::before { left: 150%; }

.nav-cta:hover .cta-icon {
  transform: translateX(3px) translateY(-2px) rotate(-30deg);
  opacity: 1;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(8,14,5,.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 1rem;
}

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

.mobile-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 1.1rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color .3s;
}

.mobile-menu a:hover,
.mobile-menu a.active { color: var(--green); }

/* ─── LAYOUT HELPERS ─── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-pad { padding: 6rem 0; }

/* ─── SHIMMER TEXT ─── */
.shimmer {
  background: linear-gradient(90deg, var(--green) 0%, var(--gold) 35%, #fff 50%, var(--gold) 65%, var(--green) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  to { background-position: -200% center; }
}

/* ─── SECTION TAG ─── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.2rem;
}

.section-tag::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--green);
  border-radius: 99px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 3rem;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--green);
  color: #fff;
  padding: .85rem 2rem;
  border-radius: 99px;
  font-family: 'Fira Code', monospace;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left .5s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(93,176,51,.45);
  background: linear-gradient(135deg, #6bc83e, #4a9e22);
}

.btn-primary:hover::before { left: 150%; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: transparent;
  color: var(--text);
  padding: .85rem 2rem;
  border-radius: 99px;
  border: 1px solid var(--border);
  font-family: 'Fira Code', monospace;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: all .3s ease;
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(93,176,51,.06);
  transform: translateY(-2px);
}

/* ─── EYEBROW / BADGE ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(93,176,51,.08);
  border: 1px solid rgba(93,176,51,.2);
  border-radius: 99px;
  padding: .4rem 1rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--green-light);
  letter-spacing: .06em;
  margin-bottom: 1.6rem;
}

.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(93,176,51,.6); }
  50% { box-shadow: 0 0 0 6px rgba(93,176,51,0); }
}

/* ─── HERO SECTION ─── */
#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 72px;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: 1.4rem;
}

.hero-content p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 440px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.phone-icon {
  width: 28px; height: 28px;
  background: rgba(93,176,51,.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--green);
}

/* ─── HERO STATS ─── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: 'Fira Code', monospace;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .3rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ─── HERO VISUAL ─── */
.hero-visual { position: relative; }

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
}

.hero-img-main {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--dark3);
  position: relative;
  z-index: 1;
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  display: block;
}

/* Float cards */
.float-card {
  position: absolute;
  background: rgba(13,24,9,.85);
  border: 1px solid rgba(93,176,51,.2);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  min-width: 160px;
  z-index: 2;
}

.fc1 { bottom: 2rem; left: -2rem; }
.fc2 { top: 2rem; right: -2rem; }

.fc-label {
  font-size: .7rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.fc-value {
  font-family: 'Fira Code', monospace;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

.fc-badge {
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .5rem;
  border-radius: 99px;
  letter-spacing: .04em;
}

.badge-green { background: rgba(93,176,51,.15); color: var(--green); }
.badge-gold  { background: rgba(245,184,42,.15); color: var(--gold); }

/* Orbital ring */
.orbital-ring {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%; left: -10%;
  border: 1px dashed rgba(93,176,51,.12);
  border-radius: 50%;
  animation: spin 40s linear infinite;
  z-index: 0;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Particles */
.particle {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
}

.p1 {
  width: 10px; height: 10px;
  background: var(--green);
  top: 15%; left: -5%;
  animation: particleFloat 6s ease-in-out infinite;
}

.p2 {
  width: 7px; height: 7px;
  background: var(--gold);
  bottom: 25%; right: -4%;
  animation: particleFloat 8s ease-in-out infinite reverse;
}

.p3 {
  width: 6px; height: 6px;
  background: var(--green-light);
  top: 60%; left: 5%;
  animation: particleFloat 5s ease-in-out infinite 2s;
}

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

/* ─── TICKER ─── */
.ticker-section {
  position: relative;
  z-index: 1;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ticker-label {
  font-family: 'Fira Code', monospace;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  white-space: nowrap;
  padding: 0 2rem;
  flex-shrink: 0;
}

.ticker-wrapper {
  flex: 1;
  overflow: hidden;
  display: flex;
}

.ticker-track {
  display: flex;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}

.ticker-wrapper:hover .ticker-track { animation-play-state: paused; }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-logo {
  padding: 0 1.5rem;
  font-family: 'Fira Code', monospace;
  font-size: .85rem;
  color: var(--muted);
}

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

.service-card {
  background: rgba(13,24,9,.7);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all .4s ease;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(93,176,51,.08), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
}

.service-card:hover::before { opacity: 1; }

.service-card:hover {
  border-color: rgba(93,176,51,.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}

.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
}

.si-green  { background: rgba(93,176,51,.15);  color: var(--green); }
.si-gold   { background: rgba(245,184,42,.15); color: var(--gold); }
.si-blue   { background: rgba(56,189,248,.12); color: #38bdf8; }
.si-purple { background: rgba(167,139,250,.12); color: #a78bfa; }
.si-red    { background: rgba(248,113,113,.12); color: #f87171; }
.si-cyan   { background: rgba(34,211,238,.12);  color: #22d3ee; }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .8rem;
}

.service-card p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-arrow {
  color: var(--green);
  font-size: .85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
  transition: gap .3s;
}

.service-arrow:hover { gap: .7rem; }

/* ─── PROCESS SECTION ─── */
.process-section { position: relative; z-index: 1; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: steps;
}

.process-step {
  background: rgba(13,24,9,.6);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: all .4s ease;
}

.process-step:hover {
  border-color: rgba(93,176,51,.3);
  transform: translateY(-4px);
}

.process-num {
  font-family: 'Fira Code', monospace;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: .9;
}

.process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .6rem;
}

.process-step p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.65;
}

/* ─── WHY US / ABOUT GRID ─── */
.whyus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

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

.fi-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(93,176,51,.12);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.fi-text h5 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .3rem;
}

.fi-text p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.6;
}

/* Metrics grid */
.whyus-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.metric-card {
  background: rgba(13,24,9,.75);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all .4s ease;
}

.metric-card:hover {
  border-color: rgba(93,176,51,.3);
  transform: scale(1.03);
}

.metric-value {
  font-family: 'Fira Code', monospace;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: .5rem;
}

.metric-label {
  font-size: .82rem;
  color: var(--muted);
}

/* ─── TESTIMONIALS ─── */
.testimonials-section { position: relative; z-index: 1; }

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

.testimonial-card {
  background: rgba(13,24,9,.7);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: all .4s ease;
}

.testimonial-card:hover {
  border-color: rgba(93,176,51,.3);
  transform: translateY(-5px);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: .1em;
}

.testimonial-text {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fira Code', monospace;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: .9rem;
}

.author-role {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .15rem;
}

/* ─── CTA SECTION ─── */
.cta-section {
  position: relative;
  z-index: 1;
  padding: 2rem 0 6rem;
}

.cta-box {
  background: rgba(13,24,9,.8);
  border: 1px solid rgba(93,176,51,.2);
  border-radius: 28px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), var(--gold), var(--green), transparent);
}

.cta-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(93,176,51,.08), transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}

.cta-box p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

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

/* ─── FOOTER ─── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-logo {
  font-family: 'Fira Code', monospace;
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--green), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand-desc {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links { display: flex; gap: .75rem; }

.social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(13,24,9,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .9rem;
  text-decoration: none;
  transition: all .3s ease;
}

.social-link:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(93,176,51,.08);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: 'Fira Code', monospace;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.2rem;
  letter-spacing: .03em;
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .88rem;
  transition: color .3s;
}

.footer-links a:hover { color: var(--green); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.5;
}

.contact-item i {
  color: var(--green);
  font-size: .9rem;
  margin-top: .15rem;
  flex-shrink: 0;
}

.contact-item a {
  color: var(--muted);
  text-decoration: none;
  transition: color .3s;
}

.contact-item a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--muted);
  font-size: .82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--muted);
  font-size: .82rem;
  text-decoration: none;
  transition: color .3s;
}

.footer-bottom-links a:hover { color: var(--green); }

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s ease;
  z-index: 9998;
  box-shadow: 0 8px 24px rgba(93,176,51,.4);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(93,176,51,.55);
}

/* ─── PAGE HEADER (contact / inner pages) ─── */
.page-header {
  min-height: 42vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 2rem 5rem;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.breadcrumb a { color: var(--muted); text-decoration: none; transition: color .3s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: var(--green-light); }
.breadcrumb i { font-size: .65rem; }

.page-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
}

/* ─── CONTACT PAGE SPECIFIC ─── */
.contact-section {
  position: relative;
  z-index: 1;
  padding: 0 2rem 7rem;
}

.contact-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-intro-title {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: .8rem;
  line-height: 1.2;
}

.contact-intro-sub {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.info-card {
  background: rgba(13,24,9,.7);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all .3s ease;
  text-decoration: none;
  color: var(--text);
}

.info-card:hover {
  border-color: rgba(93,176,51,.4);
  transform: translateX(6px);
  background: rgba(93,176,51,.05);
}

.info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.icon-green  { background: rgba(93,176,51,.15);  color: var(--green); }
.icon-gold   { background: rgba(245,184,42,.15); color: var(--gold); }
.icon-blue   { background: rgba(56,189,248,.12); color: #38bdf8; }
.icon-purple { background: rgba(167,139,250,.12); color: #a78bfa; }

.info-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .25rem;
}

.info-value {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.info-card:hover .info-value { color: var(--green-light); }

.social-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.social-row { display: flex; gap: .75rem; }

.social-btn {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(13,24,9,.7);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1rem;
  text-decoration: none;
  transition: all .3s ease;
}

.social-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(93,176,51,.08);
  transform: translateY(-3px);
}

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(93,176,51,.08);
  border: 1px solid rgba(93,176,51,.2);
  border-radius: 99px;
  padding: .5rem 1rem;
  font-size: .8rem;
  color: var(--green-light);
  font-weight: 600;
  margin-top: 2rem;
}

.response-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(93,176,51,.6); }
  50% { box-shadow: 0 0 0 6px rgba(93,176,51,0); }
}

/* ─── CONTACT FORM CARD ─── */
.form-card {
  background: rgba(13,24,9,.75);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), var(--gold), var(--green), transparent);
}

.form-title { font-size: 1.4rem; font-weight: 700; margin-bottom: .4rem; }
.form-subtitle { font-size: .88rem; color: var(--muted); margin-bottom: 2rem; }

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

.form-group {
  margin-bottom: 1.25rem;
  position: relative;
}

.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: .5rem;
  letter-spacing: .03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(8,14,5,.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .85rem 1rem;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  transition: all .3s ease;
  outline: none;
  appearance: none;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%237a9370'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.form-group select option { background: var(--dark2); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(93,176,51,.5);
  background: rgba(93,176,51,.04);
  box-shadow: 0 0 0 3px rgba(93,176,51,.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(122,147,112,.5); }

.form-icon-wrap { position: relative; }

.form-icon-wrap i {
  position: absolute;
  left: 1rem; top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: .85rem;
  pointer-events: none;
}

.form-icon-wrap input { padding-left: 2.6rem; }

.submit-btn {
  width: 100%;
  background: var(--green);
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 12px;
  font-family: 'Fira Code', monospace;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #6bc83e, #4a9e22);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(93,176,51,.45);
}

/* Checkbox styles */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--green);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: .1rem;
}

.checkbox-group label {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
  margin-bottom: 0;
}

.checkbox-group label a { color: var(--green); }

/* Budget tags */
.budget-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.budget-tag {
  background: rgba(13,24,9,.7);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: .35rem .85rem;
  font-size: .8rem;
  color: var(--muted);
  cursor: pointer;
  transition: all .3s ease;
}

.budget-tag:hover,
.budget-tag.active {
  border-color: var(--green);
  color: var(--green);
  background: rgba(93,176,51,.08);
}

/* Success state */
.form-success {
  text-align: center;
  padding: 3rem 1rem;
}

.success-icon {
  width: 80px; height: 80px;
  background: rgba(93,176,51,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--green);
  margin: 0 auto 1.5rem;
}

/* FAQ Section */
.faq-section {
  position: relative;
  z-index: 1;
  padding: 0 2rem 6rem;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color .3s;
}

.faq-item.open { border-color: rgba(93,176,51,.3); }

.faq-question {
  width: 100%;
  background: rgba(13,24,9,.6);
  border: none;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  text-align: left;
  transition: background .3s;
}

.faq-question:hover { background: rgba(93,176,51,.04); }

.faq-question i {
  color: var(--green);
  font-size: .85rem;
  transition: transform .3s;
  flex-shrink: 0;
}

.faq-item.open .faq-question i { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.75;
  padding: 0 1.6rem 1.4rem;
}

/* Map section */
.map-section {
  position: relative;
  z-index: 1;
  padding: 0 2rem 4rem;
}

.map-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 360px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) brightness(.75) saturate(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 2rem; }
  .hero-visual { order: -1; }
  .hero-img-wrap { max-width: 360px; margin: 0 auto; }
  .fc1 { left: -1rem; }
  .fc2 { right: -1rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .whyus-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 3rem 1.5rem; }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-stats { gap: 1rem; }
  .stat-num { font-size: 1.4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .whyus-metrics { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .section-pad { padding: 4rem 0; }
  .contact-section { padding: 0 1.5rem 5rem; }
  .section-sub { margin-bottom: 2rem; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .float-card { display: none; }
  .whyus-metrics { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: .75rem; align-items: flex-start; }
  .stat-divider { display: none; }
  .form-card { padding: 1.75rem; }
  .cta-box { border-radius: 20px; }
  .page-title { font-size: clamp(2rem, 9vw, 3rem); }
}
