@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800;900&display=swap');

:root {
  /* ── Base / Light — warmer, airier ── */
  --light: #eef3f8;
  --light-2: #f5f8fb;
  --light-3: #dce8f1;
  --light-4: #b8cfe0;
  --light-card: #ffffff;

  /* ── Cyan / Teal Accent — deeper & richer ── */
  --gold: #0878a8;
  --gold-bright: #0b95cc;
  --gold-vivid: #12aee0;
  --gold-light: #6fd2f5;
  --gold-pale: rgba(11, 149, 204, .09);

  /* ── Deep Navy ── */
  --steel: #071828;
  --steel-mid: #0d2640;
  --steel-dim: #2f5e7e;
  --steel-pale: rgba(7, 24, 40, .06);

  /* ── Dark (hero, footer) ── */
  --dark: #03090f;
  --dark-2: #071828;
  --dark-3: #091f30;
  --dark-4: #0d2640;
  --dark-card: #071828;

  /* ── Text ── */
  --white: #ffffff;
  --text-body: #1a3045;
  --text-mid: #426280;
  --text-dark: #030d18;

  /* ── Gradients ── */
  --grad-gold: linear-gradient(135deg, #0878a8 0%, #12aee0 50%, #0878a8 100%);
  --grad-steel: linear-gradient(135deg, #071828 0%, #0d2640 100%);
  --grad-dark: linear-gradient(135deg, #03090f 0%, #091f30 60%, #0d2640 100%);
  --grad-hero: linear-gradient(120deg, rgba(3, 9, 15, .97) 0%, rgba(7, 24, 40, .90) 55%, rgba(13, 38, 64, .50) 100%);
  --grad-card: linear-gradient(160deg, #ffffff 0%, #eef3f8 100%);
  --grad-steel-gold: linear-gradient(135deg, #071828 0%, #0d2640 50%, #0b95cc 100%);

  /* ── Shadows — softer & more atmospheric ── */
  --sh-sm: 0 2px 16px rgba(3, 9, 15, .07);
  --sh-md: 0 8px 36px rgba(3, 9, 15, .11);
  --sh-lg: 0 24px 64px rgba(3, 9, 15, .15);
  --sh-gold: 0 8px 32px rgba(11, 149, 204, .30);
  --sh-steel: 0 8px 32px rgba(7, 24, 40, .28);

  /* ── Misc ── */
  --font: "Cairo", sans-serif;
  --r: 8px;
  --r-lg: 16px;
  --r-xl: 22px;
  --tr: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--light);
  color: var(--text-body);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ol,
ul {
  padding-right: 0 !important;
  margin-bottom: 0 !important;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--tr);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--light-3);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-bright);
}

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.section-padding {
  padding: 100px 0;
}

.section-padding--sm {
  padding: 64px 0;
}

/* ══════════════════════════════════════════
   SECTION HEADER  (shared across all pages)
══════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-vivid);
  margin-bottom: 16px;
  justify-content: center;
}

.section-header__eyebrow::before,
.section-header__eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold-bright);
  opacity: .5;
}

.section-header__title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
}

.section-header__title span {
  color: var(--gold-vivid);
}

.section-header__rule {
  width: 50px;
  height: 3px;
  background: var(--grad-gold);
  border-radius: 2px;
  margin: 0 auto 18px;
}

.section-header__desc {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  background: var(--grad-gold);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  font-family: var(--font);
  border-radius: var(--r);
  transition: var(--tr);
}

.btn-gold:hover {
  box-shadow: 0 6px 24px rgba(13, 158, 212, .45);
  filter: brightness(1.12);
  color: #fff;
}

.btn-steel {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  background: var(--grad-steel);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  font-family: var(--font);
  border-radius: var(--r);
  transition: var(--tr);
}

.btn-steel:hover {
  box-shadow: 0 6px 24px rgba(7, 26, 46, .40);
  filter: brightness(1.15);
  color: #fff;
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 28px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .4);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font);
  border-radius: var(--r);
  transition: var(--tr);
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 28px;
  background: transparent;
  border: 2px solid var(--gold-bright);
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font);
  border-radius: var(--r);
  transition: var(--tr);
}

.btn-outline-gold:hover {
  background: var(--gold-bright);
  color: #fff;
  border-color: var(--gold-bright);
  box-shadow: 0 6px 24px rgba(13, 158, 212, .40);
}

/* ══════════════════════════════════════════
   ICON CARD  ← THE SINGLE REUSABLE CARD
   Used for: services, why-us, values, features
   Variants: .icon-card--center, .icon-card--num, .icon-card--gold-icon
══════════════════════════════════════════ */
.icon-card {
  background: var(--light-card);
  border: 1px solid rgba(7, 24, 40, .07);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    background 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(3, 9, 15, .06);
  cursor: default;
}

/* Glow sweep — slides from right to left on hover */
.icon-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent 0%,
      rgba(11, 149, 204, .07) 40%,
      rgba(18, 174, 224, .12) 55%,
      transparent 100%);
  transform: translateX(100%);
  transition: transform 0.55s ease;
  pointer-events: none;
  z-index: 0;
  border-radius: var(--r-lg);
}

/* Bottom accent bar */
.icon-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.icon-card:hover {
  border-color: rgba(11, 149, 204, .22);
  box-shadow:
    0 4px 0 rgba(11, 149, 204, .25),
    0 18px 48px rgba(3, 9, 15, .12),
    0 6px 20px rgba(11, 149, 204, .10);
  background: linear-gradient(160deg, #fff 0%, #f4fafd 100%);
  transform: translateY(-8px);
}

.icon-card:hover::before {
  transform: translateX(-100%);
}

.icon-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* make children sit above the sweep layer */
.icon-card>* {
  position: relative;
  z-index: 1;
}

/* Center variant (why-us style) */
.icon-card--center {
  text-align: center;
}

.icon-card--center .icon-card__icon {
  margin: 0 auto 20px;
}

/* Icon element */
.icon-card__icon {
  width: 62px;
  height: 62px;
  background: var(--gold-pale);
  border: 1px solid rgba(11, 149, 204, .18);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--gold-bright);
  margin-bottom: 22px;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-radius 0.35s ease;
}

.icon-card:hover .icon-card__icon {
  background: var(--grad-gold);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(11, 149, 204, .45), 0 2px 8px rgba(11, 149, 204, .3);
  transform: scale(1.12) rotate(-6deg);
  border-radius: 50%;
}

/* Title color shift on hover */
.icon-card:hover .icon-card__title {
  color: var(--gold);
}

/* Gold filled icon variant */
.icon-card--gold-icon .icon-card__icon {
  background: var(--grad-gold);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--sh-gold);
}

/* Steel icon variant */
.icon-card--steel-icon .icon-card__icon {
  background: var(--grad-steel);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--sh-steel);
}

/* Number variant (values style) */
.icon-card__num {
  font-size: 44px;
  font-weight: 900;
  color: rgba(11, 149, 204, .13);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.35s ease;
}

.icon-card:hover .icon-card__num {
  color: rgba(11, 149, 204, .28);
}

.icon-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.icon-card__desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ══════════════════════════════════════════
   PRELOADER
══════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity .5s ease, visibility .5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__logo img {
  width: 100px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

.preloader__bar {
  width: 160px;
  height: 3px;
  background: var(--light-4);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.preloader__bar::after {
  content: "";
  position: absolute;
  inset-block: 0;
  width: 50%;
  background: var(--grad-gold);
  border-radius: 2px;
  animation: loading 1.4s ease-in-out infinite;
}

@keyframes loading {
  0% {
    left: -50%
  }

  100% {
    left: 110%
  }
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.site-navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: transparent;
  /* backdrop-filter: blur(16px); */
  /* -webkit-backdrop-filter: blur(16px); */
  /* border-bottom: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .06); */
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 14px 0;
}

.site-navbar.scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .10);
  padding: 10px 0;
}

.site-navbar .navbar-nav-desktop a {
  color: #fff !important
}

.site-navbar.scrolled .navbar-nav-desktop a {
  color: var(--text-body) !important
}

.site-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar-brand img {
  height: 60px;
  width: auto;
  transition: var(--tr);
}

.scrolled .navbar-brand img {
  height: 55px;
}

.navbar-nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: auto;
}

.nav-link-custom {
  color: var(--text-body) !important;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 16px !important;
  border-radius: var(--r);
  position: relative;
  transition: var(--tr);
}

.nav-link-custom::after {
  content: "";
  position: absolute;
  bottom: 4px;
  right: 50%;
  left: 50%;
  height: 2px;
  background: var(--gold-vivid);
  border-radius: 1px;
  transition: var(--tr);
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--gold-vivid) !important;
  background: var(--gold-pale);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  right: 12px;
  left: 12px;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.navbar-toggler-custom {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: var(--gold-pale);
  border: 1px solid rgba(13, 158, 212, .25);
  border-radius: var(--r);
}

.navbar-toggler-custom span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-bright);
  border-radius: 1px;
  transition: var(--tr);
}

.navbar-toggler-custom.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler-custom.open span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler-custom.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1002;
  width: 300px;
  height: 100%;
  background: var(--light-2);
  border-right: 1px solid rgba(13, 158, 212, .15);
  box-shadow: 4px 0 30px rgba(0, 0, 0, .1);
  padding: 28px 24px;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer__close {
  align-self: flex-end;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  border: 1px solid rgba(13, 158, 212, .2);
  border-radius: var(--r);
  color: var(--gold-bright);
  font-size: 18px;
  margin-bottom: 12px;
}

.mobile-drawer__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text-body);
  font-weight: 600;
  font-size: 16px;
  border-right: 3px solid transparent;
  transition: var(--tr);
}

.mobile-drawer__link i {
  color: var(--gold);
  font-size: 17px;
}

.mobile-drawer__link:hover,
.mobile-drawer__link.active {
  background: var(--gold-pale);
  border-right-color: var(--gold);
  color: var(--text-dark);
}

.mobile-drawer__bottom {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .06);
}

.mobile-drawer__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  border-radius: var(--r);
  margin-bottom: 12px;
}

.mobile-drawer__phones {
  text-align: center;
  color: var(--text-mid);
  font-size: 13px;
  direction: ltr;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero__swiper {
  flex: 1;
  min-height: 100vh;
  height: 100vh;
  width: 100%;
}

.hero__swiper .swiper-wrapper {
  height: 100%;
}

.hero__slide {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 60px;
}

.hero__slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
  will-change: transform;
}

.swiper-slide-active .hero__slide-bg {
  transform: scale(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--grad-hero);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 740px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(11, 149, 204, .13);
  border: 1px solid rgba(11, 149, 204, .28);
  border-radius: 50px;
  padding: 7px 22px;
  color: var(--gold-vivid);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 24px;
}

.hero__title span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__desc {
  font-size: 18px;
  color: rgba(255, 255, 255, .78);
  max-width: 560px;
  line-height: 1.9;
  margin-bottom: 42px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Stats bar — full page width, no container cap */
.hero__stats {
  /* position: absolute; */
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 3;
  background: rgba(4, 13, 23, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 2px solid rgba(13, 158, 212, .35);
}

.hero__stats-inner {
  display: flex;
  justify-content: stretch;
  width: 100%;
}

.hero__stat {
  flex: 1;
  text-align: center;
  padding: 26px 20px;
  border-left: 1px solid rgba(255, 255, 255, .07);
  transition: background 0.3s ease;
  cursor: default;

}



.hero__stat:last-child {
  border-left: none;
}

.hero__stat:hover {
  background: rgba(13, 158, 212, .12);
}

.hero__stat-number {
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 900;
  color: var(--gold-vivid);
  line-height: 1;
  transition: color 0.3s ease;
}

.hero__stat:hover .hero__stat-number {
  color: #fff;
}

.hero__stat-number::after {
  /*content: "+"*/
}

.hero__stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  margin-top: 6px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.hero__stat:hover .hero__stat-label {
  color: rgba(255, 255, 255, .85);
}

.hero__stat-icon {
  font-size: 25px;
  color: rgba(13, 158, 212, .7);
  margin-bottom: 6px;
  transition: color 0.3s ease;
  display: none;

}

@media (min-width:992px) {
  .hero__stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .hero__stat-icon {
    display: none;
    font-size: 35px;

  }
}

.hero__stat:hover .hero__stat-icon {
  color: var(--gold-vivid);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, .35);
  font-size: 22px;
  animation: bounce 2s ease infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(6px)
  }
}

/* ══════════════════════════════════════════
   ABOUT PREVIEW (index)
══════════════════════════════════════════ */
.about-preview {
  background: var(--light-2);
}

.about-preview__visual {
  position: relative;
}

.about-preview__img-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.about-preview__img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-preview__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--grad-gold);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--sh-gold);
  color: #fff;
}

@media (max-width:991.9px) {
  .about-preview__badge {
    display: none;
  }
}

.about-preview__badge-num {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.about-preview__badge-text {
  font-size: 12px;
  font-weight: 700;
  margin-top: 4px;
  opacity: .85;
}

.about-preview__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-vivid);
  margin-bottom: 14px;
}

.about-preview__title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 18px;
}

.about-preview__title span {
  color: var(--gold-vivid);
}

.about-preview__desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 28px;
}

.about-preview__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.about-preview__feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-preview__feature-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-pale);
  border: 1px solid rgba(13, 158, 212, .2);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold-bright);
  flex-shrink: 0;
}

.about-preview__feature-text {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ══════════════════════════════════════════
   FEATURED PRODUCTS SWIPER (index)
══════════════════════════════════════════ */
.featured-products {
  background: var(--light-3);
}

/* Give swiper breathing room so box-shadow isn't clipped */
.featured-products .swiper {
  padding: 6px 4px 16px !important;
  overflow: visible !important;
  clip-path: none !important;
}

.product-card {
  background: var(--light-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(3, 9, 15, .07);
  transition:
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  height: 100%;
  border: 1px solid rgba(7, 24, 40, .06);
  /* NO translateY — causes clip in swiper */
}

.product-card:hover {
  box-shadow:
    0 3px 6px rgba(3, 9, 15, .13),
    0 3px 6px rgba(11, 149, 204, .13);
  border-color: rgba(11, 149, 204, .22);
}

.product-card__img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}

.product-card:hover .product-card__img img {
  transform: scale(1.3) rotate(5deg);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 9, 15, .55) 0%, transparent 60%);
  transition: opacity 0.4s ease;
}

.product-card:hover .product-card__overlay {
  opacity: 0.8;
}

.product-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  background: var(--grad-gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.product-card__body {
  padding: 22px 20px;
  transition: background 0.4s ease;
}

.product-card:hover .product-card__body {
  background: linear-gradient(160deg, #fff 0%, #f4fafd 100%);
}

.product-card__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.product-card:hover .product-card__title {
  color: var(--gold);
}

.product-card__desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gold-bright);
  transition: gap 0.3s ease, color 0.3s ease;
}

.product-card__link:hover {
  color: var(--gold);
  gap: 12px;
}

.swiper.products-swiper {
  overflow: hidden !important;
}

.products-swiper-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.swiper-btn-custom {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--light-card);
  border: 1px solid rgba(13, 158, 212, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold-bright);
  transition: var(--tr);
  box-shadow: var(--sh-sm);
}

.swiper-btn-custom:hover {
  background: var(--grad-gold);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--sh-gold);
}

/* ══════════════════════════════════════════
   SERVICES SECTION  (uses .icon-card)
══════════════════════════════════════════ */
.services-preview {
  background: var(--light-2);
}

.services-page {
  background: var(--light);
}

/* ══════════════════════════════════════════
   WHY US SECTION  (uses .icon-card--center --gold-icon)
══════════════════════════════════════════ */
.why-us {
  background: linear-gradient(160deg, #ddeaf4 0%, #c8dce9 40%, #d4e6f0 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(7, 24, 40, .04) 0%, transparent 70%);
  pointer-events: none;
}

.why-us::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(11, 149, 204, .07) 0%, transparent 65%);
  pointer-events: none;
}

/* ══════════════════════════════════════════
   CTA BANNER  (shared across all pages)
══════════════════════════════════════════ */
.cta-banner {
  background: var(--light-3);
}

.cta-banner__inner {
  background: var(--grad-steel-gold);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner__content {
  flex: 1;
}

.cta-banner__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 10px;
}

.cta-banner__title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.cta-banner__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  max-width: 480px;
}

.cta-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ══════════════════════════════════════════
   PAGE HERO  (inner pages)
══════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  background: var(--grad-dark);
  min-height: 340px;
  display: flex;
  align-items: center;
}

.page-hero .container>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--grad-hero);
}

.page-hero__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-hero__title span {
  color: var(--gold-vivid);
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
}

.page-hero__breadcrumb a {
  color: rgba(255, 255, 255, .5);
  transition: var(--tr);
}

.page-hero__breadcrumb a:hover {
  color: var(--gold-vivid);
}

.page-hero__breadcrumb .sep {
  color: rgba(255, 255, 255, .25);
}

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-page {
  background: var(--light-2);
}

.about-page__img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.about-page__img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* ══════════════════════════════════════════
   VALUES SECTION (about page - uses .icon-card--num)
══════════════════════════════════════════ */
.values-section {
  background: var(--light-3);
}

/* ══════════════════════════════════════════
   TEAM SECTION (about page)
══════════════════════════════════════════ */
.team-card {
  background: var(--light-card);
  border: 1px solid rgba(7, 24, 40, .06);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 2px 20px rgba(3, 9, 15, .06);
}

.team-card:hover {
  box-shadow: 0 20px 50px rgba(3, 9, 15, .12), 0 4px 16px rgba(11, 149, 204, .10);
  border-color: rgba(11, 149, 204, .25);
  transform: translateY(-6px);
}

.team-card__img {
  height: 220px;
  overflow: hidden;
}

.team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.team-card:hover .team-card__img img {
  transform: scale(1.05);
}

.team-card__body {
  padding: 20px;
}

.team-card__name {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.team-card__role {
  font-size: 13px;
  color: var(--gold-bright);
  font-weight: 600;
}

/* ══════════════════════════════════════════
   PRODUCTS PAGE
══════════════════════════════════════════ */
.products-page {
  background: var(--light);
}

.product-grid-card {
  background: var(--light-card);
  border: 1px solid rgba(7, 24, 40, .06);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  height: 100%;
  box-shadow: 0 2px 20px rgba(3, 9, 15, .06);
}

.product-grid-card:hover {
  box-shadow: 0 20px 50px rgba(3, 9, 15, .12), 0 4px 16px rgba(11, 149, 204, .10);
  border-color: rgba(11, 149, 204, .25);
  transform: translateY(-6px);
}

.product-grid-card__img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.product-grid-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.product-grid-card:hover .product-grid-card__img img {
  transform: scale(1.06);
}

.product-grid-card__body {
  padding: 22px;
}

.product-grid-card__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.product-grid-card__desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.product-grid-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--gold-pale);
  border: 1px solid rgba(13, 158, 212, .2);
  border-radius: var(--r);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gold-bright);
  transition: var(--tr);
}

.product-grid-card__link:hover {
  background: var(--grad-gold);
  color: #fff;
  border-color: transparent;
}

/* ══════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════ */
.services-hero-strip {
  background: var(--grad-steel);
  padding: 32px 0;
}

.service-process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.service-process-step:last-child {
  border-bottom: none;
}

.service-process-step__num {
  width: 54px;
  height: 54px;
  background: var(--grad-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  box-shadow: var(--sh-gold);
}

.service-process-step__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.service-process-step__desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
}



/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-page {
  background: var(--light);
}

.contact-info-card {
  background: var(--light-card);
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  height: 100%;
  box-shadow: var(--sh-sm);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.contact-info__item:last-child {
  border-bottom: none;
}

.contact-info__icon {
  width: 46px;
  height: 46px;
  background: var(--gold-pale);
  border: 1px solid rgba(13, 158, 212, .2);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold-bright);
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-info__value {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-info__value a {
  color: var(--text-dark);
}

.contact-info__value a:hover {
  color: var(--gold-bright);
}

.contact-form-card {
  background: var(--light-card);
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: var(--sh-sm);
}

.contact-form-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contact-form-card>p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.form-label-custom {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-body);
  margin-bottom: 8px;
}

.form-control-custom {
  width: 100%;
  background: var(--light-3);
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: var(--r);
  padding: 12px 16px;
  color: var(--text-dark);
  font-family: var(--font);
  font-size: 14.5px;
  transition: var(--tr);
  outline: none;
  direction: rtl;
}

.form-control-custom:focus {
  border-color: rgba(13, 158, 212, .5);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(13, 158, 212, .1);
}

.form-control-custom::placeholder {
  color: var(--text-mid);
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 130px;
}

.contact-form-group {
  margin-bottom: 20px;
}

.wa-direct-card {
  background: linear-gradient(135deg, #edfff3 0%, #d8f9e7 100%);
  border: 1px solid rgba(37, 211, 102, .2);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.wa-direct-icon {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  flex-shrink: 0;
}

.wa-direct-text h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.wa-direct-text p {
  font-size: 13.5px;
  color: var(--text-mid);
  margin-bottom: 14px;
}

.btn-wa-big {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--r);
  transition: var(--tr);
}

.btn-wa-big:hover {
  background: #1eba57;
  transform: translateY(-1px);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .35);
}

/* ══════════════════════════════════════════
   MAP EMBED
══════════════════════════════════════════ */
.map-wrapper {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  height: 380px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--dark-2);
  border-top: 3px solid var(--gold-bright);
  padding: 60px 0 0;
}

.footer__logo img {
  height: 100px;
}

.footer__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.85;
  margin-bottom: 15px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--r);
  font-size: 16px;
  color: rgba(255, 255, 255, .5);
  transition: var(--tr);
}

.footer__social-link:hover {
  background: var(--grad-gold);
  color: #fff;
  border-color: transparent;
}

.footer__heading {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  transition: var(--tr);
}

.footer__link i {
  font-size: 11px;
  color: var(--gold);
}

.footer__link:hover {
  color: var(--gold-bright);
  padding-right: 4px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer__contact-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-pale);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--gold-bright);
  flex-shrink: 0;
}

.footer__contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__contact-text strong {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .4);
}

.footer__contact-text span,
.footer__contact-text a {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
}

.footer__contact-text a:hover {
  color: var(--gold-bright);
}

.footer__bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 0 !important;
}

.footer__copy span {
  color: var(--gold-bright);
}

/* ══════════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════════ */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  transition: var(--tr);
  animation: floatPulse 3s ease-in-out infinite;
}

@keyframes floatPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, .45)
  }

  50% {
    box-shadow: 0 8px 36px rgba(37, 211, 102, .7)
  }
}

.float-whatsapp:hover {
  transform: scale(1.08);
  color: #fff;
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  background: var(--grad-gold);
  color: #fff;
  border: none;
  box-shadow: var(--sh-gold);
  will-change: transform, opacity;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 10px 30px rgba(11, 149, 204, .5);
  transform: translateY(-3px);
}



/* ══════════════════════════════════════════
   AOS OVERRIDES
══════════════════════════════════════════ */
[data-aos] {
  transition-duration: 550ms !important;
}

[data-aos-delay="0"] {
  transition-delay: 0ms !important;
}

[data-aos-delay="80"] {
  transition-delay: 80ms !important;
}

[data-aos-delay="100"] {
  transition-delay: 100ms !important;
}

[data-aos-delay="160"] {
  transition-delay: 140ms !important;
}

[data-aos-delay="240"] {
  transition-delay: 180ms !important;
}

.btn-nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: #25D366;
  color: #fff !important;
  font-weight: 700;
  font-size: 13.5px;
  border-radius: 50px;
  transition: var(--tr);
  white-space: nowrap;
}

.btn-nav-wa:hover {
  background: #1eba57;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
}


/* ── Contact-page extras ── */
.contact-form-section {
  background: var(--light);
}

.contact-card {
  background: var(--light-card);
  border: 1px solid var(--light-4);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  box-shadow: var(--sh-md);
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--light-3);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--r);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold-bright);
}

.contact-info-item__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}

.contact-info-item__value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-info-item__value a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--tr);
}

.contact-info-item__value a:hover {
  color: var(--gold-bright);
}

/* Form */
.form-label-custom {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 7px;
  display: block;
}

.form-control-custom {
  width: 100%;
  border: 1.5px solid var(--light-4);
  border-radius: var(--r);
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-body);
  background: var(--light-2);
  outline: none;
  transition: var(--tr);
  direction: rtl;
}

.form-control-custom:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(200, 136, 31, .12);
  background: var(--white);
}

.form-control-custom::placeholder {
  color: var(--text-mid);
  font-size: 14px;
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 140px;
}

.form-group-custom {
  margin-bottom: 20px;
}

.form-success-msg {
  display: none;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  border-radius: var(--r);
  padding: 16px 20px;
  color: #065f46;
  font-weight: 600;
  font-size: 15px;
  margin-top: 16px;
}

.form-success-msg.show {
  display: block;
}

/* WhatsApp button */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--tr);
  background: #25d366;
  color: #fff;
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

.btn-wa:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
}

/* Map container */
.map-container {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--light-4);
  height: 340px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Social quick links */
.social-quick {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-quick__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--tr);
  border: 1.5px solid var(--light-4);
  color: var(--text-dark);
  background: var(--white);
}

.social-quick__link:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  background: var(--gold-pale);
}

.social-quick__link i {
  font-size: 18px;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* ══════════════════════════════════════
         PRODUCT DETAILS — PAGE-SPECIFIC STYLES
      ══════════════════════════════════════ */

/* ── Breadcrumb page hero ── */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
}

.page-hero .hero-bg-img {
  position: absolute;
  inset: 0;
}

.page-hero .hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(3, 9, 15, 0.93) 0%,
      rgba(7, 24, 40, 0.85) 60%,
      rgba(13, 38, 64, 0.65) 100%);
}

.page-hero__title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.page-hero__title span {
  color: var(--gold-vivid);
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
}

.page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero__breadcrumb a:hover {
  color: var(--gold-bright);
}

.page-hero__breadcrumb .sep {
  color: rgba(255, 255, 255, 0.3);
}

/* ── PRODUCT INTRO ── */
.product-intro {
  background: var(--light-2);
}

/* ── Hero image banner ── */
.pi-hero {
  margin-bottom: 0;
}

.pi-hero__img-wrap {
  position: relative;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  overflow: hidden;
  height: 420px;
  box-shadow: var(--sh-lg);
}

.pi-hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.7s ease;
}

.pi-hero__img-wrap:hover img {
  transform: scale(1.03);
}

.pi-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(3, 9, 15, 0.88) 0%,
    rgba(3, 9, 15, 0.45) 45%,
    rgba(3, 9, 15, 0.10) 100%
  );
  pointer-events: none;
}

.pi-hero__badge {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-gold);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  box-shadow: var(--sh-gold);
}

.pi-hero__caption {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 28px 36px;
}

.pi-hero__title {
  font-size: clamp(22px, 3.2vw, 38px);
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 14px;
}

.pi-hero__title span {
  color: var(--gold-light);
}

.pi-hero__rule {
  width: 54px;
  height: 3px;
  background: var(--grad-gold);
  border-radius: 2px;
}

/* ── Body: desc + stat cards ── */
.pi-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}

.pi-body__desc {
  padding: 36px 40px;
  border-left: 1px solid var(--light-3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.pi-body__desc p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 2;
  margin: 0;
}

/* ── Stat cards grid ── */
.pi-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.pi-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px 20px;
  text-align: center;
  border-bottom: 1px solid var(--light-3);
  border-right: 1px solid var(--light-3);
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}

.pi-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pi-stat:hover::before {
  opacity: 0.06;
}

.pi-stat:nth-child(2),
.pi-stat:nth-child(4) {
  border-right: none;
}

.pi-stat:nth-child(3),
.pi-stat:nth-child(4) {
  border-bottom: none;
}

.pi-stat__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold-bright);
  position: relative;
}

.pi-stat__num {
  font-size: 30px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  position: relative;
  color: var(--gold-bright);
}

.pi-stat__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-mid);
  position: relative;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .pi-hero__img-wrap {
    height: 280px;
  }
  .pi-hero__caption {
    padding: 20px 22px;
  }
  .pi-body {
    grid-template-columns: 1fr;
  }
  .pi-body__desc {
    border-left: none;
    border-bottom: 1px solid var(--light-3);
    padding: 28px 24px;
  }
  .pi-stats {
    grid-template-columns: 1fr 1fr;
  }
}


/* ── SECTION: Description bullets ── */
.product-features-section {
  background: var(--light-2);
}

.feature-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));

  gap: 20px;
}

.feature-point {
  background: var(--white);
  border: 1px solid rgba(7, 24, 40, 0.07);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--tr);
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
}

.feature-point::before {
  content: "";
  position: absolute;
  transform: translateX(100%);
  pointer-events: none;
  z-index: 0;
  inset: 0px;
  background: linear-gradient(120deg, transparent 0%, rgba(11, 149, 204, 0.07) 40%, rgba(18, 174, 224, 0.12) 55%, transparent 100%);
  transition: transform 0.55s;
  border-radius: var(--r-lg);
}

/* .feature-point::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
} */

.feature-point:hover::before {
    transform: translateX(-100%);
}

.feature-point:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: rgba(11, 149, 204, 0.2);
}

.feature-point:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.feature-point__num {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--grad-gold);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  box-shadow: var(--sh-gold);
}

.feature-point__text {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  padding-top: 10px;
  line-height: 1.5;
}

/* ── SECTION: Video ── */
.product-video-section {
  background: var(--steel-mid);
}

.product-video-section .section-header__title {
  color: #fff;
}

.product-video-section .section-header__eyebrow {
  color: var(--gold-light);
}

.product-video-section .section-header__desc {
  color: rgba(255, 255, 255, 0.65);
}

.video-wrapper {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  aspect-ratio: 16/9;
  background: var(--dark);
  cursor: pointer;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Custom video placeholder (shown before user clicks play) */
.video-placeholder {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  aspect-ratio: 16/9;
  background: var(--dark-3);
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.video-placeholder__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 9, 15, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--grad-gold);
  border: 4px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 40px rgba(11, 149, 204, 0.5);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  animation: pulseBorderVideo 2.5s ease-in-out infinite;
}

.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 50px rgba(11, 149, 204, 0.7);
}

@keyframes pulseBorderVideo {

  0%,
  100% {
    box-shadow: 0 8px 40px rgba(11, 149, 204, 0.5);
  }

  50% {
    box-shadow:
      0 8px 60px rgba(11, 149, 204, 0.8),
      0 0 0 14px rgba(11, 149, 204, 0.12);
  }
}

.video-placeholder__label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 700;
}

/* ── SECTION: Gallery ── */
.product-gallery-section {
  background: var(--light);
}

/* Swiper Gallery */
.gallery-swiper-wrap {
  position: relative;
}

.gallery-main-swiper {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.gallery-main-swiper .swiper-slide img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.gallery-thumbs-swiper {
  margin-top: 16px;
}

.gallery-thumbs-swiper .swiper-slide {
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.3s;
  border: 2px solid transparent;
}

.gallery-thumbs-swiper .swiper-slide img {
  width: 100%;
  height: 90px;
  object-fit: cover;
}

.gallery-thumbs-swiper .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--gold-bright);
  box-shadow: 0 4px 16px rgba(11, 149, 204, 0.35);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--r-lg);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.8);
}

.lightbox__close {
  position: fixed;
  top: 20px;
  left: 20px;
  /* RTL: close on left */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: none;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox__nav:hover {
  background: rgba(11, 149, 204, 0.5);
}

.lightbox__nav--prev {
  right: 20px;
}

.lightbox__nav--next {
  left: 20px;
}

/* ── SECTION: Contact/CTA sidebar ── */
.product-contact-card {
  background: var(--white);
  border: 1px solid var(--light-3);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  box-shadow: var(--sh-md);
  position: sticky;
  top: 100px;
}

.product-contact-card__title {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.product-contact-card__sub {
  font-size: 13.5px;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.contact-phone-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--light-2);
  border: 1px solid var(--light-3);
  border-radius: var(--r);
  padding: 14px 18px;
  margin-bottom: 12px;
  transition: var(--tr);
}

.contact-phone-item:hover {
  border-color: var(--gold-bright);
  background: var(--gold-pale);
}

.contact-phone-item__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--gold-pale);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold-bright);
}

.contact-phone-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-phone-item__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-mid);
}

.contact-phone-item__num {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  direction: ltr;
}

.contact-phone-item__num a {
  color: inherit;
}

.contact-phone-item__num a:hover {
  color: var(--gold-bright);
}

.divider-with-text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 600;
  margin: 20px 0;
}

.divider-with-text::before,
.divider-with-text::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--light-3);
}

/* ── Stage Progress ── */
.stages-timeline {
  position: relative;
  padding-right: 8px;
}

.stages-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 7px;
  width: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  opacity: 0.35;
}

.stage-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 22px;
  position: relative;
}

.stage-item:last-child {
  margin-bottom: 0;
}

.stage-item__dot {
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  background: var(--grad-gold);
  box-shadow: 0 0 0 4px rgba(11, 149, 204, 0.15);
  margin-top: 4px;
  margin-right: -8px;
  /* pull onto the line */
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.stage-item:hover .stage-item__dot {
  transform: scale(1.35);
  box-shadow: 0 0 0 6px rgba(11, 149, 204, 0.25);
}

.stage-item__body {
  flex: 1;
}

.stage-item__num {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.stage-item__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.stage-item__desc {
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 2px;
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .product-contact-card {
    position: static;
    margin-top: 40px;
  }

  .gallery-main-swiper .swiper-slide img {
    height: 280px;
  }

  .gallery-thumbs-swiper .swiper-slide img {
    height: 70px;
  }

  .page-hero {
    min-height: 280px;
    padding-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .feature-points-grid {
    grid-template-columns: 1fr;
  }

  .product-cta-row {
    flex-direction: column;
  }

  .product-cta-row .btn-gold,
  .product-cta-row .btn-outline-gold {
    width: 100%;
    justify-content: center;
  }
}