/* =========================================================
   VENTRO CONSULTING SERVICES — Global Stylesheet
   ventro.css | Bootstrap 5.3 + Custom Styles — Premium Edition
   ========================================================= */

/* ---------------------------------------------------------
   CSS CUSTOM PROPERTIES (Brand Colors + Premium Variables)
   --------------------------------------------------------- */
:root {
  --primary: #00A651;
  --primary-dark: #1A7A3A;
  --primary-darker: #0d5c2b;
  --primary-light: #e6f7ee;
  --primary-mid: #00843f;
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --medium-gray: #e0e0e0;
  --dark-gray: #1e1e2e;
  --text-body: #444444;
  --text-muted-custom: #6b7280;
  --black: #000000;
  --accent-gold: #f59e0b;
  --border-radius: 10px;
  --border-radius-lg: 18px;
  --border-radius-xl: 28px;
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 25px -3px rgba(0,0,0,0.10), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 50px -10px rgba(0,0,0,0.15), 0 10px 20px -5px rgba(0,0,0,0.08);
  --shadow-green: 0 8px 25px rgba(0, 166, 81, 0.25);
  --shadow-green-lg: 0 15px 40px rgba(0, 166, 81, 0.35);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ---------------------------------------------------------
   BASE STYLES
   --------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-gray);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------------------------------------------------------
   BOOTSTRAP OVERRIDES — BUTTONS
   --------------------------------------------------------- */

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.02em;
  box-shadow: 0 4px 15px rgba(0,166,81,0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
  box-shadow: 0 8px 25px rgba(0,166,81,0.4);
  transform: translateY(-2px);
  color: white;
  border: none;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 166, 81, 0.35), 0 8px 25px rgba(0,166,81,0.4);
}

/* Outline Primary Button */
.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  transition: var(--transition);
  background: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
}

/* Hero Highlight Button — white solid, pops on green background */
.btn-hero-highlight {
  background: #ffffff;
  border: none;
  color: var(--primary-darker);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.02em;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25), 0 0 0 3px rgba(255,255,255,0.4);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-hero-highlight::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s ease;
}

.btn-hero-highlight:hover::before {
  left: 100%;
}

.btn-hero-highlight:hover,
.btn-hero-highlight:focus {
  background: #f0faf4;
  color: var(--primary-darker);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(255,255,255,0.5);
}

/* Outline White Button (for dark backgrounds) */
.btn-outline-white {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-outline-white:hover,
.btn-outline-white:focus {
  background-color: var(--white);
  color: var(--primary-dark);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Large Buttons */
.btn-lg {
  padding: 0.9rem 2.5rem;
  font-size: 1.05rem;
}

/* Small Buttons */
.btn-sm {
  padding: 0.45rem 1.25rem;
  font-size: 0.85rem;
}

/* ---------------------------------------------------------
   NAVBAR STYLES — Premium White
   --------------------------------------------------------- */
.ventro-navbar {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,166,81,0.12);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: var(--transition);
}

.ventro-navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.10);
}

.navbar-brand-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  padding: 0.6rem 0;
}

.navbar-logo-img {
  height: 62px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Footer text logo (used because original PNG has no transparency) */
.footer-logo-text-mark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.12em;
  display: block;
}

.footer-brand-sub {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  display: block;
  margin-top: 0.2rem;
}

/* Text fallback styles (kept for backward compatibility) */
.navbar-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar-brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: 0.06em;
}

.navbar-brand-subtitle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--dark-gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.ventro-navbar .nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark-gray);
  padding: 1.25rem 0.75rem;
  transition: var(--transition);
  letter-spacing: 0.02em;
  position: relative;
}

.ventro-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.25s ease;
  border-radius: 2px;
}

.ventro-navbar .nav-link:hover,
.ventro-navbar .nav-link.active {
  color: var(--primary);
  font-weight: 700;
}

.ventro-navbar .nav-link:hover::after,
.ventro-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.ventro-navbar .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius);
  padding: 0.5rem 0;
  min-width: 240px;
  border-left: 4px solid var(--primary);
  margin-top: 0;
  background: white;
}

.ventro-navbar .dropdown-item {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--dark-gray);
  padding: 0.6rem 1.25rem;
  transition: var(--transition);
}

.ventro-navbar .dropdown-item:hover,
.ventro-navbar .dropdown-item:focus {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  padding-left: 1.5rem;
}

.navbar-toggler {
  border-color: var(--primary);
  color: var(--primary);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300A651' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-health-check {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(0,166,81,0.3);
  display: inline-block;
  text-decoration: none;
}

.btn-health-check:hover {
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
  color: white;
}

/* ---------------------------------------------------------
   HERO SECTION — Dramatic & Layered
   --------------------------------------------------------- */
.hero-section {
  background: linear-gradient(135deg, #0d5c2b 0%, #1A7A3A 35%, #00A651 70%, #00c060 100%);
  min-height: 640px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 8rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(0,0,0,0.1) 0%, transparent 40%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: white;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.hero-section .hero-content {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.hero-section .hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------
   PAGE HERO (inner pages) — Clipped with Depth
   --------------------------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 40%, var(--primary) 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 0 100%);
  margin-bottom: -2px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.07) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(0,0,0,0.1) 0%, transparent 40%);
  pointer-events: none;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 680px;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

/* ---------------------------------------------------------
   SECTION STYLES
   --------------------------------------------------------- */
.section-padding {
  padding: 5rem 0;
}

.section-padding-sm {
  padding: 3rem 0;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  flex-shrink: 0;
}

.text-center .section-label {
  justify-content: center;
}

.text-center .section-label::before {
  display: none;
}

/* Override for dark backgrounds */
.bg-primary-dark .section-label,
.page-hero .section-label,
.hero-section .section-label {
  color: rgba(255,255,255,0.75);
}

.bg-primary-dark .section-label::before {
  background: rgba(255,255,255,0.5);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted-custom);
  max-width: 620px;
  line-height: 1.7;
}

.section-divider {
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
  margin: 0.75rem 0 1.5rem;
  position: relative;
}

.section-divider::after {
  content: '';
  position: absolute;
  left: 56px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.section-divider.centered {
  margin: 0.75rem auto 1.5rem;
}

.bg-light-gray {
  background-color: #f8f9fa;
  background-image: radial-gradient(circle, #d4d4d4 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ---------------------------------------------------------
   WHY VENTRO — Dark Green Section
   --------------------------------------------------------- */
.bg-primary-dark {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 50%, var(--primary-mid) 100%);
  position: relative;
  overflow: hidden;
}

.bg-primary-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0% 100%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.bg-primary-green {
  background-color: var(--primary);
}

/* ---------------------------------------------------------
   SECTION CLIP UTILITIES
   --------------------------------------------------------- */
.section-clip-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
  padding-bottom: calc(5rem + 60px);
}

.section-clip-top {
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(5rem + 60px);
  margin-top: -60px;
}

/* ---------------------------------------------------------
   CARD STYLES — Premium
   --------------------------------------------------------- */

/* Service Cards */
.service-card {
  background: var(--white);
  border: 1px solid rgba(0,166,81,0.08);
  border-radius: var(--border-radius-lg);
  padding: 2.25rem 2rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

/* colored left border accent */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
  border-radius: 2px 0 0 2px;
}

/* top shimmer bar on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark), var(--primary));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: shimmer 2s infinite linear;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.service-card:hover {
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(0,166,81,0.15);
  transform: translateY(-6px);
  border-color: rgba(0,166,81,0.2);
}

.service-card:hover::before { transform: scaleY(1); }
.service-card:hover::after { opacity: 1; }

.service-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-light), #c5edd8);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,166,81,0.15);
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: var(--shadow-green);
  transform: rotate(-5deg) scale(1.05);
}

.service-card-icon i {
  font-size: 1.5rem;
  color: var(--primary-dark);
  transition: var(--transition);
}

.service-card:hover .service-card-icon i {
  color: white;
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--dark-gray);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted-custom);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-card .learn-more-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

.service-card .learn-more-link:hover {
  color: var(--primary-dark);
  gap: 0.6rem;
}

/* Case Study Cards */
.case-study-card {
  background: white;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--medium-gray);
}

.case-study-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.case-study-card-header {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 40%, var(--primary) 100%);
  padding: 2.25rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.case-study-card-header::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.case-study-industry-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
}

.case-study-card-header h3 {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 1;
}

.case-study-location {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  position: relative;
  z-index: 1;
}

.case-study-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.case-study-result {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 0.9rem 1rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.case-study-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted-custom);
  margin-bottom: 1.25rem;
  line-height: 1.65;
  flex: 1;
}

/* Problem Cards */
.problem-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--medium-gray);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: var(--primary-light);
  border-radius: 50%;
  opacity: 0.4;
  transition: var(--transition);
}

.problem-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(0,166,81,0.25);
}

.problem-card:hover::before {
  transform: scale(1.5);
  opacity: 0.6;
}

.problem-icon {
  width: 75px; height: 75px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-green);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.problem-card:hover .problem-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: var(--shadow-green-lg);
}

.problem-icon i {
  font-size: 1.6rem;
  color: var(--white);
}

.problem-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark-gray);
  position: relative;
  z-index: 1;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-muted-custom);
  line-height: 1.65;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* Why Ventro Pillars */
.pillar-card {
  text-align: center;
  padding: 2.5rem 1.75rem;
  border-radius: var(--border-radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.pillar-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}

.pillar-icon {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}

.pillar-card:hover .pillar-icon {
  background: rgba(255,255,255,0.2);
  transform: scale(1.05);
}

.pillar-icon i {
  font-size: 1.8rem;
  color: var(--white);
}

.pillar-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.pillar-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ---------------------------------------------------------
   STATS BAR — Dark & Glowing
   --------------------------------------------------------- */
.stats-bar {
  background: linear-gradient(135deg, #1e1e2e 0%, #2d2d40 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(0,166,81,0.08) 0%, transparent 70%);
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(0,166,81,0.3);
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.4;
}

/* Achievement stat items (for achievements page) */
.achievement-stat {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.achievement-stat::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.achievement-stat::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: var(--primary-light);
  border-radius: 50%;
  opacity: 0.5;
  transition: var(--transition);
}

.achievement-stat:hover::after {
  transform: scale(1.5);
  opacity: 0.8;
}

.achievement-stat:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.achievement-stat .stat-number {
  color: var(--primary);
  font-size: 2.5rem;
  text-shadow: none;
  position: relative;
  z-index: 1;
}

.achievement-stat .stat-label {
  color: var(--dark-gray);
  font-size: 0.95rem;
  font-weight: 600;
}

/* Trust cards */
.trust-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,166,81,0.08);
  transition: var(--transition);
  height: 100%;
}

.trust-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(0,166,81,0.2);
}

.trust-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-light), #c5edd8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px rgba(0,166,81,0.12);
}

.trust-card-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.trust-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark-gray);
}

.trust-card p {
  font-size: 0.875rem;
  color: var(--text-muted-custom);
  margin-bottom: 0;
}

/* ---------------------------------------------------------
   NEWSLETTER SECTION
   --------------------------------------------------------- */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(255,255,255,0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.newsletter-section h2 {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.newsletter-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.newsletter-form .form-control {
  border: none;
  border-radius: var(--border-radius);
  padding: 0.7rem 1.25rem;
  font-size: 0.95rem;
  min-width: 200px;
  flex: 1;
}

.btn-newsletter-subscribe {
  background: #ffffff;
  border: none;
  color: var(--primary-darker);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.7rem 1.75rem;
  border-radius: var(--border-radius);
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.btn-newsletter-subscribe::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,166,81,0.1), transparent);
  transition: left 0.5s ease;
}

.btn-newsletter-subscribe:hover::before { left: 100%; }

.btn-newsletter-subscribe:hover,
.btn-newsletter-subscribe:focus {
  background: #f0faf4;
  color: var(--primary-darker);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

.newsletter-form .form-control:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  outline: none;
}

/* ---------------------------------------------------------
   CTA BANNER — Gradient
   --------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--light-gray) 0%, #e8f5ee 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,166,81,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner.dark {
  background: var(--dark-gray);
}

.cta-banner h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--dark-gray);
  position: relative;
  z-index: 1;
}

.cta-banner.dark h2 {
  color: var(--white);
}

.cta-banner p {
  color: var(--text-muted-custom);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}

.cta-banner.dark p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

.cta-banner .d-flex {
  position: relative;
  z-index: 1;
}

/* ---------------------------------------------------------
   FOOTER STYLES — Rich Gradient
   --------------------------------------------------------- */
.ventro-footer {
  background: linear-gradient(160deg, var(--primary-darker) 0%, #0f4a22 50%, var(--primary-dark) 100%);
  color: rgba(255,255,255,0.85);
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}

.ventro-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 100% 0%, rgba(0,166,81,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.06em;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 0.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item i {
  color: var(--primary);
  font-size: 0.95rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  background-color: rgba(0, 166, 81, 0.2);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-newsletter .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
}

.footer-newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  box-shadow: none;
}

.footer-newsletter .btn {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-size: 0.875rem;
  padding: 0.6rem 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 0;
  margin-top: 3rem;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ---------------------------------------------------------
   BUSINESS HEALTH CHECK WIZARD
   --------------------------------------------------------- */
.wizard-section {
  padding: 4rem 0 5rem;
}

.wizard-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.wizard-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 2rem 2.5rem 1.5rem;
  color: var(--white);
}

.wizard-step-counter {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.wizard-header h2 {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.wizard-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  overflow: hidden;
}

.wizard-progress-bar {
  height: 100%;
  background: var(--white);
  border-radius: 3px;
  transition: width 0.4s ease;
}

.wizard-body {
  padding: 2.5rem;
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
  animation: fadeInStep 0.35s ease;
}

@keyframes fadeInStep {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.wizard-question {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.wizard-body .form-control,
.wizard-body .form-select {
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: var(--dark-gray);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.wizard-body .form-control:focus,
.wizard-body .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.15);
  outline: none;
}

.wizard-body textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5rem 2.5rem;
  gap: 1rem;
}

.btn-wizard-prev {
  background: none;
  border: 2px solid #e0e0e0;
  color: var(--dark-gray);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-wizard-prev:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-wizard-prev:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-wizard-next {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.65rem 2rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-wizard-next:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateX(2px);
}

.wizard-success {
  display: none;
  text-align: center;
  padding: 3.5rem 2.5rem;
  animation: fadeInStep 0.5s ease;
}

.wizard-success.show {
  display: block;
}

.wizard-success-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.wizard-success-icon i {
  font-size: 2rem;
  color: var(--primary);
}

.wizard-success h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.wizard-success p {
  color: var(--text-muted-custom);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto;
}

.field-error {
  font-size: 0.8rem;
  color: #dc3545;
  margin-top: 0.35rem;
  display: none;
}

.field-error.show {
  display: block;
}

/* ---------------------------------------------------------
   SERVICES PAGE STYLES
   --------------------------------------------------------- */
.service-detail-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--medium-gray);
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
}

.service-detail-header {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.service-detail-header:hover {
  background: var(--light-gray);
}

.service-detail-number {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  margin-bottom: 0.3rem;
  display: inline-block;
}

.service-detail-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--dark-gray);
}

.service-detail-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted-custom);
}

.service-detail-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.service-detail-meta .price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-dark);
}

.service-toggle-icon {
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-top: 0.25rem;
}

.service-toggle-icon.open {
  transform: rotate(180deg);
}

.service-detail-body {
  display: none;
  padding: 0 2rem 2rem;
  border-top: 1px solid #f0f0f0;
}

.service-detail-body.open {
  display: block;
  animation: fadeInStep 0.3s ease;
}

.deliverables-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.deliverables-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.deliverables-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  font-size: 0.75rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.who-needs-it {
  background: var(--primary-light);
  border-radius: var(--border-radius);
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--primary-dark);
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.it-badge {
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 0.4rem;
}

/* Package combination cards */
.combo-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--medium-gray);
  height: 100%;
  transition: var(--transition);
}

.combo-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.combo-arrow {
  color: var(--primary);
  margin: 0.4rem 0;
  font-size: 1.1rem;
}

.combo-step {
  background: var(--primary-light);
  border-radius: var(--border-radius);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 0.4rem;
}

/* ---------------------------------------------------------
   FOR NEW BUSINESSES — STEPS
   --------------------------------------------------------- */
.launch-steps {
  counter-reset: step-counter;
}

.launch-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.launch-step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3);
}

.launch-step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 0.4rem;
}

.launch-step-content p {
  font-size: 0.9rem;
  color: var(--text-muted-custom);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Failure reason cards */
.failure-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--medium-gray);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.failure-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dc3545, #e74c3c);
}

.failure-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.failure-x {
  width: 50px;
  height: 50px;
  background: #fff0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.failure-x i {
  font-size: 1.2rem;
  color: #dc3545;
}

.failure-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark-gray);
}

.ventro-fix {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--medium-gray);
  font-size: 0.85rem;
  color: var(--primary-dark);
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

/* ---------------------------------------------------------
   CASE STUDIES PAGE
   --------------------------------------------------------- */
.case-study-full {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
  border: 1px solid var(--medium-gray);
}

.case-study-full-header {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 40%, var(--primary) 100%);
  padding: 2.5rem 2.5rem 2rem;
}

.case-study-full-header h2 {
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.case-study-full-body {
  padding: 2.5rem;
}

.cs-section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.cs-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 0.75rem;
}

.result-highlight {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
}

.result-highlight p {
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: var(--dark-gray);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.result-highlight p i {
  color: var(--primary);
  font-size: 0.8rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ---------------------------------------------------------
   QUOTE BLOCK — Stylized
   --------------------------------------------------------- */
.quote-block {
  background: linear-gradient(135deg, var(--light-gray) 0%, #e8f5ee 100%);
  border-radius: var(--border-radius-lg);
  padding: 2.25rem 2.25rem 2rem;
  margin-top: 1.5rem;
  position: relative;
  border-left: 4px solid var(--primary);
}

.quote-block::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: -1rem; left: 1.25rem;
  line-height: 1;
}

.quote-block p {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--dark-gray);
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.quote-block cite {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  padding-left: 1rem;
  display: block;
}

/* ---------------------------------------------------------
   CONTACT PAGE
   --------------------------------------------------------- */
.contact-info-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--medium-gray);
  height: 100%;
}

.contact-info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--dark-gray);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-light);
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 0.4rem;
}

.form-control, .form-select {
  border: 2px solid var(--medium-gray);
  border-radius: var(--border-radius);
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  color: var(--dark-gray);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.12);
  outline: none;
}

.calendly-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--white);
}

.calendly-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.calendly-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* ---------------------------------------------------------
   ABOUT PAGE
   --------------------------------------------------------- */
.do-dont-table {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.do-dont-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
}

.do-header {
  background: var(--primary);
  color: var(--white);
  padding: 1rem;
  font-size: 1rem;
}

.dont-header {
  background: #dc3545;
  color: var(--white);
  padding: 1rem;
  font-size: 1rem;
}

.do-dont-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #f0f0f0;
}

.do-dont-row:last-child {
  border-bottom: none;
}

.do-item, .dont-item {
  padding: 0.9rem 1.25rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.do-item {
  color: var(--dark-gray);
  background: var(--white);
}

.do-item::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.dont-item {
  color: var(--dark-gray);
  background: #fafafa;
}

.dont-item::before {
  content: '\f00d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #dc3545;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.approach-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(0,166,81,0.08);
  height: 100%;
  transition: var(--transition);
  text-align: center;
}

.approach-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(0,166,81,0.2);
}

.approach-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-light), #c5edd8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,166,81,0.12);
}

.approach-card:hover .approach-card-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: var(--shadow-green);
}

.approach-card-icon i {
  font-size: 1.4rem;
  color: var(--primary);
  transition: var(--transition);
}

.approach-card:hover .approach-card-icon i {
  color: var(--white);
}

.approach-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark-gray);
}

.audience-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(0,166,81,0.08);
  height: 100%;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.audience-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0,166,81,0.2);
}

.audience-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-light), #c5edd8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.audience-icon i {
  font-size: 1.2rem;
  color: var(--primary);
}

.audience-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--dark-gray);
}

.audience-content p {
  font-size: 0.85rem;
  color: var(--text-muted-custom);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ---------------------------------------------------------
   FAQ PAGE
   --------------------------------------------------------- */
.faq-accordion .accordion-button {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-gray);
  background: var(--white);
  padding: 1.25rem 1.5rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-dark);
  background: var(--primary-light);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300A651'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-item {
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-accordion .accordion-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-body);
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #f0f0f0;
}

/* ---------------------------------------------------------
   SECTORS GRID
   --------------------------------------------------------- */
.sector-item {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 1.25rem 1rem;
  text-align: center;
  border: 1px solid var(--medium-gray);
  transition: var(--transition);
  cursor: default;
}

.sector-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.sector-item i {
  font-size: 1.5rem;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.sector-item span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-gray);
  font-family: var(--font-heading);
}

/* ---------------------------------------------------------
   COUNTRY FLAGS / INTERNATIONAL
   --------------------------------------------------------- */
.country-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--medium-gray);
  height: 100%;
  text-align: center;
  transition: var(--transition);
}

.country-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.country-flag {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  display: block;
}

.country-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.country-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

/* ---------------------------------------------------------
   PRICE DISPLAY
   --------------------------------------------------------- */
.price-display {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.price-vat-note {
  font-size: 0.75rem;
  color: var(--text-muted-custom);
  font-weight: 400;
  font-family: var(--font-body);
}

.price-tag {
  background: var(--primary-light);
  border-radius: var(--border-radius);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
}

/* ---------------------------------------------------------
   UTILITY CLASSES
   --------------------------------------------------------- */
.text-primary-green {
  color: var(--primary) !important;
}

.text-primary-dark {
  color: var(--primary-dark) !important;
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8) !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.font-heading {
  font-family: var(--font-heading) !important;
}

.rounded-xl {
  border-radius: var(--border-radius-xl) !important;
}

.img-placeholder {
  background: linear-gradient(135deg, #e0e0e0, #cccccc);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.8rem;
  text-align: center;
  padding: 1rem;
  border-radius: var(--border-radius);
  min-height: 200px;
}

/* ---------------------------------------------------------
   RETAINER SECTION
   --------------------------------------------------------- */
.retainer-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
  border-radius: var(--border-radius-lg);
  padding: 3rem 2.5rem;
  color: var(--white);
  box-shadow: var(--shadow-green-lg);
}

.retainer-card h2 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.retainer-card .price-display {
  color: #b8f0d0;
  font-size: 1.5rem;
}

/* ---------------------------------------------------------
   PAYMENT TERMS
   --------------------------------------------------------- */
.payment-step {
  text-align: center;
  position: relative;
}

.payment-step-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  box-shadow: var(--shadow-green);
}

.payment-step-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary-dark);
  display: block;
  margin-bottom: 0.25rem;
}

.payment-step-desc {
  font-size: 0.85rem;
  color: var(--text-muted-custom);
}

.payment-connector {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  margin-top: -2.5rem;
  opacity: 0.3;
}

/* ---------------------------------------------------------
   SCROLL TO TOP
   --------------------------------------------------------- */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-green);
  z-index: 999;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
  transform: translateY(-2px);
  box-shadow: var(--shadow-green-lg);
}

/* ---------------------------------------------------------
   SCROLL REVEAL
   --------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------
   RESPONSIVE STYLES — MOBILE FIRST
   --------------------------------------------------------- */
@media (max-width: 575.98px) {
  .hero-section {
    padding: 3rem 0 5rem;
    min-height: auto;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
    text-align: center;
  }

  .wizard-header {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .wizard-body {
    padding: 1.5rem 1.25rem;
  }

  .wizard-nav {
    padding: 0 1.25rem 1.5rem;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .stats-bar .row > div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .ventro-navbar .nav-link {
    padding: 0.75rem 0;
  }

  .ventro-navbar .nav-link::after {
    display: none;
  }

  .footer-col {
    margin-bottom: 2rem;
  }

  .case-study-full-header {
    padding: 1.75rem 1.5rem 1.5rem;
  }

  .case-study-full-body {
    padding: 1.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form .form-control {
    min-width: 100%;
  }

  .do-dont-row, .do-dont-header {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .launch-step {
    flex-direction: column;
    gap: 1rem;
  }

  .page-hero {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%);
  }
}

@media (min-width: 992px) {
  .service-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 991.98px) {
  .services-scroll-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.5rem;
  }

  .services-scroll-container::-webkit-scrollbar {
    height: 4px;
  }

  .services-scroll-container::-webkit-scrollbar-track {
    background: var(--light-gray);
  }

  .services-scroll-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
  }
}

/* ---------------------------------------------------------
   ANIMATIONS
   --------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.6s ease both;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

.counter-value {
  display: inline-block;
}

/* ---------------------------------------------------------
   PRINT STYLES
   --------------------------------------------------------- */
@media print {
  .ventro-navbar,
  .scroll-top-btn,
  .ventro-footer {
    display: none;
  }

  body {
    font-size: 12pt;
  }
}

/* ---------------------------------------------------------
   TRUST BAR (homepage)
   --------------------------------------------------------- */
.trust-bar-section {
  background: #fff;
  border-bottom: 1px solid rgba(0,166,81,0.12);
  padding: 1rem 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  border-right: 1px solid rgba(0,166,81,0.1);
}

.trust-bar-item:last-child {
  border-right: none;
}

.trust-bar-icon-wrap i {
  color: var(--primary);
  font-size: 1rem;
}

.trust-bar-text {
  display: flex;
  flex-direction: column;
}

.trust-bar-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--dark-gray);
}

.trust-bar-sub {
  font-size: 0.75rem;
  color: var(--text-muted-custom);
}

@media (max-width: 767px) {
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-item:nth-child(2n) { border-right: none; }
}

@media (max-width: 480px) {
  .trust-bar-grid { grid-template-columns: 1fr; }
  .trust-bar-item { border-right: none; border-bottom: 1px solid rgba(0,166,81,0.1); }
}

.trust-bar-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark-gray);
  letter-spacing: 0.02em;
}

@media (max-width: 576px) {
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-bar-item:nth-child(2) {
    border-right: none;
  }
}

/* ---------------------------------------------------------
   Case Study Post Page
   --------------------------------------------------------- */
.cs-post-hero { background: linear-gradient(135deg, #0d5c2b 0%, #1A7A3A 40%, #00A651 100%); padding: 4rem 0 3rem; position: relative; overflow: hidden; }
.cs-post-breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.cs-post-breadcrumb a { color: rgba(255,255,255,0.9); }
.cs-post-meta { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 1.5rem; }
.cs-post-meta-item { display: flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.85); font-size: 0.875rem; }
.cs-post-body { max-width: 860px; margin: 0 auto; padding: 4rem 1.5rem; }
.cs-post-section { margin-bottom: 3.5rem; }
.cs-post-section-label { font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #00A651; margin-bottom: 0.5rem; }
.cs-post-section-title { font-family: 'Montserrat', sans-serif; font-size: 1.6rem; font-weight: 800; color: #1e1e2e; margin-bottom: 1.25rem; line-height: 1.3; }
.cs-key-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.25rem; margin: 2.5rem 0; }
.cs-key-stat { background: #e6f7ee; border-radius: 12px; padding: 1.5rem 1.25rem; text-align: center; border-left: 4px solid #00A651; }
.cs-key-stat-value { font-family: 'Montserrat', sans-serif; font-size: 1.75rem; font-weight: 800; color: #1A7A3A; display: block; line-height: 1; margin-bottom: 0.35rem; }
.cs-key-stat-label { font-size: 0.8rem; color: #6b7280; font-weight: 600; }
.cs-next-studies { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1rem; }
.cs-next-card { background: #f8f9fa; border-radius: 12px; padding: 1.75rem; border: 1px solid #e0e0e0; transition: all 0.3s ease; text-decoration: none; display: block; }
.cs-next-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); transform: translateY(-3px); border-color: #00A651; }
.cs-next-card-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #00A651; margin-bottom: 0.5rem; }
.cs-next-card h3 { font-size: 1rem; font-weight: 700; color: #1e1e2e; margin-bottom: 0; }
@media (max-width: 576px) { .cs-next-studies { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------
   Case Studies Index
   --------------------------------------------------------- */
.cs-index-card { background: white; border-radius: 18px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.05); border: 1px solid #e0e0e0; transition: all 0.3s ease; height: 100%; display: flex; flex-direction: column; }
.cs-index-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.12); transform: translateY(-6px); border-color: rgba(0,166,81,0.3); }
.cs-index-card-header { background: linear-gradient(135deg, #0d5c2b 0%, #1A7A3A 40%, #00A651 100%); padding: 2rem; position: relative; overflow: hidden; }
.cs-index-card-header::after { content: ''; position: absolute; bottom: -40px; right: -40px; width: 140px; height: 140px; background: rgba(255,255,255,0.06); border-radius: 50%; }
.cs-index-card-header h2 { color: white; font-size: 1.4rem; font-weight: 800; margin: 0.75rem 0 0.25rem; position: relative; z-index: 1; }
.cs-index-card-header .location { color: rgba(255,255,255,0.8); font-size: 0.85rem; position: relative; z-index: 1; margin-bottom: 0; }
.cs-index-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.cs-index-card-result { background: #e6f7ee; border-left: 4px solid #00A651; padding: 0.85rem 1rem; border-radius: 0 8px 8px 0; margin-bottom: 1.25rem; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; color: #1A7A3A; }
.cs-filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 3rem; }
.cs-filter-btn { background: white; border: 2px solid #e0e0e0; color: #6b7280; font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 700; padding: 0.45rem 1.25rem; border-radius: 50px; cursor: pointer; transition: all 0.25s ease; text-decoration: none; display: inline-block; }
.cs-filter-btn:hover, .cs-filter-btn.active { background: #00A651; border-color: #00A651; color: white; }
