/* ===== VARIABLES ===== */
:root {
  --primary: #1ABAB2;
  --primary-dark: #00A09A;
  --secondary: #1ABAB2;
  --accent: #1ABAB2;
  --accent-dark: #00A09A;
  --dark: #0D1F2D;
  --dark2: #1E293B;
  --mid: #475569;
  --muted: #94A3B8;
  --bg: #F8FAFC;
  --bg-alt: #F1F5F9;
  --white: #ffffff;
  --border: #E2E8F0;
  --shadow: 0 4px 24px rgba(13,31,45,0.10);
  --shadow-lg: 0 12px 48px rgba(13,31,45,0.16);
  --r: 16px;
  --r-sm: 10px;
  --tr: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Heebo', sans-serif;
  direction: rtl;
  color: var(--dark2);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== SECTION BASE ===== */
.section { padding: 90px 0; }
.bg-alt { background: var(--bg-alt); }
.bg-dark { background: var(--dark); }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.section-header p { color: var(--mid); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.section-header .text-white { color: var(--white); }

@keyframes tag-shine {
  0%   { background-position: -300% center; }
  100% { background-position: 300% center; }
}
@keyframes tag-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26,186,178,0); border-color: rgba(26,186,178,0.35); }
  50%       { box-shadow: 0 0 14px rgba(26,186,178,0.3); border-color: rgba(26,186,178,0.7); }
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(90deg,
    rgba(26,186,178,0.07) 0%,
    rgba(26,186,178,0.18) 35%,
    rgba(255,255,255,0.55) 50%,
    rgba(26,186,178,0.18) 65%,
    rgba(26,186,178,0.07) 100%
  );
  background-size: 300% 100%;
  color: var(--primary);
  border: 1px solid rgba(26,186,178,0.35);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 22px;
  border-radius: 999px;
  margin-bottom: 14px;
  animation: tag-shine 5s infinite linear, tag-glow 3s infinite ease-in-out;
}
.section-tag::before {
  content: '✦';
  font-size: 0.6rem;
  opacity: 0.75;
  animation: sparkle 2.5s infinite ease-in-out;
}
.section-tag.light {
  background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.06));
  background-size: 300% 100%;
  color: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.25);
  animation: tag-shine 5s infinite linear;
}
.section-tag.light::before { color: rgba(255,255,255,0.7); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Heebo', sans-serif;
  transition: var(--tr);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(14,165,233,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(14,165,233,0.45); }
.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.btn-outline-white {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.22); border-color: white; }
.btn-block { width: 100%; justify-content: center; }
.btn-nav {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--tr);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-wa-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 12px;
  transition: var(--tr);
}
.btn-wa-sm:hover { background: #128C7E; }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--tr);
}
#header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.logo-text-mark {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.5px;
}
.logo-text-mark span { color: var(--primary); }
.logo-img {
  height: 62px;
  width: 62px;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  background: transparent;
  padding: 0;
  box-shadow: 0 3px 18px rgba(0,0,0,0.45), 0 0 0 1.5px rgba(26,186,178,0.35);
}
@media (max-width: 640px) {
  .logo-img { height: 52px; width: 52px; }
}

@media (min-width: 901px) {
  #nav { flex: 1; display: flex; justify-content: center; align-items: center; }
}
.nav-list { display: flex; align-items: center; gap: 6px; }
.nav-list a {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--tr);
}
.nav-list a:hover { color: var(--primary); background: rgba(255,255,255,0.1); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: 8px;
  transition: var(--tr);
}
.hamburger span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: var(--tr);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--white);
  z-index: 1100;
  padding: 30px 28px;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-close {
  font-size: 1.4rem;
  color: var(--mid);
  margin-bottom: 20px;
  display: block;
  text-align: left;
}
.mobile-logo {
  margin-bottom: 28px;
  text-align: center;
}
.mobile-logo-img {
  height: 100px;
  width: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-link {
  display: block;
  padding: 14px 16px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark2);
  border-radius: var(--r-sm);
  transition: var(--tr);
}
.mobile-link:hover, .mobile-link:active { background: var(--bg-alt); color: var(--primary); }
.mobile-link-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white !important;
  text-align: center;
  margin-top: 8px;
}
.mobile-contact {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-weight: 600;
  color: var(--mid);
}
.mobile-contact a { color: var(--primary); }
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.overlay.show { opacity: 1; pointer-events: all; }

/* ===== HERO ===== */
#hero { padding-top: 70px; }
.hero-swiper, .hero-slide { height: calc(100vh - 70px); min-height: 560px; }
.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #0C1445;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.hero-ph-label {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: 999px;
  z-index: 3;
  white-space: nowrap;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 999px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}
.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 600;
  margin-bottom: 14px;
  opacity: 0.95;
}
.hero-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto 36px;
  opacity: 0.85;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.swiper-button-next, .swiper-button-prev {
  color: white;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--tr);
}
.swiper-button-next:hover, .swiper-button-prev:hover { background: rgba(255,255,255,0.28); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 16px; font-weight: 900; }
.hero-pagination .swiper-pagination-bullet { background: white; opacity: 0.5; }
.hero-pagination .swiper-pagination-bullet-active { opacity: 1; width: 24px; border-radius: 4px; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text .section-tag { margin-bottom: 14px; }
.about-text h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; color: var(--dark); margin-bottom: 20px; line-height: 1.3; }
.about-text p { color: var(--mid); margin-bottom: 16px; font-size: 1.05rem; }
@keyframes stat-shimmer {
  0%   { background-position: -250% center; }
  100% { background-position: 250% center; }
}
@keyframes stat-glow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(13,31,45,0.07);
    border-color: var(--border);
  }
  50% {
    box-shadow: 0 10px 36px rgba(26,186,178,0.22), 0 0 0 1px rgba(26,186,178,0.18);
    border-color: rgba(26,186,178,0.38);
  }
}
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  40%, 60% { opacity: 1; transform: scale(1) rotate(180deg); }
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.stat-item {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  text-align: center;
  padding: 26px 12px;
  animation: stat-glow 3.5s infinite ease-in-out;
  transition: transform 0.3s ease;
}
.stat-item:nth-child(2) { animation-delay: 1.1s; }
.stat-item:nth-child(3) { animation-delay: 2.2s; }
.stat-item:hover { transform: translateY(-4px); }
.stat-item::before {
  content: '✦';
  position: absolute;
  top: 9px; left: 10px;
  font-size: 9px;
  color: var(--primary);
  animation: sparkle 3s infinite ease-in-out;
}
.stat-item:nth-child(2)::before { animation-delay: 1.1s; }
.stat-item:nth-child(3)::before { animation-delay: 2.2s; }
.stat-item::after {
  content: '✦';
  position: absolute;
  bottom: 10px; right: 9px;
  font-size: 6px;
  color: #63d471;
  animation: sparkle 3s infinite ease-in-out;
  animation-delay: 1.5s;
}
.stat-item:nth-child(2)::after { animation-delay: 2.6s; }
.stat-item:nth-child(3)::after { animation-delay: 0.4s; }
.stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(90deg,
    var(--primary) 0%,
    #63d471 28%,
    #c0f4ef 50%,
    var(--primary) 72%,
    #00c9c1 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: stat-shimmer 4s infinite linear;
  margin-bottom: 6px;
}
.stat-item:nth-child(2) .stat-num { animation-delay: 1.3s; }
.stat-item:nth-child(3) .stat-num { animation-delay: 2.6s; }
.stat-label { font-size: 0.82rem; color: var(--mid); font-weight: 700; letter-spacing: 0.3px; }
.about-visual {
  position: relative;
}
.about-visual::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: -14px;
  width: 75%;
  height: 75%;
  border: 2px solid rgba(26,186,178,0.2);
  border-radius: 20px;
  z-index: 0;
  pointer-events: none;
}
.about-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(13,31,45,0.18);
  position: relative;
  z-index: 1;
  display: block;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 28px;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  transition: height 0.4s ease;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-icon {
  width: 74px; height: 74px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: var(--tr);
}
.service-card:hover .svc-icon { transform: scale(1.08); }
.svc-icon.blue   { background: linear-gradient(135deg,#EFF6FF,#DBEAFE); color:#0EA5E9; }
.svc-icon.green  { background: linear-gradient(135deg,#F0FDF4,#DCFCE7); color:#10B981; }
.svc-icon.cyan   { background: linear-gradient(135deg,#ECFEFF,#CFFAFE); color:#06B6D4; }
.svc-icon.purple { background: linear-gradient(135deg,#FAF5FF,#EDE9FE); color:#7C3AED; }
.svc-icon.orange { background: linear-gradient(135deg,#FFF7ED,#FED7AA); color:#F97316; }
.svc-icon.teal   { background: linear-gradient(135deg,#F0FDFA,#CCFBF1); color:#14B8A6; }
.svc-icon.gold   { background: linear-gradient(135deg,#FFFBEB,#FEF3C7); color:#D97706; }
.service-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.service-card p  { color: var(--mid); font-size: 0.97rem; line-height: 1.7; }

/* ===== IMPORT / SALES ===== */
.import-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.import-text .section-tag { margin-bottom: 14px; }
.import-text h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; color: var(--dark); margin-bottom: 18px; line-height: 1.3; }
.import-text p  { color: var(--mid); margin-bottom: 22px; font-size: 1.05rem; }
.check-list { margin-bottom: 30px; }
.check-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  color: var(--dark2);
  font-size: 1rem;
}
.check-list li:last-child { border-bottom: none; }
.import-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.import-img-section { width: 100%; height: 200px; object-fit: cover; border-radius: var(--r); }

/* ===== VIDEO ===== */
.video-wrap { max-width: 860px; margin: 0 auto; }
.video-ph {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1E293B, #0F172A);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.real-video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--r);
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
iframe.real-video { border: none; }
.play-btn {
  width: 88px; height: 88px;
  background: rgba(14,165,233,0.85);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 16px rgba(14,165,233,0.15);
  transition: var(--tr);
  padding-right: 4px;
}
.video-ph:hover .play-btn { transform: scale(1.08); background: var(--primary); }
.video-ph-text { text-align: center; color: rgba(255,255,255,0.7); }
.video-ph-text strong { display: block; color: white; font-size: 1.1rem; margin-bottom: 4px; }
.video-ph-text p { font-size: 0.9rem; margin-bottom: 6px; }
.video-ph-text code { font-size: 0.78rem; opacity: 0.5; }

/* ===== 24/7 SUPPORT ===== */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.support-text .section-tag { margin-bottom: 14px; }
.support-text h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.support-sub { color: var(--primary); font-weight: 700; font-size: 1.1rem; margin-bottom: 18px; }
.support-text > p { color: var(--mid); margin-bottom: 22px; font-size: 1.05rem; }
.support-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.support-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--dark2); font-size: 1rem;
}
.check-dot {
  width: 24px; height: 24px;
  min-width: 24px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 0.8rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.support-closing {
  background: linear-gradient(135deg, #EFF6FF, #F0FDF4);
  border-right: 4px solid var(--primary);
  padding: 16px 18px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  color: var(--mid);
  font-size: 0.97rem;
  line-height: 1.7;
}
.support-visual { }
.support-premium-card {
  background: linear-gradient(145deg, #061220 0%, #0d1f38 100%);
  border: 1px solid rgba(26,186,178,0.2);
  border-radius: 28px;
  padding: 40px 36px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
  position: relative;
  overflow: hidden;
}
.support-premium-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #63d471, var(--primary));
}
.spc-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(26,186,178,0.14);
  border: 1px solid rgba(26,186,178,0.3);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.spc-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 28px;
  line-height: 1.4;
}
.spc-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.spc-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.spc-icon-wrap {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(26,186,178,0.12);
  border: 1px solid rgba(26,186,178,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.spc-info strong {
  display: block;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.spc-info span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.5;
}
.spc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: 14px;
  transition: var(--tr);
}
.spc-cta:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* ===== GALLERY SWIPER ===== */
.gallery-swiper { padding-bottom: 50px !important; }
.gal-card {
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--tr);
  background: var(--white);
  border: 1px solid var(--border);
}
.gal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gal-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gal-card:hover .gal-img { transform: scale(1.04); }
.swiper-pagination-bullet { background: var(--primary); opacity: 0.3; }
.swiper-pagination-bullet-active { opacity: 1; width: 20px; border-radius: 4px; }
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
  color: var(--primary);
  background: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  top: 42%;
}
.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after { font-size: 15px; font-weight: 900; }

/* ===== CLIENTS ===== */
.clients-swiper { padding: 10px 0 16px; }
.client-card {
  border-radius: var(--r);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px 20px;
  display: flex; align-items: center; justify-content: center;
  min-height: 110px;
  transition: var(--tr);
}
.client-card:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.client-logo { max-height: 60px; max-width: 140px; object-fit: contain; filter: grayscale(0.3); transition: var(--tr); }
.client-card:hover .client-logo { filter: none; }

/* ===== WHY ===== */
.gradient-bg { background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #0C4A6E 100%); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  padding: 32px 24px;
  color: white;
  transition: var(--tr);
  backdrop-filter: blur(4px);
  text-align: center;
}
.why-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.why-icon {
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.why-icon img { width: 72px; height: 72px; display: block; }
.why-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.why-card p  { font-size: 0.9rem; opacity: 0.75; line-height: 1.6; }

/* ===== FOR WHO ===== */
.for-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.fw-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 20px;
  text-align: center;
  transition: var(--tr);
}
.fw-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--c, var(--primary)); }
.fw-icon {
  width: 66px; height: 66px;
  margin: 0 auto 16px;
  background: color-mix(in srgb, var(--c, #0EA5E9) 12%, #fff);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c, var(--primary));
  transition: var(--tr);
}
.fw-card:hover .fw-icon { background: color-mix(in srgb, var(--c, #0EA5E9) 20%, #fff); transform: scale(1.08); }
.fw-card h4 { font-size: 1rem; font-weight: 800; color: var(--dark2); }

/* ===== PROCESS ===== */
.process-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 10px;
}
.process-step {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.step-circle {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-size: 1.1rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(14,165,233,0.35);
}
.step-icon-wrap {
  width: 72px; height: 72px;
  background: color-mix(in srgb, var(--ic, #0EA5E9) 10%, #fff);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  border: 1px solid color-mix(in srgb, var(--ic, #0EA5E9) 20%, transparent);
  transition: var(--tr);
}
.process-step:hover .step-icon-wrap { transform: scale(1.08); }
.process-step h3 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.process-step p  { font-size: 0.87rem; color: var(--mid); line-height: 1.6; }
.process-connector {
  flex: 0 0 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin-top: 62px;
  opacity: 0.4;
  position: relative;
}

/* ===== HOW IT WORKS IMAGE ===== */
.how-it-works-image-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at top right, rgba(0,184,176,0.08), transparent 28%),
    linear-gradient(180deg, #02060d 0%, #07101b 100%);
}
.how-it-works-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.34), 0 0 0 1px rgba(255,255,255,0.04);
}
@media (max-width: 768px) {
  .how-it-works-image-section { padding: 56px 0; }
  .how-it-works-image { border-radius: 18px; }
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-hours {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
  letter-spacing: 0.3px;
}
.contact-phone-label,
.contact-email-label {
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-action-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.btn-email-direct {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
}
.btn-email-direct:hover { background: rgba(255,255,255,0.18); }

.contact-form-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-form-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.form-dual-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}
.form-dual-btns .btn { justify-content: center; }
.btn-email-form {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-email-form:hover { background: rgba(255,255,255,0.18); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 0.9rem; color: var(--dark2); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  color: var(--dark2);
  background: var(--bg);
  transition: var(--tr);
  direction: rtl;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.contact-info { padding-top: 8px; }
.contact-info h3 { font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: 24px; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px;
  background: var(--bg-alt);
  border-radius: var(--r-sm);
  margin-bottom: 12px;
}
.ci-icon {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.8rem; color: var(--muted); margin-bottom: 2px; }
.contact-item a { font-weight: 700; font-size: 1.05rem; color: var(--dark2); transition: var(--tr); }
.contact-item a:hover { color: var(--primary); }

/* ===== FOOTER ===== */
#footer {
  background: linear-gradient(180deg, #08111c 0%, #050d16 100%);
  color: rgba(255,255,255,0.7);
  padding: 0;
}
.footer-top-bar {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), #63d471, var(--primary), transparent);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding: 64px 0 52px;
}
.footer-logo-img {
  height: 62px;
  margin-bottom: 16px;
  object-fit: contain;
  border-radius: 10px;
}
.footer-tagline {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 18px;
}
.footer-contact-row { margin-bottom: 18px; }
.footer-phone-link {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  direction: ltr;
  display: inline-block;
  letter-spacing: 1px;
  transition: var(--tr);
}
.footer-phone-link:hover { color: #63d471; }
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--tr);
}
.social-icon.wa { background: #25D366; color: white; }
.social-icon.em { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.1); }
.social-icon:hover { transform: translateY(-2px); filter: brightness(1.15); }

.footer-col h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(26,186,178,0.25);
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 32px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li,
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--tr);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.5;
  flex-shrink: 0;
}
.footer-col ul a:hover { color: var(--primary); padding-right: 4px; }

/* Footer CTA Card */
.footer-cta-card {
  background: rgba(26,186,178,0.07);
  border: 1px solid rgba(26,186,178,0.18);
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
}
.footer-cta-icon {
  width: 52px; height: 52px;
  background: rgba(26,186,178,0.12);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.footer-cta-phone {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1.5px;
  direction: ltr;
  margin-bottom: 4px;
  transition: var(--tr);
}
.footer-cta-phone:hover { color: var(--primary); }
.footer-cta-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 18px;
  border-radius: 10px;
  transition: var(--tr);
}
.footer-wa-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.35); }
.footer-bottom-sub { font-size: 0.78rem; color: rgba(255,255,255,0.2); margin-top: 4px; }

/* ===== FLOATING WA ===== */
.float-wa {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  z-index: 900;
  transition: var(--tr);
  animation: pulse-wa 3s infinite;
}
.float-wa:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,0.75), 0 0 0 12px rgba(37,211,102,0.12); }
}

/* ===== PLACEHOLDERS ===== */
.ph-box {
  background: linear-gradient(135deg, #EFF6FF, #F0F9FF);
  border: 2px dashed #BFDBFE;
  border-radius: var(--r);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
  color: var(--mid);
}
.ph-box span  { font-size: 0.9rem; font-weight: 600; color: var(--dark2); }
.ph-box code  { font-size: 0.75rem; color: var(--primary); background: rgba(14,165,233,0.08); padding: 3px 8px; border-radius: 6px; }
.about-ph  { height: 440px; }
.small-ph  { height: 180px; }
.gal-ph    { height: 260px; }
.client-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 80px; gap: 4px;
}
.client-ph span { font-size: 0.8rem; font-weight: 700; color: var(--mid); }
.client-ph code { font-size: 0.7rem; color: var(--muted); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO BACKGROUNDS ===== */
.hero-slide-1 { background-image: url('../images/hero/slide1.png'); }
.hero-slide-2 { background-image: url('../images/hero/slide2.png'); }
.hero-slide-3 { background-image: url('../images/hero/slide3.png'); }
.hero-slide-4 { background-image: url('../images/hero/slide4.png'); }

@media (max-width: 640px) {
  .hero-slide-1 { background-image: url('../images/hero/slide1-mobile.png'); }
  .hero-slide-2 { background-image: url('../images/hero/slide2-mobile.png'); }
  .hero-slide-3 { background-image: url('../images/hero/slide3-mobile.png'); }
  .hero-slide-4 { background-image: url('../images/hero/slide4-mobile.png'); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
  .footer-cta-col { grid-column: 1 / -1; }
  .footer-cta-card { max-width: 380px; margin: 0 auto; }
}

@media (max-width: 680px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; padding: 48px 0 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-cta-col { grid-column: 1 / -1; }
  .footer-cta-card { max-width: 100%; }
}

@media (max-width: 420px) {
  .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .about-grid,
  .import-grid,
  .support-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual, .import-images { order: -1; }
  .about-ph { height: 280px; }
  .about-img { height: auto; }
  nav#nav { display: none; }
  .hamburger { display: flex; }
  .process-track { gap: 0; }
  .process-connector { display: none; }
  .process-track { flex-wrap: wrap; }
  .process-step { min-width: 140px; flex: 0 0 calc(33.33% - 24px); }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero-swiper, .hero-slide { min-height: 520px; height: 90svh; }
  .hero-btns { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .for-who-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .import-img-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .stat-item { border-left: none; border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .support-cards { grid-template-columns: 1fr 1fr; }
  .process-step { flex: 0 0 calc(50% - 24px); }
  .contact-form-wrap { padding: 28px 20px; }
  .float-wa { bottom: 18px; left: 18px; width: 52px; height: 52px; }
  .hero-ph-label { display: none; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== FEATURE SWIPER ===== */
.feature-swiper { padding-bottom: 44px !important; margin-top: 48px; overflow: visible !important; }
.feature-swiper .swiper-slide { height: auto; }

@media (min-width: 900px) {
  .feature-swiper { overflow: hidden !important; }
  .feature-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    transform: none !important;
    width: 100% !important;
  }
  .feature-swiper .swiper-slide { width: auto !important; margin-right: 0 !important; }
  .feature-swiper .swiper-pagination { display: none; }
}

@media (max-width: 899px) {
  .feature-swiper .swiper-slide { transition: transform 0.45s ease, opacity 0.45s ease; opacity: 0.65; transform: scale(0.9); }
  .feature-swiper .swiper-slide-active { opacity: 1; transform: scale(1); }
  .feature-swiper .swiper-slide-next { opacity: 0.85; transform: scale(0.95); }
}

@keyframes feature-icon-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 34px 28px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(7,40,79,.10);
  box-shadow: 0 18px 55px rgba(7,40,79,.07);
  text-align: center;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 72px rgba(7,40,79,.14);
  border-color: rgba(0,184,176,.35);
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.65) 50%, transparent 80%);
  transition: left 0.7s ease;
  pointer-events: none;
  z-index: 1;
}
.feature-card:hover::after { left: 150%; }

.feature-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 20px;
  display: block;
  animation: feature-icon-float 3.5s ease-in-out infinite;
}
.feature-swiper .swiper-slide:nth-child(2) .feature-icon { animation-delay: 0.58s; }
.feature-swiper .swiper-slide:nth-child(3) .feature-icon { animation-delay: 1.16s; }
.feature-swiper .swiper-slide:nth-child(4) .feature-icon { animation-delay: 1.74s; }
.feature-swiper .swiper-slide:nth-child(5) .feature-icon { animation-delay: 2.33s; }
.feature-swiper .swiper-slide:nth-child(6) .feature-icon { animation-delay: 2.91s; }
.feature-card h3 {
  margin: 0 0 10px;
  color: var(--dark);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
}
.feature-card p {
  margin: 0;
  color: var(--mid);
  font-size: 15px;
  line-height: 1.7;
}
@media (max-width: 980px) {
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; gap: 18px; }
  .feature-icon { width: 80px; height: 80px; }
  .feature-card { padding: 28px 22px; border-radius: 22px; }
}


/* ===== VIDEO SECTION ===== */
.video-section {
  background: radial-gradient(circle at 80% 20%, rgba(0,184,176,.12), transparent 40%),
              linear-gradient(180deg, #f6fbfb 0%, #ffffff 100%);
}
.video-card-wrap {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}
.custom-video-card {
  position: relative;
  max-width: 400px;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 32px 90px rgba(7,40,79,.22);
  background: #061521;
}
.custom-video-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  background: linear-gradient(135deg, #00b8b0, #63d471, #07284f);
  opacity: .28;
  filter: blur(14px);
}
.video-poster {
  width: 100%;
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.fresh-video {
  width: 100%;
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
  position: relative;
  z-index: 1;
  background: #061521;
}
.play-btn {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
  transition: transform .25s ease, background .25s ease;
  cursor: pointer;
}
.play-btn svg { margin-right: -4px; }
.custom-video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(0,184,176,.55);
}
@media (max-width: 500px) {
  .custom-video-card { max-width: min(90vw, 380px); border-radius: 22px; }
  .play-btn { width: 72px; height: 72px; }
}

/* ===== ORGANIZATION SWIPER ===== */
.org-swiper { padding-bottom: 44px !important; margin-top: 48px; overflow: visible !important; }
.org-swiper .swiper-slide { height: auto; }

@media (min-width: 900px) {
  .org-swiper { overflow: hidden !important; }
  .org-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    transform: none !important;
    width: 100% !important;
    flex-wrap: wrap;
  }
  .org-swiper .swiper-slide { width: auto !important; margin-right: 0 !important; }
  .org-swiper .swiper-pagination { display: none; }
}

@media (max-width: 899px) {
  .org-swiper .swiper-slide { transition: transform 0.45s ease, opacity 0.45s ease; opacity: 0.6; transform: scale(0.88); }
  .org-swiper .swiper-slide-active { opacity: 1; transform: scale(1); }
  .org-swiper .swiper-slide-next { opacity: 0.82; transform: scale(0.94); }
}

/* ===== ORGANIZATION CARDS ===== */
.org-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.org-card {
  background: #ffffff;
  border: 1px solid rgba(13,31,45,0.09);
  border-radius: 26px;
  padding: 22px 22px 24px;
  box-shadow: 0 8px 28px rgba(13,31,45,0.08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  text-align: center;
}
.org-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(13,31,45,0.14);
  border-color: rgba(26,186,178,0.4);
}
.org-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.org-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .35s ease;
}
.org-card:hover .org-img-wrap img { transform: scale(1.04); }
.org-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 8px;
  line-height: 1.3;
}
.org-card p {
  font-size: 14px;
  color: var(--mid);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .org-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .org-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .org-card { padding: 16px 14px 18px; border-radius: 20px; }
  .org-card h3 { font-size: 15px; }
  .org-card p { display: none; }
}

/* ===== CONTACT REDESIGN ===== */
.contact-phone-block {
  background: linear-gradient(135deg, rgba(26,186,178,0.15), rgba(26,186,178,0.05));
  border: 1px solid rgba(26,186,178,0.3);
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 16px;
  text-align: center;
}
.contact-phone-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.contact-phone-number {
  display: block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: 2px;
  direction: ltr;
  text-align: center;
}
.contact-phone-number:hover { color: var(--primary); }
.contact-email-block {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
}
.contact-email-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 6px;
}
.contact-email-val {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark2);
  direction: ltr;
  display: block;
}
.contact-email-val:hover { color: var(--primary); }

/* ===== CONTACT BG ===== */
#contact {
  position: relative;
  background-image: url('../images/contact/bg-desktop.png');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(3,8,16,1) 0%,
    rgba(0,0,0,0.86) 18%,
    rgba(5,20,35,0.84) 60%,
    rgba(5,20,35,0.90) 100%);
  z-index: 0;
}
#contact .container {
  position: relative;
  z-index: 1;
}
#contact .section-header h2,
#contact .section-header p { color: #fff; }
#contact .section-header p { opacity: 0.75; }
@media (max-width: 640px) {
  #contact {
    background-image: url('../images/contact/bg-mobile.png');
    background-attachment: scroll;
  }
}

/* ===== CONTACT INFO DARK ===== */
#contact .contact-phone-number { color: #ffffff; }
#contact .contact-phone-number:hover { color: var(--primary); }
#contact .contact-email-label { color: rgba(255,255,255,0.6); }
#contact .contact-email-val { color: rgba(255,255,255,0.9); }
#contact .contact-email-val:hover { color: var(--primary); }

/* ===== CONTACT FORM DARK ===== */
#contact .contact-form-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
}
#contact .form-group label { color: rgba(255,255,255,0.85); }
#contact .form-group input,
#contact .form-group select,
#contact .form-group textarea {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}
#contact .form-group input::placeholder,
#contact .form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
#contact .form-group select option { background: #1a1a1a; color: #fff; }

.client-logo { filter: grayscale(0.2); }
.client-card:hover .client-logo { filter: none; }

/* Bnei Akiva: black-bg PNG — invert+hue-rotate makes it show as navy on white */
.client-card-bnei-akiva { background: #fff; }
.client-card-bnei-akiva .client-logo {
  filter: invert(1) hue-rotate(180deg) saturate(2.5) brightness(0.78) !important;
}
.client-card-bnei-akiva:hover .client-logo {
  filter: invert(1) hue-rotate(180deg) saturate(3) brightness(0.82) !important;
}

/* ================================================================
   MOBILE — COMPREHENSIVE FIX
   ================================================================ */

/* 1. Hide all swiper nav arrows on mobile — auto-play + swipe only */
@media (max-width: 900px) {
  .swiper-button-next,
  .swiper-button-prev { display: none !important; }

  /* 2. Prevent horizontal scroll caused by overflow:visible swipers */
  #services,
  #for-who,
  #gallery,
  #gallery-import { overflow: hidden; }

  /* 3. Hamburger — bigger tap target */
  .hamburger {
    width: 44px;
    height: 44px;
    padding: 10px;
    display: none; /* still hidden on desktop; 900px breakpoint below turns it on */
    justify-content: center;
    align-items: center;
  }
  .hamburger span { width: 100%; }

  /* 4. Check-list items — icon aligns top for long wrapping text */
  .check-list li { align-items: flex-start; }

  /* 5. Support premium card padding */
  .support-premium-card { padding: 28px 22px; }
}

/* Hamburger visible at ≤900px */
@media (max-width: 900px) {
  .hamburger { display: flex !important; }
}

/* 6. Small screen polish */
@media (max-width: 640px) {
  /* Header */
  .header-inner { height: 62px; }
  #hero { padding-top: 62px; }

  /* Logo tighter on small screens */
  .logo-img { height: 48px; width: 48px; }

  /* Hero — reduce padding, cleaner text */
  .hero-content { padding: 0 16px; }
  .hero-badge { font-size: 0.78rem; padding: 5px 14px; margin-bottom: 14px; }
  .hero-desc { margin-bottom: 24px; font-size: 0.9rem; }
  .hero-btns .btn { width: 100%; justify-content: center; max-width: 280px; }

  /* About section */
  .about-text h2 { font-size: 1.5rem; }
  .about-text p { font-size: 0.95rem; }
  .check-list li { font-size: 0.92rem; padding: 8px 0; }

  /* Section headings */
  .section-header h2 { font-size: 1.6rem; }

  /* Import section */
  .import-text h2 { font-size: 1.5rem; }
  .import-img-grid { gap: 10px; }
  .import-img-section { height: 160px; }

  /* Support card on mobile */
  .support-premium-card { padding: 22px 18px; border-radius: 20px; }
  .spc-title { font-size: 1.1rem; }

  /* Why grid — single column on very small */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .why-card { padding: 22px 16px; }

  /* Clients swiper */
  .client-card { padding: 14px 10px; border-radius: 12px; min-height: 80px; }
  .client-logo { max-height: 44px; }

  /* Contact */
  .contact-phone-block { padding: 20px 18px; }
  .contact-phone-number { font-size: clamp(1.4rem, 6vw, 2rem); }

  /* Feature card on mobile */
  .feature-icon { width: 76px; height: 76px; }
}
