/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow: #196038;
  --yellow-dark: #134D2D;
  --yellow-light: #22824F;
  --emerald-accent: #3cd070; /* Vibrant emerald green for dark backgrounds */
  --dark: #1f2937; /* Richer charcoal dark gray for primary text */
  --dark2: #2A2A2A;
  --dark3: #0D0D0D;
  --gray: #374151; /* Slate-700 instead of #3b3b3b */
  --gray-medium: #4b5563; /* Slate-600 (contrast 7.8:1 on white, 7.1:1 on gray-light) */
  --gray-light: #F9FAFB; /* Slate-50 background (softer, premium feel) */
  --white: #fff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 8px 16px -2px rgba(0, 0, 0, 0.06), 0 4px 6px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --font: 'Barlow', sans-serif; /* Correct Google Font loaded in index.html */
  --font-cond: 'Barlow Condensed', sans-serif;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); /* Elegant transition easing */
  --border-radius: 6px; /* Soften elements slightly */
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }
.bg-light { background: var(--gray-light); }
.bg-dark { background: var(--dark3); }
.bg-dark-alt { background: #0A0A0A; }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.accent { color: var(--yellow); }

/* ===== TYPOGRAPHY ===== */
.section-eyebrow {
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  display: block;
  margin-bottom: 14px;
}
.section-eyebrow.light { color: var(--emerald-accent); }

.section-title {
  font-family: var(--font-cond);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.section-title.light { color: var(--white); }
.section-sub { 
  color: var(--gray-medium); 
  margin-top: 16px; 
  font-size: 17px;
  line-height: 1.6;
}
.section-header { margin-bottom: 60px; }
.section-header .section-title { margin-top: 10px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}
.btn:focus {
  outline: 3px solid rgba(25, 96, 56, 0.3);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--yellow);
  color: var(--white);
  font-weight: 800;
}
.btn-primary:hover { 
  background: var(--yellow-dark); 
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--dark);
  color: var(--dark);
  box-shadow: none;
}
.btn-outline:hover { 
  background: var(--dark); 
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--yellow);
  padding: 10px 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-tag {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
}
.topbar-phone {
  font-size: 14px;
  color: white;
  font-weight: 500;
  transition: opacity var(--transition);
}
.topbar-phone:hover {
  opacity: 0.85;
}
.topbar-phone strong { font-weight: 800; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 24px rgba(0,0,0,0.1);
  transition: var(--transition);
}
.header.scrolled { 
  background: var(--white);
  box-shadow: 0 4px 32px rgba(0,0,0,0.15);
}
.header.scrolled .logo-text,
.header.scrolled .nav-list > .nav-item > a { color:  var(--dark); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.logo:hover {
  opacity: 0.9;
}
.logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
}
.logo-icon {
  color: var(--yellow);
  font-size: 22px;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--dark);
  transition: var(--transition);
}
.logo-white .logo-text { color: var(--white); }

/* NAV */
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-item { position: relative; }
.nav-item > a {
  display: block;
  padding: 28px 20px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  transition: color var(--transition);
  position: relative;
}
.nav-item > a::after {
  content: '';
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-item > a:hover,
.nav-item.active > a { color: var(--yellow); }
.nav-item > a:hover::after,
.nav-item.active > a::after {
  transform: scaleX(1);
}
.nav-item > a:focus {
  outline: 2px solid var(--yellow);
  outline-offset: -2px;
}

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 200;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.nav-item:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
  position: relative;
}
.dropdown li:last-child a {
  border-bottom: none;
}
.dropdown li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.dropdown li a:hover { 
  background: var(--gray-light); 
  color: var(--yellow); 
  padding-left: 28px;
}
.dropdown li a:hover::before {
  transform: scaleX(1);
}

.sub-dropdown {
  left: 100%;
  top: 0;
}
.has-dropdown .has-dropdown:hover > .sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  padding: 8px;
  display: flex;
  transition: all var(--transition);
  border-radius: var(--border-radius);
}
.search-btn:hover { 
  color: var(--yellow);
  background: var(--gray-light);
}
.search-btn:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
}
.hero-text { max-width: 680px; }
.hero-eyebrow {
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--emerald-accent);
  margin-bottom: 16px;
}
.hero .accent {
  color: var(--emerald-accent);
}
.hero-title {
  font-family: var(--font-cond);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin-bottom: 28px;
}

/* HERO TABS */
.hero-tabs { display: flex; gap: 4px; margin-bottom: 24px; }
.hero-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.hero-tab.active, .hero-tab:hover { background: var(--yellow); color: var(--white); }

/* HERO FORM */
.hero-form {
  background: rgba(255,255,255,0.96);
  padding: 24px;
  backdrop-filter: blur(10px);
}
.form-row {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.form-group { flex: 1; min-width: 160px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}
.form-group select,
.form-group input {
  width: 100%;
  border: 1.5px solid #e0e0e0;
  padding: 11px 14px;
  font-size: 16px;
  font-family: var(--font);
  color: var(--dark);
  outline: none;
  background: white;
  transition: border-color var(--transition);
}
.form-group select:focus,
.form-group input:focus { border-color: var(--yellow); }
.btn-search-equip {
  padding: 13px 30px;
  background: var(--yellow);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-search-equip:hover { background: var(--dark); color: var(--white); }

/* HERO ARROWS */
.hero-arrows { position: absolute; bottom: 50%; right: 32px; z-index: 3; display: flex; gap: 8px; transform: translateY(50%); }
.arrow-btn {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.arrow-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--white); }

/* HERO DOTS */
.hero-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--yellow); width: 28px; border-radius: 5px; }

/* ===== ABOUT ===== */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 540px;
}
.about-img-main {
  width: 78%;
  height: 440px;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}
.about-img-secondary {
  width: 52%;
  height: 280px;
  object-fit: cover;
  position: absolute;
  right: 0;
  bottom: 0;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-xl);
  border-radius: 8px;
}
.about-badge {
  position: absolute;
  right: 50%;
  top: 14%;
  transform: translateX(50%);
  background: var(--yellow);
  padding: 22px 28px;
  text-align: center;
  z-index: 2;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}
.badge-num {
  font-family: var(--font-cond);
  font-size: 52px;
  font-weight: 900;
  color: white;
  display: block;
  line-height: 1;
}
.badge-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}
.about-content .section-title { margin-top: 10px; margin-bottom: 22px; }
.about-text { 
  color: var(--gray-medium); 
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-features { margin: 32px 0; display: flex; flex-direction: column; gap: 22px; }
.feature-item { 
  display: flex; 
  gap: 18px; 
  align-items: flex-start;
  padding: 20px;
  background: var(--gray-light);
  border-radius: var(--border-radius);
  transition: all var(--transition);
}
.feature-item:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}
.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}
.feature-item h4 { 
  font-size: 18px; 
  font-weight: 700; 
  margin-bottom: 6px;
  color: var(--dark);
}
.feature-item p { 
  color: var(--gray-medium); 
  font-size: 15px;
  line-height: 1.6;
}

/* ===== SERVICES CARDS ===== */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(25, 96, 56, 0.4);
}

.svc-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
  flex-shrink: 0;
}
.svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.svc-card:hover .svc-img-wrap img { transform: scale(1.08); }

.svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
}

.svc-body {
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

/* Top accent bar that slides in on hover */
.svc-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.svc-card:hover .svc-body::before {
  transform: scaleX(1);
}

.svc-icon {
  width: 72px;
  height: 72px;
  background: var(--white);
  border: 3px solid var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -62px;
  margin-bottom: 22px;
  color: var(--yellow);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.svc-card:hover .svc-icon {
  background: var(--yellow);
  color: var(--white);
  transform: scale(1.05);
}

.svc-body h3 {
  font-family: var(--font-cond);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  color: var(--dark);
  line-height: 1.3;
}

.svc-body p {
  color: var(--gray-medium);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}

.svc-body ul {
  color: var(--gray-medium);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  flex: 1;
  list-style: none;
}

.svc-body ul li {
  position: relative;
  padding-left: 0;
  margin-bottom: 12px;
}

.svc-body ul li b {
  color: var(--dark);
  font-weight: 700;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  transition: gap var(--transition);
  margin-top: auto;
}
.svc-link span {
  transition: transform var(--transition);
}
.svc-link:hover {
  color: var(--yellow-dark);
  gap: 12px;
}
.svc-link:hover span {
  transform: translateX(4px);
}

/* Responsive — tablet: still 2 cols but tighter */
@media (max-width: 1100px) {
  .svc-body { padding: 36px 30px 30px; }
  .svc-body h3 { font-size: 24px; }
}

/* Responsive — mobile: 1 col */
@media (max-width: 720px) {
  .services-cards-grid { grid-template-columns: 1fr; gap: 24px; }
  .svc-img-wrap { height: 220px; }
  .svc-body { padding: 32px 26px 26px; }
}

@media (max-width: 480px) {
  .svc-img-wrap { height: 200px; }
  .svc-body { padding: 28px 22px 24px; }
  .svc-body h3 { font-size: 22px; }
}

/* ===== CATEGORIES ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.cat-card {
  background: var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.cat-card:hover { 
  transform: translateY(-6px); 
  box-shadow: var(--shadow-xl);
  border-color: rgba(25, 96, 56, 0.4);
}
.cat-img-wrap { 
  position: relative; 
  overflow: hidden; 
  height: 220px; 
}
.cat-img-wrap img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.4s ease; 
}
.cat-card:hover .cat-img-wrap img { transform: scale(1.08); }
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%);
}
.cat-body { padding: 28px 24px; }
.cat-icon {
  width: 58px;
  height: 58px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  margin-top: -48px;
  position: relative;
  z-index: 2;
  padding: 12px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.cat-card:hover .cat-icon {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}
.cat-icon img { width: 100%; filter: brightness(0) invert(1); }
.cat-body h3 {
  font-family: var(--font-cond);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.3;
}
.cat-body p { 
  color: var(--gray-medium); 
  font-size: 15px; 
  margin-bottom: 18px; 
  line-height: 1.6;
}
.cat-link {
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cat-link:hover { 
  color: var(--yellow-dark);
  gap: 10px;
}
.cat-link.light { color: var(--emerald-accent); }
.cat-link.light:hover { color: var(--white); }

/* ===== VIDEO SECTION ===== */
.video-section {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.75);
}
.video-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}
.video-content .section-title { margin-top: 8px; margin-bottom: 24px; }
.play-btn {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.play-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--yellow);
  animation: pulse-ring 2s infinite;
}
.play-icon {
  width: 64px;
  height: 64px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.play-btn:hover .play-icon { background: var(--white); }
.play-btn:hover .play-icon svg polygon { fill: var(--yellow); }
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===== SOLUTIONS ===== */
.solutions-slider { position: relative; overflow: hidden; }
.solutions-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}
.solution-card {
  flex-shrink: 0;
  width: calc(33.333% - 16px);
  position: relative;
  overflow: hidden;
  height: 360px;
}
.solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.solution-card:hover img { transform: scale(1.06); }
.solution-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}
.solution-overlay h3 {
  font-family: var(--font-cond);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.solution-overlay p { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 12px; }
.sol-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--yellow);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: var(--transition);
}
.sol-arrow:hover { background: var(--dark3); color: var(--white); }
.sol-prev { left: -22px; }
.sol-next { right: -22px; }

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 56px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--yellow);
}
.stat-num {
  font-family: var(--font-cond);
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-cond);
  font-size: 28px;
  font-weight: 900;
  color: var(--emerald-accent);
  vertical-align: super;
}
.stat-item h4 {
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 10px 0 6px;
}
.stat-item p { color: rgba(255,255,255,0.7); font-size: 13.5px; }

/* ===== REASONS ===== */
.reasons-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.reasons-list { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.reason-item { display: flex; gap: 18px; align-items: flex-start; }
.reason-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accent-bg { background: var(--yellow); }
.reason-item h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.reason-item p { color: var(--gray); font-size: 16px; }
.reasons-images {
  position: relative;
  height: 480px;
}
.reason-img {
  object-fit: cover;
  position: absolute;
}
.reason-img-1 {
  width: 72%;
  height: 340px;
  right: 0;
  top: 0;
}
.reason-img-2 {
  width: 56%;
  height: 240px;
  left: 0;
  bottom: 0;
  border: 6px solid white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== TESTIMONIALS ===== */
.testi-slider { overflow: hidden; position: relative; }
.testi-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s ease;
}
.testi-card {
  flex-shrink: 0;
  width: calc(33.333% - 20px);
  background: var(--white);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(25, 96, 56, 0.3);
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 28px;
  font-size: 100px;
  line-height: 1;
  color: var(--yellow);
  opacity: 0.15;
  font-family: serif;
}
.testi-stars { color: var(--yellow); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-card h4 { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.testi-card > p { color: var(--gray); font-size: 16px; margin-bottom: 24px; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid #f0f0f0; padding-top: 18px; }
.testi-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testi-author strong { display: block; font-size: 15px; font-weight: 700; }
.testi-author span { font-size: 12px; color: var(--yellow); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.testi-dots { display: flex; gap: 8px; justify-content: center; margin-top: 36px; }
.tdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: var(--transition);
}
.tdot.active { background: var(--yellow); width: 28px; border-radius: 5px; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--dark); padding: 80px 0; }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: center;
}
.cta-block h3 {
  font-family: var(--font-cond);
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin: 10px 0 12px;
}
.cta-block > p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.cta-divider {
  width: 1px;
  height: 200px;
  background: rgba(255,255,255,0.1);
}
.cta-bars { display: flex; flex-direction: column; gap: 16px; }
.cta-bar-item { display: flex; align-items: center; gap: 12px; }
.cta-bar-item > span:first-child {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 130px;
  flex-shrink: 0;
}
.bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--yellow);
  width: 0;
  transition: width 1.5s ease;
  border-radius: 2px;
}
.bar-pct {
  font-size: 12px;
  font-weight: 700;
  color: var(--emerald-accent);
  width: 36px;
  text-align: right;
}

/* ===== BLOG ===== */
.blog-slider { overflow: hidden; position: relative; }
.blog-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s ease;
}
.blog-card {
  flex-shrink: 0;
  width: calc(33.333% - 19px);
  background: var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(25, 96, 56, 0.4);
}
.blog-dots { display: flex; gap: 8px; justify-content: center; margin-top: 36px; }
.bdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: var(--transition);
}
.bdot.active { background: var(--yellow); width: 28px; border-radius: 5px; }
.blog-img-wrap { position: relative; overflow: hidden; height: 220px; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.05); }
.blog-cat {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
}
.blog-body { padding: 24px; }
.blog-date {
  font-size: 12px;
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.blog-body h3 { font-size: 18px; font-weight: 700; line-height: 1.4; margin-bottom: 16px; }
.blog-body h3 a { color: var(--dark); transition: color var(--transition); }
.blog-body h3 a:hover { color: var(--yellow); }

/* ===== CONTACT CTA ===== */
.contact-cta {
  background: #000000;
}
.contact-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-cta-content .section-title { margin-top: 8px; margin-bottom: 18px; }
.light-text { color: rgba(255,255,255,0.8); margin-bottom: 28px; display: block; }
.contact-info-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}
.agent-img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; }
.contact-phone {
  display: block;
  font-family: var(--font-cond);
  font-size: 26px;
  font-weight: 800;
  color: var(--yellow);
}
.contact-cta-form h4 {
  font-family: var(--font-cond);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
.cta-form { display: flex; flex-direction: column; gap: 14px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta-form input,
.cta-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 12px 16px;
  font-size: 16px;
  font-family: var(--font);
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
  border-radius: var(--border-radius);
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(255,255,255,0.60); }
.cta-form input:focus, .cta-form textarea:focus { border-color: var(--emerald-accent); }
.cta-form textarea { resize: vertical; }

/* ===== FOOTER ===== */
.footer { background: var(--gray-light); border-top: 1px solid rgba(0, 0, 0, 0.05); }
.footer-top { padding: 80px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns:1.2fr 1.2fr 1.2fr;
  gap: 40px;
}
.footer .logo .logo-text { color: var(--dark); }
.footer .logo .logo-icon { color: var(--yellow); }
.footer-brand p { color: var(--gray-medium); font-size: 15px; margin-top: 16px; line-height: 1.7; }
.footer-contact-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray-medium);
  font-size: 14px;
}
.footer-contact-list li svg { flex-shrink: 0; margin-top: 3px; stroke: var(--yellow); }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(0, 0, 0, 0.05);
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: var(--transition);
  border-radius: var(--border-radius);
}
.footer-social a:hover { background: var(--yellow); color: var(--white); }
.footer-col h5 {
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--gray-medium);
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--yellow);
  font-size: 16px;
}
.footer-links a:hover { color: var(--yellow); padding-left: 6px; }
.footer-news { display: flex; flex-direction: column; gap: 16px; }
.footer-news-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-news-item img { width: 60px; height: 56px; object-fit: cover; flex-shrink: 0; border-radius: 4px; }
.news-date { font-size: 11px; color: var(--yellow-light); font-weight: 600; letter-spacing: 1px; display: block; margin-bottom: 4px; }
.footer-news-item a { color: var(--dark); font-size: 13.5px; transition: color var(--transition); }
.footer-news-item a:hover { color: var(--yellow); }
.footer-newsletter { display: flex; margin-top: 12px; }
.footer-newsletter input {
  flex: 1;
  background: var(--white);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-right: none;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--dark);
  outline: none;
}
.footer-newsletter input::placeholder { color: var(--gray-medium); }
.btn-newsletter {
  width: 44px;
  background: var(--yellow);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  transition: var(--transition);
}
.btn-newsletter:hover { background: var(--yellow-dark); }
.app-buttons { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.app-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  color: var(--dark);
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition);
  border-radius: var(--border-radius);
}
.app-btn svg, .app-btn svg path { fill: var(--dark); transition: fill var(--transition); }
.app-btn:hover { background: var(--yellow); color: var(--white); border-color: var(--yellow); }
.app-btn:hover svg, .app-btn:hover svg path { fill: var(--white); }

/* FOOTER BOTTOM */
.footer-bottom {
  background: rgba(0, 0, 0, 0.02);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { color: var(--gray-medium); font-size: 13px; }
.footer-bottom strong { color: var(--yellow); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--gray-medium); font-size: 13px; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--yellow); }

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  transition: color var(--transition);
}
.search-close:hover { color: var(--yellow); }
.search-box { display: flex; width: 100%; max-width: 560px; }
.search-box input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  border-right: none;
  padding: 16px 20px;
  font-size: 18px;
  color: var(--white);
  outline: none;
}
.search-box input::placeholder { color: rgba(255,255,255,0.35); }
.search-box button {
  background: var(--yellow);
  border: none;
  padding: 0 22px;
  cursor: pointer;
  transition: var(--transition);
}
.search-box button:hover { background: var(--white); }

/* ===== PAGE BANNER ===== */
.page-banner {
  background: var(--gray-light);
  padding: 65px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.page-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.page-banner h1 {
  font-family: var(--font-cond);
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0;
  letter-spacing: -0.5px;
}
.breadcrumbs {
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-medium);
}
.breadcrumbs a {
  color: var(--yellow);
  transition: color var(--transition);
}
.breadcrumbs a:hover {
  color: var(--yellow-dark);
}
.breadcrumbs span {
  margin: 0 8px;
  color: rgba(0, 0, 0, 0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .about-inner, .reasons-inner, .contact-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-images { height: 360px; }
  .reasons-images { height: 320px; }
  .video-inner { grid-template-columns: 1fr; text-align: center; }
  .play-btn { margin: 0 auto; }
  .blog-card { width: calc(50% - 14px); }
  .testi-card { width: calc(50% - 14px); }
  .solution-card { width: calc(50% - 12px); }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-divider { display: none; }
}

@media (max-width: 768px) {
  .topbar-tag { display: none; }
  .nav { 
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    padding: 16px 0;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    z-index: 900;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-item > a { padding: 14px 24px; }
  .dropdown { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; background: #f8f8f8; }
  .hamburger { display: flex; }
  .hero-title { font-size: 38px; }
  .categories-grid { grid-template-columns: 1fr; }
  .blog-card { width: 100%; }
  .testi-card { width: 100%; }
  .solution-card { width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .form-row-2 { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .about-img-main { width: 100%; }
  .about-img-secondary { display: none; }
  .hero-arrows { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .section-title { font-size: 26px; }
  .stat-item { padding: 40px 20px; }
  .stat-num { font-size: 44px; }
}
