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

:root {
  --primary: #e67e22;
  --primary-dark: #d35400;
  --primary-light: #f39c12;
  --dark: #1a1a2e;
  --dark-secondary: #16213e;
  --dark-card: #0f3460;
  --text-dark: #2d3748;
  --text-muted: #718096;
  --bg-light: #f7fafc;
  --bg-white: #ffffff;
  --success: #27ae60;
  --warning: #f1c40f;
  --error: #e74c3c;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(15, 52, 96, 0.7) 100%);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* ===== HERO ARROWS ===== */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.45);
}

.slider-prev { left: 28px; }
.slider-next { right: 28px; }

@media (max-width: 640px) {
  .slider-prev { left: 12px; }
  .slider-next { right: 12px; }
  .slider-arrow { width: 40px; height: 40px; font-size: 0.85rem; }
}

/* ===== HERO CTA GROUP ===== */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

/* ===== GHOST WHITE BUTTON (hero only) ===== */
.btn-ghost-white {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  background: transparent;
  font-size: 1rem;
}

.btn-ghost-white:hover {
  background: white;
  color: var(--dark);
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.page-banner {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.88) 0%, rgba(15, 52, 96, 0.75) 100%);
}

.counter-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.06);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover img {
  transform: scale(1.07);
}

/* Hover overlay */
.product-card-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(160deg, rgba(230, 126, 34, 0.95) 0%, rgba(185, 90, 10, 0.97) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: bottom 0.35s ease;
  color: white;
}

.product-card:hover .product-card-overlay {
  bottom: 0;
}

.product-card-overlay .overlay-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

.product-card-overlay .overlay-cta {
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-card-overlay .overlay-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.product-card:hover .overlay-arrow {
  transform: translateX(5px);
}

/* Product scroll carousel */
.product-scroll-wrapper {
  position: relative;
  padding: 0 52px 8px;
}

.product-scroll-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.product-scroll-track::-webkit-scrollbar {
  display: none;
}

.product-scroll-track .product-card {
  flex: 0 0 calc(25% - 18px);
  scroll-snap-align: start;
}

@media (max-width: 1024px) {
  .product-scroll-track .product-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}

@media (max-width: 640px) {
  .product-scroll-wrapper {
    padding: 0 36px 8px;
  }
  .product-scroll-track .product-card {
    flex: 0 0 calc(50% - 12px);
  }
}

.scroll-arrow-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1rem;
  transition: all 0.22s ease;
  z-index: 10;
}

.scroll-arrow-btn:hover {
  background: var(--primary);
  color: white;
  box-shadow: 0 6px 18px rgba(230, 126, 34, 0.38);
}

.scroll-arrow-btn.prev { left: 0; }
.scroll-arrow-btn.next { right: 0; }

.scroll-arrow-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* ===== MARQUEE TICKER ===== */
.marquee-section {
  background: var(--dark);
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(to right, var(--dark) 30%, transparent);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(to left, var(--dark) 30%, transparent);
}

.marquee-row {
  overflow: hidden;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee-row--alt {
  padding: 10px 0;
  border-bottom: none;
  background: rgba(255,255,255,0.02);
}

.marquee-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-left 32s linear infinite;
}

.marquee-inner--reverse {
  animation: ticker-right 28s linear infinite;
}

.marquee-inner:hover,
.marquee-inner--reverse:hover {
  animation-play-state: paused;
}

.marquee-item {
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 24px;
  color: rgba(255,255,255,0.65);
}

.marquee-item--dest {
  color: var(--primary);
  opacity: 0.9;
}

.marquee-sep {
  color: var(--primary);
  opacity: 0.4;
  font-size: 0.45rem;
  flex-shrink: 0;
}

@keyframes ticker-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes ticker-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.service-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.certificate-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.certificate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 9998;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6); }
  100% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); }
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(26, 26, 46, 0.97);
  z-index: 999;
  padding: 80px 2rem 2rem;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  color: white;
  font-size: 1.2rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--primary);
}

.mobile-nav .submenu {
  padding-left: 1.5rem;
}

.mobile-nav .submenu a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: block;
  }
  .desktop-nav {
    display: none;
  }
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--primary);
  padding-left: 24px;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.1);
}

.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 18px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--primary);
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

header.scrolled {
  background: white !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ===== TOP BAR ===== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 36px;
  background: var(--dark);
  z-index: 60;
  border-bottom: 1px solid rgba(230, 126, 34, 0.25);
}

.top-bar-inner {
  max-width: 88rem;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar-left a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.top-bar-left a:hover {
  color: var(--primary);
}

.top-bar-left a i {
  color: var(--primary);
  font-size: 0.65rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-social {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.68rem;
  border-radius: 3px;
  transition: all 0.25s ease;
}

.top-bar-social:hover {
  color: var(--primary);
  background: rgba(230, 126, 34, 0.15);
}

.top-bar-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  margin: 0 2px;
}

/* Shift main header below topbar */
header.main-header {
  top: 36px !important;
}
@media (max-width: 768px) {
  .top-bar-left {
    display: none;
  }
  .top-bar-inner {
    justify-content: flex-end;
    padding-right: 1rem;
  }
}

/* ===== PRODUCT PAGE BANNER ===== */
.prod-banner {
  position: relative;
  height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,46,0.55) 0%, rgba(26,26,46,0.8) 100%);
}
.prod-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 800px;
}
.prod-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(230,126,34,0.12);
  border: 1px solid rgba(230,126,34,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.prod-banner-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.prod-banner-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 20px;
}
.prod-banner-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.prod-banner-breadcrumb a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.prod-banner-breadcrumb a:hover { color: var(--primary); }
.prod-banner-breadcrumb span { color: var(--primary); font-weight: 600; }
.prod-banner-breadcrumb i { font-size: 0.65rem; color: rgba(255,255,255,0.4); }
.prod-banner-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.prod-banner-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
}
.prod-banner-badges span i { color: var(--primary); }

/* ===== PRODUCT PAGE INTRO ===== */
.prod-intro-section {
  background: #fff;
  padding: 56px 24px;
}
.prod-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .prod-intro-inner { grid-template-columns: 1fr; gap: 32px; }
}
.prod-intro-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.prod-intro-title i { color: var(--primary); }
.prod-intro-text p {
  color: #4a5568;
  font-size: 0.975rem;
  line-height: 1.85;
  margin-bottom: 16px;
}
.prod-intro-text p:last-child { margin-bottom: 0; }
.prod-intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex-shrink: 0;
}
.prod-stat {
  background: var(--dark);
  border-radius: 12px;
  padding: 18px 20px;
  text-align: center;
  min-width: 90px;
}
.prod-stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}
.prod-stat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ===== PRODUCT SECTION HEADER ===== */
.prod-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.prod-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.prod-section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.prod-section-bar {
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto;
}

/* ===== FEATURE BAR CARDS ===== */
.feat-bar-card {
  text-align: center;
  padding: 36px 28px 32px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.feat-bar-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.35s ease;
}
.feat-bar-card:hover {
  background: rgba(230, 126, 34, 0.07);
  border-color: rgba(230, 126, 34, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.feat-bar-card:hover::after {
  width: 60%;
}
.feat-bar-card--center {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.feat-bar-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(230, 126, 34, 0.15);
  border: 1px solid rgba(230, 126, 34, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--primary);
  transition: background 0.3s ease, transform 0.3s ease;
}
.feat-bar-card:hover .feat-bar-icon {
  background: rgba(230, 126, 34, 0.25);
  transform: scale(1.08);
}
.feat-bar-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feat-bar-desc {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ===== WHY CHOOSE CARDS ===== */
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  cursor: default;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.why-card:hover {
  background: rgba(230, 126, 34, 0.07);
  border-color: rgba(230, 126, 34, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(230, 126, 34, 0.15);
}
.why-card:hover::before {
  opacity: 1;
}
.why-card-icon-wrap {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(230, 126, 34, 0.15);
  border: 1px solid rgba(230, 126, 34, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--primary);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.why-card:hover .why-card-icon-wrap {
  background: rgba(230, 126, 34, 0.28);
  border-color: rgba(230, 126, 34, 0.5);
}
.why-card-title {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.why-card-desc {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
}
.why-card-arrow {
  position: absolute;
  top: 24px;
  right: 20px;
  color: rgba(230, 126, 34, 0.3);
  font-size: 0.75rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
.why-card:hover .why-card-arrow {
  color: var(--primary);
  transform: translateX(3px);
}

/* ===== SECTION TITLE ACCENT BAR ===== */
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 14px auto 0;
}

.section-title.text-left::after {
  margin-left: 0;
  margin-right: auto;
}

/* ===== WHY CHOOSE US — REDESIGN ===== */
.why-choose-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 88px 24px;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.why-choose-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-choose-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-choose-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.why-choose-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .why-choose-grid { grid-template-columns: 1fr; }
  .why-choose-section { padding: 60px 20px; }
}

.wc-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 28px 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.wc-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 0 2px 2px 0;
}

.wc-card:hover {
  background: rgba(230, 126, 34, 0.07);
  border-color: rgba(230, 126, 34, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.wc-card:hover::before {
  opacity: 1;
}

.wc-card-num {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--primary);
  opacity: 0.7;
  position: absolute;
  top: 18px;
  right: 20px;
}

.wc-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.18) 0%, rgba(211, 84, 0, 0.12) 100%);
  border: 1px solid rgba(230, 126, 34, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.wc-card:hover .wc-card-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(230, 126, 34, 0.35);
}

.wc-card-body h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.wc-card-body p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ===== TESTIMONIALS — REDESIGN ===== */
.testi-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

@media (max-width: 900px) {
  .testi-section {
    grid-template-columns: 1fr;
  }
  .testi-image-col {
    height: 300px;
  }
}

.testi-image-col {
  position: relative;
  overflow: hidden;
}

.testi-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.testi-section:hover .testi-bg-img {
  transform: scale(1.03);
}

.testi-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.55) 0%, rgba(15, 52, 96, 0.4) 100%);
}

.testi-image-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 126, 34, 0.3);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-content-col {
  background: var(--dark);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1200px) {
  .testi-content-col { padding: 48px 40px; }
}

@media (max-width: 900px) {
  .testi-content-col { padding: 48px 28px; }
}

.testi-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.testi-label-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.testi-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 36px;
}

.testi-heading-accent {
  color: var(--primary);
}

.testi-slider {
  overflow: hidden;
  flex: 1;
}

.testi-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-slide {
  min-width: 100%;
}

.testi-quote-mark {
  font-size: 5rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.6;
  font-family: Georgia, serif;
  margin-bottom: -8px;
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 0.9rem;
}

.testi-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

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

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.testi-name {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.testi-role {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  margin-top: 2px;
}

.testi-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.testi-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.testi-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(230, 126, 34, 0.4);
}

.testi-dots {
  display: flex;
  gap: 8px;
  flex: 1;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testi-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ===== FAQ + TRUST BAR SECTION ===== */
.faq-trust-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  background: #f7fafc;
}

@media (max-width: 960px) {
  .faq-trust-section {
    grid-template-columns: 1fr;
  }
}

/* ---- Trust Bar (Left) ---- */
.trust-bar {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 72px 52px 72px 52px;
  min-height: 100%;
}

.trust-bar::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

@media (max-width: 1200px) {
  .trust-bar { padding: 60px 36px; }
}

@media (max-width: 960px) {
  .trust-bar { padding: 56px 28px; }
}

.trust-bar-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.trust-bar-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(230, 126, 34, 0.12);
  border: 1px solid rgba(230, 126, 34, 0.25);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.trust-bar-title {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}

.trust-bar-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 36px;
}

.trust-certs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.trust-cert-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 14px 16px;
  transition: all 0.3s ease;
  cursor: default;
}

.trust-cert-item:hover {
  background: rgba(230, 126, 34, 0.07);
  border-color: rgba(230, 126, 34, 0.22);
  transform: translateX(4px);
}

.trust-cert-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.2) 0%, rgba(211, 84, 0, 0.12) 100%);
  border: 1px solid rgba(230, 126, 34, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.trust-cert-item:hover .trust-cert-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-color: transparent;
}

.trust-cert-body {
  flex: 1;
  min-width: 0;
}

.trust-cert-name {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.3;
}

.trust-cert-desc {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.75rem;
  margin-top: 2px;
  line-height: 1.4;
}

.trust-cert-badge {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #27ae60;
  background: rgba(39, 174, 96, 0.12);
  border: 1px solid rgba(39, 174, 96, 0.22);
  padding: 3px 9px;
  border-radius: 999px;
}

.trust-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(230, 126, 34, 0.3);
}

.trust-bar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.45);
}

/* ---- FAQ Column (Right) ---- */
.faq-col {
  padding: 72px 52px;
}

@media (max-width: 1200px) {
  .faq-col { padding: 60px 36px; }
}

@media (max-width: 960px) {
  .faq-col { padding: 56px 28px; }
}

/* ===== COUNTRIES WE SERVE ===== */
.countries-section {
  background: #fff;
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}

.countries-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 30%, var(--primary-dark) 70%, transparent 100%);
  opacity: 0.5;
}

.countries-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.countries-header {
  text-align: center;
  margin-bottom: 64px;
}

.countries-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 126, 34, 0.08);
  border: 1px solid rgba(230, 126, 34, 0.2);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.countries-title {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 14px;
}

.countries-sub {
  color: #6b7280;
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Region blocks */
.countries-region {
  margin-bottom: 40px;
}

.countries-region:last-of-type {
  margin-bottom: 0;
}

.countries-region-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(230, 126, 34, 0.07);
  border: 1px solid rgba(230, 126, 34, 0.18);
  padding: 4px 12px 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.countries-region-label i {
  font-size: 0.65rem;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

@media (max-width: 1100px) { .countries-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px)  { .countries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .countries-grid { grid-template-columns: repeat(2, 1fr); } }

.country-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px 16px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.25s ease;
  cursor: default;
  text-align: center;
}

.country-card:hover {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.12);
  transform: translateY(-3px);
}

.country-flag {
  font-size: 2rem;
  line-height: 1;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.12));
  transition: transform 0.25s ease;
}

.country-card:hover .country-flag {
  transform: scale(1.15);
}

.country-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

/* Marquee strip */
.countries-marquee-wrap {
  margin-top: 48px;
  border-top: 1px solid #e5e7eb;
  padding-top: 32px;
}

.countries-marquee-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 18px;
}

.countries-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.countries-marquee-track {
  display: flex;
  gap: 0;
  animation: marquee-scroll 28s linear infinite;
  white-space: nowrap;
}

.countries-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #6b7280;
  padding: 8px 24px;
  border-right: 1px solid #e5e7eb;
  transition: color 0.2s;
}

.countries-marquee-track span:hover {
  color: var(--primary);
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 640px) {
  .countries-section { padding: 64px 16px; }
  .countries-header  { margin-bottom: 44px; }
  .countries-region  { margin-bottom: 28px; }
}

/* ===== HOW IT WORKS ===== */
.hiw-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 96px 24px;
}

.hiw-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(230,126,34,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 80%, rgba(230,126,34,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hiw-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hiw-header {
  text-align: center;
  margin-bottom: 72px;
}

.hiw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 126, 34, 0.12);
  border: 1px solid rgba(230, 126, 34, 0.25);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hiw-title {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hiw-accent {
  color: var(--primary);
}

.hiw-sub {
  color: rgba(255, 255, 255, 0.52);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Steps grid */
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 64px;
}

@media (max-width: 1024px) {
  .hiw-steps { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .hiw-connector { display: none; }
}

@media (max-width: 600px) {
  .hiw-steps { grid-template-columns: 1fr; gap: 2px; }
}

/* Connector line between step icons */
.hiw-connector {
  position: absolute;
  top: 36px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg,
    rgba(230,126,34,0.15) 0%,
    rgba(230,126,34,0.5) 25%,
    rgba(230,126,34,0.5) 75%,
    rgba(230,126,34,0.15) 100%
  );
  z-index: 0;
}

.hiw-connector::before,
.hiw-connector::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.5;
}

.hiw-connector::before { left: 0; }
.hiw-connector::after  { right: 0; }

/* Each step card */
.hiw-step {
  padding: 36px 28px 36px;
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: background 0.35s ease;
}

.hiw-step:last-child {
  border-right: none;
}

.hiw-step:hover {
  background: rgba(230,126,34,0.04);
}

@media (max-width: 1024px) {
  .hiw-step {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 32px 24px;
  }
  .hiw-step:last-child { border-bottom: none; }
}

.hiw-step-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
}

.hiw-step-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--primary);
  opacity: 0.65;
  margin-bottom: 12px;
}

.hiw-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(230, 126, 34, 0.1);
  border: 1px solid rgba(230, 126, 34, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.hiw-step:hover .hiw-step-icon {
  background: var(--primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.35);
  transform: translateY(-2px);
}

.hiw-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.hiw-step-desc {
  font-size: 0.855rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
  margin-bottom: 18px;
}

.hiw-step-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.hiw-step-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

.hiw-step-points li i {
  color: var(--primary);
  font-size: 0.65rem;
  flex-shrink: 0;
  opacity: 0.9;
}

/* CTA row */
.hiw-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hiw-cta-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.35);
}

.hiw-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(230, 126, 34, 0.45);
}

.hiw-cta-outline {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  transition: all 0.3s ease;
}

.hiw-cta-outline:hover {
  color: white;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}

@media (max-width: 640px) {
  .hiw-section { padding: 64px 20px; }
  .hiw-header { margin-bottom: 48px; }
  .hiw-cta-btn, .hiw-cta-outline { width: 100%; justify-content: center; }
}






/* ===== PRE-FOOTER CTA ===== */
.prefooter-cta {
  position: relative;
  padding: 72px 24px;
  overflow: hidden;
  background: var(--dark);
}

.prefooter-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 40%, #1a1a2e 100%);
  opacity: 0.92;
}

.prefooter-cta::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.prefooter-cta::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.prefooter-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.prefooter-cta-text {
  flex: 1 1 320px;
}

.prefooter-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.prefooter-cta-text h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}

.prefooter-cta-text p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.975rem;
  line-height: 1.6;
  max-width: 460px;
}

.prefooter-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
}

.prefooter-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.prefooter-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  background: #fff5ee;
}

.prefooter-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.prefooter-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-3px);
}

@media (max-width: 640px) {
  .prefooter-cta { padding: 36px 20px; }
  .prefooter-cta-inner { flex-direction: column; text-align: center; gap: 16px; }
  .prefooter-cta-text p { max-width: 100%; }
  .prefooter-cta-actions { justify-content: center; width: 100%; }
  .prefooter-btn-primary,
  .prefooter-btn-outline { width: 100%; justify-content: center; }
}

/* ===== FOOTER TITLE ACCENT ===== */
footer h4 {
  position: relative;
  padding-bottom: 14px;
}

footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(230, 126, 34, 0.25) 100%);
  border-radius: 2px;
}

footer h4::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

/* ===== COUNTRIES WE SERVE CAROUSEL (about.html) ===== */
.cws-section {
  background: var(--dark);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
.cws-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(230,126,34,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(230,126,34,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.cws-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }

/* Header */
.cws-header { text-align: center; margin-bottom: 40px; }
.cws-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(230,126,34,0.12); border: 1px solid rgba(230,126,34,0.3);
  color: var(--primary); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 999px; margin-bottom: 20px;
}
.cws-title {
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800;
  color: #fff; margin-bottom: 16px; line-height: 1.1;
}
.cws-accent { color: var(--primary); }
.cws-sub { color: rgba(255,255,255,0.48); font-size: 1.05rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* Stats */
.cws-stats-row {
  display: flex; justify-content: center; align-items: center;
  margin: 32px auto 48px; width: fit-content;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; overflow: hidden;
}
.cws-stat { display: flex; flex-direction: column; align-items: center; padding: 16px 36px; }
.cws-stat-num { font-size: 1.6rem; font-weight: 800; color: var(--primary); line-height: 1; }
.cws-stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-top: 5px; letter-spacing: 0.06em; white-space: nowrap; }
.cws-stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.09); flex-shrink: 0; }

/* Tab nav */
.cws-tab-nav { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.cws-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.5); font-size: 0.875rem; font-weight: 600;
  cursor: pointer; transition: all 0.25s ease; white-space: nowrap; font-family: inherit;
}
.cws-tab i { font-size: 0.8rem; }
.cws-tab:hover { border-color: rgba(230,126,34,0.45); color: rgba(255,255,255,0.9); background: rgba(230,126,34,0.08); }
.cws-tab.active { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 6px 24px rgba(230,126,34,0.38); }
.cws-tab-count {
  background: rgba(255,255,255,0.18); border-radius: 999px;
  font-size: 0.68rem; font-weight: 700; padding: 2px 8px; line-height: 1.5; min-width: 22px; text-align: center;
}
.cws-tab.active .cws-tab-count { background: rgba(255,255,255,0.28); }

/* Panels */
.cws-panels-wrap { position: relative; }
.cws-panel { display: none; animation: cwsFadeIn 0.35s ease; }
.cws-panel.active { display: block; }
@keyframes cwsFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Panel top bar */
.cws-panel-topbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: 20px; padding: 0 4px;
  flex-wrap: wrap;
}
.cws-panel-region { display: flex; align-items: center; gap: 14px; }
.cws-region-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(230,126,34,0.15); border: 1px solid rgba(230,126,34,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.1rem; flex-shrink: 0;
}
.cws-panel-title { color: #fff; font-size: 1.15rem; font-weight: 700; margin-bottom: 3px; }
.cws-panel-desc { color: rgba(255,255,255,0.38); font-size: 0.82rem; line-height: 1.5; }

/* Inner nav arrows */
.cws-inner-nav { display: flex; gap: 8px; flex-shrink: 0; }
.cws-inner-btn {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55); cursor: pointer; display: flex;
  align-items: center; justify-content: center; font-size: 0.8rem;
  transition: all 0.22s ease;
}
.cws-inner-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(230,126,34,0.4); }

/* Cards horizontal scroll track */
.cws-track-wrapper {
  overflow: hidden;
  position: relative;
  /* Fade edges to hint scrollability */
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 94%, transparent 100%);
}

.cws-cards-track {
  display: flex; gap: 16px;
  overflow-x: scroll; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
  padding: 8px 0 20px; scrollbar-width: none;
  /* Show ~4 cards — rest are hidden by wrapper and scrollable */
}
.cws-cards-track::-webkit-scrollbar { display: none; }

/* Individual country card */
.cws-card {
  flex: 0 0 170px; width: 170px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 20px 14px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  scroll-snap-align: start; cursor: default;
  transition: all 0.28s ease; position: relative; overflow: hidden;
}
.cws-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(230,126,34,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.28s ease;
}
.cws-card:hover { border-color: rgba(230,126,34,0.45); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.cws-card:hover::before { opacity: 1; }

/* Flag image wrapper */
.cws-flag-wrap {
  width: 72px; height: 52px; border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  position: relative; z-index: 1; flex-shrink: 0;
}
.cws-flag-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cws-card:hover .cws-flag-wrap { transform: scale(1.06); transition: transform 0.28s ease; box-shadow: 0 6px 18px rgba(230,126,34,0.3); }

/* Country name */
.cws-card-name {
  font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.88);
  text-align: center; line-height: 1.3; position: relative; z-index: 1;
}

/* Active badge */
.cws-card-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45); position: relative; z-index: 1;
}
.cws-card-badge i { font-size: 0.45rem; color: #27ae60; }
.cws-card:hover .cws-card-badge { color: rgba(255,255,255,0.65); }

/* Dot navigation */
.cws-tab-dots { display: flex; justify-content: center; gap: 8px; margin: 20px 0 40px; }
.cws-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.18); border: none; cursor: pointer;
  transition: all 0.25s ease; padding: 0;
}
.cws-dot.active { background: var(--primary); width: 26px; border-radius: 4px; }

/* Marquee strip */
.cws-marquee-wrap { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 30px; }
.cws-marquee-label {
  text-align: center; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); margin-bottom: 16px;
}
.cws-marquee { overflow: hidden; mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); -webkit-mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.cws-marquee-track { display: flex; animation: marquee-scroll 32s linear infinite; white-space: nowrap; align-items: center; }
.cws-marquee-track span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.32);
  padding: 5px 20px; border-right: 1px solid rgba(255,255,255,0.07); white-space: nowrap;
  transition: color 0.2s;
}
.cws-marquee-track span:hover { color: rgba(255,255,255,0.7); }
.cws-marquee-track span img { width: 20px; height: 14px; object-fit: cover; border-radius: 3px; border: 1px solid rgba(255,255,255,0.1); flex-shrink: 0; }

/* Responsive */
@media (max-width: 900px) {
  .cws-stats-row { flex-wrap: wrap; }
  .cws-stat { padding: 12px 24px; }
}
@media (max-width: 640px) {
  .cws-section { padding: 64px 16px; }
  .cws-card { flex: 0 0 130px; width: 130px; }
  .cws-flag-wrap { width: 60px; height: 42px; }
  .cws-panel-topbar { flex-direction: column; align-items: flex-start; }
  .cws-stats-row { flex-direction: column; border-radius: 12px; }
  .cws-stat-divider { width: 80%; height: 1px; }
}