/* =============================================================
   Geo-Tracts Land Surveyors — Stylesheet
   Modern, professional, surveyor-green theme
   ============================================================= */

/* ---------- 1. ROOT TOKENS ---------- */
:root {
  /* Brand palette — natural surveyor greens with warm gold accent */
  --brand-50:   #f3faf0;
  --brand-100:  #e3f4dc;
  --brand-200:  #c8e8b8;
  --brand-300:  #9dd483;
  --brand-400:  #7cba5b;
  --brand-500:  #5fa03d;          /* primary */
  --brand-600:  #4a8030;
  --brand-700:  #3c652a;
  --brand-800:  #325125;
  --brand-900:  #2a4422;

  --accent:     #f5b301;          /* warm gold */
  --accent-dark:#d99a00;

  --ink-900:    #15201a;
  --ink-700:    #2c3e34;
  --ink-500:    #586e60;
  --ink-300:    #94a59a;
  --ink-100:    #e6ece8;

  --bg:         #ffffff;
  --bg-soft:    #f7faf6;
  --bg-card:    #ffffff;
  --border:     #e3eadc;

  /* Typography */
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Sizing */
  --container-max: 1200px;
  --radius-sm: 6px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 8px rgba(21,32,26,.06);
  --shadow:    0 8px 30px rgba(21,32,26,.08);
  --shadow-lg: 0 20px 50px rgba(21,32,26,.12);
}

/* ---------- 2. RESET / BASE ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: var(--brand-600); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand-700); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  color: var(--ink-900);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.2;
}
h1 { font-size: clamp(2.1rem, 4vw + .5rem, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 2vw + .8rem, 2.6rem); }
h3 { font-size: clamp(1.3rem, 1vw + .8rem, 1.7rem); }
.lead { font-size: 1.1rem; color: var(--ink-500); }

::selection { background: var(--brand-500); color: #fff; }

/* ---------- 3. BUTTONS ---------- */
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: .75rem 1.6rem;
  letter-spacing: .01em;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-lg { padding: .95rem 2rem; font-size: 1rem; }
.btn-primary {
  background: var(--brand-500);
  color: #fff;
  box-shadow: 0 4px 14px rgba(95,160,61,.35);
}
.btn-primary:hover { background: var(--brand-600); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(95,160,61,.45); }
.btn-accent {
  background: var(--accent);
  color: var(--ink-900);
  box-shadow: 0 4px 14px rgba(245,179,1,.35);
}
.btn-accent:hover { background: var(--accent-dark); color: var(--ink-900); transform: translateY(-2px); }
.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline-light:hover { background: #fff; color: var(--brand-700); }
.btn-light { background: #fff; color: var(--brand-700); font-weight: 700; }
.btn-light:hover { background: var(--brand-50); transform: translateY(-2px); }

/* ---------- 4. TOP BAR ---------- */
.top-bar {
  background: var(--brand-800);
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  padding: .55rem 0;
}
.top-bar a { color: rgba(255,255,255,.85); margin-left: 1.25rem; }
.top-bar a:hover { color: #fff; }
.top-bar__cta {
  background: var(--accent);
  color: var(--ink-900) !important;
  padding: .25rem .7rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.top-bar__cta:hover { background: var(--accent-dark); }

/* ---------- 5. NAV ---------- */
.site-nav {
  background: #fff;
  box-shadow: 0 2px 12px rgba(21,32,26,.06);
  padding: .85rem 0;
  z-index: 1020;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.brand-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  color: #fff;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 14px rgba(95,160,61,.35);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink-900);
  letter-spacing: -.02em;
}
.brand-text small {
  font-size: .72rem;
  color: var(--brand-600);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 600;
}
.site-nav .nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink-700);
  padding: .5rem 1rem !important;
  position: relative;
}
.site-nav .nav-link.active,
.site-nav .nav-link:hover {
  color: var(--brand-600);
}
.site-nav .nav-link.active::after {
  content: ""; position: absolute; left: 1rem; right: 1rem; bottom: -2px;
  height: 3px; background: var(--brand-500); border-radius: 3px;
}
.nav-cta { padding: .55rem 1.4rem !important; font-size: .9rem; }

/* Dropdown — services mega look */
.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: .75rem;
  margin-top: .5rem !important;
}
.dropdown-header {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--brand-600);
  font-weight: 700;
  padding: .5rem .75rem .25rem;
}
.dropdown-item {
  font-family: var(--font-display);
  font-weight: 500;
  border-radius: var(--radius-sm);
  padding: .55rem .85rem;
  color: var(--ink-700);
}
.dropdown-item:hover {
  background: var(--brand-50);
  color: var(--brand-700);
}
.dropdown-item i { color: var(--brand-500); width: 22px; }

/* ---------- 6. HERO ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-image:
    linear-gradient(115deg, rgba(20,40,25,.78) 0%, rgba(20,40,25,.45) 60%, rgba(20,40,25,.25) 100%),
    url('https://images.unsplash.com/photo-1581094271901-8022df4466f9?w=1920&q=80');
  background-size: cover;
  background-position: center;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 20% 30%, rgba(95,160,61,.35), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(245,179,1,.18), transparent 55%);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  padding: .4rem 1rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-300); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero__title {
  color: #fff;
  margin: 1.25rem 0 1rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero__title .highlight {
  background: linear-gradient(120deg, var(--accent), #ffd966);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  color: rgba(255,255,255,.92);
  font-size: 1.15rem;
  max-width: 620px;
  margin-bottom: 2rem;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__stats {
  display: flex; gap: 2.5rem; margin-top: 3rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 2rem;
}
.hero__stat strong {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 800;
  color: var(--accent);
  display: block; line-height: 1;
}
.hero__stat span { color: rgba(255,255,255,.78); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; }

/* Page banner (non-home pages) */
.page-banner {
  position: relative;
  padding: 7rem 0 5rem;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.page-banner::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(115deg, rgba(20,40,25,.85) 0%, rgba(50,81,37,.7) 100%),
    url('https://images.unsplash.com/photo-1569163139394-de4798aa62b6?w=1920&q=80') center/cover;
}
.page-banner h1 { color: #fff; margin-bottom: .5rem; }
.page-banner .breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
}
.page-banner .breadcrumb-item, .page-banner .breadcrumb-item a {
  color: rgba(255,255,255,.85);
  font-family: var(--font-display);
  font-weight: 500;
}
.page-banner .breadcrumb-item.active { color: var(--accent); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); content: "/"; }

/* ---------- 7. SECTION ---------- */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-tinted { background: var(--bg-soft); }
.section-dark {
  background: linear-gradient(135deg, var(--brand-800), var(--brand-900));
  color: rgba(255,255,255,.9);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }

.section-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 700;
  font-size: .8rem;
  color: var(--brand-600);
  margin-bottom: 1rem;
}
.section-title {
  margin-bottom: 1rem;
}
.section-title em {
  color: var(--brand-500);
  font-style: normal;
  position: relative;
}
.section-title em::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 8px;
  background: rgba(245,179,1,.4);
  z-index: -1;
  border-radius: 4px;
}
.section-sub { color: var(--ink-500); max-width: 700px; margin: 0 auto; }

/* ---------- 8. ABOUT/INTRO BLOCK ---------- */
.intro-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  height: 100%;
}
.intro-card h5 { color: var(--brand-700); margin-bottom: 1rem; }
.intro-card .info-list { list-style: none; padding: 0; margin: 0; }
.intro-card .info-list li {
  padding: .9rem 0;
  border-bottom: 1px dashed var(--border);
}
.intro-card .info-list li:last-child { border-bottom: 0; }
.intro-card .info-list .label {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--ink-300); font-weight: 600; display: block;
}
.intro-card .info-list .value {
  font-family: var(--font-display); font-weight: 600; color: var(--ink-900);
}

.feature-tile {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
}
.feature-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-tile__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--brand-50);
}
.feature-tile__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s;
}
.feature-tile:hover .feature-tile__img img { transform: scale(1.06); }
.feature-tile__body { padding: 1.5rem; }
.feature-tile__body h4 { margin: 0 0 .5rem; font-size: 1.15rem; }
.feature-tile__body p { color: var(--ink-500); font-size: .92rem; margin: 0; }

/* ---------- 9. SERVICES GRID ---------- */
.service-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s;
  height: 100%;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-200);
}
.service-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s;
}
.service-card:hover .service-card__media img { transform: scale(1.08); }
.service-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,40,25,.55) 100%);
}
.service-card__icon {
  position: absolute; bottom: -22px; right: 1.25rem;
  width: 50px; height: 50px;
  background: var(--brand-500);
  color: #fff;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(95,160,61,.4);
  z-index: 2;
}
.service-card__body { padding: 2rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card__body h3 {
  font-size: 1.2rem;
  margin: 0 0 .65rem;
  color: var(--ink-900);
}
.service-card__body p { color: var(--ink-500); margin-bottom: 1.25rem; flex: 1; }
.service-card__more {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brand-600);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  align-self: flex-start;
}
.service-card__more i { transition: transform .25s; }
.service-card__more:hover { color: var(--brand-700); }
.service-card__more:hover i { transform: translateX(4px); }

/* ---------- 10. STAT/CTA STRIP ---------- */
.cta-banner {
  position: relative;
  isolation: isolate;
  padding: 5rem 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(135deg, rgba(50,81,37,.92), rgba(20,40,25,.85)),
    url('https://images.unsplash.com/photo-1516216628859-9bccecab13ca?w=1600&q=80') center/cover fixed;
}
.cta-banner h2 { color: #fff; }
.cta-banner .phone-big {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  margin: 1rem 0;
  display: inline-block;
}
.cta-banner .phone-big a { color: inherit; }

.cta-strip {
  background: linear-gradient(120deg, var(--brand-600), var(--brand-800));
  color: #fff;
  padding: 3.5rem 0;
}
.cta-strip__title { color: #fff; margin: 0 0 .35rem; font-size: 1.85rem; }
.cta-strip__sub { color: rgba(255,255,255,.85); margin: 0; }

/* ---------- 11. TESTIMONIALS (SWIPER) ---------- */
.testimonials {
  position: relative;
  background: var(--bg-soft);
  padding: 6rem 0;
  overflow: hidden;
}
.testimonials::before {
  content: ""; position: absolute; top: -100px; left: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(95,160,61,.12), transparent 70%);
  border-radius: 50%;
}
.testimonial-slider { padding: 2rem 0 3.5rem; }
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
  border: 1px solid var(--border);
}
.testimonial-card::before {
  content: "\201C";
  font-family: Georgia, serif;
  position: absolute; top: -8px; left: 1.5rem;
  font-size: 5rem; line-height: 1;
  color: var(--brand-200);
  font-weight: 700;
}
.testimonial-card p {
  font-size: 1.02rem;
  color: var(--ink-700);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-card .author {
  display: flex; align-items: center; gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.testimonial-card .author img {
  width: 52px; height: 52px;
  border-radius: 50%; object-fit: cover;
  border: 3px solid var(--brand-100);
}
.testimonial-card .author h6 { margin: 0; font-size: 1rem; color: var(--ink-900); }
.testimonial-card .author span { color: var(--brand-600); font-size: .82rem; font-weight: 600; }
.swiper-pagination-bullet { background: var(--brand-300); opacity: .6; }
.swiper-pagination-bullet-active { background: var(--brand-500); opacity: 1; width: 26px; border-radius: 5px; transition: width .25s; }

/* ---------- 12. CONTACT ---------- */
.contact-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-form { padding: 3rem; }
.contact-form .form-control {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  font-family: var(--font-body);
  background: var(--bg-soft);
}
.contact-form .form-control:focus {
  border-color: var(--brand-400);
  box-shadow: 0 0 0 3px rgba(95,160,61,.18);
  background: #fff;
}
.contact-form label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  color: var(--ink-700);
  margin-bottom: .35rem;
}
.contact-map iframe {
  width: 100%; height: 100%; min-height: 460px; border: 0; display: block;
}
.form-result {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  display: none;
  font-size: .92rem;
}
.form-result.is-success { display: block; background: #ecf8e2; color: var(--brand-700); border: 1px solid var(--brand-200); }
.form-result.is-error   { display: block; background: #fdeaea; color: #b53030; border: 1px solid #f5c2c2; }

/* Quick info card on contact page */
.info-card {
  background: linear-gradient(135deg, var(--brand-700), var(--brand-900));
  color: #fff;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  height: 100%;
}
.info-card h4 { color: #fff; margin: 0 0 1.25rem; }
.info-card .info-row {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.info-card .info-row:last-child { border-bottom: 0; }
.info-card .info-row i {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.12);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.info-card .info-row span { display: block; font-weight: 600; color: #fff; font-family: var(--font-display); }
.info-card .info-row a { color: rgba(255,255,255,.85); }
.info-card .info-row a:hover { color: var(--accent); }

/* ---------- 13. FEATURE LIST (about / service detail) ---------- */
.feature-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: .65rem 0;
}
.feature-list li i {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--brand-100);
  color: var(--brand-700);
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: .85rem;
}

/* Service-detail layout */
.service-detail__hero {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  aspect-ratio: 16/9;
}
.service-detail__hero img { width: 100%; height: 100%; object-fit: cover; }

.related-services .service-card { box-shadow: var(--shadow-sm); }

/* Sidebar (service detail) */
.side-services {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: sticky; top: 100px;
}
.side-services h5 { margin: 0 0 1rem; }
.side-services ul { list-style: none; padding: 0; margin: 0; }
.side-services li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--ink-700);
  font-family: var(--font-display);
  font-weight: 500;
  transition: background .2s;
  margin-bottom: .25rem;
}
.side-services li a:hover,
.side-services li a.active {
  background: #fff;
  color: var(--brand-700);
  box-shadow: var(--shadow-sm);
}
.side-services li a.active { border-left: 3px solid var(--brand-500); }
.side-services li a i { color: var(--brand-500); font-size: .8rem; }

.side-cta {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-900));
  color: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
}
.side-cta h5 { color: #fff; margin-bottom: .5rem; }
.side-cta p { color: rgba(255,255,255,.85); font-size: .9rem; margin-bottom: 1.25rem; }

/* ---------- 14. FOOTER ---------- */
.site-footer {
  background: linear-gradient(160deg, #1a2820, #15201a);
  color: rgba(255,255,255,.7);
  padding: 5rem 0 2rem;
  position: relative;
}
.footer-brand {
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem;
}
.footer-brand .brand-text strong { color: #fff; }
.footer-brand .brand-text small { color: var(--brand-300); }
.footer-about { font-size: .92rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { list-style: none; padding: 0; display: flex; gap: .65rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.8);
  display: grid; place-items: center;
  transition: all .2s;
}
.footer-social a:hover { background: var(--brand-500); color: #fff; transform: translateY(-2px); }

.footer-heading {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  position: relative;
  padding-bottom: .65rem;
}
.footer-heading::after {
  content: ""; position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 3px;
  background: var(--brand-500);
  border-radius: 3px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { padding: .35rem 0; }
.footer-links a {
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  transition: all .2s;
  display: inline-block;
}
.footer-links a:hover { color: var(--brand-300); transform: translateX(4px); }
.footer-links .more-link { color: var(--accent); font-weight: 600; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: .55rem 0;
  font-size: .9rem;
}
.footer-contact i {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.05);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--brand-300);
}
.footer-contact a { color: rgba(255,255,255,.85); }
.footer-contact a:hover { color: var(--brand-300); }

.footer-divider {
  margin: 2.5rem 0 1.5rem;
  border-color: rgba(255,255,255,.1);
}
.footer-copy { font-size: .88rem; color: rgba(255,255,255,.55); }
.footer-tag { color: rgba(255,255,255,.55); font-size: .82rem; }

/* ---------- 15. FLOATING BUTTONS ---------- */
.floating-btn {
  position: fixed;
  right: 1.25rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  z-index: 999;
  box-shadow: var(--shadow);
  transition: all .25s;
  text-decoration: none;
}
.floating-btn span { display: none; }
.floating-btn:hover { transform: scale(1.08); color: #fff; }
.floating-btn--whatsapp {
  bottom: 5.5rem;
  background: #25d366;
  font-size: 1.4rem;
}
.floating-btn--whatsapp::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: #25d366;
  animation: ring 2s infinite;
  z-index: -1;
}
@keyframes ring {
  0%   { transform: scale(1);   opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.floating-btn--call {
  bottom: 1.25rem;
  background: var(--brand-500);
  font-size: 1.2rem;
}

.scroll-top {
  position: fixed;
  left: 1.25rem; bottom: 1.25rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink-900);
  color: #fff; border: none;
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: all .25s;
  z-index: 999;
  box-shadow: var(--shadow);
}
.scroll-top.is-visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--brand-600); }

/* ---------- 16. UTILITY ---------- */
.divider-shape {
  position: relative;
  height: 60px;
  margin-top: -60px;
  z-index: 5;
}
.divider-shape svg {
  width: 100%; height: 100%; display: block;
}

.bg-pattern {
  background-image:
    radial-gradient(circle, rgba(95,160,61,.07) 1px, transparent 1px);
  background-size: 22px 22px;
}

.text-brand { color: var(--brand-600) !important; }
.bg-brand { background: var(--brand-500) !important; color: #fff; }

/* Responsive tweaks */
@media (max-width: 991px) {
  .hero { min-height: 70vh; padding: 6rem 0 4rem; }
  .top-bar a { margin-left: .75rem; font-size: .8rem; }
  .nav-cta { display: inline-block; }
  .section { padding: 4.5rem 0; }
  .contact-form { padding: 2rem; }
  .hero__stats { gap: 1.5rem; }
  .hero__stat strong { font-size: 1.8rem; }
}
@media (max-width: 575px) {
  .hero__cta .btn { width: 100%; }
  .floating-btn { width: 50px; height: 50px; }
}




