/* =====================================================
   SwaySocial — All Custom Styles
   Single source of truth for all CSS
===================================================== */

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

/* ── CSS VARIABLES ── */
:root {
  --primary:        #1B5E20;
  --primary-light:  #2E7D32;
  --primary-mid:    #388E3C;
  --accent:         #43A047;
  --accent-bright:  #66BB6A;
  --gradient:       linear-gradient(135deg, #1B5E20 0%, #43A047 100%);
  --gradient-rev:   linear-gradient(135deg, #43A047 0%, #1B5E20 100%);
  --gradient-glow:  linear-gradient(135deg, #1B5E20 0%, #00C853 100%);
  --dark:           #111827;
  --text:           #374151;
  --muted:          #6B7280;
  --light-bg:       #F3FBF4;
  --white:          #ffffff;
  --border:         #E5E7EB;
  --shadow:         0 4px 24px rgba(27,94,32,0.12);
  --shadow-lg:      0 12px 48px rgba(27,94,32,0.18);
}

/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary-mid); border-radius: 4px; }
::selection { background: var(--accent); color: #fff; }

/* ════════════════════════════════
   LAYOUT UTILITIES
════════════════════════════════ */
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.sec-pad   { padding: 100px 0; }
.sec-pad-sm { padding: 60px 0; }
.sec-pad-bot { padding: 0 0 100px 0; }
.pt-quick { padding-top: 80px; }
.bg-light-green { background: var(--light-bg); }
.text-primary-green { color: var(--primary) !important; }
.rounded-20 { border-radius: 20px !important; }

/* ── TYPOGRAPHY UTILITIES ── */
.fw-800 { font-weight: 800; }
.lh-17 { line-height: 1.7; }
.lh-18 { line-height: 1.8; }
.text-inherit { color: inherit; text-decoration: none; }
.card-h3 { font-weight: 800; margin-bottom: 12px; }
.card-h5 { font-weight: 700; margin-bottom: 8px; }
.card-h6 { font-weight: 700; margin-bottom: 4px; }
.svc-divider { border-bottom: 1px solid var(--border); }
.card-p   { font-size: .92rem; line-height: 1.7; }
.card-p-sm { font-size: .9rem; line-height: 1.7; }
.card-p-xs { font-size: .88rem; line-height: 1.7; }
.card-link    { font-weight: 600; text-decoration: none; font-size: .9rem; }
.card-link-sm { font-weight: 600; text-decoration: none; font-size: .88rem; }

/* ════════════════════════════════
   FLOATING SHAPES — per page
════════════════════════════════ */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%       { transform: translateY(-18px) rotate(5deg); }
}
.shape-home-a       { width:300px; height:300px; top:-80px;  left:-80px;  animation-delay:0s;   }
.shape-home-b       { width:200px; height:200px; bottom:-40px; right:5%;  animation-delay:3s;   }
.shape-about        { width:220px; height:220px; top:-60px;  right:10%;  animation-delay:1s;   }
.shape-services     { width:250px; height:250px; bottom:-60px; right:5%;  animation-delay:2s;   }
.shape-portfolio    { width:260px; height:260px; top:-60px;  right:8%;   animation-delay:1.5s; }
.shape-clients      { width:240px; height:240px; bottom:-50px; right:12%; animation-delay:2s;   }
.shape-testimonials { width:200px; height:200px; top:-40px;  right:15%;  animation-delay:1s;   }
.shape-contact      { width:280px; height:280px; bottom:-70px; right:5%;  animation-delay:1.5s; }

/* ════════════════════════════════
   LOGOS
════════════════════════════════ */
.navbar-logo {
  height: 42px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-logo {
  height: 38px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
.navbar {
  background: rgba(27,94,32,0.97) !important;
  backdrop-filter: blur(10px);
  padding: 16px 0;
  transition: all 0.35s ease;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.navbar.scrolled { padding: 10px 0; background: rgba(13,59,18,0.99) !important; }

.navbar-brand .logo-text {
  font-size: 1.6rem; font-weight: 800; color: #fff; letter-spacing: -0.5px;
}
.navbar-brand .logo-text span {
  background: linear-gradient(90deg, #a5d6a7, #69f0ae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--gradient-glow);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-right: 10px; font-size: 1.1rem; color: #fff;
  box-shadow: 0 4px 12px rgba(0,200,83,0.35);
}
.nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-weight: 500; font-size: 0.92rem; letter-spacing: 0.3px;
  padding: 8px 14px !important; border-radius: 6px; transition: all 0.25s;
  display: flex; align-items: center; gap: 6px;
}
.nav-link i { font-size: 0.82rem; }
.nav-link:hover, .nav-link.active {
  color: #fff !important; background: rgba(255,255,255,0.12);
}
.nav-cta {
  background: var(--gradient-glow) !important;
  color: #fff !important; border-radius: 25px !important; padding: 8px 22px !important;
  font-weight: 600 !important; box-shadow: 0 4px 14px rgba(0,200,83,0.35);
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,200,83,0.5) !important;
  background: var(--gradient-rev) !important;
}

/* ════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════ */
.page-hero {
  padding: 140px 0 80px;
  background: var(--gradient);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,0.8); font-size: 1.1rem; }
.breadcrumb-item,
.breadcrumb-item a { color: rgba(255,255,255,0.7); font-size: 0.88rem; text-decoration: none; }
.breadcrumb-item.active { color: #a5d6a7; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ════════════════════════════════
   MOBILE APP — BOTTOM NAV BAR
════════════════════════════════ */
.mob-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62px;
  background: #fff;
  border-top: 1px solid #E5E7EB;
  display: flex;
  align-items: stretch;
  z-index: 9997;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
}
.mob-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  color: #9CA3AF;
  font-size: .6rem;
  font-weight: 600;
  transition: color 0.2s;
  border: none;
  background: none;
  padding: 0;
}
.mob-nav-item i { font-size: 1.2rem; line-height: 1; }
.mob-nav-item.active { color: var(--primary); }
.mob-nav-item.active i { color: var(--primary); }

/* Give all page content breathing room above mobile bottom nav */
@media (max-width: 991px) {
  .page-content {
    padding-bottom: 70px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  footer { margin-bottom: 0; }

  /* Clamp every direct section to viewport width on mobile */
  section, .mob-hero-wrap, .mob-app-section, .mob-services-page {
    width: 100%;
    max-width: 100vw;
  }
}

/* ════════════════════════════════
   MOBILE APP — HERO CAROUSEL
════════════════════════════════ */
.mob-hero-wrap {
  background: var(--primary);
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}
.mob-hero-wrap .carousel,
.mob-hero-wrap .carousel-inner,
.mob-hero-wrap .carousel-item {
  width: 100%;
  max-width: 100%;
}
.mob-hero-slide {
  height: 200px;
  min-height: 180px;
  max-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 20px 28px;
  color: #fff;
  position: relative;
}
.mob-slide-badge { display: none; }
.mob-slide-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  backdrop-filter: blur(8px);
}
.mob-slide-icon i { font-size: 1.4rem; color: #fff; }
.mob-slide-title {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 6px;
  color: #fff;
}
.mob-slide-sub {
  font-size: .75rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto 14px;
}
.mob-slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
}
.mob-slide-btn:hover { background: rgba(255,255,255,0.9); color: var(--primary); }
.mob-carousel-dots { bottom: 6px; }
.mob-carousel-dots button {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.5) !important;
  opacity: 1 !important;
}
.mob-carousel-dots button.active { background: #fff !important; width: 20px !important; border-radius: 10px !important; }

/* ════════════════════════════════
   MOBILE APP — APP ICON GRID
════════════════════════════════ */
.mob-app-section {
  padding: 14px 16px 4px;
  background: #F9FAFB;
}
.mob-app-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mob-app-section-head h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}
.mob-see-all {
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.mob-app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 8px;
  padding-bottom: 16px;
}
.mob-app-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.mob-app-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transition: transform 0.18s;
}
.mob-app-icon:active .mob-app-icon-box { transform: scale(0.93); }
.mob-app-icon-box i { font-size: 1.4rem; color: #fff; }
.mob-app-icon-cta { background: linear-gradient(135deg,#1B5E20,#00C853) !important; }
.mob-app-icon span {
  font-size: .62rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  line-height: 1.3;
  max-width: 72px;
}

/* ════════════════════════════════
   MOBILE APP — SERVICES ACCORDION
════════════════════════════════ */
.mob-services-page { background: #F3F4F6; min-height: 100vh; }
.mob-services-header {
  background: var(--gradient);
  padding: 80px 20px 28px;
  text-align: center;
}
.mob-services-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.mob-services-sub {
  font-size: .82rem;
  color: rgba(255,255,255,0.82);
  margin: 0;
}
.mob-services-list {
  background: #fff;
  border-radius: 16px 16px 0 0;
  margin-top: -12px;
  overflow: hidden;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}
.mob-svc-cat { border-bottom: 1px solid #F3F4F6; }
.mob-svc-cat:last-child { border-bottom: none; }
.mob-svc-cat-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  background: #fff;
  border: none;
  text-align: left;
  transition: background 0.15s;
}
.mob-svc-cat-header:active { background: #F9FAFB; }
.mob-svc-cat-icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--light-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.mob-svc-cat.open .mob-svc-cat-icon-wrap { background: var(--primary); }
.mob-svc-cat-icon-wrap i { font-size: 1rem; color: var(--primary); transition: color 0.2s; }
.mob-svc-cat.open .mob-svc-cat-icon-wrap i { color: #fff; }
.mob-svc-cat-info { flex: 1; }
.mob-svc-cat-label { display: block; font-size: .88rem; font-weight: 700; color: var(--dark); }
.mob-svc-cat-count { display: block; font-size: .7rem; color: var(--muted); margin-top: 1px; }
.mob-svc-chev {
  font-size: .7rem;
  color: var(--muted);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.mob-svc-chev.open { transform: rotate(90deg); color: var(--primary); }

/* Sub-items panel */
.mob-svc-sub-list {
  background: #F9FAFB;
  border-top: 1px solid #F3F4F6;
  padding: 8px 0 4px;
  animation: subSlide 0.2s ease;
}
@keyframes subSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mob-svc-view-all {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid #EFEFEF;
  margin-bottom: 4px;
}
.mob-svc-view-all i { font-size: .8rem; }
.mob-svc-sub-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  text-decoration: none;
  border-bottom: 1px solid #F3F4F6;
  transition: background 0.12s;
}
.mob-svc-sub-item:last-child { border-bottom: none; }
.mob-svc-sub-item:active { background: rgba(27,94,32,0.05); }
.mob-svc-sub-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.mob-svc-sub-left > i {
  font-size: .95rem;
  color: var(--primary);
  width: 18px;
  flex-shrink: 0;
}
.mob-svc-sub-title { display: block; font-size: .83rem; font-weight: 600; color: var(--dark); }
.mob-svc-sub-tagline { display: block; font-size: .72rem; color: var(--muted); margin-top: 1px; line-height: 1.3; }
.mob-svc-sub-chev { font-size: .65rem; color: #D1D5DB; flex-shrink: 0; }

/* Mobile services CTA block */
.mob-services-cta {
  margin: 16px;
  padding: 24px 20px;
  background: var(--light-bg);
  border-radius: 16px;
  text-align: center;
}
.mob-services-cta h4 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.mob-services-cta p { font-size: .8rem; color: var(--muted); margin-bottom: 16px; line-height: 1.5; }
.mob-services-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

/* Compact the main navbar on mobile */
@media (max-width: 991px) {
  #mainNav {
    padding: 10px 0;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }
  #mainNav.scrolled { padding: 8px 0; }
  .navbar-logo { height: 34px; max-width: 140px; }
  .navbar-collapse { overflow: hidden; }
}

/* ════════════════════════════════
   MEGA DROPDOWN MENU
════════════════════════════════ */
.mega-arrow {
  font-size: .62rem !important;
  margin-left: 3px;
  opacity: 0.7;
  transition: transform 0.2s;
}
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 12px 48px rgba(0,0,0,0.14);
  border-top: 3px solid var(--primary);
  z-index: 9998;
  animation: megaIn 0.18s ease;
}
@keyframes megaIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mega-inner {
  display: flex;
  max-height: 480px;
  max-width: 1320px;
  margin: 0 auto;
}
/* Left tab column */
.mega-tabs {
  width: 210px;
  flex-shrink: 0;
  background: #F9FAFB;
  border-right: 1px solid #E5E7EB;
  overflow-y: auto;
  padding: 10px 0;
}
.mega-tabs::-webkit-scrollbar { width: 4px; }
.mega-tabs::-webkit-scrollbar-thumb { background: #D1D5DB; border-radius: 4px; }
.mega-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: .84rem;
  font-weight: 500;
  color: #374151;
  transition: all 0.12s;
  border-left: 3px solid transparent;
  user-select: none;
}
.mega-tab i:first-child {
  font-size: .82rem;
  width: 16px;
  color: #9CA3AF;
  transition: color 0.12s;
  flex-shrink: 0;
}
.mega-tab span { flex: 1; }
.mega-tab-chev { font-size: .58rem !important; color: #D1D5DB !important; }
.mega-tab:hover {
  background: #fff;
  color: var(--primary);
  border-left-color: rgba(27,94,32,0.3);
}
.mega-tab:hover i:first-child { color: var(--primary); }
.mega-tab.active {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  border-left-color: var(--primary);
}
.mega-tab.active i:first-child { color: var(--primary); }
/* Right content panel */
.mega-content {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
}
.mega-content::-webkit-scrollbar { width: 4px; }
.mega-content::-webkit-scrollbar-thumb { background: #D1D5DB; border-radius: 4px; }
.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 28px;
}
.mega-col-title {
  font-size: .78rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid #E5E7EB;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mega-col-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mega-col-list li { margin-bottom: 6px; }
.mega-col-list a {
  font-size: .81rem;
  color: #6B7280;
  text-decoration: none;
  transition: color 0.15s, padding-left 0.15s;
  display: block;
  line-height: 1.4;
}
.mega-col-list a:hover { color: var(--primary); padding-left: 5px; }
/* Hide mega menu on mobile */
@media (max-width: 991px) {
  .mega-dropdown { display: none; }
  .mega-arrow { display: none; }
}

/* ════════════════════════════════
   CATEGORY STRIP (Fiverr-style)
════════════════════════════════ */
.category-strip {
  background: #fff;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.category-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
  justify-content: space-between;
}
.category-scroll::-webkit-scrollbar { display: none; }
.cat-card {
  flex: 0 0 auto;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 18px;
  padding: 22px 16px 18px;
  text-align: center;
  text-decoration: none;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 110px;
  transition: all 0.25s ease;
}
.cat-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(27,94,32,0.13);
  transform: translateY(-3px);
  color: var(--primary);
  text-decoration: none;
}
.cat-card i {
  font-size: 1.7rem;
  color: #374151;
  transition: color 0.25s;
}
.cat-card:hover i { color: var(--primary); }
.cat-card span {
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
  max-width: 88px;
  transition: color 0.25s;
}
.cat-card:hover span { color: var(--primary); }
@media (max-width: 991px) {
  .category-scroll { justify-content: flex-start; }
}

/* ════════════════════════════════
   SECTION LABELS & TITLES
════════════════════════════════ */
.section-tag {
  display: inline-block;
  background: linear-gradient(90deg, rgba(27,94,32,0.1), rgba(67,160,71,0.15));
  color: var(--primary); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px;
  border: 1px solid rgba(27,94,32,0.15); margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.7rem,3.5vw,2.6rem); font-weight: 800;
  color: var(--dark); line-height: 1.25; margin-bottom: 16px;
}
.section-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub  { color: var(--muted); font-size: 1.05rem; max-width: 620px; margin: 0 auto; }
.section-divider {
  width: 56px; height: 4px;
  background: var(--gradient); border-radius: 4px; margin: 16px 0 24px;
}
.section-divider.mx-auto { margin-left: auto; margin-right: auto; }

/* ════════════════════════════════
   BUTTONS
════════════════════════════════ */
.btn-primary-grad {
  background: var(--gradient); color: #fff; border: none;
  padding: 13px 32px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.3px; transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(27,94,32,0.35);
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; cursor: pointer;
}
.btn-primary-grad:hover {
  background: var(--gradient-rev); transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(27,94,32,0.45); color: #fff;
}
.btn-outline-grad {
  background: transparent; color: var(--primary); border: 2px solid var(--primary);
  padding: 11px 30px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; cursor: pointer;
}
.btn-outline-grad:hover {
  background: var(--gradient); border-color: transparent; color: #fff;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,94,32,0.3);
}
/* Light variant — used on dark/green CTA sections */
.btn-outline-light {
  border-color: rgba(255,255,255,0.5) !important;
  color: #fff !important;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.7) !important;
  color: #fff !important;
  box-shadow: none !important;
}
.btn-white-grad {
  background: #fff; color: var(--primary); border: none;
  padding: 13px 32px; border-radius: 50px; font-weight: 700; font-size: 0.95rem;
  transition: all 0.3s ease; box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none; cursor: pointer;
}
.btn-white-grad:hover {
  background: var(--light-bg); transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.2); color: var(--primary);
}
/* Block / submit variant */
.btn-submit {
  justify-content: center;
  padding: 15px 32px;
  font-size: 1rem;
}

/* ════════════════════════════════
   CARDS
════════════════════════════════ */
.card-hover {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 36px 28px; transition: all 0.35s ease; position: relative; overflow: hidden;
}
.card-hover::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.card-hover:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(27,94,32,0.2); }
.card-hover:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg,rgba(27,94,32,0.1),rgba(67,160,71,0.15));
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--primary); margin-bottom: 20px; transition: all 0.3s;
}
.card-hover:hover .service-icon { background: var(--gradient); color: #fff; transform: rotate(-5deg) scale(1.05); }
/* No-margin variant (used in industries list) */
.service-icon.icon-flat { margin-bottom: 0; }

/* ════════════════════════════════
   STATS BAND
════════════════════════════════ */
.stats-section {
  background: var(--gradient); padding: 72px 0;
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E") center/80px;
}
.stat-item { text-align: center; }
.stat-number { font-size: clamp(2.2rem,4vw,3.5rem); font-weight: 800; color: #fff; line-height: 1; }
.stat-number span { color: #a5d6a7; }
.stat-label { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin-top: 6px; }

/* ════════════════════════════════
   TEAM CARDS
════════════════════════════════ */
.team-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: all 0.35s; }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-img-wrap { position: relative; overflow: hidden; height: 240px; }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.team-card:hover .team-img-wrap img { transform: scale(1.06); }
.team-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(27,94,32,0.85) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 20px; gap: 12px;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-social-btn {
  width: 36px; height: 36px; background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.85rem; text-decoration: none; transition: background 0.2s;
}
.team-social-btn:hover { background: rgba(255,255,255,0.4); color: #fff; }
.team-info { padding: 20px 22px; }
.team-info h5 { font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; color: var(--dark); }
.team-info span { color: var(--primary); font-size: 0.85rem; font-weight: 600; }

/* ════════════════════════════════
   PORTFOLIO
════════════════════════════════ */
.portfolio-filter { margin-bottom: 32px; gap: 10px; display: flex; flex-wrap: wrap; }
.filter-btn {
  background: var(--light-bg); color: var(--primary); border: 1px solid rgba(27,94,32,0.18);
  padding: 8px 20px; border-radius: 25px; font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: all 0.25s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gradient); color: #fff; border-color: transparent;
  box-shadow: 0 4px 12px rgba(27,94,32,0.3);
}
.portfolio-item {
  position: relative; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1); margin-bottom: 24px;
}
.portfolio-item img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform 0.4s; }
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(27,94,32,0.92) 0%, rgba(27,94,32,0.3) 60%, transparent 100%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h6 { color: #fff; font-weight: 700; margin-bottom: 4px; }
.portfolio-overlay span { color: rgba(255,255,255,0.7); font-size: 0.82rem; }
/* Portfolio card body */
.port-tag {
  background: rgba(27,94,32,0.1); color: var(--primary);
  padding: 3px 12px; border-radius: 20px; font-size: .78rem; font-weight: 600;
}
.port-title { font-weight: 700; margin-bottom: 4px; }
.port-desc  { font-size: .85rem; color: var(--muted); margin: 0; }

/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */
.testimonial-card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  padding: 36px 30px; position: relative; transition: all 0.35s; height: 100%;
}
.testimonial-card::before {
  content: '\201C'; font-size: 6rem; font-family: Georgia, serif;
  color: rgba(27,94,32,0.08); position: absolute; top: -10px; left: 20px; line-height: 1;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(27,94,32,0.2); transform: translateY(-4px); }
.stars         { color: #F59E0B; letter-spacing: 2px; font-size: 0.9rem; }
.testimonial-text { color: var(--text); font-style: italic; line-height: 1.75; margin: 16px 0 24px; font-size: 0.97rem; }
.client-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); }
.client-name   { font-weight: 700; font-size: 0.95rem; color: var(--dark); }
.client-role   { color: var(--muted); font-size: 0.82rem; }

/* ── Testimonials rating overview ── */
.rating-score    { font-size: 4.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.rating-stars-xl { color: #F59E0B; font-size: 1.4rem; letter-spacing: 3px; }
.rating-caption  { color: var(--muted); font-size: .9rem; margin-top: 6px; }
.rating-row      { display: flex; align-items: center; gap: 8px; }
.rating-lbl      { font-size: .85rem; width: 20px; }
.rating-track    { flex: 1; height: 8px; background: #E5E7EB; border-radius: 10px; overflow: hidden; }
.rating-fill     { height: 100%; background: var(--gradient); border-radius: 10px; }
.rating-fill-88  { width: 88%; }
.rating-fill-10  { width: 10%; }
.rating-fill-2   { width: 2%; }
.rating-pct      { font-size: .85rem; color: var(--muted); }
.rating-total    { font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.rating-sub      { color: var(--muted); }
.platform-box    { text-align: center; }
.platform-score  { font-weight: 700; color: var(--dark); }
.platform-name   { font-size: .75rem; color: var(--muted); }

/* ── Video thumbnails ── */
.video-thumb { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; }
.video-thumb img { width: 100%; height: 240px; object-fit: cover; display: block; }
.video-thumb-overlay {
  position: absolute; inset: 0; background: rgba(27,94,32,0.6);
  display: flex; align-items: center; justify-content: center;
}
.video-play-btn {
  width: 64px; height: 64px; background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.video-play-icon { color: var(--primary); font-size: 1.4rem; margin-left: 4px; }
.video-thumb-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px;
  background: linear-gradient(0deg,rgba(0,0,0,0.7),transparent);
}
.video-title { color: #fff; font-weight: 700; font-size: .95rem; }
.video-dur   { color: rgba(255,255,255,0.7); font-size: .8rem; }

/* ════════════════════════════════
   CLIENTS
════════════════════════════════ */
.client-logo-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 28px 20px; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; height: 100px;
}
.client-logo-card:hover { box-shadow: var(--shadow); border-color: rgba(27,94,32,0.25); transform: translateY(-3px); }
.client-logo-card .logo-placeholder {
  font-size: 1.3rem; font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; letter-spacing: -0.5px;
}

/* ── Client Story Cards ── */
.client-story-card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s;
}
.client-story-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.csc-img   { width: 100%; height: 200px; object-fit: cover; }
.csc-body  { padding: 24px; }
.csc-head  { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.csc-tag   { font-size: .8rem; font-weight: 700; color: var(--primary); background: rgba(27,94,32,0.1); padding: 3px 12px; border-radius: 20px; }
.csc-year  { font-size: .8rem; color: var(--muted); }
.csc-title { font-weight: 700; margin-bottom: 8px; }
.csc-desc  { font-size: .88rem; color: var(--muted); line-height: 1.7; }
.csc-stats { display: flex; gap: 20px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.csc-stat-num { font-size: 1.4rem; font-weight: 800; color: var(--primary); }
.csc-stat-lbl { font-size: .75rem; color: var(--muted); }

/* ════════════════════════════════
   CONTACT
════════════════════════════════ */
.contact-info-card { background: var(--gradient); border-radius: 20px; padding: 40px 36px; color: #fff; height: 100%; }
.contact-info-card h3 { font-weight: 800; margin-bottom: 8px; }
.contact-info-card p  { color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-item-icon {
  width: 44px; height: 44px; min-width: 44px; background: rgba(255,255,255,0.15);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-item-text strong { display: block; font-size: .82rem; opacity: .7; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.contact-item-text span   { font-size: .97rem; }
/* Divider inside info card */
.contact-info-divider { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); }
.contact-follow-text  { color: rgba(255,255,255,0.7); font-size: .88rem; margin-bottom: 16px; }
.contact-social-row   { display: flex; gap: 10px; }
.contact-social-btn {
  width: 40px; height: 40px; background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none; transition: background .25s;
}
.contact-social-btn:hover { background: rgba(255,255,255,0.3); color: #fff; }
/* Contact form */
.contact-form-card { background: #fff; border-radius: 20px; padding: 40px 36px; box-shadow: var(--shadow); }
.form-control, .form-select {
  border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 16px;
  font-size: .92rem; color: var(--dark); transition: border-color .25s, box-shadow .25s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary-mid); box-shadow: 0 0 0 3px rgba(56,142,60,0.12); outline: none;
}
.form-label { font-weight: 600; font-size: .88rem; color: var(--text); margin-bottom: 6px; }
textarea.form-control { resize: none; }
.form-heading { font-weight: 800; margin: 12px 0 6px; }
.form-note    { font-size: .92rem; }
.form-success { background: rgba(27,94,32,0.08); border: 1px solid rgba(27,94,32,0.2); border-radius: 12px; padding: 20px; text-align: center; }
.form-success-icon { color: var(--primary); font-size: 2rem; margin-bottom: 10px; display: block; }
.form-success h6   { font-weight: 700; color: var(--dark); }
.form-success p    { color: var(--muted); font-size: .9rem; margin: 0; }
/* Map */
.map-wrap  { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.map-frame { border: 0; display: block; }

/* ════════════════════════════════
   CTA SECTION
════════════════════════════════ */
.cta-section { background: var(--gradient); padding: 90px 0; position: relative; overflow: hidden; text-align: center; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,200,83,0.2) 0%, transparent 60%);
}
.cta-section h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; }

/* ════════════════════════════════
   PROCESS STEPS
════════════════════════════════ */
.process-step { position: relative; text-align: center; }
.step-number {
  width: 60px; height: 60px; background: var(--gradient); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: #fff;
  margin: 0 auto 16px; box-shadow: 0 6px 20px rgba(27,94,32,0.35);
}

/* ════════════════════════════════
   VALUES CARDS
════════════════════════════════ */
.value-card {
  padding: 32px 24px; background: var(--light-bg); border-radius: 16px;
  border: 1px solid rgba(27,94,32,0.1); text-align: center; transition: all 0.3s;
}
.value-card:hover { background: var(--gradient); border-color: transparent; transform: translateY(-4px); }
.value-icon { font-size: 2rem; color: var(--primary); margin-bottom: 14px; transition: color 0.3s; }
.value-card h5 { font-weight: 700; margin-bottom: 8px; transition: color 0.3s; }
.value-card p  { color: var(--muted); font-size: 0.9rem; transition: color 0.3s; }
.value-card:hover .value-icon,
.value-card:hover h5,
.value-card:hover p { color: #fff !important; }

/* ════════════════════════════════
   ABOUT — story stat boxes
════════════════════════════════ */
.stat-box     { background: var(--light-bg); border-radius: 14px; padding: 20px; border: 1px solid rgba(27,94,32,0.1); }
.stat-box-num { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.stat-box-lbl { font-size: .85rem; color: var(--muted); }

/* ── Image helpers ── */
.img-story-shadow   { box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.img-section-shadow { box-shadow: var(--shadow-lg); }

/* ════════════════════════════════
   HERO HOME
════════════════════════════════ */
.hero-home {
  min-height: 418px;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 76px 0 22px;
}
.hero-home::after {
  content: ''; position: absolute; right: -5%; top: -5%; width: 55%; height: 110%;
  background: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=900&q=80') center/cover no-repeat;
  border-radius: 0 0 0 80px; opacity: 0.18;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 25px; padding: 5px 14px; font-size: .78rem; font-weight: 600;
  color: #c8e6c9; margin-bottom: 14px;
}
.hero-badge-dot {
  width: 8px; height: 8px; background: #69f0ae; border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.8); }
}
.hero-title {
  font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800;
  color: #fff; line-height: 1.15; margin-bottom: 14px;
}
.hero-title .highlight {
  background: linear-gradient(90deg, #a5d6a7, #69f0ae, #00e676);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; max-width: 520px; }
.hero-metrics     { display: flex; gap: 28px; margin-top: 24px; }
.hero-metric-sep  { width: 1px; background: rgba(255,255,255,0.15); align-self: stretch; }
.hero-metric-num  { font-size: 1.8rem; font-weight: 800; color: #fff; }
.hero-metric-num span { color: #69f0ae; }
.hero-metric-label { color: rgba(255,255,255,0.65); font-size: .82rem; }
.hero-img-wrap { position: relative; z-index: 1; }
.hero-img-main { width: 100%; border-radius: 24px; box-shadow: 0 24px 64px rgba(0,0,0,0.3); display: block; }
.hero-card-float {
  position: absolute; background: #fff; border-radius: 14px; padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18); animation: float 4s ease-in-out infinite;
}
.hero-card-float.card-1 { bottom: -20px; left: -30px; }
.hero-card-float.card-2 { top: -16px; right: -20px; animation-delay: 2s; }
.hero-card-num   { font-size: 1.4rem; font-weight: 800; color: var(--primary); }
.hero-card-label { font-size: .75rem; color: var(--muted); }
.hero-star-sm    { font-size: 1rem; }

/* ════════════════════════════════
   ABOUT SNIPPET (Home page)
════════════════════════════════ */
.about-img-stack { position: relative; }
.about-img-main  { border-radius: 20px; width: 100%; display: block; box-shadow: var(--shadow-lg); }
.about-img-badge {
  position: absolute; background: var(--gradient); color: #fff;
  border-radius: 16px; padding: 18px 22px; bottom: -20px; right: -20px;
  box-shadow: 0 8px 28px rgba(27,94,32,0.4); text-align: center;
}
.about-img-badge .big   { font-size: 2rem; font-weight: 800; display: block; }
.about-img-badge .small { font-size: .75rem; opacity: .85; }
.check-list { list-style: none; padding: 0; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: .95rem; }
.check-list li i { color: var(--primary); margin-top: 3px; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer { background: #0A2E10; color: rgba(255,255,255,0.75); padding-top: 72px; }
.footer-brand .logo-text { font-size: 1.5rem; font-weight: 800; color: #fff; }
.footer-brand .logo-text span {
  background: linear-gradient(90deg, #a5d6a7, #69f0ae);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-desc { color: rgba(255,255,255,0.6); font-size: .92rem; margin: 14px 0 24px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: .9rem; text-decoration: none; transition: all .25s;
}
.footer-social a:hover { background: var(--gradient); border-color: transparent; color: #fff; transform: translateY(-2px); }
.footer-heading { font-size: .82rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: .9rem; transition: color .2s; display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '›'; color: var(--accent-bright); font-size: 1rem; }
.footer-links a:hover { color: #a5d6a7; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-item i { color: var(--accent-bright); margin-top: 3px; }
.footer-contact-item span { color: rgba(255,255,255,0.65); font-size: .88rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 48px; padding: 20px 0; font-size: .85rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: var(--accent-bright); text-decoration: none; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 4px 12px; font-size: .8rem; color: rgba(255,255,255,0.5);
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 768px) {
  .hero-metrics { gap: 18px; flex-wrap: wrap; }
  .hero-card-float { display: none; }
  .about-img-badge { bottom: -10px; right: -10px; }
  .contact-form-card, .contact-info-card { padding: 28px 22px; }
}

/* ════════════════════════════════
   SERVICE CATEGORY & SUB PAGES
════════════════════════════════ */

/* Hero */
.svc-hero {
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.svc-sub-hero { min-height: 460px; }
.svc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.svc-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.svc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,94,32,0.93) 0%, rgba(56,142,60,0.88) 100%);
}
.svc-breadcrumb { margin-bottom: 20px; }
.svc-breadcrumb .breadcrumb { font-size: .82rem; gap: 2px; }
.svc-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.75); text-decoration: none; }
.svc-breadcrumb .breadcrumb-item a:hover { color: #fff; }
.svc-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.55); }
.svc-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.svc-hero-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  backdrop-filter: blur(8px);
}
.svc-hero-icon i { font-size: 1.7rem; color: #fff; }
.svc-hero-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.svc-hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Sub-category cards on Category page */
.sub-cat-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px 22px;
  text-decoration: none;
  color: var(--dark);
  transition: all 0.25s ease;
  height: 100%;
}
.sub-cat-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(27,94,32,0.14);
  transform: translateY(-4px);
  color: var(--dark);
  text-decoration: none;
}
.sub-cat-icon {
  width: 52px;
  height: 52px;
  background: var(--light-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.2s;
}
.sub-cat-card:hover .sub-cat-icon { background: var(--primary); }
.sub-cat-icon i { font-size: 1.3rem; color: var(--primary); transition: color 0.2s; }
.sub-cat-card:hover .sub-cat-icon i { color: #fff; }
.sub-cat-title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.sub-cat-desc { font-size: .82rem; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.sub-cat-items { list-style: none; padding: 0; margin: 0 0 16px; flex: 1; }
.sub-cat-items li { font-size: .8rem; color: var(--text); margin-bottom: 5px; display: flex; align-items: center; gap: 7px; }
.sub-cat-items li i { font-size: .55rem; color: var(--accent); }
.sub-cat-more { color: var(--muted); font-style: italic; }
.sub-cat-cta { font-size: .82rem; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 6px; }

/* "Other categories" / "Other subs" small cards */
.other-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  font-size: .8rem;
  font-weight: 600;
  transition: all 0.2s;
  height: 100%;
  justify-content: center;
}
.other-cat-card i { font-size: 1.4rem; color: var(--muted); transition: color 0.2s; }
.other-cat-card:hover { border-color: var(--primary); color: var(--primary); box-shadow: 0 4px 16px rgba(27,94,32,0.1); }
.other-cat-card:hover i { color: var(--primary); }

/* Offer cards on Sub page */
.offer-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.offer-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(27,94,32,0.12);
  transform: translateY(-3px);
}
.offer-icon {
  width: 50px;
  height: 50px;
  background: var(--light-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background 0.2s;
}
.offer-card:hover .offer-icon { background: var(--primary); }
.offer-icon i { font-size: 1.25rem; color: var(--primary); transition: color 0.2s; }
.offer-card:hover .offer-icon i { color: #fff; }
.offer-title { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.offer-desc { font-size: .82rem; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.offer-link { font-size: .82rem; font-weight: 700; color: var(--primary); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }
.offer-link:hover { color: var(--primary-light); }

/* Process cards */
.process-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.25s ease;
  position: relative;
}
.process-card:hover { border-color: var(--primary); box-shadow: 0 8px 28px rgba(27,94,32,0.12); }
.process-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}
.process-title { font-size: .95rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.process-desc { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* Mega dropdown — make group title clickable */
.mega-col-title-link { text-decoration: none; display: block; }
.mega-col-title-link:hover .mega-col-title { color: var(--primary); }

/* Responsive tweaks for service pages */
@media (max-width: 767px) {
  .svc-hero { padding: 110px 0 60px; min-height: 380px; }
  .svc-hero-title { font-size: 1.65rem; }
  .svc-hero-desc { font-size: .9rem; }
}
