/* ============================================================
   SKS PRINTERS — PREMIUM STYLES
   Theme: Forest Green + Ivory White + Antique Gold
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --green-900: #0d3b1f;
  --green-800: #145a2e;
  --green-700: #1a6b38;
  --green-600: #1e8040;
  --green-500: #22944a;
  --green-400: #28a855;
  --green-300: #4fc371;
  --green-100: #e6f7ec;
  --green-50:  #f0fbf4;

  --gold-900: #7a5c00;
  --gold-700: #b8860b;
  --gold-500: #d4a017;
  --gold-400: #e0b428;
  --gold-300: #f0ca5a;
  --gold-100: #fef9ec;

  --white: #ffffff;
  --grey-50: #f8f9fa;
  --grey-100: #f2f4f6;
  --grey-200: #e9ecef;
  --grey-400: #adb5bd;
  --grey-600: #6c757d;
  --grey-800: #343a40;
  --grey-900: #1a1d21;
  --dark: #111417;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-accent: 'Poppins', sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 100px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.18);
  --shadow-xl: 0 24px 80px rgba(0,0,0,.28);
  --shadow-green: 0 8px 32px rgba(26,107,56,.28);
  --shadow-gold: 0 8px 32px rgba(212,160,23,.28);

  --trans-fast: .18s ease;
  --trans-mid: .35s cubic-bezier(.4,0,.2,1);
  --trans-slow: .6s cubic-bezier(.4,0,.2,1);

  --section-pad: clamp(60px, 8vw, 120px);
  --cont-max: 1240px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--grey-800);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }
svg { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-linecap: round; stroke-linejoin: round; vertical-align: middle; }

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--grey-900); }
::-webkit-scrollbar-thumb { background: var(--green-500); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-400); }

/* ── SELECTION ─────────────────────────────────────────────── */
::selection { background: var(--green-300); color: var(--white); }

/* ── UTILITY ───────────────────────────────────────────────── */
.container { max-width: var(--cont-max); margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px); }
.grad-text {
  background: linear-gradient(120deg, var(--gold-400), var(--gold-300), var(--gold-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-gold { color: var(--gold-400); }

/* ── PARTICLE CANVAS ───────────────────────────────────────── */
.particle-canvas {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: .5;
}

/* ══════════ PRELOADER — removed ════════════════════════════ */
/* Preloader has been removed for instant page load */


/* ══════════ NAVBAR ══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  background: transparent;
  transition: background var(--trans-mid), box-shadow var(--trans-mid), padding var(--trans-mid);
}
.navbar.scrolled {
  background: rgba(10, 30, 15, .97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 32px rgba(0,0,0,.4);
}
.nav-container {
  max-width: var(--cont-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  overflow: visible;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo-img {
  width: 40px; height: 40px; object-fit: contain; border-radius: var(--r-sm);
  border: 1.5px solid var(--gold-400);
  background: var(--white);
  padding: 2px;
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
  flex-shrink: 0;
}
.nav-logo:hover .nav-logo-img { transform: rotate(-5deg) scale(1.08); box-shadow: 0 0 16px var(--gold-400); }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-brand {
  font-family: var(--font-accent); font-weight: 700; font-size: 1.05rem;
  color: var(--green-800); line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 
    -1px -1px 0 var(--white),  
     1px -1px 0 var(--white),
    -1px  1px 0 var(--white),
     1px  1px 0 var(--white);
}
.nav-slogan { font-size: .65rem; color: var(--gold-300); letter-spacing: 1.5px; text-transform: uppercase; }
.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.65);
  z-index: 998; opacity: 0; pointer-events: none;
  transition: opacity var(--trans-mid);
  backdrop-filter: blur(3px);
}
.nav-overlay.open {
  opacity: 1; pointer-events: all;
}
.nav-menu {
  display: flex; align-items: center; gap: clamp(4px, 1.5vw, 22px);
  list-style: none;
}
.nav-item {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  color: rgba(255,255,255,.85); font-size: .88rem; font-weight: 500;
  padding: 6px 10px; border-radius: var(--r-sm);
  transition: color var(--trans-fast), background var(--trans-fast);
  white-space: nowrap;
}
.nav-item:hover, .nav-item.active { color: var(--white); }
.nav-item::after {
  content: ''; position: absolute; bottom: 0; left: 10px; right: 10px; height: 2px;
  background: var(--gold-400); border-radius: 2px;
  transform: scaleX(0); transition: transform var(--trans-mid);
}
.nav-item:hover::after, .nav-item.active::after { transform: scaleX(1); }
.nav-quote-btn {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300)) !important;
  color: var(--green-900) !important;
  padding: 8px 18px !important;
  border-radius: var(--r-pill) !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-gold);
  transition: transform var(--trans-fast), box-shadow var(--trans-fast) !important;
}
.nav-quote-btn:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 12px 32px rgba(212,160,23,.45); }
.nav-quote-btn::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
  z-index: 1001;
}
.ham-line {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform var(--trans-mid), opacity var(--trans-fast), width var(--trans-fast);
}
.hamburger.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-progress {
  position: absolute; bottom: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--green-400), var(--gold-400));
  transition: width .1s linear;
}

.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-start; justify-content: center;
  overflow: hidden;
  padding: 120px 20px 90px;
}
.hero-slideshow { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
  transform: scale(1.04);
  animation: heroKen 8s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }
@keyframes heroKen { from { transform: scale(1); } to { transform: scale(1.06); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg,
    rgba(10,30,15,.85) 0%,
    rgba(10,30,15,.75) 40%,
    rgba(10,20,10,.6) 70%,
    rgba(10,30,15,.9) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 clamp(16px, 4vw, 40px);
  max-width: 860px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(212,160,23,.3);
  color: var(--gold-300); font-size: clamp(.7rem,.9vw,.85rem);
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 7px 18px; border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.badge-pulse {
  width: 8px; height: 8px; background: var(--green-300); border-radius: 50%;
  animation: pulseDot 1.5s ease infinite;
}
@keyframes pulseDot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(1.4); } }
.hero-logo-wrap {
  margin-bottom: 20px;
}
.hero-logo-img {
  width: clamp(100px, 15vw, 150px); height: clamp(100px, 15vw, 150px);
  object-fit: contain; border-radius: var(--r-lg); border: 3px solid var(--gold-400);
  background: var(--white);
  padding: 8px;
  margin: 0 auto;
  box-shadow: 0 0 50px rgba(212,160,23,.5);
  animation: logoFloat 4s ease-in-out infinite;
}
@keyframes logoFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  color: var(--white); font-weight: 800; line-height: 1.18;
  margin-bottom: 18px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.hero-line1 { color: rgba(255,255,255,.92); }
.hero-line2 { font-size: 1.12em; }
.hero-line3 { font-size: .75em; color: rgba(255,255,255,.7); font-weight: 400; font-style: italic; }
.hero-sub {
  font-size: clamp(.9rem, 1.6vw, 1.08rem); color: rgba(255,255,255,.8);
  max-width: 650px; margin: 0 auto 32px;
  line-height: 1.75;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 0; margin-bottom: 36px;
  background: rgba(255,255,255,.06); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-xl);
  padding: 18px 28px; display: inline-flex;
}
.hstat { text-align: center; padding: 4px 20px; }
.hstat-num { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--gold-300); font-family: var(--font-accent); display: inline-block; }
.hstat-plus { font-size: 1.2rem; color: var(--gold-300); font-weight: 700; }
.hstat-label { display: block; font-size: .72rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.hstat-div { width: 1px; height: 40px; background: rgba(255,255,255,.18); }
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}
.btn-hero {
  display: inline-flex; align-items: center; gap: 8px;
  padding: clamp(12px, 2vw, 16px) clamp(22px, 3vw, 32px);
  border-radius: var(--r-pill); font-weight: 700;
  font-size: clamp(.85rem, 1.4vw, 1rem);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease;
  cursor: pointer; border: none;
}
.btn-hero svg { width: 1.1em; height: 1.1em; }
.btn-call {
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  color: var(--white); box-shadow: 0 6px 28px rgba(34,148,74,.45);
}
.btn-call:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 40px rgba(34,148,74,.6); }
.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white); box-shadow: 0 6px 28px rgba(37,211,102,.35);
}
.btn-wa:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 40px rgba(37,211,102,.5); }
.btn-quote {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--green-900); box-shadow: 0 6px 28px rgba(212,160,23,.35);
}
.btn-quote:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 40px rgba(212,160,23,.5); }
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3; text-align: center; color: rgba(255,255,255,.6);
  font-size: .75rem; letter-spacing: 1.5px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: scrollHide 1s 3s forwards;
}
@keyframes scrollHide { to { opacity: 0; transform: translateX(-50%) translateY(10px); pointer-events: none; } }
.scroll-mouse {
  width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 4px;
}
.scroll-wheel {
  width: 3px; height: 8px; background: rgba(255,255,255,.7);
  border-radius: 2px; animation: scrollWheel 1.5s ease-in-out infinite;
}
@keyframes scrollWheel { 0%,100% { transform: translateY(0); opacity: 1; } 80% { transform: translateY(10px); opacity: 0; } }
.hero-slide-dots {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 8px;
}

/* ══════════ TICKER ═══════════════════════════════════════════ */
.ticker-wrap {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  padding: 14px 0; overflow: hidden;
  border-top: 2px solid rgba(212,160,23,.3);
  border-bottom: 2px solid rgba(212,160,23,.3);
}
.ticker-track {
  display: flex; gap: 40px; width: max-content;
  animation: ticker 40s linear infinite;
}
.ticker-track span {
  color: var(--gold-300); font-weight: 600; font-size: .92rem;
  letter-spacing: .5px; white-space: nowrap;
  font-family: var(--font-accent);
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════ SECTIONS ════════════════════════════════════════ */
.section { padding: var(--section-pad) 0; position: relative; z-index: 1; }
.section-dark { background: var(--grey-900); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-sub { color: rgba(255,255,255,.6); }
.section-label {
  font-family: var(--font-accent); font-size: .78rem;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--green-500); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--green-500); }
.section-title {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--grey-900); margin-bottom: 14px; line-height: 1.2;
}
.section-sub { font-size: clamp(.95rem, 1.5vw, 1.05rem); color: var(--grey-600); max-width: 600px; }
.section-dark .section-label { color: var(--gold-300); }
.section-dark .section-label::before { background: var(--gold-300); }

/* ── REVEAL ANIMATION ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.reveal.tl-left { transform: translateX(-40px); }
.reveal.tl-right { transform: translateX(40px); }
.reveal.visible { opacity: 1; transform: none; }

/* ── HERO ANIMATIONS ───────────────────────────────────────── */
.animate-fadeInDown { animation: fadeInDown .8s ease forwards; }
.animate-fadeInUp { animation: fadeInUp .8s ease forwards; }
.animate-scaleIn { animation: scaleIn .8s cubic-bezier(.34,1.56,.64,1) forwards; }
.delay-2 { animation-delay: .3s; opacity: 0; }
.delay-3 { animation-delay: .55s; opacity: 0; }
.delay-4 { animation-delay: .8s; opacity: 0; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: none; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(.7); } to { opacity: 1; transform: scale(1); } }

/* ══════════ ABOUT ════════════════════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px);
  align-items: center; margin-top: 60px;
}
.about-images { position: relative; }
.about-img-main {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-main img { width: 100%; height: 380px; object-fit: cover; }
.about-img-main::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(10,30,15,.7));
}
.about-img-badge {
  position: absolute; bottom: 18px; left: 18px; z-index: 2;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--green-900); font-weight: 800; font-size: 1.1rem;
  padding: 8px 18px; border-radius: var(--r-pill);
  font-family: var(--font-accent);
}
.about-img-secondary {
  position: absolute; bottom: -30px; right: -24px;
  width: 55%; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 170px; object-fit: cover; }
.about-img-label {
  background: var(--green-800); color: var(--white); font-size: .75rem;
  text-align: center; padding: 6px; font-weight: 500;
}
.about-floating-card {
  position: absolute; top: -20px; right: -20px;
  background: var(--white); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
  animation: floatCard 3s ease-in-out infinite;
}
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.afc-icon { font-size: 1.8rem; }
.afc-text strong { display: block; font-size: 1.1rem; font-weight: 800; color: var(--green-700); }
.afc-text span { font-size: .75rem; color: var(--grey-600); }

.about-content { padding-left: 20px; }
.about-para { font-size: 1.02rem; line-height: 1.85; color: var(--grey-700); margin-bottom: 18px; }
.about-para strong { color: var(--green-700); }
.about-para em { color: var(--gold-700); font-style: normal; font-weight: 600; }
.mv-cards { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.mv-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--grey-50); border-radius: var(--r-md); padding: 16px 18px;
  border-left: 4px solid var(--green-500);
  transition: box-shadow var(--trans-fast), transform var(--trans-fast);
}
.mv-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.mv-icon { font-size: 1.6rem; flex-shrink: 0; }
.mv-card h4 { font-weight: 700; color: var(--green-800); margin-bottom: 4px; }
.mv-card p { font-size: .9rem; color: var(--grey-600); margin: 0; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pill {
  background: var(--green-50); color: var(--green-700);
  border: 1.5px solid var(--green-200); border-radius: var(--r-pill);
  padding: 7px 16px; font-size: .85rem; font-weight: 600;
  transition: background var(--trans-fast), transform var(--trans-fast);
}
.pill:hover { background: var(--green-500); color: var(--white); transform: scale(1.05); }

/* ══════════ SERVICES ════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px; margin-top: 50px;
}
.svc-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg); padding: 0;
  overflow: hidden; cursor: pointer;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow var(--trans-mid), border-color var(--trans-mid);
  position: relative;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--green-800), var(--green-900));
  z-index: 0; transition: opacity var(--trans-mid);
}
.svc-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 24px 60px rgba(0,0,0,.4); border-color: var(--gold-400); }
.svc-card-img {
  height: 160px; overflow: hidden; position: relative; z-index: 1;
}
.svc-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
  filter: brightness(.85);
}
.svc-card:hover .svc-card-img img { transform: scale(1.1); filter: brightness(1); }
.svc-card-body {
  padding: 18px 18px 20px; position: relative; z-index: 1;
}
.svc-icon-emoji { font-size: 1.5rem; margin-bottom: 8px; }
.svc-title {
  font-family: var(--font-accent); font-weight: 700; font-size: .98rem;
  color: var(--white); margin-bottom: 6px;
}
.svc-desc { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.55; margin-bottom: 14px; }
.svc-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--green-900); font-size: .78rem; font-weight: 700;
  padding: 7px 14px; border-radius: var(--r-pill);
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}
.svc-cta:hover { transform: scale(1.06); box-shadow: var(--shadow-gold); }

/* ══════════ WHY CHOOSE US ═══════════════════════════════════ */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; margin-top: 50px;
}
.why-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
  border-bottom: 4px solid transparent;
  transition: border-color var(--trans-mid), box-shadow var(--trans-mid), transform .35s cubic-bezier(.34,1.56,.64,1);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--gold-400));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--trans-mid);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-bottom-color: var(--green-400); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 60px; height: 60px; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--green-100), var(--green-50));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 18px;
  transition: background var(--trans-mid), transform .35s cubic-bezier(.34,1.56,.64,1);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  transform: scale(1.1) rotate(-5deg);
}
.why-title { font-family: var(--font-accent); font-weight: 700; font-size: 1.05rem; color: var(--grey-900); margin-bottom: 8px; }
.why-text { font-size: .9rem; color: var(--grey-600); line-height: 1.65; }

/* ══════════ COUNTER STRIP ═══════════════════════════════════ */
.counter-strip {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 50%, var(--green-800) 100%);
  padding: 52px 0; position: relative; overflow: hidden;
}
.counter-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,160,23,.15) 0%, transparent 70%);
}
.counter-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(20px, 4vw, 0);
}
.counter-item {
  flex: 1; min-width: 140px;
  text-align: center; padding: 18px 24px;
  position: relative;
}
.counter-item + .counter-item::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,.12);
}
.counter-num {
  font-family: var(--font-accent); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--gold-300); display: inline-block;
  line-height: 1;
}
.counter-suf { font-size: 1.8rem; color: var(--gold-300); font-weight: 800; }
.counter-label {
  display: block; font-size: .8rem; color: rgba(255,255,255,.65);
  text-transform: uppercase; letter-spacing: 1.5px; margin-top: 8px;
}

/* ══════════ PORTFOLIO ═══════════════════════════════════════ */
.portfolio-filters {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; margin-bottom: 36px;
}
.pf-btn {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7); padding: 9px 20px;
  border-radius: var(--r-pill); font-size: .85rem; font-weight: 600;
  transition: all var(--trans-fast); cursor: pointer;
  font-family: var(--font-accent);
}
.pf-btn:hover, .pf-btn.active {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--green-900); border-color: var(--gold-400);
  box-shadow: var(--shadow-gold);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.port-item {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  cursor: pointer; aspect-ratio: 4/3;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow var(--trans-mid);
  background: var(--grey-800);
}
.port-item.hidden { display: none; }
.port-item:hover { transform: scale(1.04) translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.port-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease, filter .4s ease;
  filter: brightness(.9);
}
.port-item:hover img { transform: scale(1.08); filter: brightness(1); }
.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 30%, rgba(10,30,15,.88));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px; opacity: 0; transition: opacity var(--trans-mid);
}
.port-item:hover .port-overlay { opacity: 1; }
.port-title {
  color: var(--white); font-weight: 700; font-size: 1rem; margin-bottom: 4px;
  transform: translateY(15px); opacity: 0;
  transition: transform var(--trans-mid), opacity var(--trans-mid);
}
.port-cat {
  color: var(--gold-300); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  transform: translateY(15px); opacity: 0;
  transition: transform var(--trans-mid) 0.05s, opacity var(--trans-mid) 0.05s;
}
.port-item:hover .port-title,
.port-item:hover .port-cat {
  transform: translateY(0); opacity: 1;
}
.port-zoom { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; opacity: 0; transform: scale(.5); transition: opacity var(--trans-mid), transform .35s cubic-bezier(.34,1.56,.64,1); }
.port-item:hover .port-zoom { opacity: 1; transform: scale(1); }

/* ══════════ LIGHTBOX ════════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.95); backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; animation: lbIn .3s ease; }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lb-content { max-width: 900px; width: 100%; text-align: center; }
.lb-img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--r-md); box-shadow: var(--shadow-xl); }
.lb-cap { color: rgba(255,255,255,.7); margin-top: 12px; font-size: .9rem; }
.lb-close {
  position: absolute; top: 18px; right: 22px;
  color: var(--white); font-size: 1.5rem; width: 40px; height: 40px;
  background: rgba(255,255,255,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans-fast), transform var(--trans-fast);
}
.lb-close:hover { background: rgba(255,255,255,.2); transform: rotate(90deg); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: var(--white); font-size: 1.8rem; width: 50px; height: 50px;
  background: rgba(255,255,255,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans-fast), transform var(--trans-fast);
}
.lb-prev { left: 18px; }
.lb-next { right: 18px; }
.lb-nav:hover { background: var(--green-500); transform: translateY(-50%) scale(1.1); }

/* ══════════ TESTIMONIALS ════════════════════════════════════ */
.testi-carousel { overflow: hidden; margin-top: 50px; }
.testi-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.testi-card {
  min-width: 100%; padding: 0 10px; box-sizing: border-box;
}
@media (min-width:768px) { .testi-card { min-width: 50%; } }
@media (min-width:1024px) { .testi-card { min-width: 33.333%; } }
.testi-inner {
  background: var(--white); border-radius: var(--r-lg); padding: 28px 26px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--green-400);
  height: 100%; position: relative;
  transition: box-shadow var(--trans-mid), transform var(--trans-fast);
}
.testi-inner:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testi-quote { font-size: 2rem; color: var(--green-300); line-height: 1; margin-bottom: 12px; }
.testi-text { font-size: .95rem; line-height: 1.75; color: var(--grey-600); margin-bottom: 20px; font-style: italic; }
.testi-stars { margin-bottom: 14px; font-size: 1.1rem; }
.testi-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--grey-200); padding-top: 16px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-300));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 800; font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; color: var(--grey-900); font-size: .95rem; }
.testi-role { font-size: .8rem; color: var(--green-600); font-weight: 500; }
.testi-nav {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 32px;
}
.testi-prev, .testi-next {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--grey-200);
  color: var(--grey-700); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--trans-fast); cursor: pointer;
}
.testi-prev:hover, .testi-next:hover {
  background: var(--green-500); border-color: var(--green-500); color: var(--white);
}
.testi-dots { display: flex; gap: 8px; }
.tdot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--grey-300); border: none; cursor: pointer;
  transition: background var(--trans-fast), transform var(--trans-fast);
}
.tdot.active { background: var(--green-500); transform: scale(1.3); }

/* ══════════ VISIT US ════════════════════════════════════════ */
.visit-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px;
  margin-top: 50px; align-items: start;
}
.vcard {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,.04); border-radius: var(--r-md); padding: 20px;
  border: 1px solid rgba(255,255,255,.07); margin-bottom: 14px;
  transition: background var(--trans-fast), border-color var(--trans-fast);
}
.vcard:hover { background: rgba(255,255,255,.07); border-color: rgba(212,160,23,.3); }
.vcard-icon { font-size: 1.6rem; flex-shrink: 0; }
.vcard-body h4 { color: var(--gold-300); font-weight: 700; margin-bottom: 6px; }
.vcard-body p, .vcard-body address { color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.65; }
.vlink { color: var(--gold-300); transition: color var(--trans-fast); text-decoration: underline; text-decoration-style: dotted; }
.vlink:hover { color: var(--white); }
.visit-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.btn-v {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--r-pill);
  font-weight: 700; font-size: .9rem; transition: all var(--trans-fast); cursor: pointer;
  border: 2px solid transparent;
}
.btn-v svg { width: 1em; height: 1em; }
.btn-v-primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  color: var(--white); box-shadow: var(--shadow-green);
}
.btn-v-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(34,148,74,.5); }
.btn-v-outline {
  background: transparent; border-color: rgba(255,255,255,.3); color: var(--white);
}
.btn-v-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-v-wa { background: #25D366; color: var(--white); }
.btn-v-wa:hover { background: #128C7E; }
.map-wrap {
  height: 440px; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-xl); border: 2px solid rgba(212,160,23,.2);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ══════════ CONTACT ═════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; margin-top: 50px; }
.contact-form-box {
  background: var(--white); border-radius: var(--r-xl); padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--green-500);
}
.fg { margin-bottom: 20px; }
.fg label { display: block; font-size: .85rem; font-weight: 600; color: var(--grey-700); margin-bottom: 6px; }
.fg label small { color: var(--grey-400); font-weight: 400; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--grey-200); border-radius: var(--r-sm);
  font-family: inherit; font-size: .95rem; color: var(--grey-800);
  background: var(--grey-50); transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--green-500); box-shadow: 0 0 0 4px rgba(34,148,74,.12);
  background: var(--white);
}
.fg input.error, .fg select.error, .fg textarea.error {
  border-color: #e74c3c; box-shadow: 0 0 0 4px rgba(231,76,60,.1);
}
.fg textarea { resize: vertical; min-height: 110px; }
.ferr { color: #e74c3c; font-size: .78rem; margin-top: 4px; display: none; }
.ferr.show { display: block; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%; padding: 15px 24px; border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  color: var(--white); font-weight: 700; font-size: 1rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: var(--shadow-green); cursor: pointer;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow var(--trans-fast);
  border: none;
}
.btn-submit:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 40px rgba(34,148,74,.5); }
.btn-submit:active { transform: scale(.97); }
.btn-submit svg { width: 1.1em; height: 1.1em; }
.btn-lg { padding: 17px 28px; }
.contact-channels { display: flex; flex-direction: column; gap: 16px; }
.channel-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px; border-radius: var(--r-md);
  border: 2px solid var(--grey-200); background: var(--white);
  transition: all var(--trans-mid); cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.channel-card:hover { transform: translateX(8px); box-shadow: var(--shadow-md); }
.cc-call:hover { border-color: var(--green-400); background: var(--green-50); }
.cc-wa:hover { border-color: #25D366; background: #f0fff5; }
.cc-email:hover { border-color: var(--gold-400); background: var(--gold-100); }
.cc-land:hover { border-color: var(--grey-600); background: var(--grey-50); }
.cc-icon { font-size: 1.8rem; }
.cc-label { display: block; font-size: .78rem; color: var(--grey-500); font-weight: 500; text-transform: uppercase; letter-spacing: .5px; }
.cc-val { font-weight: 700; color: var(--grey-900); font-size: 1rem; }

/* file upload */
.file-drop-zone {
  border: 2px dashed var(--grey-300); border-radius: var(--r-sm); background: var(--grey-50);
  transition: border-color var(--trans-fast), background var(--trans-fast);
}
.file-drop-zone.drag { border-color: var(--green-500); background: var(--green-50); }
.file-drop-inner {
  padding: 20px; display: flex; flex-direction: column; align-items: center; gap: 8px;
  cursor: pointer; color: var(--grey-500); font-size: .9rem;
}
.file-hidden { display: none; }
.file-icon { font-size: 2rem; }

/* ══════════ QUOTE MODAL ══════════════════════════════════════ */
.modal-bg {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,.75); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-bg.open { display: flex; animation: modalBgIn .3s ease; }
@keyframes modalBgIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  background: var(--white); border-radius: var(--r-xl);
  max-width: 680px; width: 100%; max-height: 92vh; overflow-y: auto;
  padding: 36px 32px;
  box-shadow: var(--shadow-xl);
  animation: modalIn .45s cubic-bezier(.34,1.56,.64,1);
  position: relative;
  scrollbar-width: thin;
}
@keyframes modalIn { from { opacity: 0; transform: scale(.7) translateY(40px); } to { opacity: 1; transform: none; } }
.modal-cls {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%; background: var(--grey-100);
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  transition: background var(--trans-fast), transform var(--trans-fast);
}
.modal-cls:hover { background: #fee; transform: rotate(90deg); }
.modal-head {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 24px; margin-bottom: 24px;
  border-bottom: 2px solid var(--grey-100);
}
.modal-logo { width: 52px; height: 52px; border-radius: var(--r-sm); object-fit: contain; border: 2px solid var(--gold-400); background: var(--white); padding: 3px; }
.modal-head h2 { font-size: 1.4rem; color: var(--green-800); margin-bottom: 2px; }
.modal-head p { font-size: .85rem; color: var(--grey-500); margin: 0; }

/* ══════════ SUCCESS MODAL ═══════════════════════════════════ */
.modal-success { text-align: center; }
.success-anim { margin: 0 auto 20px; width: 80px; height: 80px; }
.checkmark-svg { width: 80px; height: 80px; }
.checkmark-circle {
  stroke-dasharray: 166; stroke-dashoffset: 166;
  stroke: var(--green-500); stroke-width: 2; fill: none;
  animation: strokeCircle .6s cubic-bezier(.65,.05,.35,.95) .4s forwards;
}
.checkmark-path {
  stroke-dasharray: 48; stroke-dashoffset: 48;
  stroke: var(--green-500); stroke-width: 3;
  animation: strokePath .3s cubic-bezier(.65,.05,.35,.95) 1s forwards;
}
@keyframes strokeCircle { to { stroke-dashoffset: 0; } }
@keyframes strokePath { to { stroke-dashoffset: 0; } }
.modal-success h2 { font-size: 1.7rem; color: var(--green-800); margin-bottom: 8px; font-weight: 800; font-family: var(--font-heading); }
.modal-success p { color: var(--grey-600); margin-bottom: 16px; }
.success-msg { font-size: 1.05rem; font-weight: 500; color: var(--grey-600); margin-bottom: 24px; }
.success-details {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--r-md);
  padding: 22px;
  margin: 0 auto 24px;
  max-width: 520px;
  text-align: left;
  box-shadow: inset 0 2px 4px rgba(20,90,46,.03);
}
.success-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}
.sd-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sd-item.sd-full {
  grid-column: span 2;
  border-top: 1px dashed rgba(20,90,46,.15);
  padding-top: 12px;
  margin-top: 4px;
}
.sd-lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey-500);
  font-weight: 700;
}
.sd-val {
  font-size: 0.95rem;
  color: var(--green-900);
  font-weight: 700;
}
.sd-item strong.sd-val {
  color: var(--gold-700);
  font-size: 1.05rem;
}
.success-note { font-size: 0.95rem; color: var(--grey-700); margin-bottom: 8px; }
.success-contact-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  color: var(--grey-600);
  margin-bottom: 28px;
}
.success-phone-link {
  color: var(--green-700);
  font-weight: 700;
  text-decoration: none;
  transition: color var(--trans-fast);
}
.success-phone-link:hover {
  color: var(--green-900);
  text-decoration: underline;
}
.success-contact-bar .sep {
  color: var(--grey-400);
}
.success-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.success-btns .btn-v {
  min-width: 180px;
  justify-content: center;
}
.modal-success .btn-v-outline {
  border-color: var(--green-700);
  color: var(--green-700);
}
.modal-success .btn-v-outline:hover {
  background: var(--green-50);
  border-color: var(--green-800);
  color: var(--green-800);
}

/* ══════════ FOOTER ══════════════════════════════════════════ */
.footer {
  background: var(--grey-900); color: rgba(255,255,255,.8);
  padding-top: 72px; position: relative; overflow: hidden;
}
.footer-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse at 50% 0%, rgba(34,148,74,.12) 0%, transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 52px;
}
.footer-logo-link { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo { width: 48px; height: 48px; border-radius: var(--r-sm); object-fit: contain; border: 2px solid var(--gold-400); background: var(--white); padding: 3px; }
.footer-brand-name { display: block; font-weight: 800; color: var(--white); font-size: 1.05rem; }
.footer-brand-tag { display: block; font-size: .7rem; color: var(--gold-300); letter-spacing: 1px; }
.footer-desc { font-size: .88rem; line-height: 1.75; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.fsoc {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans-fast), transform .35s cubic-bezier(.34,1.56,.64,1);
}
.fsoc svg { width: 18px; height: 18px; }
.fsoc:hover { transform: translateY(-4px) scale(1.12); }
.fsoc-wa:hover { background: #25D366; }
.fsoc-email:hover { background: var(--gold-500); }
.fsoc-phone:hover { background: var(--green-500); }
.footer-col-h {
  font-family: var(--font-accent); font-weight: 700; font-size: .95rem;
  color: var(--white); margin-bottom: 18px;
  padding-bottom: 10px; border-bottom: 2px solid rgba(212,160,23,.3);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,.6); font-size: .88rem;
  transition: color var(--trans-fast), padding-left var(--trans-fast);
  display: inline-block;
}
.footer-links a:hover { color: var(--gold-300); padding-left: 6px; }
.footer-address { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.75; }
.fa-item { display: block; margin-bottom: 10px; }
.fa-item a { color: var(--gold-300); }
.fa-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-bottom a {
  color: var(--gold-300);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--trans-fast);
}
.footer-bottom a:hover {
  color: var(--white);
  text-decoration: underline;
}
.footer-bt-tag { color: var(--gold-300) !important; font-style: italic; margin-top: 4px; }

/* ══════════ FLOAT GROUP ═════════════════════════════════════ */
.float-group {
  position: fixed; bottom: 28px; right: 22px; z-index: 900;
  display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; position: relative;
  box-shadow: 0 4px 18px rgba(0,0,0,.3);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow var(--trans-fast);
}
.float-btn::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid currentColor; opacity: 0;
  animation: floatPulse 2s infinite;
  pointer-events: none;
}
@keyframes floatPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}
.float-btn svg { width: 22px; height: 22px; }
.float-btn:hover { transform: scale(1.15) translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.float-wa { background: #25D366; color: var(--white); }
.float-call { background: var(--green-500); color: var(--white); }
.float-quote-fab { background: linear-gradient(135deg, var(--gold-500), var(--gold-300)); color: var(--green-900); }
.float-tip {
  position: absolute; right: 60px; background: var(--grey-900);
  color: var(--white); padding: 5px 12px; border-radius: var(--r-sm);
  font-size: .8rem; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity var(--trans-fast), transform var(--trans-fast);
  transform: translateX(10px);
}
.float-tip::after {
  content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--grey-900); border-right: 0;
}
.float-btn:hover .float-tip { opacity: 1; transform: none; }

/* ══════════ BACK TO TOP ═════════════════════════════════════ */
.back-top {
  position: fixed; bottom: 28px; left: 22px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-700); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-green);
  opacity: 0; pointer-events: none;
  transition: opacity var(--trans-mid), transform .35s cubic-bezier(.34,1.56,.64,1);
}
.back-top svg { width: 20px; height: 20px; }
.back-top.show { opacity: 1; pointer-events: all; }
.back-top:hover { transform: scale(1.12) translateY(-3px); background: var(--green-500); }

/* ══════════ RESPONSIVE ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { max-width: 600px; margin: 0 auto; }
  .about-content { padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .map-wrap { height: 320px; }
}
@media (max-width: 1024px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    width: 280px;
    z-index: 999;
    background: rgba(10,30,15,.98); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: flex-start; gap: 8px;
    transform: translateX(100%); transition: transform var(--trans-mid);
    padding: 30px 20px;
    box-shadow: -5px 0 25px rgba(0,0,0,0.5);
    overflow-y: auto;
  }
  .nav-menu.open { transform: none; }
  .nav-item { font-size: 1.2rem; padding: 14px 18px; border-radius: var(--r-md); }
  .nav-quote-btn { text-align: center; }
}
@media (max-width: 768px) {
  .hero-stats { flex-wrap: wrap; gap: 16px; padding: 16px 20px; }
  .hstat-div { display: none; }
  .hero-btns { gap: 10px; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-img-secondary { position: relative; bottom: auto; right: auto; width: 100%; margin-top: 16px; }
  .about-floating-card { display: none; }
  .frow { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .portfolio-filters { gap: 8px; }
  .pf-btn { padding: 7px 14px; font-size: .78rem; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .counter-grid { gap: 0; }
  .counter-item { min-width: 50%; }
  .counter-item + .counter-item::before { display: none; }
}

/* ══════════ SLIDE-IN DOT ════════════════════════════════════ */
.slide-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.3); border: none; cursor: pointer;
  transition: background var(--trans-fast), transform var(--trans-fast);
}
.slide-dot.active { background: var(--gold-400); transform: scale(1.3); }

/* ══════════ MOUSE TRAIL EFFECT ═══════════════════════════════ */

/* Custom canvas overlay for mouse movement trail and click animations */
#mouse-trail-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99999;
}


/* ══════════ MOBILE IMPROVEMENTS ══════════════════════════════ */

/* Touch-action for sliders to prevent scroll conflicts */
.hero-slideshow, .testi-carousel {
  touch-action: pan-y;
}
.hero {
  touch-action: pan-y;
}

/* Float group on small screens */
@media (max-width: 480px) {
  .float-group {
    bottom: 16px;
    right: 12px;
    gap: 8px;
  }
  .float-btn {
    width: 46px;
    height: 46px;
  }
  .float-btn svg {
    width: 18px;
    height: 18px;
  }
  .back-top {
    bottom: 16px;
    left: 10px;
    width: 38px;
    height: 38px;
  }
  /* Hero stats mobile wrap fix */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 14px 16px;
    width: 90%;
  }
  .hstat-div { display: none; }
  .hstat {
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.1);
  }
  .hstat:last-of-type {
    grid-column: span 2;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .btn-hero {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  /* Portfolio on very small screens */
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  /* Section padding reduced on mobile */
  .section {
    padding: 48px 0;
  }
  /* Counter strip on mobile */
  .counter-strip {
    padding: 36px 0;
  }
  /* Services grid on mobile */
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  /* Footer bottom text */
  .footer-bottom p {
    font-size: .76rem;
  }
  /* Ticker speed on mobile */
  .ticker-track {
    animation-duration: 25s;
  }
}

/* Why grid single column on tablet */
@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why-card {
    padding: 24px 20px;
  }
  .about-grid {
    margin-top: 36px;
  }
  /* Contact channels on mobile */
  .channel-card {
    padding: 16px 16px;
  }
  .cc-val {
    font-size: .9rem;
  }
}

/* Testimonials on mobile: single view full width */
@media (max-width: 480px) {
  .testi-card {
    padding: 0 6px;
  }
  .testi-inner {
    padding: 20px 18px;
  }
}

/* Visit section map on mobile */
@media (max-width: 768px) {
  .map-wrap {
    height: 260px;
  }
  .visit-cta-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-v {
    width: 100%;
    justify-content: center;
  }
}

/* Navbar on very small screens */
@media (max-width: 360px) {
  .nav-brand { font-size: .9rem; }
  .nav-slogan { display: none; }
  .nav-logo-img { width: 36px; height: 36px; }
  .hero-badge { font-size: .65rem; padding: 5px 12px; }
}

/* Reduced motion: disable cursor trail and heavy animations */
@media (prefers-reduced-motion: reduce) {
  #mouse-trail-canvas { display: none !important; }
  .hero-slide { animation: none !important; }
  .ticker-track { animation: none !important; }
  .hero-logo-img { animation: none !important; }
  .about-floating-card { animation: none !important; }
  .reveal { transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ══════════ EMAIL OPTIONS MODAL ═════════════════════════════ */
.email-options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}
.email-opt-btn {
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
  font-weight: 600;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--r-pill);
  transition: all var(--trans-fast);
  cursor: pointer;
}
.email-opt-btn.btn-v-outline {
  border: 2px solid var(--green-200);
  background: transparent;
  color: var(--green-800);
}
.email-opt-btn.btn-v-outline:hover {
  background: var(--green-50);
  border-color: var(--green-400);
  transform: translateY(-2px);
}
.email-opt-btn.btn-v-primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-green);
}
.email-opt-btn.btn-v-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(34,148,74,.4);
}
.email-opt-btn:active {
  transform: scale(0.98);
}
.email-modal-addr {
  font-weight: 600;
  color: var(--green-800) !important;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--r-sm);
  padding: 8px 16px;
  font-size: 0.95rem;
  font-family: monospace;
  display: inline-block;
  margin-bottom: 20px;
  word-break: break-all;
}



