/* ── Google Fonts Import ── */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap");

/* ── CSS Custom Properties ── */
:root {
  --top-bar-height: 38px;
  --navbar-height: 84px;

  /* ── Brand colours — aligned with index style.css ── */
  --blue: #0066ff;
  --cyan: #00d4ff;
  --blue-glow: rgba(0, 102, 255, 0.35);
  --cyan-glow: rgba(0, 212, 255, 0.25);
  --space: #050f1c;
  --space-mid: #0a1628;
  --card-bg: #0e1e35;
  --card-border: rgba(0, 102, 255, 0.18);
  --off-white: #f0f6ff;
  --muted: rgba(255, 255, 255, 0.45);
  --muted-dark: #5a7a9e;

  /* ── Legacy aliases kept so nothing breaks ── */
  --green-primary: var(--cyan); /* was #00d4ff → now mapped to --cyan  */
  --green-dark: #00a8cc;
  --green-deeper: #0e778b;
  --green-light: #b0f2ff;
  --green-glass: rgba(0, 212, 255, 0.12);

  --charcoal: var(--space); /* was #1c1c1e → now dark navy          */
  --charcoal-soft: var(--space-mid);
  --dark-gray: #3a3a3c;
  --mid-gray: var(--muted-dark);
  --light-gray: #0e1e35; /* cards on dark bg                     */
  --white: #ffffff;

  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --font-mono: "Plus Jakarta Sans", sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.45);
  --shadow-green: 0 8px 32px rgba(0, 212, 255, 0.25);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: all 0.18s ease;

  --section-padding: 100px 0;
  --container-max: 1280px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--space-mid);
}

::-webkit-scrollbar-thumb {
  background: #05347b;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}

body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--space);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Noise texture overlay — same as index */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ── Typography ── */
.display-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-primary);
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Utility ── */
.text-green {
  color: var(--green-primary);
}

.bg-light-gray {
  background: var(--light-gray);
}

.bg-charcoal {
  background: var(--charcoal);
}

.container-xl {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn-primary-gl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--green-primary);
  color: var(--white);
  border: 2px solid var(--green-primary);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary-gl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.55s ease,
    height 0.55s ease,
    opacity 0.55s ease;
  opacity: 0;
  z-index: 0;
}

.btn-primary-gl::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green-dark);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.btn-primary-gl:hover::before {
  width: 300px;
  height: 300px;
  opacity: 1;
}

.btn-primary-gl:hover::after {
  opacity: 1;
}

.btn-primary-gl > * {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.btn-outline-gl > * {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.btn-dark-gl > * {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.btn-primary-gl:hover {
  color: var(--white);
  box-shadow:
    0 6px 24px rgba(0, 212, 255, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.btn-primary-gl:active {
  transform: translateY(0px);
  box-shadow: var(--shadow-green);
}

.btn-outline-gl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-gl:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-dark-gl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--charcoal);
  color: var(--white);
  border: 2px solid var(--charcoal);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
}

.btn-dark-gl:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

/* WhatsApp button: keep icon visible on hover */
.btn-whatsapp-gl .whatsapp-btn-icon {
  /* icon inherits white color from .btn-dark-gl */
  transition: filter 0.25s;
}

.btn-whatsapp-gl:hover .whatsapp-btn-icon {
  filter: brightness(0);
  /* becomes dark/visible on light bg on hover */
}

/* ============================================================
   TOP HEADER BAR
   ============================================================ */
#top-header {
  background: rgba(5, 15, 28, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 102, 255, 0.15);
  font-size: 0.8rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

#top-header.hidden-bar {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

.top-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-header-left {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.7);
}

.top-header-left a {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.top-header-left a:hover {
  color: var(--green-primary);
}

.top-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icons-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons-top a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
  font-size: 0.75rem;
}

.social-icons-top a:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateY(-1px);
}

.lang-switcher {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  overflow: hidden;
}

.lang-switcher a {
  padding: 3px 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.lang-switcher a.active {
  background: var(--green-primary);
  color: var(--white);
}

.lang-switcher a:hover:not(.active) {
  color: var(--white);
}

/* Top bar divider */
.top-bar-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* Top bar lang switcher — single visible button */
.top-lang-switcher {
  display: flex;
  align-items: center;
}

.top-lang-btn {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.top-lang-btn:hover {
  color: var(--white);
}

.top-whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: #25d366;
  color: var(--white);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 400;
  transition: var(--transition-fast);
}

.top-whatsapp:hover {
  background: #1da851;
  color: var(--white);
  transform: translateY(-1px);
}
/* ============================================================
   OVERVIEW / ABOUT SECTION — New Design
   ============================================================ */
#overview {
  padding: var(--section-padding);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

#overview::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(0, 102, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Section header above grid */
.overview-header {
  margin-bottom: 56px;
}

.overview-header .section-label {
  display: block;
  margin-bottom: 12px;
}

.overview-header .section-title {
  max-width: 540px;
}

/* Grid: images left, content right */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ── Left: Image Collage ── */
.overview-visual {
  position: relative;
}

.overview-collage {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  position: relative;
}

.collage-img {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--light-gray);
}

.collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.collage-img:hover img {
  transform: scale(1.04);
}

.collage-img--large {
  grid-column: 1;
  grid-row: 1 / 3;
  height: 420px;
}

.collage-img--top {
  grid-column: 2;
  grid-row: 1;
  height: 200px;
}

.collage-img--bottom {
  grid-column: 2;
  grid-row: 2;
  height: 200px;
}

.collage-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--charcoal);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  min-width: 120px;
}

.collage-badge-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  color: var(--green-primary);
}

.collage-badge-num span {
  font-size: 1.4rem;
}

.collage-badge-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 5px;
  display: block;
}

/* ── Right: Content ── */
.overview-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.overview-intro {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
}

/* Stats row */
.overview-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: 20px 0;
}

.overview-stat {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.overview-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}

.overview-stat-plus {
  color: var(--green-primary);
  font-size: 1.2rem;
}

.overview-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 5px;
  display: block;
}

.overview-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

/* Pillars list */
.overview-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.overview-pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 102, 255, 0.12);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.overview-pillar:hover {
  border-color: var(--green-light);
  background: rgba(0, 212, 255, 0.03);
}

.overview-pillar-icon {
  width: 38px;
  height: 38px;
  background: var(--green-primary);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.overview-pillar-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.overview-pillar-body strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}

.overview-pillar-body span {
  font-size: 0.78rem;
  color: var(--muted);
}

.overview-cta {
  margin-top: 4px;
  align-self: flex-start;
}

/* ============================================================
   ABOUT US — v5
   ============================================================ */

#overview {
  padding: var(--section-padding);
  background: var(--space-mid);
}

.ov-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ── Image collage (right) ── */
.ov-collage {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ov-col-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ov-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.ov-col-img:hover img {
  transform: scale(1.04);
}

.ov-col-img--top {
  height: 340px;
}

.ov-col-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ov-col-img--bl,
.ov-col-img--br {
  height: 200px;
}

.ov-years-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, 1);
  border-radius: var(--radius-md);
  padding: 10px 14px 10px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.ov-years-badge::before {
  content: "";
  width: 3px;
  height: 36px;
  background: var(--green-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.ov-years-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.ov-years-plus {
  color: var(--green-primary);
}

.ov-years-lbl {
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-family: var(--font-mono);
  margin-top: 3px;
  max-width: 70px;
  line-height: 1.4;
}

.ov-years-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* ── Content (left) ── */
.ov-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ov-content .section-label {
  display: block;
}

.ov-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0;
}

.ov-accent {
  color: var(--green-primary);
}

.ov-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

/* ── Pillars ── */
.ov-pillars {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ov-pillar {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  background: var(--white);
  cursor: default;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.ov-pillar:hover {
  border-color: rgba(46, 164, 204, 0.2);
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
}

.ov-pillar-icon {
  width: 38px;
  height: 38px;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.ov-pillar-icon i {
  color: var(--green-primary);
  transition: color 0.25s ease;
}

.ov-pillar:hover .ov-pillar-icon {
  background: rgba(46, 162, 204, 0.18);
}

.ov-pillar:hover .ov-pillar-icon i,
.ov-pillar:hover .ov-pillar-icon .icon-pillar {
  color: var(--green-dark);
}

.ov-pillar-body strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
  line-height: 1.3;
}

.ov-pillar-body span {
  display: block;
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ── CTA button — inline width ── */
.ov-cta {
  align-self: flex-start;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
#products {
  padding: var(--section-padding);
  background: var(--light-gray);
  overflow-x: hidden;
  overflow-y: visible;
}

.products-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.products-header .section-label {
  display: block;
  margin-bottom: 12px;
}

.products-header .section-subtitle {
  margin: 16px auto 0;
}

.product-swiper-wrap {
  position: relative;
  padding: 0;
  overflow-x: hidden;
  overflow-y: visible;
  padding-top: 16px;
  padding-bottom: 20px;
  margin-top: -16px;
  margin-bottom: -20px;
}

.products-swiper {
  overflow: visible !important;
}

/* Equal-height cards via flex column */
.products-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid rgba(0, 102, 255, 0.12);
  text-decoration: none;
  color: inherit;
}

.product-card-body {
  flex: 1;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
  border-color: rgba(0, 102, 255, 0.2);
}

.product-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--light-gray);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

/* Green shimmer overlay on hover */
.product-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(0, 102, 255, 0.15) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-img-wrap::after {
  opacity: 1;
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 0;
  padding: 5px 18px 5px 12px;
  background: var(--green-primary);
  color: var(--white);
  border-radius: 0 4px 4px 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 2px 2px 10px rgba(0, 102, 255, 0.35);
  display: flex;
  align-items: center;
  gap: 6px;
  clip-path: polygon(
    0 0,
    calc(100% - 6px) 0,
    100% 50%,
    calc(100% - 6px) 100%,
    0 100%
  );
}

.product-tag::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  flex-shrink: 0;
}

.product-card-body {
  padding: 22px 22px 16px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px 20px;
}

.product-standard {
  font-size: 0.72rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-standard .dot {
  width: 6px;
  height: 6px;
  background: var(--green-primary);
  border-radius: 50%;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-primary);
  padding: 6px 12px 6px 8px;
  border-radius: 20px;
  background: transparent;
  transition:
    background 0.25s ease,
    gap 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    padding 0.25s ease;
  position: relative;
  overflow: hidden;
}

.product-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green-primary);
  opacity: 0;
  border-radius: 20px;
  transition: opacity 0.25s ease;
  z-index: 0;
}

.product-link span,
.product-link img {
  position: relative;
  z-index: 1;
}

.product-link:hover {
  gap: 10px;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 102, 255, 0.35);
}

.product-link:hover::before {
  opacity: 1;
}

.product-link:hover img {
  filter: brightness(0) invert(1) !important;
}

.product-link:hover .icon-product-link {
  color: #fff;
  filter: none;
}

.product-link:active {
  transform: scale(0.96);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why-us {
  padding: var(--section-padding);
  background: var(--space-mid);
  position: relative;
  overflow: hidden;
}

#why-us::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 102, 255, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

#why-us::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(0, 102, 255, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.why-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.why-header .section-label {
  display: block;
  margin-bottom: 14px;
}

.why-header .section-subtitle {
  margin: 18px auto 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  padding: 32px 28px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(0, 102, 255, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 16px 40px rgba(0, 102, 255, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 102, 255, 0.2);
}

.why-card:hover::after {
  transform: scaleX(1);
}

/* Glassmorphism cards */
.why-card.glass {
  background: linear-gradient(
    145deg,
    var(--card-bg) 60%,
    rgba(0, 102, 255, 0.04)
  );
}

/* Icon wrapper */
.why-icon-wrap {
  position: relative;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.why-icon-bg {
  position: absolute;
  inset: 0;
  background: var(--green-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.why-icon-img {
  position: relative;
  z-index: 1;
  font-size: 22px;
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}

.why-card:hover .why-icon-bg {
  background: var(--green-primary);
  transform: rotate(-6deg) scale(1.06);
  border-radius: 10px;
}

.why-card:hover .why-icon-img {
  color: #fff;
}

/* Card number */
.why-card-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 6.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(0, 102, 255, 0.1);
  font-family: var(--font-display);
  pointer-events: none;
  user-select: none;
  transition: var(--transition);
}

.why-card:hover .why-card-num {
  color: rgba(0, 102, 255, 0.2);
}

.why-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-card-text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Arrow badge */
.why-card-arrow {
  width: 28px;
  height: 28px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  align-self: flex-start;
  transition: var(--transition);
  opacity: 0;
  transform: translateX(-6px);
}

.why-card-arrow img {
  filter: invert(47%) sepia(98%) saturate(400%) hue-rotate(100deg)
    brightness(85%);
  width: 14px;
  height: 14px;
}

.why-card:hover .why-card-arrow {
  opacity: 0;
  transform: translateX(-6px);
  background: var(--green-primary);
}

.why-card:hover .why-card-arrow img {
  filter: invert(1);
}

/* ============================================================
   STATISTICS SECTION
   ============================================================ */
#statistics {
  padding: 90px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

#statistics::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(0, 102, 255, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(0, 102, 255, 0.06) 0%,
      transparent 50%
    );
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 40px 24px;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(0, 102, 255, 0.12);
  border-radius: 12px;
  margin: 0 auto 16px;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}

.stat-suffix {
  color: var(--green-primary);
  font-size: 0.7em;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 10px;
  display: block;
}

.stat-bar {
  width: 32px;
  height: 3px;
  background: var(--green-primary);
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ============================================================
   CERTIFICATIONS SECTION
   ============================================================ */
#certifications {
  padding: var(--section-padding);
  background: var(--light-gray);
}

.cert-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.cert-header .section-label {
  display: block;
  margin-bottom: 12px;
}

.cert-header .section-subtitle {
  margin: 16px auto 0;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.cert-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 102, 255, 0.12);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 102, 255, 0.3);
}

/* Logo badge area at top */
.cert-badge {
  background: linear-gradient(135deg, #f0faf5 0%, #e2f7ec 100%);
  padding: 28px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  border-bottom: 1px solid rgba(0, 102, 255, 0.12);
}

.cert-logo-wrap {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
  transition: var(--transition);
}

.cert-card:hover .cert-logo-wrap {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(0, 212, 255, 0.25));
}

.cert-svg-logo {
  width: 120px;
  height: 60px;
  border-radius: 6px;
}

.cert-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green-dark);
  color: white;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Body content */
.cert-body {
  padding: 20px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cert-name {
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.cert-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.cert-issuer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--green-dark);
  font-weight: 500;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 102, 255, 0.12);
}

.cert-issuer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-primary);
  flex-shrink: 0;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 32px 40px;
  background: var(--white);
  border-radius: var(--radius-xl);
  flex-wrap: wrap;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-strip-item .check {
  width: 22px;
  height: 22px;
  background: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
#cta {
  padding: 100px 0;
  /* background:
    linear-gradient(
      135deg,
      rgba(10, 50, 28, 0.88) 0%,
      rgba(15, 92, 49, 0.82) 50%,
      rgba(10, 40, 22, 0.92) 100%
    ),
    url("../images/hero2.png") center/cover no-repeat; */
  position: relative;
  overflow: hidden;
}

/* Subtle top-light sheen */
#cta::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background:
    radial-gradient(
      ellipse 70% 50% at 50% 0%,
      rgba(0, 102, 255, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 60% at 90% 80%,
      rgba(0, 102, 255, 0.10) 0%,
      transparent 55%
    ); */
  z-index: 0;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}

#cta::after {
  content: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.cta-orb-1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(0, 102, 255, 0.2) 0%,
    transparent 70%
  );
  top: -80px;
  right: 6%;
}

.cta-orb-2 {
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  bottom: -60px;
  left: 4%;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  display: block;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-title .accent {
  color: var(--green-primary);
}

.cta-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-white-gl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: var(--white);
  color: var(--green-deeper);
  border: 2px solid var(--white);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    background 0.45s ease,
    color 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
  min-width: 180px;
  justify-content: center;
}

.btn-white-gl img {
  filter: brightness(0);
  transition: filter 0.45s ease;
}

.btn-white-gl:hover {
  background: transparent;
  color: var(--white);
}

.btn-white-gl:hover img {
  filter: brightness(0) invert(1);
}

.btn-white-gl--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-white-gl--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ============================================================
   LOADING SCREEN
   ============================================================ */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  height: 60px;
  margin-bottom: 36px;
  drop-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.loader-bar-wrap {
  width: 180px;
  height: 2px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  background: var(--green-primary);
  border-radius: 2px;
  animation: loading 1.2s ease forwards;
}

@keyframes loading {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */
.section-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.06),
    transparent
  );
}

/* ============================================================
   ACTIVE NAV LINK — CSS-only, driven by <body> class
   ============================================================ */
/* Active nav link set directly via .active class in HTML */

/* ============================================================
   PARTNERS SLIDER
   ============================================================ */
/* ── Partners Grid V2 (About Page) ── */
.partners-section-v2 {
  padding: 88px 0 96px;
  background: var(--space-mid);
  overflow: hidden;
}

.partners-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

@media (max-width: 991px) {
  .partners-grid-v2 {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .partners-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 36px;
  }
}

.partner-card-v2 {
  background: var(--white);
  border: 1px solid rgba(0, 102, 255, 0.12);
  border-radius: 20px;
  padding: 28px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}

.partner-card-v2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.partner-card-v2:hover {
  transform: translateY(-5px);
  box-shadow:
    0 12px 36px rgba(0, 102, 255, 0.13),
    0 2px 10px rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 102, 255, 0.3);
}

.partner-card-v2:hover::after {
  opacity: 1;
}

.partner-logo-box {
  width: 160px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partner-card-v2:hover .partner-logo-box {
}

.partner-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-fallback-logo {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-weight: 900;
  font-size: 10px;
  color: white;
  letter-spacing: 0.03em;
}

.partner-card-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-top: 10px;
  text-align: center;
  background: var(--green-light);
  padding: 4px 12px;
  border-radius: 20px;
}

.partner-card-country {
  font-size: 0.72rem;
  color: var(--green-dark);
  font-weight: 600;
  letter-spacing: 0.06em;
  background: var(--green-light);
  padding: 3px 10px;
  border-radius: 20px;
}

/* Partners Swiper V2 slide */
.partners-swiper-v2 {
  overflow: visible;
  padding-top: 6px;
  padding-bottom: 18px;
}

.partners-swiper-v2 .swiper-wrapper {
  align-items: stretch;
}

.partners-swiper-v2 .swiper-slide {
  height: auto;
}

/* ── Partners Slider (legacy) ── */
.partners-section {
  padding: 80px 0;
  background: var(--white);
  overflow: hidden;
}

.partners-slider-wrap {
  position: relative;
  margin-top: 52px;
  padding: 0 48px;
  overflow: visible;
}

/* Clip only horizontally so hover lift/shadow isn't cut */
.partners-swiper-clip {
  overflow: hidden;
  margin: 0 -4px;
  padding: 0 4px;
}

.partners-swiper {
  overflow: visible;
  padding-top: 6px;
  padding-bottom: 18px;
}

.partners-swiper .swiper-wrapper {
  align-items: stretch;
}

.partner-logo-card {
  background: var(--white);
  border: 1px solid rgba(0, 102, 255, 0.14);
  border-radius: 16px;
  padding: 0;
  text-align: center;
  transition:
    border-color 0.3s ease,
    box-shadow 0.35s ease,
    transform 0.3s ease;
  cursor: default;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.partner-logo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.partner-logo-card:hover {
  border-color: rgba(0, 102, 255, 0.4);
  box-shadow:
    0 10px 32px rgba(0, 102, 255, 0.14),
    0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.partner-logo-card:hover::before {
  opacity: 1;
}

.partner-logo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 24px 16px 20px;
}

.partner-logo-img-wrap {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
  flex-shrink: 0;
  transition: background 0.3s;
}

.partner-logo-card:hover .partner-logo-img-wrap {
  background: var(--green-light);
}

.partner-logo-inner svg {
  flex-shrink: 0;
}

.partner-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
}

.partner-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  line-height: 1.3;
}

.partner-country {
  font-size: 0.68rem;
  color: var(--green-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--green-light);
  padding: 2px 8px;
  border-radius: 20px;
}

.partner-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(0, 212, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.partner-nav-btn:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.partner-nav-btn:hover i,
.partner-nav-btn:hover .icon-partner-nav {
  color: #fff;
}

.partners-prev {
  left: 0;
}

.partners-next {
  right: 0;
}

/* ============================================================
   PRODUCT DETAILS PAGE
   ============================================================ */
/* ============================================================
   PRODUCT DETAILS PAGE HERO
   ============================================================ */
.pd-page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 55px;
  overflow: hidden;
  padding-top: calc(var(--top-bar-height) + var(--navbar-height) + 40px);
  margin-top: 0;
}

.pd-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.pd-page-hero.loaded .pd-page-hero-bg {
  transform: scale(1);
}

.pd-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 92, 49, 0.82) 0%,
    rgba(28, 28, 30, 0.9) 60%,
    rgba(28, 28, 30, 0.96) 100%
  );
}

.pd-page-hero-accent {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 70% 50%,
    rgba(0, 102, 255, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}

.pd-page-hero-content {
  position: relative;
  z-index: 10;
}

.pd-page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(0, 102, 255, 0.4);
  border-radius: 100px;
  background: rgba(0, 102, 255, 0.1);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 20px;
}

.pd-page-hero-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--green-primary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.pd-page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.pd-page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 16px;
}

.pd-page-hero-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 0;
}

.pd-page-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition-fast);
}

.pd-page-hero-breadcrumb a:hover {
  color: var(--green-primary);
}

.pd-page-hero-breadcrumb .sep {
  color: var(--green-primary);
  opacity: 0.6;
}

.pd-page-hero-breadcrumb .current {
  color: var(--green-primary);
}

.product-details-hero {
  padding: 60px 0 80px;
  background: var(--white);
}

.product-details-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  font-size: 0.85rem;
  color: var(--muted);
  opacity: 1;
}

.product-details-breadcrumb a {
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 500;
}

.product-details-breadcrumb a:hover {
  text-decoration: underline;
}

.product-details-breadcrumb span {
  color: var(--muted);
}

.product-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  width: 100%;
  min-width: 0;
}

@media (max-width: 900px) {
  .product-details-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* Image slider */
.pd-image-slider {
  position: sticky;
  top: 100px;
  min-width: 0;
  overflow: hidden;
}

@media (max-width: 900px) {
  .pd-image-slider {
    position: relative;
    top: auto;
  }
}

.pd-main-swiper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--space-mid);
  height: 420px;
  margin-bottom: 14px;
}

.pd-main-swiper .swiper-wrapper {
  height: 100%;
}

.pd-main-swiper .swiper-slide {
  height: 100%;
}

.pd-main-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-thumb-swiper {
  overflow: hidden;
  cursor: grab;
}

.pd-thumb-swiper:active {
  cursor: grabbing;
}

.pd-thumb-swiper .swiper-wrapper {
  height: 90px;
}

.pd-thumb-swiper .swiper-slide {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  height: 90px !important;
  border: 2px solid transparent;
  opacity: 0.65;
  transition:
    opacity 0.2s,
    border-color 0.2s;
  flex-shrink: 0;
}

.pd-thumb-swiper .swiper-slide-thumb-active {
  border-color: var(--green-primary);
  opacity: 1;
}

.pd-thumb-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Product info */
.pd-info {
  padding-top: 8px;
  min-width: 0;
}

.pd-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.pd-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.pd-cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.pd-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

.pd-cert-badge--green {
  background: var(--green-primary);
  color: var(--white);
}

.pd-cert-badge--green .dot {
  background: var(--white) !important;
}

.pd-cert-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-primary);
  flex-shrink: 0;
}

.pd-description {
  font-size: 1rem;
  line-height: 1.75;
  color: #555;
  margin-bottom: 32px;
}

.pd-specs {
  border: 1.5px solid rgba(0, 102, 255, 0.18);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 32px;
}

.pd-specs-title {
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 20px;
}

.pd-specs-title--green {
  background: var(--green-primary);
  color: var(--white);
}

.pd-spec-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid rgba(0, 102, 255, 0.12);
}

.pd-spec-row:last-child {
  border-bottom: none;
}

.pd-spec-label {
  background: var(--space-mid);
  padding: 12px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.pd-spec-value {
  padding: 12px 20px;
  font-size: 0.85rem;
  color: var(--white);
}

.pd-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   ABOUT HERO / BANNER
   ============================================================ */
#about-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 55px;
  overflow: hidden;
  padding-top: calc(var(--top-bar-height) + var(--navbar-height) + 40px);
  margin-top: 0;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero1.jpg");
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease;
}

#about-hero.loaded .about-hero-bg {
  transform: scale(1);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 15, 28, 0.82) 0%,
    rgba(10, 22, 40, 0.9) 55%,
    rgba(0, 102, 255, 0.18) 100%
  );
}

.about-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 70% 50%,
      rgba(0, 102, 255, 0.18) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(0, 212, 255, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 10;
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.about-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition-fast);
}

.about-breadcrumb a:hover {
  color: var(--green-primary);
}

.about-breadcrumb .sep {
  color: var(--green-primary);
  opacity: 0.6;
}

.about-breadcrumb .current {
  color: var(--green-primary);
}

.about-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(0, 102, 255, 0.4);
  border-radius: 100px;
  background: rgba(0, 102, 255, 0.12);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.about-hero-title .accent {
  background: linear-gradient(100deg, var(--blue) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 0;
}

.about-hero-scroll-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--cyan));
  opacity: 0.5;
}

/* ============================================================
   COMPANY INTRODUCTION
   ============================================================ */
#company-intro {
  padding: var(--section-padding);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-image-wrap {
  position: relative;
}

.intro-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.intro-img-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.intro-img-main:hover img {
  transform: scale(1.03);
}

.intro-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.intro-img-accent img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.intro-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
}

.intro-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--green-glass);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.intro-badge-text strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-display);
  line-height: 1;
}

.intro-badge-text span {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.intro-lead {
  font-size: 1.12rem;
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 28px;
  border-left: 3px solid var(--green-primary);
  padding-left: 20px;
}

.intro-body {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.intro-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 32px 0;
}

.intro-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 500;
}

.intro-highlight-item i {
  color: var(--green-primary);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================================================
   VISION, MISSION, GOALS
   ============================================================ */
#vision-mission {
  padding: var(--section-padding);
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}

#vision-mission::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 102, 255, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.vmg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.vmg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0, 102, 255, 0.12);
}

.vmg-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-glass) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vmg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 102, 255, 0.2);
}

.vmg-card:hover::before {
  opacity: 1;
}

.vmg-card-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  /* color: rgba(0, 102, 255, 0.07); */
  color: var(--cyan);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 24px;
  letter-spacing: -0.05em;
  pointer-events: none;
}

.vmg-icon {
  width: 56px;
  height: 56px;
  background: var(--green-glass);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.vmg-card:hover .vmg-icon {
  background: var(--green-primary);
}

.vmg-card:hover .vmg-icon i,
.vmg-card:hover .vmg-icon .icon-vmg {
  color: #fff !important;
}

.vmg-card-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 10px;
  display: block;
  position: relative;
  z-index: 1;
}

.vmg-card-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.vmg-card-text {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.vmg-card-divider {
  width: 40px;
  height: 2px;
  background: var(--green-primary);
  margin: 20px 0;
  position: relative;
  z-index: 1;
  transition: width 0.4s ease;
}

.vmg-card:hover .vmg-card-divider {
  width: 70px;
}

/* ============================================================
   COMPANY TIMELINE
   ============================================================ */
/* Timeline styles moved to style.css (horizontal redesign) */

.about-section-header {
  margin-bottom: 60px;
}

/* ============================================================
   COMPANY VALUES
   ============================================================ */
#company-values {
  padding: var(--section-padding);
  background: var(--light-gray);
  position: relative;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid rgba(0, 102, 255, 0.12);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-card:hover::after {
  transform: scaleX(1);
}

.value-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--green-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: var(--green-primary);
  transform: scale(1.1);
}

.value-card:hover .value-icon i,
.value-card:hover .value-icon .icon-value {
  color: #fff !important;
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.value-text {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   MEDIA / GALLERY
   ============================================================ */
#media-gallery {
  padding: var(--section-padding);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
  margin-top: 60px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 48, 92, 0.7) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.9;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6) {
  grid-column: auto;
  grid-row: auto;
}

/* ============================================================
   CERTIFICATIONS TRUST STRIP (معطّل في الـ HTML حالياً)
   ============================================================ */
.about-trust-strip {
  background: var(--charcoal);
  padding: 56px 0;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-cert {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.trust-cert-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.15);
  border: 2px solid rgba(0, 102, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green-primary);
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.trust-cert:hover .trust-cert-badge {
  background: rgba(0, 212, 255, 0.25);
  border-color: var(--green-primary);
  transform: scale(1.08);
}

.trust-cert-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}

.trust-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .intro-img-accent {
    right: 0;
    bottom: -20px;
    width: 160px;
  }

  .intro-badge {
    left: 0;
  }

  .vmg-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-hero-title {
    font-size: 2.2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-grid .gallery-item {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 220px;
  }

  /* timeline responsive handled in style.css */
}

@media (max-width: 767px) {
  #about-hero {
    padding-top: calc(var(--top-bar-height) + var(--navbar-height) + 40px);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* timeline mobile handled in style.css */
}

@media (max-width: 575px) {
  #about-hero {
    min-height: 320px;
    padding-bottom: 45px;
    padding-top: calc(var(--top-bar-height) + var(--navbar-height) + 30px);
  }

  .about-hero-title {
    font-size: 1.8rem;
  }

  .intro-highlights {
    grid-template-columns: 1fr;
  }

  .trust-divider {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CONTACT PAGE STYLES
   ============================================================ */

/* ── HERO ── */
#contact-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 55px;
  overflow: hidden;
  padding-top: calc(var(--top-bar-height) + var(--navbar-height) + 40px);
  margin-top: 0;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero1.jpg");
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease;
}

#contact-hero.loaded .contact-hero-bg {
  transform: scale(1);
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 15, 28, 0.82) 0%,
    rgba(10, 22, 40, 0.9) 55%,
    rgba(0, 102, 255, 0.18) 100%
  );
}

.contact-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 70% 50%,
      rgba(0, 102, 255, 0.18) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(0, 212, 255, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* ── CONTACT FORM SECTION ── */
.contact-form-section {
  padding: var(--section-padding);
  background: linear-gradient(
    160deg,
    var(--space) 0%,
    var(--space-mid) 60%,
    var(--space) 100%
  );
}

.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 44px;
  align-items: stretch;
}

/* ── FORM WRAP ── */
.contact-form-wrap {
  background: var(--card-bg);
  border-radius: 22px;
  padding: 40px 44px;
  box-shadow:
    0 8px 48px rgba(15, 92, 49, 0.1),
    0 1px 4px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 102, 255, 0.1);
}

.contact-form-wrap .section-label {
  margin-bottom: 10px;
}

.contact-form-wrap .section-title {
  font-size: 1.75rem;
  margin: 0 0 10px;
  line-height: 1.25;
}

.contact-form-wrap > p {
  font-size: 0.93rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ── FORM LAYOUT ── */
.gl-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.gl-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.gl-form .form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── INPUTS ── */
.form-input-wrap {
  position: relative;
}

.form-input-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

.gl-input {
  width: 100%;
  padding: 10px 16px 10px 42px;
  background: var(--space-mid);
  border: 1.5px solid rgba(0, 102, 255, 0.15);
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--white);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  outline: none;
  appearance: none;
}

.gl-input:focus {
  border-color: var(--green-primary);
  background: var(--card-bg);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.12);
}

.gl-input:hover:not(:focus) {
  border-color: rgba(0, 102, 255, 0.4);
  background: var(--space-mid);
}

.gl-input::placeholder {
  color: var(--muted);
}

.gl-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300d4ff' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: var(--space-mid);
  padding-right: 40px;
}

.gl-select:focus {
  background-color: var(--card-bg);
}

.gl-textarea {
  padding: 14px 16px;
  resize: vertical;
  min-height: 72px;
  line-height: 1.65;
}

.form-group:has(.gl-textarea) .gl-textarea {
  padding-left: 16px;
}

/* ── SUBMIT BUTTON ── */
.gl-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  margin-top: 6px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px var(--blue-glow);
  position: relative;
  overflow: hidden;
}

.gl-submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gl-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 212, 255, 0.45);
}

.gl-submit-btn:hover::before {
  opacity: 1;
}

.gl-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 12px rgba(0, 212, 255, 0.3);
}

.gl-submit-btn img,
.gl-submit-btn span,
.gl-submit-btn i {
  position: relative;
  z-index: 1;
}

/* ── SIDEBAR ── */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── SIDEBAR BLOCKS ── */
.contact-sidebar-block {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 26px;
  box-shadow:
    0 6px 28px rgba(15, 92, 49, 0.09),
    0 1px 3px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.1);
}

.contact-sidebar-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid rgba(0, 212, 255, 0.12);
}

/* ── CONTACT ITEMS ── */
.contact-sidebar-item {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 6px;
  font-size: 0.87rem;
  padding: 5px 8px;
  border-radius: 10px;
  transition: background 0.18s ease;
}

.contact-sidebar-item:hover {
  background: var(--space-mid);
}

.contact-sidebar-item:last-child {
  margin-bottom: 0;
}

.contact-sidebar-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.12),
    rgba(0, 212, 255, 0.06)
  );
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.contact-sidebar-item:hover .contact-sidebar-icon {
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.22),
    rgba(0, 212, 255, 0.1)
  );
  border-color: rgba(0, 212, 255, 0.4);
}

.contact-sidebar-icon i {
  color: var(--green-primary) !important;
  filter: none !important;
}

.contact-sidebar-item strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: #7a9aab;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1px;
}

.contact-sidebar-item a,
.contact-sidebar-item span {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.4;
  font-weight: 500;
}

.contact-sidebar-item a:hover {
  color: var(--green-primary);
}

/* ── SOCIAL GRID ── */
.contact-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.contact-social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--space-mid);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s ease;
  border: 1.5px solid rgba(0, 102, 255, 0.15);
}

.contact-social-btn:hover {
  background: var(--white);
  border-color: var(--green-primary);
  color: var(--green-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 102, 255, 0.18);
}

.contact-social-btn i {
  font-size: 0.95rem;
  width: 16px;
  text-align: center;
  color: var(--green-primary);
}

.contact-social-btn--wa i {
  color: #25d366;
}

.contact-social-btn--wa:hover {
  border-color: #25d366;
  color: #25d366;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.2);
}

/* ── WHATSAPP CTA CARD ── */
.contact-wa-card {
  background: linear-gradient(140deg, #0a4a24 0%, #0f6b35 50%, #1a8a4a 100%);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  flex: 1;
  box-shadow: 0 8px 32px rgba(15, 92, 49, 0.3);
}

.contact-wa-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.contact-wa-card::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: -25px;
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.contact-wa-card-icon {
  width: 48px;
  height: 48px;
  background: #25d366;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.contact-wa-card-content strong {
  display: block;
  color: #ffffff;
  font-size: 0.97rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-wa-card-content p {
  font-size: 0.81rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  margin: 0;
}

.contact-wa-btn {
  background: rgba(255, 255, 255, 0.13) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.28) !important;
  justify-content: center;
  padding: 12px 24px !important;
  font-size: 0.87rem !important;
  gap: 8px !important;
  align-self: flex-start;
  border-radius: 10px !important;
}

.contact-wa-btn::after {
  background: rgba(255, 255, 255, 0.1) !important;
}

.contact-wa-btn:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
}

/* ── MAP SECTION ── */
#contact-map {
  padding: 100px 0 80px;
  background: var(--white);
}

.contact-map-embed {
  overflow: hidden;
  border-radius: var(--radius-lg);
  line-height: 0;
  box-shadow: var(--shadow-md);
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .contact-split-grid {
    grid-template-columns: 1fr 350px;
    gap: 36px;
  }
}

@media (max-width: 992px) {
  .contact-split-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 40px 36px;
  }
}

@media (max-width: 768px) {
  .contact-form-wrap {
    padding: 32px 24px;
  }

  .gl-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-social-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-embed iframe {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .contact-wa-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── MOVED FROM INLINE STYLES ── */

/* Hero tag dot */
.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-primary);
  display: inline-block;
  flex-shrink: 0;
}

/* Form section heading */
.contact-form-heading {
  margin: 14px 0 12px;
}

/* Form intro paragraph */
.contact-form-intro {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Follow us text */
.contact-follow-text {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Map section header */
.contact-map-header {
  margin-bottom: 48px;
}

.contact-map-title {
  margin: 14px auto 0;
}

.contact-map-subtitle {
  margin: 18px auto 0;
}

/* ============================================================
       PRODUCTS PAGE — HERO BANNER
       ============================================================ */
.products-page-hero {
  background: var(--charcoal);
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: stretch;
}

.products-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 92, 49, 0.82) 0%,
    rgba(28, 28, 30, 0.9) 60%,
    rgba(28, 28, 30, 0.96) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.products-page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 102, 255, 0.3),
    transparent
  );
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 2;
}

.products-page-hero .container-xl {
  position: relative;
  z-index: 2;
  flex: 1;
}

.products-hero-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  align-items: center;
  min-height: 420px;
  padding: calc(var(--top-bar-height) + var(--navbar-height) + 32px) 0 70px;
}

.products-hero-text {
  padding-right: 40px;
}

.products-hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.products-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.products-hero-image::before {
  content: none;
}

@media (max-width: 992px) {
  .products-hero-image {
    display: none;
  }

  .products-hero-text {
    padding-right: 0;
  }

  .products-hero-inner {
    grid-template-columns: 1fr;
    min-height: 340px;
    padding: calc(var(--top-bar-height) + var(--navbar-height) + 24px) 0 60px;
  }
}

@media (max-width: 768px) {
  .products-page-hero {
    min-height: 320px;
  }

  .products-hero-inner {
    min-height: 300px;
    padding: calc(var(--top-bar-height) + var(--navbar-height) + 20px) 0 50px;
  }

  .products-hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
}

@media (max-width: 480px) {
  .products-page-hero {
    min-height: 280px;
  }

  .products-hero-inner {
    min-height: 260px;
    padding: calc(var(--top-bar-height) + var(--navbar-height) + 16px) 0 44px;
  }

  .products-hero-title {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .products-hero-sub {
    font-size: 0.88rem;
  }
}

.products-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 12px 0;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
}

.products-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition-fast);
}

.products-hero-breadcrumb a:hover {
  color: var(--green-primary);
}

.products-hero-breadcrumb .sep {
  color: var(--green-primary);
  opacity: 0.6;
}

.products-hero-breadcrumb .current {
  color: var(--green-primary);
}

.products-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.products-hero-title .accent {
  color: var(--green-primary);
}

.products-hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 520px;
  line-height: 1.7;
}

/* ============================================================
       PRODUCTS MAIN SECTION
       ============================================================ */
#products-catalog {
  padding: 80px 0 120px;
  background: var(--light-gray);
  min-height: 70vh;
}

/* ── Toolbar: search + filter ── */
.products-toolbar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.products-search-wrap {
  position: relative;
  flex: 1;
  min-width: 240px;
  /* max-width: 440px; */
}

.products-search-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green-primary);
  font-size: 0.85rem;
  pointer-events: none;
  z-index: 1;
}

.products-search {
  width: 100%;
  padding: 12px 18px 12px 44px;
  border: 1.5px solid rgba(0, 102, 255, 0.2);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  background: var(--space-mid);
  color: var(--white);
  outline: none;
  transition: var(--transition);
  height: 46px;
}

.products-search::placeholder {
  color: rgba(99, 99, 102, 0.5);
}

.products-search:focus {
  border-color: var(--green-primary);
  background: var(--card-bg);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12);
}

.products-sort-wrap {
  position: relative;
  flex-shrink: 0;
  /* min-width: 200px; */
}

.products-sort-wrap i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green-primary);
  font-size: 0.72rem;
  pointer-events: none;
  z-index: 1;
}

.products-sort {
  padding: 12px 40px 12px 16px;
  border: 1.5px solid rgba(0, 102, 255, 0.2);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  background: var(--space-mid);
  color: var(--white);
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  min-width: 180px;
  height: 46px;
  appearance: none;
  -webkit-appearance: none;
}

.products-sort:focus {
  border-color: var(--green-primary);
  background: var(--card-bg);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12);
}

.products-count-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-left: auto;
}

/* ── Category Tabs ── */
.category-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.cat-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 18px;
  border: 1.5px solid rgba(0, 102, 255, 0.18);
  border-radius: 100px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.03em;
  flex: 1 1 auto;
}

.cat-tab:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
}

.cat-tab.active {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
}

.cat-tab .cat-count {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  padding: 1px 7px;
  font-size: 0.7rem;
  font-weight: 700;
}

.cat-tab.active .cat-count {
  background: rgba(255, 255, 255, 0.25);
}

/* ── Products Grid (Bootstrap row) ── */
.products-grid {
  /* Bootstrap row handles the grid — no extra grid needed */
}

/* Product card (reuse existing styles + extend) */
.products-grid .product-card {
  opacity: 1;
  transform: none;
  height: 100%;
}

/* Hide col wrapper when filtered out */
.products-grid [data-cat].hidden {
  display: none !important;
}

.products-grid .product-card.hidden {
  display: none;
}

.products-grid .product-card .product-img-wrap {
  height: 200px;
}

/* ── No Results ── */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  display: none;
}

.no-results.visible {
  display: block;
}

.no-results-icon {
  font-size: 3rem;
  color: var(--green-primary);
  opacity: 0.3;
  margin-bottom: 20px;
}

.no-results h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 10px;
}

.no-results p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ── Product Details Modal ── */
/* Modal CSS removed - products navigate to product-details.html */

/* ── Products Grid Responsive Breakpoints ── */
/* Grid uses Bootstrap row/col — no grid-template-columns needed here */

@media (max-width: 480px) {
  .products-grid .product-card .product-img-wrap {
    height: 160px;
  }
}

@media (max-width: 640px) {
  .products-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .products-search-wrap {
    max-width: 100%;
    min-width: unset;
    width: 100%;
  }

  .products-sort-wrap {
    width: 100%;
  }

  .products-sort {
    width: 100%;
    min-width: unset;
  }

  .products-count-label {
    margin-left: 0;
  }
}

/* ── Related Products Slider ── */
.related-products-section {
  padding: 80px 0;
  background: var(--off-white, #f8f9f7);
  border-top: 1px solid rgba(0, 102, 255, 0.12);
}

/* ── Section Header — matches site-wide style ── */
.related-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.related-section-header .section-label {
  display: block;
  margin-bottom: 14px;
}

.related-section-header .section-subtitle {
  margin: 16px auto 0;
  max-width: 480px;
}

/* ── Swiper wrapper — overflow visible so hover shadow shows ── */
.related-swiper-wrap {
  position: relative;
  overflow: hidden;
}

.related-swiper {
  /* overflow visible: lets translateY(-10px) show without clipping */
  overflow: visible;
  /* clip only horizontally so cards don't bleed left/right */
  clip-path: inset(0 0 -60px 0);
  padding-bottom: 12px;
}

/* Equal-height slides */
.related-swiper .swiper-wrapper {
  align-items: stretch;
}

.related-swiper .swiper-slide {
  display: flex;
  height: auto;
}

/* Card fills slide */
.related-swiper .swiper-slide .product-card {
  width: 100%;
  flex: 1;
}

/* ── Nav & Pagination ── */
.related-swiper-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}

.related-swiper-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--green-primary, #2d7a4f);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
  flex-shrink: 0;
}

.related-swiper-btn:hover {
  background: var(--green-primary, #2d7a4f);
}

.related-swiper-btn:hover img {
  filter: invert(1);
}

.related-swiper-btn img {
  width: 16px;
  height: 16px;
  filter: invert(40%) sepia(80%) saturate(400%) hue-rotate(100deg);
  transition: filter 0.2s;
}

/* Disabled state for nav buttons (no loop) */
.related-swiper-btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.related-swiper-pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
}

.related-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--green-primary, #2d7a4f);
  opacity: 0.25;
  border-radius: 50%;
  transition:
    opacity 0.2s,
    transform 0.2s;
}

.related-swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .related-products-section {
    padding: 56px 0;
  }
  .related-section-header {
    margin-bottom: 36px;
  }
}
/* ============================================================
   FONT AWESOME ICON CLASSES — Centralized Icon Styling
   ============================================================ */

/* --- Top Header: email & phone links --- */
/* ============================================================
   FONT AWESOME ICON SYSTEM
   Colors are context-aware: match the background of the section
   NO translateX on icons — cards/rows may slide, icons stay still
   ============================================================ */

/* --- Top Header Bar (dark charcoal bg) --- */
.icon-top-header {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5); /* muted white on dark bar */
  vertical-align: middle;
  margin-right: 5px;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.top-header-left a:hover .icon-top-header {
  color: var(--green-primary); /* green accent on hover */
}

/* --- WhatsApp Float Button (green circle bg) --- */
.icon-whatsapp-float {
  font-size: 26px;
  color: #fff; /* white on green */
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* --- Mobile Nav Close Button (white drawer bg) --- */
.icon-mobile-close {
  font-size: 18px;
  color: var(--white); /* dark on white drawer */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
.mobile-nav-close:hover .icon-mobile-close {
  color: var(--green-primary);
}

/* --- Mobile Language Toggle (white drawer bg) --- */
.icon-lang-toggle {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.4); /* soft dark on white */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
.mobile-lang-toggle:hover .icon-lang-toggle {
  color: var(--green-primary);
}

/* --- Primary Buttons (solid green bg) → white icon --- */
.icon-btn-primary {
  font-size: 16px;
  color: #fff; /* white on solid green button */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

/* --- Product Card "View Details" link icon --- */
.icon-product-link {
  font-size: 13px;
  color: var(--green-primary); /* green to match link text */
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  transition:
    color 0.25s ease,
    filter 0.25s ease;
}
.product-link:hover .icon-product-link {
  color: #fff; /* white when bg turns green */
  filter: none;
}

/* --- Contact Form Input Icons (light bg inputs) --- */
.icon-form-input {
  color: var(--white);
  font-size: 16px;
}

/* --- Contact Submit Button Icons (on solid green bg) --- */
.icon-submit-btn {
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 1;
}
.icon-submit-arrow {
  font-size: 0.78rem;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* --- Contact Sidebar Info Icons (green circle bg) --- */
.icon-sidebar-contact {
  font-size: 16px;
  color: var(--green-primary);
  display: inline-block;
  vertical-align: middle;
}

/* --- WhatsApp CTA Card Icon (on green circle bg) --- */
.icon-wa-card {
  font-size: 28px;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
}

/* --- Overview Pillars (white card on white/light bg) --- */
.icon-pillar {
  font-size: 18px;
  color: var(--green-primary); /* green on white card */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease;
  line-height: 1;
}
.ov-pillar:hover .icon-pillar {
  color: var(--green-dark); /* deeper green on hover */
}

/* --- Statistics Section (charcoal dark bg) --- */
.icon-stat {
  font-size: 24px;
  color: var(--green-primary); /* green on dark — stands out */
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: color 0.25s ease;
}
.stat-item:hover .icon-stat {
  color: #fff; /* white on dark hover state */
}

/* --- VMG Cards (white card on light-gray bg) --- */
.icon-vmg {
  font-size: 24px;
  color: var(--green-primary); /* green on white card */
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: color 0.25s ease;
}
.vmg-card:hover .icon-vmg {
  color: #fff; /* white when card bg turns green */
}

/* --- Value Cards (white card on light-gray bg) --- */
.icon-value {
  font-size: 26px;
  color: var(--green-primary); /* green on white card */
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: color 0.25s ease;
}
.value-card:hover .icon-value {
  color: #fff; /* white when icon bg turns green */
}

/* --- Why Us Cards (glass card on white bg) --- */
.why-icon-img {
  font-size: 22px !important;
  color: var(--green-primary) !important; /* green on light glass card */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: auto !important;
  filter: none !important;
  transition: color 0.25s ease !important;
  position: relative;
  z-index: 1;
}
.why-card:hover .why-icon-img {
  color: #fff !important; /* white when icon bg turns green */
  filter: none !important;
}

/* --- Partners Navigation Arrows (on white/light bg) --- */
.icon-partner-nav {
  font-size: 14px;
  color: var(--green-primary); /* green on light button */
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: color 0.2s ease;
}
.partner-nav-btn:hover .icon-partner-nav {
  color: #fff; /* white when button bg turns green */
}

/* --- CTA Section Buttons (dark green bg, white-outlined buttons) --- */
.icon-btn-cta {
  font-size: 18px;
  color: var(--green-primary); /* green on white CTA button */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
.btn-white-gl:hover .icon-btn-cta {
  color: #fff; /* white when button inverts */
}

/* --- Footer Quick Links Chevrons (dark footer bg) --- */
.icon-footer-link {
  font-size: 11px;
  color: var(--green-primary); /* green on dark footer */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-right: 6px;
  transition: color 0.2s ease; /* NO translateX — icon stays still */
}
.footer-links a:hover .icon-footer-link {
  color: var(--green-light); /* lighter green on hover */
}

/* --- Footer Contact Icons (dark footer bg) --- */
.icon-footer-contact {
  font-size: 15px;
  color: var(--green-primary); /* green on dark footer */
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: color 0.2s ease;
}

/* --- Footer Shield (dark footer bg, very subtle) --- */
.icon-footer-shield {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3); /* very muted white on dark */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-right: 4px;
}

/* --- Intro Highlight Checkmarks (white/light bg) --- */
.icon-check {
  font-size: 14px;
  color: var(--green-primary); /* green on light background */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

/* ============================================================
   FIX: Center icons inside their wrapper divs
   ============================================================ */

/* Ensure stat-icon-wrap is flexbox center */
.stat-icon-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Ensure vmg-icon is flexbox center */
.vmg-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Ensure value-icon is flexbox center */
.value-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Ensure why-icon-wrap is flexbox center */
.why-icon-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Ensure ov-pillar-icon is flexbox center */
.ov-pillar-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Partner nav btn flex center */
.partner-nav-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Footer contact icon flex center */
.footer-contact-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* WhatsApp button flex center */
.whatsapp-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Mobile nav close flex center */
.mobile-nav-close {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.newsletter-form + p {
  align-items: center;
}

/* ============================================================
   FIXES — Dark Theme Alignment (added patch)
   ============================================================ */

/* 1. OVERVIEW SECTION — pillar cards on dark bg */
#overview {
  background: var(--space);
  padding: var(--section-padding);
}

.ov-pillar {
  background: var(--card-bg) !important;
  border: 1px solid var(--card-border) !important;
}

.ov-pillar:hover {
  border-color: rgba(0, 212, 255, 0.3) !important;
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.18) !important;
}

.ov-pillar-body strong {
  color: var(--white) !important;
}

.ov-pillar-body span {
  color: var(--muted) !important;
}

.ov-accent {
  background: linear-gradient(100deg, var(--blue) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Years badge on dark bg */
.ov-years-badge {
  background: rgba(10, 22, 40, 0.92) !important;
  border: 1.5px solid rgba(0, 102, 255, 0.35) !important;
  backdrop-filter: blur(20px);
}

.ov-years-num {
  color: var(--white) !important;
}

.ov-years-lbl {
  color: var(--muted) !important;
}

/* 2. ICON VISIBILITY IN INPUTS */
.form-input-icon img,
.form-input-icon i {
  filter: brightness(0) invert(1) !important;
  opacity: 0.5;
}
.gl-input:focus + .form-input-icon img,
.gl-input:focus ~ .form-input-icon i {
  opacity: 0.9;
}
/* svg icons in inputs */
.form-input-icon {
  opacity: 0.55;
  transition: opacity 0.2s;
}
.form-input-wrap:focus-within .form-input-icon {
  opacity: 0.9;
}

/* 3. CONTACT MAP SECTION text visibility */
#contact-map {
  background: var(--space) !important;
  padding: 100px 0 80px;
}

.contact-map-title {
  color: var(--white) !important;
}

.contact-map-subtitle {
  color: var(--muted) !important;
}

/* 4. CONTACT FORM — fix shadow with old green tint */
.contact-form-wrap {
  box-shadow:
    0 8px 48px rgba(0, 102, 255, 0.12),
    0 1px 4px rgba(0, 0, 0, 0.3) !important;
}

.contact-sidebar-block {
  box-shadow:
    0 6px 28px rgba(0, 102, 255, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.25) !important;
}

/* contact-sidebar-item label text */
.contact-sidebar-item strong {
  color: var(--muted-dark) !important;
}

/* contact-social hover */
.contact-social-btn:hover {
  background: rgba(0, 102, 255, 0.15) !important;
  color: var(--cyan) !important;
}

/* 5. COUNTER — stats section CSS (in case about page overrides style.css) */
#stats {
  background: var(--space-mid);
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0, 102, 255, 0.12);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 102, 255, 0.12);
}

.stat-cell {
  background: var(--card-bg);
  padding: 44px 32px;
  text-align: center;
  transition: background 0.3s;
}

.stat-cell:hover {
  background: rgba(0, 102, 255, 0.08);
}

.stat-big {
  font-family: "Outfit", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-big .plus {
  color: var(--cyan);
}

.stat-desc {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-line {
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  margin: 10px auto;
  border-radius: 2px;
}

/* 6. CHATBOT & FLOAT-WRAP — ensure z-index and visibility on all pages */
/* .chat-wrap,
.float-wrap {
  position: fixed !important;
  z-index: 9999 !important;
  display: block !important;
}

.chat-wrap {
  left: 22px;
  bottom: 24px;
}

.float-wrap {
  right: 22px;
  bottom: 24px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 20px;
} */

/* 7. VMG / VALUES cards */
.vmg-card,
.value-card {
  background: var(--card-bg) !important;
  border: 1px solid var(--card-border) !important;
  color: var(--white) !important;
}

.vmg-card:hover,
.value-card:hover {
  border-color: rgba(0, 212, 255, 0.35) !important;
  box-shadow: 0 12px 40px rgba(0, 102, 255, 0.18) !important;
}

/* 8. TIMELINE cards - handled in style.css */

/* 9. Map section .text-green span */
.text-green {
  background: linear-gradient(100deg, var(--blue) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── FORM INPUT ICONS — strong override for dark theme ── */
.form-input-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
  color: var(--cyan) !important;
  font-size: 14px !important;
  opacity: 0.6;
  filter: none !important;
  transition: opacity 0.2s;
}

.form-input-wrap:focus-within .form-input-icon {
  opacity: 1;
  color: var(--cyan) !important;
}

/* Form label dark theme */
.form-label {
  color: var(--muted) !important;
}

/* GL input left padding fix */
.gl-input {
  padding-left: 38px !important;
}
