/* ==========================================================================
   World2Door - Crisp White / Light Theme & Full Landing Sections
   ========================================================================== */

:root {
  --brand-green-primary: #10b981;
  --brand-green-hover: #059669;
  --brand-slate-dark: #0f172a;
  --brand-slate-card: #ffffff;
  --light-bg: #f8fafc;
  --pure-white: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --border-light: rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-green-glow: 0 10px 25px rgba(16, 185, 129, 0.25);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html,
body {
  min-height: 100%;
  font-family: 'Outfit', sans-serif;
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
}

h1,
h2,
h3,
.serif-font {
  font-family: 'Playfair Display', serif;
}

/* ----------------------------------------------------
   1. Full Screen Hero Wrapper
   ---------------------------------------------------- */
.hero-minimal-wrapper {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--light-bg);
}

/* Autoplay Background Image Swiper */
.hero-bg-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.full-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 10s ease;
}

.swiper-slide-active .full-bg-slide {
  transform: scale(1.05);
}

/* Balanced Dark Gradient Overlay for High Contrast Text Visibility */
.full-bg-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(15, 23, 42, 0.72) 0%,
      rgba(15, 23, 42, 0.60) 50%,
      rgba(15, 23, 42, 0.85) 100%);
}

/* ----------------------------------------------------
   2. Light & Dark Adaptive Glass Header Layer (Fixed at Top)
   ---------------------------------------------------- */
.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-transparent.scrolled {
  position: fixed !important;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Brand Logo Image */
.header-brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header-brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Premium Dark Glass Capsule Navigation Menu */
.nav-capsule-glass {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 5px 8px;
  border-radius: 50rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  transition: all 0.35s ease;
}

.nav-link-glass {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.3px;
  padding: 9px 22px;
  border-radius: 50rem;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.nav-link-glass:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-link-glass.active {
  color: #34d399;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(52, 211, 153, 0.4);
  font-weight: 600;
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.25);
}

/* Scrolled Navbar Adaptations */
.header-transparent.scrolled .nav-capsule-glass {
  background: rgba(241, 245, 249, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-transparent.scrolled .nav-link-glass {
  color: #334155;
}

.header-transparent.scrolled .nav-link-glass:hover {
  color: #0f172a;
  background: rgba(0, 0, 0, 0.05);
}

.header-transparent.scrolled .nav-link-glass.active {
  color: #ffffff;
  background: #10b981;
  border-color: #10b981;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

/* Header CTA Button */
.btn-cta-header {
  background: var(--brand-green-primary);
  color: var(--pure-white);
  padding: 10px 24px;
  border-radius: 50rem;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  gap: 8px;
  border: none;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
}

.btn-cta-header:hover {
  background: var(--brand-green-hover);
  color: var(--pure-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.45);
}

/* ----------------------------------------------------
   3. 100% Centered Minimal Hero Content
   ---------------------------------------------------- */
.hero-minimal-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Crisp High-Contrast Hero Headline */
.hero-title-bold {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-title-bold span.green-text {
  font-style: normal;
  color: #34d399;
  font-weight: 700;
  text-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

/* High-Contrast Description */
.hero-desc-2lines,
.hero-desc-content {
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 880px;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-desc-text {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.95);
}

.hero-desc-text.hero-desc-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

/* Single CTA Button */
.btn-green-single {
  background: var(--brand-green-primary);
  color: var(--pure-white);
  padding: 18px 44px;
  border-radius: 50rem;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  gap: 10px;
  border: none;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
}

.btn-green-single:hover {
  background: var(--brand-green-hover);
  color: var(--pure-white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-green-glow);
}

.btn-outline-green-single {
  background: transparent;
  color: var(--brand-green-primary);
  padding: 16px 36px;
  border-radius: 50rem;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  gap: 10px;
  border: 2px solid var(--brand-green-primary);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
}

.btn-outline-green-single:hover {
  background: var(--brand-green-primary);
  color: var(--pure-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
}

/* ----------------------------------------------------
   4. Services & Marketplace Sections
   ---------------------------------------------------- */
.services-section {
  background-color: var(--pure-white);
  padding: 70px 0;
  border-top: 1px solid var(--border-light);
  position: relative;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.services-section-alt {
  background-color: var(--light-bg);
  padding: 70px 0;
  border-top: 1px solid var(--border-light);
  position: relative;
}

.section-main-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-main-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--brand-green-primary);
  padding: 4px 16px;
  border-radius: 50rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-main-desc {
  max-width: 640px;
  margin: 12px auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Service Category Filter Tabs */
.service-filter-wrapper {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.service-filter-btn {
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid var(--border-light);
  padding: 9px 24px;
  border-radius: 50rem;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: pointer;
}

.service-filter-btn:hover,
.service-filter-btn.active {
  background: var(--brand-green-primary);
  color: var(--pure-white);
  border-color: var(--brand-green-primary);
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.3);
}

/* Service Item & Card Grid */
.service-item {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item.hide {
  display: none !important;
}

.service-card {
  background: var(--pure-white);
  border-radius: 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 20px 45px rgba(16, 185, 129, 0.16);
}

.service-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-img {
  transform: scale(1.08);
}

.service-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  padding: 5px 14px;
  border-radius: 50rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-card-body {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--brand-green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.service-card:hover .service-card-icon-box {
  background: var(--brand-green-primary);
  color: var(--pure-white);
  transform: rotate(-6deg) scale(1.06);
}

.service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-slate-dark);
  margin-bottom: 10px;
  line-height: 1.25;
}

.service-card-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--brand-slate-dark);
}

.service-card-features li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card-features i {
  color: var(--brand-green-primary);
  font-size: 14px;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}

.btn-card-action {
  background: transparent;
  border: 1.5px solid var(--brand-green-primary);
  color: var(--brand-green-primary);
  padding: 11px 22px;
  border-radius: 50rem;
  font-weight: 700;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  gap: 8px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-card-action:hover {
  background: var(--brand-green-primary);
  color: var(--pure-white);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
  transform: translateY(-1px);
}

.fs-14 {
  font-size: 14px !important;
}

/* ----------------------------------------------------
   5. Testimonial Slider Section
   ---------------------------------------------------- */
.testimonial-swiper-wrapper {
  position: relative;
  padding: 16px 6px;
}

.testimonial-swiper .swiper-slide {
  height: auto !important;
  display: flex;
}

.testimonial-card {
  background: var(--pure-white);
  border-radius: 18px;
  padding: 34px 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  width: 100%;
  height: 100% !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--brand-green-primary);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.15);
}

.testimonial-quote-icon {
  font-size: 28px;
  color: var(--brand-green-primary);
  margin-bottom: 12px;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 13px;
  margin-bottom: 14px;
}

.testimonial-quote-text {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1rem;
  font-style: normal !important;
  font-weight: 500;
  color: var(--brand-slate-dark);
  line-height: 1.45 !important;
  margin-bottom: 24px;
}

.testimonial-author-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-green-primary);
}

.testimonial-name-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-slate-dark);
}

.testimonial-role-title {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-nav-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 35px;
}

.testimonial-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  color: var(--brand-slate-dark);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.testimonial-nav-btn:hover {
  background: var(--brand-green-primary);
  border-color: var(--brand-green-primary);
  color: var(--pure-white);
  transform: scale(1.08);
}

/* ----------------------------------------------------
   6. Contact Section
   ---------------------------------------------------- */
.contact-info-card {
  background: var(--pure-white);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-green-primary);
}

.contact-info-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: var(--brand-green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-heading {
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 3px;
  color: var(--brand-slate-dark);
}

.contact-info-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.contact-form-box {
  background: var(--pure-white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
}

.form-control-light,
.form-select-light {
  background-color: var(--light-bg) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 10px !important;
  padding: 14px 18px !important;
  font-size: 13.5px !important;
  color: var(--brand-slate-dark) !important;
  transition: var(--transition) !important;
}

.form-control-light:focus,
.form-select-light:focus {
  background-color: var(--pure-white) !important;
  border-color: var(--brand-green-primary) !important;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15) !important;
}

/* ----------------------------------------------------
   7. Newsletter Section (Compact & Beautiful Card)
   ---------------------------------------------------- */
.newsletter-section-wrapper {
  padding: 60px 0;
  background-color: var(--light-bg);
  /* border-top: 1px solid var(--border-light); */
  padding-top: 0;
}

.newsletter-card-compact {
  max-width: 900px;
  margin: 0 auto;
  background: var(--pure-white);
  border-radius: 20px;
  padding: 36px 44px;
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.25);
  position: relative;
  overflow: hidden;
}

.newsletter-card-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-slate-dark), var(--brand-green-primary));
}

.newsletter-title-compact {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--brand-slate-dark);
  margin-bottom: 4px;
}

.newsletter-desc-compact {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.newsletter-input-group {
  background: var(--light-bg);
  border-radius: 50rem;
  padding: 5px 6px 5px 20px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.newsletter-input-group:focus-within {
  border-color: var(--brand-green-primary);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
  background: var(--pure-white);
}

.newsletter-input-field {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  font-size: 13.5px;
  color: var(--brand-slate-dark);
  width: 100%;
}

.btn-newsletter-subscribe {
  background: var(--brand-green-primary);
  color: var(--pure-white);
  border: none;
  padding: 12px 28px;
  border-radius: 50rem;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-newsletter-subscribe:hover {
  background: var(--brand-green-hover);
  color: var(--pure-white);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

/* ----------------------------------------------------
   8. Footer Section
   ---------------------------------------------------- */
.footer-section {
  background-color: var(--brand-slate-dark);
  color: var(--pure-white);
  padding-top: 80px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-img {
  height: 48px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand-desc {
  color: #94a3b8;
  font-size: 13.5px;
  line-height: 1.7;
}

.footer-link-heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--brand-green-primary);
  margin-bottom: 22px;
}

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

.footer-link-list li {
  margin-bottom: 12px;
}

.footer-link-list a {
  color: #cbd5e1;
  font-size: 13.5px;
  transition: var(--transition);
  text-decoration: none;
}

.footer-link-list a:hover {
  color: var(--brand-green-primary);
  padding-left: 5px;
}

.social-circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--pure-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: var(--transition);
  text-decoration: none;
}

.social-circle-btn:hover {
  background: var(--brand-green-primary);
  color: var(--pure-white);
  transform: translateY(-3px);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 60px;
  padding-top: 25px;
  font-size: 12.5px;
  color: #64748b;
}

/* Mobile Toggle Button Styling */
.mobile-nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--pure-white);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 24px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 1010;
}

.mobile-nav-toggle:hover {
  background: var(--brand-green-primary);
  border-color: var(--brand-green-primary);
  color: var(--pure-white);
}

.header-transparent.scrolled .mobile-nav-toggle {
  color: var(--brand-slate-dark);
  border-color: var(--border-light);
  background: rgba(0, 0, 0, 0.05);
}

/* ----------------------------------------------------
   9. Responsive Breakpoints
   ---------------------------------------------------- */
@media (max-width: 991.98px) {
  .hero-title-bold {
    font-size: 3.2rem;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .nav-capsule-glass {
    position: fixed;
    top: 80px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 20px;
    gap: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
  }

  .nav-capsule-glass.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link-glass {
    color: rgba(255, 255, 255, 0.88);
    text-align: center;
    padding: 12px 20px;
    font-size: 12.5px;
    border-radius: 12px;
  }

  .nav-link-glass:hover,
  .nav-link-glass.active {
    color: var(--pure-white);
    background: var(--brand-green-primary);
  }

  .header-brand-logo {
    height: 40px;
  }

  .service-content-box,
  .service-content-box-left {
    padding-left: 0;
    padding-right: 0;
    margin-top: 30px;
  }

  .service-img-wrapper {
    height: 380px;
  }

  .service-title-heading {
    font-size: 2.8rem;
  }

  .section-main-title {
    font-size: 3.2rem;
  }

  .newsletter-card-compact {
    padding: 30px 24px;
  }

  .newsletter-title-compact {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title-bold {
    font-size: 2.3rem;
  }

  .hero-desc-2lines,
  .hero-desc-text {
    font-size: 0.95rem;
  }

  .hero-desc-text.hero-desc-sub {
    font-size: 0.88rem;
  }

  .btn-green-single {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
  }

  .header-brand-logo {
    height: 45px;
  }

  .service-title-heading {
    font-size: 2.2rem;
  }

  .section-main-title {
    font-size: 2.4rem;
  }

  .services-section,
  .services-section-alt {
    padding: 70px 0;
  }

  .contact-form-box {
    padding: 24px;
    font-size: 15px;
    line-height: 25px;
  }
}  x 

@media (max-width: 767.98px) {
  .newsletter-input-group {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 12px;
  }

  .newsletter-input-group:focus-within {
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .newsletter-input-field {
    background: var(--light-bg) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 50rem !important;
    padding: 14px 20px !important;
    width: 100%;
  }

  .newsletter-input-field:focus {
    border-color: var(--brand-green-primary) !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15) !important;
    background: var(--pure-white) !important;
  }

  .btn-newsletter-subscribe {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50rem;
    display: flex;
    align-items: center;
  }
}

/* ----------------------------------------------------
   10. Dedicated Pricing Page Styles
   ---------------------------------------------------- */
.billing-toggle-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pure-white);
  padding: 10px 24px;
  border-radius: 50rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
}

.billing-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.billing-label.active {
  color: var(--brand-slate-dark);
}

.billing-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  margin: 0;
}

.billing-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.billing-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: .4s;
  border-radius: 34px;
}

.billing-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .billing-slider {
  background-color: var(--brand-green-primary);
}

input:checked + .billing-slider:before {
  transform: translateX(24px);
}

.pricing-card {
  background: var(--pure-white);
  border-radius: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
}

.pricing-card-popular {
  border: 2px solid var(--brand-green-primary) !important;
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.18) !important;
}

.popular-ribbon {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--brand-green-primary);
  color: var(--pure-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 50rem;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

.pricing-plan-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.pricing-plan-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brand-slate-dark);
}

.pricing-currency {
  font-size: 1.8rem;
  font-weight: 700;
  vertical-align: top;
  line-height: 1.2;
}

.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-slate-dark);
}

.pricing-period {
  font-size: 0.95rem;
  color: var(--text-muted);
}

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

.pricing-feature-list li {
  font-size: 13.5px;
  color: var(--brand-slate-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.addon-card {
  transition: var(--transition);
}

.addon-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-green-primary) !important;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.12);
}

.comparison-table th,
.comparison-table td {
  border-color: var(--border-light);
}

.accordion-button:not(.collapsed) {
  color: var(--brand-green-primary) !important;
  background-color: rgba(16, 185, 129, 0.06) !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  border-color: var(--brand-green-primary) !important;
}

/* Breadcrumb Banner & Product Suite Tabs */
.pricing-breadcrumb-banner {
  background: var(--light-bg);
  border-bottom: 1px solid var(--border-light);
}

.pricing-suite-tabs-wrapper {
  display: flex;
  justify-content: center;
}

.pricing-suite-tabs {
  background: rgba(15, 23, 42, 0.05);
  padding: 6px;
  border-radius: 50rem;
  display: inline-flex;
  gap: 6px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.suite-tab-btn {
  border: none;
  background: transparent;
  padding: 10px 26px;
  border-radius: 50rem;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.suite-tab-btn:hover {
  color: var(--brand-slate-dark);
}

.suite-tab-btn.active {
  background: var(--pure-white);
  color: var(--brand-green-primary);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

/* Pricing Hero Visual Banner */
.pricing-hero-banner {
  position: relative;
  width: 100%;
  padding: 140px 0 75px 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.95) 100%),
              url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  text-align: center;
  color: #ffffff;
  margin-bottom: 40px;
  overflow: hidden;
}

.pricing-breadcrumb-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 20px;
  border-radius: 50rem;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.pricing-breadcrumb-badge a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.pricing-breadcrumb-badge a:hover {
  color: #34d399;
}

.pricing-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 14px;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.pricing-banner-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
  margin: 0 auto;
  font-weight: 400;
}

/* ==========================================================================
   Mega Menu Navigation Styles (Ultra-Compact & Screen-Fitted)
   ========================================================================== */
.nav-item-dropdown {
  position: relative;
}

@media (min-width: 992px) {
  .nav-item-dropdown {
    position: static;
  }
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  font-size: 11px;
}

.nav-item-dropdown:hover .dropdown-arrow,
.nav-item-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.mega-menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 28px;
  right: 28px;
  width: auto;
  min-height: 245px;
  transform: translateY(6px);
  background: #f5f4f0;
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
  color: #0f172a;
}

.mega-menu-panel::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
  background: transparent;
}

.mega-menu-panel.show,
.nav-capsule-glass:has(#productsDropdownTrigger:hover) ~ .mega-menu-panel,
.mega-menu-panel:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* ==========================================================================
   Tabbed Service Mega Menu Styles (Left Tabs, Middle Details, Right Preview)
   ========================================================================== */
.megamenu-service-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 12px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.megamenu-tab-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
}

.megamenu-tab-item:hover {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(0, 0, 0, 0.04);
}

.megamenu-tab-item.active {
  background: #ffffff;
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.megamenu-tab-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #ffffff;
  flex-shrink: 0;
}

.bg-tech-icon { background: #0f172a; }
.bg-logistics-icon { background: #10b981; }
.bg-commerce-icon { background: #2563eb; }
.bg-retail-icon { background: #9333ea; }

.megamenu-tab-name {
  font-weight: 700;
  font-size: 13.5px;
  color: #0f172a;
  display: block;
  line-height: 1.2;
}

.megamenu-tab-tag {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
  display: block;
}

/* Middle Detail Column (Fixed Min-Height to Prevent Fluctuation) */
.megamenu-details-wrapper {
  padding: 4px 8px;
  min-height: 195px;
  display: flex;
  flex-direction: column;
  justify-content: center;text-align: left;
}

.megamenu-service-detail {
  transition: opacity 0.25s ease-in-out;
}

.service-detail-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 50rem;
  font-size: 10.5px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.service-detail-badge.bg-tech { background: #0f172a; }
.service-detail-badge.bg-logistics { background: #10b981; }
.service-detail-badge.bg-commerce { background: #2563eb; }
.service-detail-badge.bg-retail { background: #9333ea; }

.service-detail-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.service-detail-desc {
  font-size: 12.5px;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 12px;
}

.megamenu-link-subtle {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.megamenu-link-subtle:hover {
  color: var(--brand-green-primary);
}

/* Right Column Image Preview Wrapper (Fixed Height) */
.megamenu-preview-wrapper {
  position: relative;
  height: 195px;
}

.megamenu-preview-image-card {
  position: relative;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.megamenu-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.megamenu-preview-image-card:hover .megamenu-preview-img {
  transform: scale(1.05);
}

.megamenu-preview-overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 50rem;
}

.preview-tag {
  font-size: 10.5px;
  font-weight: 700;
  color: #ffffff;
}

.megamenu-card-link {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-green-primary);
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  transition: transform 0.2s ease;
}

.megamenu-service-card:hover .megamenu-card-link {
  transform: translateX(3px);
}

/* Footer Sub-Columns (Use Cases, Solutions, Integrations) */
.megamenu-footer-cols {
  border-color: rgba(0, 0, 0, 0.08) !important;
  margin-top: 6px !important;
  padding-top: 8px !important;
}

.megamenu-subcol-title {
  font-size: 11.5px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 6px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.megamenu-links-list {
  list-style: none;
  padding: 0;
  margin: 0 0 4px 0;
}

.megamenu-links-list li {
  margin-bottom: 3px;
}

.megamenu-links-list a {
  color: #334155;
  font-size: 11.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.megamenu-links-list a:hover {
  color: var(--brand-green-primary);
  transform: translateX(2px);
}

.megamenu-all-link {
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.megamenu-all-link:hover {
  color: var(--brand-green-primary);
}

/* Integrations Right Visual Banner Card */
.megamenu-banner-card {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  border-radius: 12px;
  padding: 10px 12px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 85px;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.2);
}

.megamenu-banner-icons {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.banner-icon-badge {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.banner-icon-badge.bg-shopify { background: #95bf47 !important; }
.banner-icon-badge.bg-teams { background: #464eb8 !important; }
.banner-icon-badge.bg-slack { background: #e01e5a !important; }
.banner-icon-badge.bg-google { background: #4285f4 !important; }

.megamenu-banner-text {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 6px;
  display: block;
}

.megamenu-banner-link {
  font-size: 10.5px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.22);
  padding: 4px 10px;
  border-radius: 50rem;
  width: fit-content;
  transition: background 0.2s ease;
}

.megamenu-banner-link:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

/* Mobile Responsive Mega Menu Adaptations */
@media (max-width: 991.98px) {
  .mega-menu-panel {
    position: static;
    transform: none !important;
    width: 100%;
    max-width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    background: #f8fafc;
    padding: 14px;
    border-radius: 14px;
    margin-top: 8px;
    display: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
  }

  .nav-item-dropdown.show .mega-menu-panel {
    display: block;
  }

  .megamenu-category-list {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-right: 0;
    padding-bottom: 8px;
    margin-bottom: 10px;
    flex-direction: row;
    overflow-x: auto;
  }

  .megamenu-cat-btn {
    white-space: nowrap;
    width: auto;
  }
}

/* ----------------------------------------------------
   11. Policy & Legal Content Styles
   ---------------------------------------------------- */
.policy-card {
  background: var(--pure-white);
  border-radius: 24px;
  border: 1px solid var(--border-light);
  padding: 50px 55px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 40px;
}

.policy-card h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--brand-slate-dark);
  margin-top: 45px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  line-height: 1.3;
}

.policy-card h2:first-of-type {
  margin-top: 0;
}

.policy-card h3 {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brand-slate-dark);
  margin-top: 28px;
  margin-bottom: 14px;
  line-height: 1.4;
}

.policy-card p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 22px;
}

.policy-card ul, 
.policy-card ol {
  padding-left: 24px;
  margin-top: 12px;
  margin-bottom: 28px;
}

.policy-card li {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.policy-card li strong {
  color: var(--brand-slate-dark);
}

.policy-meta-info {
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 20px 30px;
  font-size: 0.93rem;
  color: var(--text-muted);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 767.98px) {
  .policy-card {
    padding: 28px 22px;
    border-radius: 18px;
  }
  
  .policy-card h2 {
    font-size: 1.45rem;
    margin-top: 32px;
    margin-bottom: 14px;
  }
  
  .policy-card p,
  .policy-card li {
    font-size: 0.93rem;
    line-height: 1.75;
  }
  
  .policy-meta-info {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Policy Interactive Navigation Tabs */
.policy-tabs-wrapper {
  margin-bottom: 30px;
}

.policy-tabs-container {
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  border-radius: 50rem;
  padding: 6px;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.06);
}

.policy-tab-btn {
  border: 1px solid transparent;
  background: transparent;
  color: #475569;
  font-weight: 600;
  font-size: 0.96rem;
  padding: 11px 26px;
  border-radius: 50rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
}

.policy-tab-btn:hover {
  color: var(--brand-slate-dark);
  background: rgba(16, 185, 129, 0.08);
}

.policy-tab-btn.active {
  background: var(--brand-green-primary);
  color: var(--pure-white);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.policy-tab-btn.active .badge {
  background-color: rgba(255, 255, 255, 0.25) !important;
  color: #ffffff !important;
}

.policy-tab-content-pane {
  display: none;
}

.policy-tab-content-pane.active {
  display: block;
  animation: fadeInPolicyPane 0.45s ease-in-out forwards;
}

@keyframes fadeInPolicyPane {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767.98px) {
  .policy-tabs-container {
    border-radius: 16px;
    width: 100%;
    flex-direction: column;
    padding: 8px;
  }
  .policy-tab-btn {
    width: 100%;
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 0.9rem;
    justify-content: center;
  }
}

/* FAQ Custom Accordion Cards */
.faq-accordion .accordion-item {
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  border-radius: 16px !important;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.08);
}

.faq-accordion .accordion-button {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--brand-slate-dark);
  padding: 20px 24px;
  border-radius: 16px !important;
  background: var(--pure-white);
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--brand-green-primary) !important;
  background-color: rgba(16, 185, 129, 0.05) !important;
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
}

.faq-accordion .accordion-body {
  padding: 22px 24px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.8;
}



/* ----------------------------------------------------
   12. About Us Page Styles
   ---------------------------------------------------- */
.about-stat-card {
  background: var(--pure-white);
  border-radius: 20px;
  border: 1px solid var(--border-light);
  padding: 35px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.about-stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-green-primary);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.14);
}

.about-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-green-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-slate-dark);
}

.value-card {
  background: var(--pure-white);
  border-radius: 20px;
  border: 1px solid var(--border-light);
  padding: 36px 30px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.value-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--brand-green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.team-card {
  background: var(--pure-white);
  border-radius: 24px;
  border: 1px solid var(--border-light);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}

.team-avatar-wrapper {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  overflow: hidden;
  border: 3px solid var(--brand-green-primary);
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.25);
}

.team-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-slate-dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-green-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.about-cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 28px;
  padding: 60px 40px;
  color: var(--pure-white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
}

/* Short Banner Hero Variant */
.hero-short-wrapper {
  position: relative;
  height: 60vh;
  min-height: 480px;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--light-bg);
  padding-top: 100px;
  padding-bottom: 40px;
}

.hero-2 .hero-title-bold {
  font-size: 40px !important;
}