/*
Theme Name:        FlickinLabs
Theme URI:         https://flickin.com/
Author:            FlickinLabs
Author URI:        https://flickin.com/
Description:       Modern WordPress theme for IT services and web development.
Version:           1.3.2
Requires at least: 5.6
Tested up to:      6.5
Requires PHP:      7.4
License:           GNU General Public License v2 or later
License URI:       https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       flickinlabs
Tags:              one-column, custom-menu, custom-logo, featured-images, business
*/
/* ============================
   Reset & base
============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  /* Deep warm dark brown (replaces former dark green) — gives orange great contrast */
  --dark-green: #1f1209;
  --dark-green-2: #160d06;
  --darker: #0d0703;
  /* Primary orange */
  --lime: #EC791A;
  --lime-2: #d16a13;
  /* Lighter orange */
  --lime-soft: #FF9F5A;
  --beige: #f3efe6;
  --beige-2: #ebe5d6;
  --white: #ffffff;
  --text: #0f1a16;
  --muted: #6b7470;
  --border: #e6e1d4;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ============================
   Reusable
============================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-dark { background: var(--dark-green); color: #fff; }
.btn-dark:hover { background: #2e1d12; transform: translateY(-2px); }
.btn-lime { background: var(--lime); color: var(--dark-green); }
.btn-lime:hover { background: var(--lime-2); transform: translateY(-2px); }
.btn .arrow {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--lime); color: var(--dark-green);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px;
}
.btn-lime .arrow { background: var(--dark-green); color: var(--lime); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-weight: 600; font-size: 16px; color: var(--dark-green);
}
.eyebrow .ico {
  display: inline-flex; align-items: center; gap: 2px;
}
/* Logo-style double mark: left pill + right curved chevron */
.eyebrow .dot {
  width: 14px; height: 22px;
  background: var(--lime);
  border-radius: 50% 4px 4px 50% / 50% 4px 4px 50%;
  display: inline-block;
}
.eyebrow .play {
  width: 16px; height: 22px;
  background: var(--lime);
  border-radius: 4px 50% 50% 4px / 4px 50% 50% 4px;
  display: inline-block;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; color: var(--text); letter-spacing: -.02em; }
.h-display { font-size: clamp(36px, 5vw, 60px); font-weight: 700; line-height: 1.1; }

/* ============================
   TOP UTILITY BAR
============================ */
.topbar {
  background: var(--dark-green);
  color: rgba(255,255,255,.85);
  font-size: 13px;
}
.topbar-wrap {
  display: flex; justify-content: space-between; align-items: stretch;
  gap: 24px;
}
.topbar-left {
  display: flex; gap: 28px; align-items: center;
  padding: 12px 0;
  flex-wrap: wrap;
}
.topbar-left .item { display: inline-flex; align-items: center; gap: 9px; }
.topbar-left .item i { color: var(--lime); font-size: 13px; }

.topbar-right {
  background: var(--lime);
  display: flex; align-items: center; gap: 18px;
  padding: 12px 30px;
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%);
}
.topbar-right a {
  color: var(--dark-green);
  font-size: 14px;
  transition: opacity .2s;
}
.topbar-right a:hover { opacity: .65; }

/* ============================
   HEADER (white)
============================ */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.header-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 800; font-size: 21px; color: var(--dark-green);
  letter-spacing: -.02em;
}
.logo-name { display: inline-flex; align-items: baseline; gap: 2px; }
.logo-name .end-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--lime);
  display: inline-block; align-self: end; margin-bottom: 4px;
}
.logo-mark {
  display: inline-flex; align-items: center;
  gap: 0;
  position: relative;
}
/* Dark brown left pill */
.logo-mark .c1 {
  width: 14px; height: 30px;
  background: var(--dark-green);
  border-radius: 50% 4px 4px 50% / 50% 4px 4px 50%;
  display: inline-block;
}
/* Orange right curved chevron-D */
.logo-mark .c2 {
  width: 18px; height: 30px;
  background: var(--lime);
  border-radius: 4px 50% 50% 4px / 4px 50% 50% 4px;
  display: inline-block;
  margin-left: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 38px;
  flex-wrap: wrap;
}
/* WordPress wp_nav_menu wraps links in ul/li — flatten for flex layout */
.nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: contents;
}
.nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Mobile-only "Get A Quote" inside nav panel — hidden on desktop */
.nav .nav-quote { display: none; }
.nav a {
  font-size: 15px; font-weight: 500; color: #3a4540;
  padding: 6px 2px; position: relative;
  transition: color .2s;
  display: inline-block;
}
.nav a:hover { color: var(--dark-green); }
.nav a.active,
.nav .current-menu-item > a,
.nav .current_page_item > a {
  color: var(--dark-green);
  font-weight: 600;
}
.nav a.active::after,
.nav .current-menu-item > a::after,
.nav .current_page_item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  border-radius: 2px;
  background: var(--lime);
}

.header-cta { display: flex; align-items: center; gap: 18px; }
.mobile-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--dark-green);
  color: #fff;
  align-items: center; justify-content: center;
  font-size: 16px;
  transition: background .2s;
}
.mobile-toggle:hover { background: #2e1d12; }
.mobile-toggle .icon-close { display: none; }
.mobile-toggle.is-open .icon-bars { display: none; }
.mobile-toggle.is-open .icon-close { display: inline-block; }

/* Mobile menu overlay */
body.menu-open { overflow: hidden; }
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(31,18,9,.5);
  z-index: 99;
  opacity: 0;
  transition: opacity .25s ease;
}
.nav-overlay.is-open {
  display: block;
  opacity: 1;
}

/* ============================
   HERO
============================ */
.hero {
  background: #fafaf6;
  padding: 80px 0 110px;
  position: relative;
  overflow: hidden;
}
/* top-center dotted pattern (above the collage area) */
.hero .dots-top {
  position: absolute; left: 40%; top: 10%;
  width: 120px; height: 50px;
  background-image: radial-gradient(circle, #d4cabe 1.8px, transparent 1.8px);
  background-size: 12px 12px;
  pointer-events: none;
  z-index: 1;
}
/* bottom-left dotted pattern (below the explore button) */
.hero .dots-bot {
  position: absolute; left: 8%; bottom: 5%;
  width: 110px; height: 50px;
  background-image: radial-gradient(circle, #d4cabe 1.8px, transparent 1.8px);
  background-size: 12px 12px;
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 2;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 58px);
  margin: 24px 0 28px;
  color: var(--dark-green);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.025em;
}
.hero-sub {
  color: #8a948f;
  font-size: 15px;
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero-cta { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.hero-cta .link {
  font-weight: 600; color: var(--dark-green);
  border-bottom: 1.5px solid var(--dark-green);
  padding-bottom: 4px;
  font-size: 15px;
}
.hero-cta .link:hover { opacity: .7; }

/* ----- Hero image collage ----- */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
}
.stack {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}
.stack .si {
  position: absolute;
  overflow: hidden;
  background: #d4d4d4;
}
.stack .si img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: transform .5s ease;
}
.stack .si:hover img { transform: scale(1.04); }

/* LEFT: tall vertical piece — bearded man + woman with glasses behind */
/* Offset from the left edge to leave white space for the HIRE US badge below */
.stack .si-1 {
  top: 14%;
  left: 18%;
  width: 32%;
  height: 60%;
  border-radius: 30px;
}
/* TOP RIGHT: woman piece */
.stack .si-2 {
  top: 0;
  right: 0;
  width: 44%;
  height: 33%;
  border-radius: 30px;
  border-bottom-left-radius: 80px;
}
/* CENTER-RIGHT: largest piece — smiling bald man (biggest piece) */
.stack .si-3 {
  top: 36%;
  right: 0;
  width: 44%;
  height: 36%;
  border-radius: 30px;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
}
/* BOTTOM RIGHT: torso/hand piece — continuation */
.stack .si-4 {
  bottom: 0;
  right: 0;
  width: 44%;
  height: 25%;
  border-radius: 30px;
  border-top-left-radius: 80px;
}

/* Circular seal — bottom-left */
.hire-seal {
  position: absolute;
  left: 0;
  bottom: 8%;
  width: 130px;
  height: 130px;
  display: grid; place-items: center;
  z-index: 6;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.18));
}
.hire-seal .scallop {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hire-seal .seal-text {
  position: absolute; inset: 10px;
  width: calc(100% - 20px); height: calc(100% - 20px);
  animation: spin 24s linear infinite;
}
.hire-seal .seal-text text {
  fill: #f1ede4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
}
.hire-seal .seal-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--lime); color: var(--dark-green);
  display: grid; place-items: center;
  font-size: 14px;
  position: relative;
  z-index: 2;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Sparkle stars — cluster at bottom-right */
.sparkle {
  position: absolute;
  pointer-events: none;
  z-index: 5;
}
.sparkle::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--lime);
  clip-path: polygon(50% 0%, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0% 50%, 42% 42%);
  filter: drop-shadow(0 0 10px rgba(236,121,26,.7));
}
/* BIG sparkle - to the right of the bottom image */
.sparkle.s1 { width: 46px; height: 46px; right: -10px; bottom: 22%; }
/* MEDIUM sparkle - down-left from big */
.sparkle.s2 { width: 28px; height: 28px; right: 12%;   bottom: 8%; }
/* SMALL sparkle - further up-left from medium */
.sparkle.s3 { width: 18px; height: 18px; right: 6%;    bottom: 16%; }

/* ----- Hero rotating titles ----- */
.hero-ai-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-left: 12px;
  padding: 5px 12px 5px 8px;
  border-radius: 999px;
  background: rgba(236,121,26,.12);
  color: var(--lime);
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  vertical-align: middle;
}
.hero-ai-badge i { font-size: 10px; animation: aiPulse 2s ease-in-out infinite; }
@keyframes aiPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(1.15); }
}
.hero h1 .hero-title-static {
  display: block;
  font-size: clamp(28px, 3.8vw, 44px);
  color: var(--dark-green);
  margin-bottom: 6px;
}
.hero-title-ai {
  display: block;
  min-height: 1.15em;
  color: var(--lime);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  transition: opacity .35s ease;
}
.hero-title-ai.is-fading { opacity: 0; }
.hero-title-ai .type-cursor {
  display: inline-block;
  width: 3px; height: .9em;
  margin-left: 4px;
  background: var(--lime);
  vertical-align: -0.08em;
  animation: blinkCursor .9s step-end infinite;
}
@keyframes blinkCursor {
  50% { opacity: 0; }
}
.hero-quote-wrap {
  position: relative;
  padding-left: 18px;
  border-left: 3px solid var(--lime);
  margin-bottom: 40px;
  max-width: 460px;
  min-height: 72px;
}
.hero-quote-wrap .hero-sub {
  margin-bottom: 10px;
  max-width: none;
  color: #5a6560;
  font-size: 15.5px;
  font-style: italic;
  line-height: 1.7;
  transition: opacity .4s ease;
}
.hero-quote-wrap .hero-sub.is-fading { opacity: 0; }
.hero-quote-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--muted);
  font-weight: 600;
}
.hero-quote-meta .ai-tag {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--lime);
  background: rgba(236,121,26,.1);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
}
.hero-ai-badge.is-returning {
  background: rgba(31,18,9,.08);
  color: var(--dark-green);
}
.hero-ai-badge.is-returning i { color: var(--lime); }

/* ============================
   MARQUEE
============================ */
.marquee-wrap {
  background: var(--beige-2);
  padding: 26px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(31,18,9,.06);
  border-bottom: 1px solid rgba(31,18,9,.06);
}
.marquee {
  display: flex;
  gap: 50px;
  animation: scroll 28s linear infinite;
  width: max-content;
  align-items: center;
}
.marquee .m-item {
  display: inline-flex; align-items: center; gap: 50px;
  font-size: 24px; font-weight: 700; color: var(--dark-green);
  letter-spacing: -.01em;
  white-space: nowrap;
}
.marquee .m-item .star {
  color: var(--lime);
  font-size: 22px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================
   GOOGLE BUSINESS PROFILE (featured)
============================ */
.gmb-spotlight {
  padding: 0 0 56px;
  position: relative;
}
.gmb-spotlight-inner {
  position: relative;
  border-radius: 28px;
  padding: 48px 44px 44px;
  background: linear-gradient(135deg, #fff8f2 0%, #fff 42%, #f3efe6 100%);
  border: 2px solid var(--lime);
  box-shadow:
    0 0 0 1px rgba(236,121,26,.15),
    0 24px 60px rgba(236,121,26,.14),
    0 8px 24px rgba(31,18,9,.06);
  overflow: hidden;
}
.gmb-spotlight-inner::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,121,26,.22) 0%, transparent 70%);
  pointer-events: none;
}
.gmb-spotlight-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.gmb-spotlight-head .eyebrow { margin-bottom: 14px; }
.gmb-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--dark-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(236,121,26,.35);
}
.gmb-featured-badge i { font-size: 14px; }
.gmb-spotlight-head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  max-width: 720px;
  line-height: 1.15;
  color: var(--dark-green);
}
.gmb-spotlight-head h2 em {
  color: var(--lime);
  font-style: normal;
}
.gmb-spotlight-intro {
  color: var(--muted);
  font-size: 16px;
  max-width: 520px;
  line-height: 1.65;
}
.gmb-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}
.gmb-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 26px 26px;
  border: 1px solid rgba(236,121,26,.2);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.gmb-card:hover {
  transform: translateY(-4px);
  border-color: var(--lime);
  box-shadow: 0 16px 40px rgba(236,121,26,.12);
}
.gmb-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(236,121,26,.12);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.gmb-card-icon.is-alert {
  background: rgba(31,18,9,.08);
  color: var(--dark-green);
}
.gmb-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark-green);
}
.gmb-card > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.6;
}
.gmb-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gmb-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
}
.gmb-card li i {
  color: var(--lime);
  margin-top: 3px;
  font-size: 12px;
  flex-shrink: 0;
}
.gmb-card.is-reinstate {
  border-color: rgba(31,18,9,.12);
  background: linear-gradient(180deg, #fff 0%, #faf8f5 100%);
}
.gmb-card.is-reinstate:hover {
  border-color: var(--dark-green);
  box-shadow: 0 16px 40px rgba(31,18,9,.08);
}
.gmb-spotlight-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px dashed rgba(236,121,26,.35);
  position: relative;
  z-index: 1;
}
.gmb-spotlight-cta p {
  font-size: 15px;
  color: var(--muted);
  max-width: 480px;
}
.gmb-spotlight-cta p strong { color: var(--dark-green); }
  @media (max-width: 900px) {
.gmb-spotlight-inner { padding: 32px 24px 28px; }
.gmb-cards { grid-template-columns: 1fr; }
.gmb-spotlight-cta { flex-direction: column; align-items: flex-start; }
  }

/* ============================
   ABOUT US
============================ */
.about {
  background: #fff;
  padding: 100px 0;
  position: relative;
}
.about-head {
  text-align: center;
  margin-bottom: 60px;
}
.about-head .eyebrow {
  justify-content: center;
  margin-bottom: 18px;
}
.about-head h2 {
  font-size: clamp(34px, 4.4vw, 54px);
  max-width: 800px; margin: 0 auto;
}

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

/* About image stack */
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.about-images .ai {
  overflow: hidden;
  background: #ddd;
  border-radius: 18px;
  height: 230px;
}
.about-images .ai img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
}
.about-images .ai-1 {
  border-radius: 18px 100px 18px 18px;
}
.about-images .ai-2 {
  border-radius: 18px 18px 100px 18px;
}

/* Hire us badge in middle */
.hire-badge {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--dark-green);
  color: var(--lime);
  display: grid; place-items: center;
  text-align: center;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  z-index: 4;
}
.hire-badge::before {
  content: "";
  position: absolute; inset: 8px;
  border: 1px dashed rgba(236,121,26,.45);
  border-radius: 50%;
}
.hire-badge .hire-arrow {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--lime); color: var(--dark-green);
  display: grid; place-items: center;
  font-size: 18px;
}
/* curved text around the badge */
.hire-badge svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hire-badge svg text { fill: var(--lime); font-size: 13px; font-weight: 700; letter-spacing: 4px; }

.about-text > p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 30px;
  max-width: 530px;
}

.progress-list { margin-bottom: 32px; }
.progress-item { margin-bottom: 22px; }
.progress-item:last-child { margin-bottom: 0; }
.progress-label {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.progress-label .name { font-weight: 600; font-size: 14.5px; color: var(--text); }
.progress-label .pct { font-weight: 700; font-size: 14px; color: var(--text); }
.progress-bar {
  width: 100%; height: 6px; background: #eee9d8;
  border-radius: 999px; position: relative;
  overflow: visible;
}
.progress-fill {
  height: 100%;
  background: var(--lime);
  border-radius: 999px;
  position: relative;
}
.progress-fill::after {
  content: "";
  position: absolute; right: -10px; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 3px solid var(--lime);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

/* ============================
   STATS
============================ */
.stats {
  background: #fff;
  padding: 0 0 100px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 50px 30px;
  background: var(--beige);
  border-radius: 24px;
}
.stat-item { text-align: center; position: relative; }
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute; right: -15px; top: 25%;
  width: 1px; height: 50%; background: rgba(31,18,9,.15);
}
.stat-item h3 {
  font-size: clamp(36px, 4vw, 52px);
  color: var(--dark-green);
  margin-bottom: 6px;
}
.stat-item h3 span { color: var(--lime); }
.stat-item p { color: var(--muted); font-size: 14px; font-weight: 500; }

/* ============================
   SERVICES
============================ */
.services {
  background: var(--beige);
  padding: 100px 0;
}
.services-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 50px; gap: 30px; flex-wrap: wrap;
}
.services-head h2 { font-size: clamp(34px, 4.4vw, 54px); max-width: 580px; }
.services-head p { color: var(--muted); max-width: 380px; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.svc-card:hover {
  background: var(--dark-green);
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(31,18,9,.18);
}
.svc-card .svc-ic {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--lime);
  display: grid; place-items: center;
  color: var(--dark-green);
  font-size: 22px;
  margin-bottom: 22px;
}
.svc-card h3 { font-size: 20px; margin-bottom: 10px; transition: color .25s; }
.svc-card:hover h3 { color: #fff; }
.svc-card p { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.svc-card:hover p { color: rgba(255,255,255,.7); }
.svc-card .svc-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px; color: var(--text);
}
.svc-card:hover .svc-arrow { color: var(--lime); }

/* ============================
   PORTFOLIO
============================ */
.portfolio {
  background: #fff;
  padding: 100px 0;
  position: relative;
}
.portfolio-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 50px; gap: 30px; flex-wrap: wrap;
}
.portfolio-head h2 {
  font-size: clamp(34px, 4.4vw, 54px);
  max-width: 600px;
  letter-spacing: -.02em;
}
.portfolio-head h2 em { color: var(--lime); font-style: normal; }
.portfolio-head p { color: var(--muted); max-width: 380px; font-size: 15px; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.portfolio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .35s cubic-bezier(.16,1,.3,1),
              box-shadow .35s ease,
              border-color .25s ease;
  color: inherit;
  text-decoration: none;
}
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(31,18,9,.16);
  border-color: var(--lime);
}
.portfolio-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--beige);
}
.portfolio-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
  background: var(--beige);
}
.portfolio-card:hover .portfolio-img img { transform: scale(1.06); }

/* Orange overlay on hover */
.portfolio-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31,18,9,.7) 100%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.portfolio-card:hover .portfolio-img::after { opacity: 1; }

/* "Visit site" pill that pops up on hover */
.portfolio-visit {
  position: absolute;
  left: 50%; bottom: 18px;
  transform: translate(-50%, 20px);
  background: var(--lime); color: var(--dark-green);
  padding: 10px 20px; border-radius: 999px;
  font-weight: 700; font-size: 13px;
  display: inline-flex; align-items: center; gap: 8px;
  opacity: 0;
  transition: all .35s cubic-bezier(.16,1,.3,1);
  z-index: 2;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(236,121,26,.4);
}
.portfolio-card:hover .portfolio-visit {
  opacity: 1;
  transform: translate(-50%, 0);
}

.portfolio-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.portfolio-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.portfolio-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark-green);
  transition: color .25s;
  letter-spacing: -.01em;
  line-height: 1.3;
}
.portfolio-card:hover h3 { color: var(--lime); }
.portfolio-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}
.portfolio-arrow {
  margin-top: 8px;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 13px;
  color: var(--dark-green);
  transition: gap .25s ease;
}
.portfolio-arrow i {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--beige);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px;
  color: var(--dark-green);
  transition: all .25s ease;
}
.portfolio-card:hover .portfolio-arrow { gap: 12px; }
.portfolio-card:hover .portfolio-arrow i {
  background: var(--lime);
  color: #fff;
  transform: rotate(-45deg);
}

/* ============================
   CTA STRIP
============================ */
.cta-strip {
  background: var(--dark-green);
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(236,121,26,.22), transparent 70%);
}
.cta-wrap {
  display: flex; justify-content: space-between; align-items: center; gap: 30px;
  flex-wrap: wrap;
  position: relative; z-index: 2;
}
.cta-wrap h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 44px);
  max-width: 640px;
}
.cta-wrap h2 em {
  color: var(--lime); font-style: normal;
}

/* ============================
   TESTIMONIALS
============================ */
.testimonials {
  background: #fff;
  padding: 100px 0;
}
.testi-head { text-align: center; margin-bottom: 60px; }
.testi-head .eyebrow { justify-content: center; margin-bottom: 16px; }
.testi-head h2 { font-size: clamp(34px, 4.4vw, 54px); max-width: 700px; margin: 0 auto; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--beige);
  border-radius: 18px;
  padding: 32px;
  transition: all .25s;
  position: relative;
}
.testi-card:hover { background: var(--dark-green); color: #fff; transform: translateY(-6px); }
.testi-card .stars { color: var(--lime); margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { font-size: 15px; color: var(--text); margin-bottom: 26px; }
.testi-card:hover p { color: rgba(255,255,255,.85); }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testi-author h5 { font-size: 15px; }
.testi-card:hover h5 { color: #fff; }
.testi-author small { font-size: 13px; color: var(--muted); }
.testi-card:hover small { color: rgba(255,255,255,.6); }

/* ============================
   FOOTER
============================ */
.footer {
  background: var(--dark-green);
  color: #fff;
  padding: 80px 0 30px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 50px;
  margin-bottom: 60px;
}
.ft-about .logo { color: #fff; }
.ft-about .logo-mark .c1 { background: #fff; }
.ft-about .logo-name .end-dot { background: var(--lime); }
.ft-about p {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  margin: 20px 0 26px;
  max-width: 300px;
}
.ft-contact {
  list-style: none; margin: 0 0 24px; padding: 0;
}
.ft-contact li {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.ft-contact li i {
  color: var(--lime);
  font-size: 13px;
  width: 16px;
}
.ft-contact li a {
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.ft-contact li a:hover { color: var(--lime); }

.ft-about .ft-socials { display: flex; gap: 10px; }
.ft-about .ft-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: #fff;
  transition: all .2s;
}
.ft-about .ft-socials a:hover {
  background: var(--lime); color: var(--dark-green);
}

.ft-col h5 { font-size: 16px; color: #fff; margin-bottom: 22px; }
.ft-col ul { list-style: none; }
.ft-col ul li { margin-bottom: 12px; }
.ft-col ul li a {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  transition: color .2s;
}
.ft-col ul li a:hover { color: var(--lime); }

.ft-news input {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 14px 60px 14px 22px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}
.ft-news input::placeholder { color: rgba(255,255,255,.4); }
.ft-news { position: relative; }
.ft-news button {
  position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--lime); color: var(--dark-green);
  display: grid; place-items: center;
}

.ft-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,.5); font-size: 13px;
  flex-wrap: wrap; gap: 12px;
}
.ft-bottom-links { display: flex; gap: 24px; }
.ft-bottom-links a:hover { color: var(--lime); }

/* ============================
   REVEAL ANIMATIONS
============================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1),
              transform .8s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1),
              transform .8s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1),
              transform .8s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal-zoom {
  opacity: 0;
  transform: scale(.9);
  transition: opacity .8s cubic-bezier(.16,1,.3,1),
              transform .8s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-zoom.is-visible {
  opacity: 1;
  transform: none;
}

/* Progress bar: animate from 0 to target width when visible */
.progress-fill {
  width: 0 !important;
  transition: width 1.6s cubic-bezier(.22,1,.36,1);
}
.progress-fill.is-visible {
  width: var(--w, 0%) !important;
}

/* Counter: tabular figures so width doesn't jitter while animating */
.count {
  font-variant-numeric: tabular-nums;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-zoom {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .progress-fill {
    transition: none !important;
    width: var(--w, 0%) !important;
  }
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1024px) {
  .topbar { display: none; }
  .mobile-toggle { display: inline-flex; }
  .hero-grid, .about-grid, .cta-wrap { grid-template-columns: 1fr; gap: 50px; }
  .svc-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .stat-item:nth-child(2)::after { display: none; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual {
    margin: 0 auto;
    max-width: 400px;
  }

  /* Hide desktop nav; reveal mobile sliding panel */
  .nav {
    position: fixed;
    top: 0; right: -320px;
    width: 300px; height: 100vh;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 90px 30px 30px;
    box-shadow: -10px 0 40px rgba(0,0,0,.15);
    z-index: 110;
    transition: right .3s ease;
    overflow-y: auto;
  }
  .nav.is-open { right: 0; }
  .nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
    font-weight: 500;
  }
  .nav a.active::after,
  .nav .current-menu-item > a::after,
  .nav .current_page_item > a::after { display: none; }
  .nav a.active,
  .nav .current-menu-item > a,
  .nav .current_page_item > a {
    color: var(--lime);
    background: var(--dark-green);
    padding-left: 16px;
    border-radius: 8px;
    border-bottom-color: transparent;
  }
  /* Show the in-panel "Get A Quote" button on mobile — styled like the active Home item */
  .nav .nav-quote {
    display: flex !important;
    width: 100%;
    margin-top: 24px;
    padding: 16px 22px !important;
    background: var(--dark-green);
    color: var(--lime);
    border: none;
    border-bottom: none;
    border-radius: 999px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .3px;
    box-shadow: 0 8px 20px rgba(31,18,9,.22);
  }
  .nav .nav-quote::after { display: none; }
  .nav .nav-quote:hover {
    background: #2e1d12;
    color: var(--lime);
  }
  .header-cta .btn-dark { display: none; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .portfolio { padding: 80px 0; }
  .portfolio-head { margin-bottom: 36px; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .svc-grid, .testi-grid, .ft-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 30px; padding: 40px 20px; }
  .stat-item::after { display: none !important; }
  .hero-visual { height: 440px; max-width: 380px; }
  .hire-seal { width: 90px; height: 90px; }
  .hire-seal .seal-arrow { width: 36px; height: 36px; font-size: 12px; }
  .services-head, .cta-wrap { text-align: left; }
  .marquee .m-item { font-size: 18px; gap: 30px; }
  .ft-bottom { flex-direction: column; align-items: flex-start; }
  .hero h1 { font-size: clamp(32px, 8vw, 44px); }
}