﻿/* =============================================
   AD Yachts — Luxury on Water | Global Styles
   ============================================= */

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

/* ─── Variables ─── */
:root {
  --navy-900: #040c1e;
  --navy-800: #060f25;
  --navy-700: #0a1530;
  --navy-600: #0e1e42;
  --navy-500: #122456;
  --gold-400: #4da3ff;
  --gold-500: #1a78ff;
  --gold-600: #0057e0;
  --blue-400: #4da3ff;
  --blue-500: #1a78ff;
  --blue-600: #0057e0;
  --white: #ffffff;
  --gray-100: #f0f4ff;
  --gray-300: #c8d4ec;
  --gray-500: #7a90b8;
  --glass-bg: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --glass-hover: rgba(255,255,255,0.07);
  --gradient-gold: linear-gradient(135deg, #4da3ff, #1a78ff, #0057e0);
  --gradient-blue: linear-gradient(135deg, #4da3ff, #1a78ff);
  --gradient-btn: linear-gradient(135deg, #1e90ff 0%, #0052d4 100%);
  --gradient-hero: linear-gradient(135deg, #040c1e 0%, #0a1a40 50%, #060d24 100%);
  --shadow-gold: 0 0 30px rgba(30,144,255,0.2);
  --shadow-btn: 0 4px 20px rgba(30,144,255,0.4);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-ar: 'Tajawal', sans-serif;
  --font-en: 'Poppins', sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ar);
  background: var(--navy-900);
  color: var(--white);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 16px;
}
body.lang-en { direction: ltr; font-family: var(--font-en); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-800); }
::-webkit-scrollbar-thumb { background: var(--blue-600); border-radius: 3px; }

/* ─── Selection ─── */
::selection { background: var(--blue-500); color: var(--navy-900); }

/* ─── Utilities ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--blue-400); }
.text-blue { color: var(--blue-400); }
.text-gray { color: var(--gray-300); }
.hidden { display: none !important; }

/* ─── Typography ─── */
.section-tag {
  display: inline-block;
  background: rgba(30,144,255,0.12);
  border: 1px solid rgba(30,144,255,0.3);
  color: var(--blue-400);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { background: var(--gradient-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-subtitle {
  font-size: 17px;
  color: var(--gray-300);
  max-width: 600px;
  line-height: 1.8;
}
.section-subtitle.center { margin: 0 auto; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gradient-btn);
  color: #ffffff;
  box-shadow: var(--shadow-btn);
  letter-spacing: 0.3px;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(30,144,255,0.6); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--blue-400);
  color: var(--blue-400);
}
.btn-outline:hover { background: rgba(30,144,255,0.12); transform: translateY(-2px); border-color: #1e90ff; }
.btn-white {
  background: var(--white);
  color: var(--navy-900);
}
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 14px; }
.btn-lg { padding: 18px 44px; font-size: 17px; }
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

/* ─── Glass Card ─── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.glass-card:hover {
  background: var(--glass-hover);
  border-color: rgba(30,144,255,0.2);
  box-shadow: var(--shadow-card);
}

/* ─── Divider ─── */
.gold-divider {
  width: 60px; height: 3px;
  background: var(--gradient-blue);
  border-radius: 2px;
  margin: 20px 0;
}
.gold-divider.center { margin: 20px auto; }

/* ─── Navbar ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(4,12,30,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent; padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.1));
  transition: var(--transition);
}
.nav-logo:hover img { filter: drop-shadow(0 0 12px rgba(30,144,255,0.3)); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-300);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue-400); background: rgba(30,144,255,0.08); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lang-toggle {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--gray-300);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-en);
}
.lang-toggle:hover { border-color: var(--blue-500); color: var(--blue-400); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(4,12,30,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-300);
  padding: 12px 40px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  width: 100%;
  text-align: center;
}
.mobile-menu a:hover { color: var(--blue-400); background: rgba(30,144,255,0.08); }
.mobile-close {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
[dir="rtl"] .mobile-close { left: auto; right: 20px; }

/* ─── Footer ─── */
#footer {
  background: var(--navy-800);
  border-top: 1px solid var(--glass-border);
}
.footer-contact-bar {
  background: var(--navy-700);
  border-bottom: 1px solid var(--glass-border);
  padding: 24px 0;
}
.footer-contact-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
}
.footer-contact-item:not(:last-child) {
  border-left: 1px solid var(--glass-border);
}
[dir="rtl"] .footer-contact-item:not(:last-child) {
  border-left: none;
  border-right: 1px solid var(--glass-border);
}
.footer-contact-icon {
  width: 48px; height: 48px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-contact-icon svg { width: 22px; height: 22px; }
.footer-contact-label { font-size: 13px; color: var(--gray-500); margin-bottom: 2px; }
.footer-contact-value { font-size: 15px; font-weight: 600; color: var(--white); transition: var(--transition); }
.footer-contact-value:hover { color: var(--blue-400); }

.footer-main { padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
}
.footer-brand-logo {
  display: flex; align-items: center;
  margin-bottom: 20px;
}
.footer-brand-logo img {
  height: 52px; width: auto; max-width: 180px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.08));
}
.footer-desc { color: var(--gray-500); font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-300);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--blue-500); border-color: var(--blue-500); color: var(--navy-900); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--glass-border);
  position: relative;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 40px; height: 2px;
  background: var(--gradient-blue);
}
[dir="ltr"] .footer-col-title::after { right: auto; left: 0; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--gray-500);
  font-size: 14px;
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-links a::before {
  content: '›';
  color: var(--blue-500);
  font-size: 18px;
  line-height: 1;
}
.footer-links a:hover { color: var(--blue-400); padding-right: 6px; }
[dir="ltr"] .footer-links a:hover { padding-right: 0; padding-left: 6px; }

.footer-newsletter p { color: var(--gray-500); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  overflow: hidden;
  background: var(--glass-bg);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 20px;
  color: var(--white);
  font-size: 14px;
  outline: none;
}
.newsletter-form input::placeholder { color: var(--gray-500); }
.newsletter-form button {
  background: var(--gradient-blue);
  border: none;
  width: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.newsletter-form button svg { width: 18px; height: 18px; color: var(--navy-900); }

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--gray-500); font-size: 13px; }
.footer-bottom p span { color: var(--blue-400); }

/* ─── User Account Menu ─── */
.user-menu-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.user-btn {
  width: 40px; height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--gray-300);
  transition: var(--transition);
  flex-shrink: 0;
}
.user-btn:hover { border-color: var(--blue-400); color: var(--blue-400); background: rgba(30,144,255,0.1); }
.user-btn svg { width: 20px; height: 20px; }
.user-avatar {
  width: 28px; height: 28px;
  background: var(--gradient-btn);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: white;
}
.user-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  background: rgba(6,12,32,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  z-index: 1001;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  overflow: hidden;
}
[dir="rtl"] .user-dropdown { left: auto; right: 0; }
[dir="ltr"] .user-dropdown { left: 0; right: auto; }
.user-dropdown.open {
  opacity: 1; transform: translateY(0); pointer-events: all;
}
.user-dropdown-header {
  padding: 14px 16px 12px;
  display: flex; align-items: center; gap: 10px;
}
.ud-avatar {
  width: 36px; height: 36px;
  background: var(--gradient-btn);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: white; flex-shrink: 0;
}
.ud-name { font-size: 14px; font-weight: 700; color: var(--white); }
.user-dropdown-divider { height: 1px; background: var(--glass-border); }
.ud-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  color: var(--gray-300);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  background: none; border: none; width: 100%; text-align: right;
  font-family: inherit;
}
[dir="ltr"] .ud-item { text-align: left; }
.ud-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.ud-item:hover { background: rgba(30,144,255,0.08); color: var(--blue-400); }
.ud-login { color: var(--white); }
.ud-login:hover { background: rgba(30,144,255,0.1); color: var(--blue-400); }
.ud-register { color: var(--blue-400); }
.ud-register:hover { background: rgba(30,144,255,0.08); }
.ud-logout { color: #ff6b6b; }
.ud-logout:hover { background: rgba(255,107,107,0.08); color: #ff4444; }

/* ─── WhatsApp Floating ─── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
[dir="rtl"] .whatsapp-float { left: auto; right: 30px; align-items: flex-end; }
.whatsapp-float a {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}
.whatsapp-float a:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
.whatsapp-float svg { width: 28px; height: 28px; color: white; }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ─── Hero Full-Screen Background Slides ─── */
.hero-bg-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s ease;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 8s ease;
}
.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-bg-overlay-full {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(4,10,28,0.88) 0%,
    rgba(4,10,28,0.72) 45%,
    rgba(4,10,28,0.30) 100%
  );
}

/* ─── Hero Text Transition ─── */
.hero-text-inner {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
@keyframes textFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Hero Slider ─── */
.hero-slider-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 24px 80px rgba(0,0,0,0.55), 0 0 0 1px var(--glass-border);
  text-decoration: none;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease, transform 6s ease;
  transform: scale(1.06);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(4,12,30,0.25) 0%,
    rgba(4,12,30,0.1) 40%,
    rgba(4,12,30,0.55) 100%
  );
}
.hsl-badge {
  position: absolute;
  z-index: 3;
  background: rgba(4,12,30,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  min-width: 110px;
}
.hsl-badge-top {
  top: 24px;
  left: 24px;
}
.hsl-badge-bottom {
  bottom: 68px;
  right: 24px;
  text-align: right;
}
[dir="rtl"] .hsl-badge-top  { left: auto; right: 24px; }
[dir="rtl"] .hsl-badge-bottom { right: auto; left: 24px; text-align: left; }
[dir="ltr"] .hsl-badge-top  { left: 24px; right: auto; }
[dir="ltr"] .hsl-badge-bottom { right: 24px; left: auto; text-align: right; }
.hsl-badge .hbc-value {
  font-size: 26px;
  font-weight: 900;
  color: var(--blue-400);
  line-height: 1;
  font-family: var(--font-en);
}
.hsl-badge .hbc-label {
  font-size: 12px;
  color: var(--gray-300);
  margin-top: 4px;
}
.hsl-cta {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  opacity: 0;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hsl-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
.hero-slider-wrap:hover .hsl-cta {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.hsl-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 7px;
  pointer-events: none;
}
.hsl-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: all 0.4s ease;
}
.hsl-dot.active {
  background: var(--white);
  width: 22px;
  border-radius: 4px;
}
/* progress bar */
.hsl-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  z-index: 4;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
}
.hsl-progress-bar {
  height: 100%;
  background: var(--gradient-btn);
  width: 0%;
  transition: width linear;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(26,120,255,0.15);
  top: -100px; left: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: rgba(30,144,255,0.1);
  bottom: -100px; right: -100px;
}
.hero-content { position: relative; z-index: 1; width: 100%; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,144,255,0.1);
  border: 1px solid rgba(30,144,255,0.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--blue-400);
  margin-bottom: 24px;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-400); animation: blink 1.5s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title .line-gold { background: var(--gradient-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
.hero-subtitle {
  font-size: 17px;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat-item { }
.hero-stat-number { font-size: 28px; font-weight: 800; color: var(--blue-400); line-height: 1; }
.hero-stat-label { font-size: 13px; color: var(--gray-500); margin-top: 4px; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-main-img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--navy-700);
}
.hero-badge-card {
  position: absolute;
  background: rgba(4,12,30,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
}
.hero-badge-card.card-1 { bottom: 30px; left: -20px; }
[dir="ltr"] .hero-badge-card.card-1 { left: auto; right: -20px; }
.hero-badge-card.card-2 { top: 30px; right: -20px; }
[dir="ltr"] .hero-badge-card.card-2 { right: auto; left: -20px; }
.hbc-icon { font-size: 24px; margin-bottom: 4px; }
.hbc-value { font-size: 22px; font-weight: 800; color: var(--blue-400); }
.hbc-label { font-size: 12px; color: var(--gray-500); }

/* ─── Packages / Cards ─── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.package-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(30,144,255,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), var(--shadow-btn);
}
.package-card.featured {
  border-color: rgba(30,144,255,0.4);
  box-shadow: var(--shadow-btn);
}
.package-img {
  width: 100%; height: 220px;
  object-fit: cover;
  background: var(--navy-700);
  position: relative;
}
.package-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.package-badge-feat {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-blue);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
}
[dir="ltr"] .package-badge-feat { right: auto; left: 16px; }
.package-body { padding: 24px; }
.package-icon-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.package-emoji { font-size: 28px; }
.package-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-400);
}
.package-price span { font-size: 13px; color: var(--gray-500); font-weight: 400; }
.package-name { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.package-desc { color: var(--gray-500); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.package-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.package-tag {
  background: rgba(26,120,255,0.1);
  border: 1px solid rgba(26,120,255,0.2);
  color: var(--blue-400);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 50px;
}
.package-features { border-top: 1px solid var(--glass-border); padding-top: 16px; }
.package-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-300);
  padding: 4px 0;
}
.pfi-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-500); flex-shrink: 0; }
.package-cta { margin-top: 20px; width: 100%; text-align: center; }

/* ─── Stats Bar ─── */
.stats-bar {
  background: var(--navy-700);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-number { font-size: 40px; font-weight: 900; background: var(--gradient-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.stat-label { font-size: 14px; color: var(--gray-500); margin-top: 8px; }

/* ─── Why Us ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 36px 28px;
  text-align: center;
}
.why-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(26,120,255,0.15), rgba(30,144,255,0.1));
  border: 1px solid rgba(30,144,255,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: linear-gradient(135deg, rgba(26,120,255,0.3), rgba(30,144,255,0.2)); transform: scale(1.05); }
.why-icon svg { width: 32px; height: 32px; color: var(--blue-400); }
.why-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.why-desc { font-size: 14px; color: var(--gray-500); line-height: 1.8; }

/* ─── Form Styles ─── */
.form-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  position: relative;
}
.form-page-bg { position: absolute; inset: 0; background: var(--gradient-hero); z-index: 0; }
.form-page-bg .hero-orb-1, .form-page-bg .hero-orb-2 { position: absolute; border-radius: 50%; filter: blur(80px); }
.form-box {
  position: relative; z-index: 1;
  width: 100%; max-width: 480px;
  background: rgba(6,15,37,0.8);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  backdrop-filter: blur(30px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.form-logo { text-align: center; margin-bottom: 32px; }
.form-logo img { width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--blue-500); margin: 0 auto 12px; }
.form-logo-name { font-size: 20px; font-weight: 800; }
.form-logo-tag { font-size: 11px; color: var(--blue-400); letter-spacing: 2px; font-family: var(--font-en); }
.form-title { font-size: 26px; font-weight: 800; margin-bottom: 6px; }
.form-subtitle { color: var(--gray-500); font-size: 14px; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--gray-300); }
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-size: 15px;
  transition: var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(30,144,255,0.1); }
.form-input::placeholder { color: var(--gray-500); }
.form-input option { background: var(--navy-700); }
.form-divider { display: flex; align-items: center; gap: 12px; margin: 24px 0; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--glass-border); }
.form-divider span { color: var(--gray-500); font-size: 13px; white-space: nowrap; }
.form-footer-text { text-align: center; font-size: 14px; color: var(--gray-500); margin-top: 24px; }
.form-footer-text a { color: var(--blue-400); font-weight: 600; }
.form-forgot { text-align: left; }
[dir="rtl"] .form-forgot { text-align: right; }
.form-forgot a { color: var(--blue-400); font-size: 13px; }

/* ─── Inner Page Hero ─── */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg .orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.page-hero-bg .orb-1 { width: 400px; height: 400px; background: rgba(26,120,255,0.12); top: -100px; left: -100px; }
.page-hero-bg .orb-2 { width: 300px; height: 300px; background: rgba(30,144,255,0.08); bottom: -50px; right: -50px; }
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 13px; color: var(--gray-500);
  margin-bottom: 16px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--blue-400); }
.breadcrumb span { color: var(--gray-500); }

/* ─── Testimonials ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { padding: 32px; }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-stars svg { width: 18px; height: 18px; color: var(--blue-400); fill: var(--blue-400); }
.testimonial-text { font-size: 15px; color: var(--gray-300); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: white;
  flex-shrink: 0;
}
.testimonial-name { font-size: 15px; font-weight: 700; }
.testimonial-role { font-size: 12px; color: var(--gray-500); }

/* ─── Map Section ─── */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 400px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ─── CTA Section ─── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(30,144,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title { font-size: clamp(24px, 3vw, 40px); font-weight: 900; margin-bottom: 16px; }
.cta-subtitle { color: var(--gray-300); font-size: 17px; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Blog Cards ─── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { overflow: hidden; }
.blog-img { width: 100%; height: 200px; object-fit: cover; background: var(--navy-700); border-radius: var(--radius-md) var(--radius-md) 0 0; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 24px; }
.blog-category { font-size: 12px; font-weight: 700; color: var(--blue-400); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.blog-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-excerpt { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--gray-500); }
.blog-date { display: flex; align-items: center; gap: 6px; }

/* ─── Support / FAQ ─── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px; font-weight: 600;
  transition: var(--transition);
}
.faq-question:hover { background: var(--glass-hover); }
.faq-question svg { width: 20px; height: 20px; color: var(--blue-400); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 24px 20px; color: var(--gray-300); font-size: 15px; line-height: 1.8; }
.faq-item.open .faq-answer { display: block; }

/* ─── Privacy ─── */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-size: 22px; font-weight: 700; color: var(--blue-400); margin: 40px 0 16px; }
.prose p { color: var(--gray-300); font-size: 15px; line-height: 1.9; margin-bottom: 16px; }
.prose ul { margin: 12px 0 16px 24px; }
[dir="rtl"] .prose ul { margin: 12px 24px 16px 0; }
.prose ul li { color: var(--gray-300); font-size: 15px; line-height: 1.9; list-style: disc; }

/* ─── Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.visible { opacity: 1; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-inner { gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: flex; justify-content: center; margin-top: 32px; }
  .hero-slider-wrap { max-width: 100%; aspect-ratio: 16/10; }
  .hsl-badge-top { top: 14px; left: 14px; padding: 10px 14px; }
  [dir="rtl"] .hsl-badge-top { left: auto; right: 14px; }
  .hsl-badge-bottom { bottom: 52px; right: 14px; padding: 10px 14px; }
  [dir="rtl"] .hsl-badge-bottom { right: auto; left: 14px; }
  .hsl-badge .hbc-value { font-size: 20px; }
  .hsl-cta { font-size: 12px; padding: 7px 16px; opacity: 1; transform: translateX(-50%) translateY(0); }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-subtitle.max-w { margin: 0 auto; }
  .packages-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-contact-items { grid-template-columns: 1fr; gap: 16px; }
  .footer-contact-item:not(:last-child) { border: none; border-bottom: 1px solid var(--glass-border); padding-bottom: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 50px 24px; }
  .form-box { padding: 32px 24px; }
  .hero-badge-card { display: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 30px; }
  .btn-lg { padding: 14px 28px; font-size: 15px; }
}


/* ─── Swimming Grid ─── */
@media(max-width:768px){.swim-grid{grid-template-columns:1fr!important;}}

/* ═══ WhatsApp: always LEFT (no overlap with bot on right) ═══ */
.whatsapp-float { left: 30px !important; right: auto !important; align-items: flex-start !important; }
[dir="rtl"] .whatsapp-float { left: 30px !important; right: auto !important; align-items: flex-start !important; }
[dir="ltr"] .whatsapp-float { left: 30px !important; right: auto !important; }

/* ═══ Page Hero — Background Image support ═══ */
.page-hero-img {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  min-height: 420px;
}
.page-hero-img .page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(4,10,28,0.88) 0%,
    rgba(4,10,28,0.65) 45%,
    rgba(4,10,28,0.88) 100%
  ) !important;
}
.page-hero-img .page-hero-bg .orb { display: none; }

/* ═══ Page Hero — Force white text ═══ */
.page-hero h1,
.page-hero .section-title,
.page-hero .hero-title { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }
.page-hero .section-title span { background: none !important; -webkit-background-clip: unset !important; -webkit-text-fill-color: #ffffff !important; color: #ffffff !important; }
.page-hero p, .page-hero .page-hero-content > p { color: rgba(255,255,255,0.88) !important; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.75) !important; }
.page-hero .breadcrumb a:hover { color: #ffffff !important; }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.55) !important; }
.page-hero .section-tag {
  background: rgba(30,144,255,0.18) !important;
  border-color: rgba(30,144,255,0.45) !important;
  color: #ffffff !important;
}
.page-hero-content { position: relative; z-index: 2; }

/* ═══ Bot window — responsive fix ═══ */
@media (min-width: 481px) {
  #ay-window {
    width: 380px !important;
    max-width: calc(100vw - 40px) !important;
  }
}
@media (max-width: 480px) {
  #ay-launcher { bottom: 16px !important; right: 16px !important; }
  #ay-window {
    bottom: 0 !important; right: 0 !important; left: 0 !important;
    width: 100vw !important; height: 92vh !important;
    border-radius: 20px 20px 0 0 !important;
  }
}

/* ══════════════════════════════════════════
   NEW HERO SLIDER — Complete Redesign
   Works perfectly on all devices
══════════════════════════════════════════ */

/* Reset old hero classes that conflict */
.hero-inner, .hero-text, .hero-visual, .hero-slider-wrap,
.hero-bg-slides, .hero-bg-slide, .hero-bg-overlay-full { display: none !important; }

/* ── Hero Container ── */
.hero {
  position: relative !important;
  width: 100%;
  min-height: 100vh !important;
  overflow: hidden;
  display: flex !important;
  align-items: center !important;
  padding-top: 0 !important;
}

/* ── Background Slides ── */
.hbg { position: absolute; inset: 0; z-index: 0; }
.hbg-s {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  transform: scale(1.05);
  transition: opacity 1.4s ease, transform 9s ease;
}
.hbg-s.active { opacity: 1; transform: scale(1); }

/* ── Main Overlay ── */
.hbg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(4,10,28,0.92) 0%,
    rgba(4,10,28,0.70) 50%,
    rgba(4,10,28,0.35) 100%
  );
}

/* ── Hero Wrap (above overlay) ── */
.hero-wrap {
  position: relative; z-index: 2;
  width: 100%;
  padding: 120px 0 80px;
  display: flex; flex-direction: column;
  min-height: 100vh;
  justify-content: center;
}

/* ── Grid: text + card ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ══ TEXT SIDE ══ */
.hero-left { }

.hero-live-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(30,144,255,0.14);
  border: 1px solid rgba(30,144,255,0.4);
  color: #fff;
  padding: 8px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hlt-dot {
  width: 8px; height: 8px;
  border-radius: 50%; background: #4ade80;
  animation: hltBlink 1.5s infinite;
  flex-shrink: 0;
}
@keyframes hltBlink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-h1 {
  font-size: clamp(34px, 5.5vw, 70px);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
}
.hh1-line { display: block; }
.hh1-blue {
  background: linear-gradient(135deg, #4da3ff, #1e90ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

/* ── CTA Buttons ── */
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hcta-main {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #1e90ff 0%, #0052d4 100%);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px; font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(30,144,255,0.45);
}
.hcta-main:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(30,144,255,0.6); color: #fff; }

.hcta-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px; font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
}
.hcta-wa:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(37,211,102,0.55); color: #fff; }

/* ── Stats ── */
.hero-nums { display: flex; align-items: center; flex-wrap: wrap; gap: 0; }
.hnum { text-align: center; padding: 0 24px; }
.hnum:first-child { padding-right: 0; }
.hnum-val {
  display: block;
  font-size: clamp(26px,3vw,36px);
  font-weight: 900;
  color: #4da3ff;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}
.hnum-lbl { display: block; font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.hnum-div { width: 1px; height: 40px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

/* ══ CARD SIDE ══ */
.hero-right { display: flex; justify-content: center; align-items: center; }
.hero-card {
  position: relative;
  width: 100%; max-width: 500px;
  aspect-ratio: 3/4;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.08);
  cursor: pointer;
}

/* Card image slides */
.hcs-wrap { position: absolute; inset: 0; z-index: 0; }
.hcs {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease, transform 8s ease;
  transform: scale(1.06);
}
.hcs.active { opacity: 1; transform: scale(1); }

/* Card overlay */
.hcs-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(4,10,28,0.15) 0%,
    rgba(4,10,28,0.05) 40%,
    rgba(4,10,28,0.7) 100%
  );
}

/* Floating info badges */
.hcard-badge {
  position: absolute; z-index: 3;
  background: rgba(4,12,30,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 14px 20px;
  min-width: 100px;
}
.htop { top: 20px; right: 20px; }
[dir="rtl"] .htop { right: auto; left: 20px; }
[dir="ltr"] .htop { right: 20px; left: auto; }
.hbot { bottom: 72px; left: 20px; text-align: left; }
[dir="rtl"] .hbot { left: auto; right: 20px; text-align: right; }
[dir="ltr"] .hbot { left: 20px; right: auto; text-align: left; }

.hcb-v {
  font-size: 28px; font-weight: 900;
  color: #4da3ff; line-height: 1;
  font-family: 'Poppins', sans-serif;
}
.hcb-l { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* WA hover CTA */
.hcard-wa {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%) translateY(6px);
  z-index: 4;
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hero-card:hover .hcard-wa { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Card dots */
.hcard-dots {
  position: absolute; bottom: 22px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex; gap: 7px;
}
.hcd {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: all 0.4s ease;
  cursor: pointer;
}
.hcd.active { background: #fff; width: 22px; border-radius: 4px; }

/* Card progress bar removed */

/* ══ BOTTOM INDICATORS (mobile) ══ */
.hero-bg-dots {
  position: absolute;
  bottom: 70px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: none; /* hidden on desktop */
  gap: 8px;
}
.hbd {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: all 0.4s ease;
  cursor: pointer;
}
.hbd.active { background: #fff; width: 24px; border-radius: 4px; }

/* ══ SCROLL ARROW ══ */
.hero-scroll-btn {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  animation: heroScrollBounce 2s ease-in-out infinite;
  backdrop-filter: blur(10px);
  transition: all 0.2s;
}
.hero-scroll-btn:hover { background: rgba(255,255,255,0.2); color: #fff; }
@keyframes heroScrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .hero-card { max-width: 420px; }
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr !important; gap: 0; }
  .hero-right { display: none !important; }
  .hero-left { text-align: center; }
  .hero-live-tag { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-nums { justify-content: center; }
  .hnum:first-child { padding-right: 24px; }
  .hbg-overlay {
    background: linear-gradient(
      180deg,
      rgba(4,10,28,0.85) 0%,
      rgba(4,10,28,0.65) 50%,
      rgba(4,10,28,0.88) 100%
    ) !important;
  }
  .hero-bg-dots { display: flex; }
  .hero-h1 { font-size: clamp(30px, 8vw, 50px); }
  .hero-wrap { padding: 100px 0 100px; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(26px, 8vw, 40px); }
  .hcta-main, .hcta-wa { padding: 14px 24px; font-size: 15px; }
  .hero-nums { gap: 0; }
  .hnum { padding: 0 14px; }
  .hnum-val { font-size: 24px; }
}


/* ╔══════════════════════════════════════════════════════╗
   ║  AD YACHTS — CRITICAL UI FIX                         ║
   ║  1. All hero text → pure WHITE                       ║
   ║  2. Hero slider layout fixed                         ║
   ║  3. Inner page hero text → pure WHITE                ║
   ╚══════════════════════════════════════════════════════╝ */

/* ──────────────────────────────────────────
   HOME HERO — FORCE WHITE TEXT
────────────────────────────────────────── */
.hero-h1,
.hero-h1 * { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }

.hh1-line { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; display: block; }

/* Accent line: bright sky blue (readable on dark bg) */
.hh1-blue {
  background: none !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #87ceeb !important !important;
  color: #87ceeb !important;
  text-shadow: 0 0 30px rgba(135,206,235,0.4);
}

.hero-sub { color: rgba(255,255,255,0.90) !important; }

.hero-live-tag,
.hero-live-tag span { color: #ffffff !important; }

.hnum-val { color: #87ceeb !important; }
.hnum-lbl { color: rgba(255,255,255,0.75) !important; }

/* ──────────────────────────────────────────
   HOME HERO — LAYOUT & SIZING FIX (RTL)
────────────────────────────────────────── */
.hero {
  min-height: 100vh !important;
  position: relative !important;
}

/* In RTL: first child = right side, second child = left side
   hero-left (text) should be on RIGHT for Arabic */
.hero-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 50px !important;
  align-items: center !important;
  min-height: calc(100vh - 180px) !important;
}

/* Card: max width balanced for both sides */
.hero-card {
  width: 100% !important;
  max-width: 460px !important;
  aspect-ratio: 4/5 !important;
  margin: 0 auto !important;
}

/* Overlay: must be dark enough for white text */
.hbg-overlay {
  background: linear-gradient(
    110deg,
    rgba(4,10,28,0.94) 0%,
    rgba(4,10,28,0.78) 50%,
    rgba(4,10,28,0.45) 100%
  ) !important;
}

/* ──────────────────────────────────────────
   INNER PAGE HEROES — FORCE WHITE TEXT
────────────────────────────────────────── */

/* Section title spans inside page-hero */
.page-hero .section-title { color: #ffffff !important; }
.page-hero .section-title span,
.page-hero .section-title span[data-en] {
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
}

/* h1 directly */
.page-hero h1,
.page-hero h1 span { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }

/* Paragraph text */
.page-hero p,
.page-hero-content p,
.page-hero .section-subtitle,
.page-hero [style*="color:var(--gray"] { color: rgba(255,255,255,0.90) !important; }

/* Breadcrumb */
.page-hero .breadcrumb { color: rgba(255,255,255,0.7) !important; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.8) !important; }
.page-hero .breadcrumb a:hover { color: #ffffff !important; }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.55) !important; }

/* Section tag */
.page-hero .section-tag {
  color: #ffffff !important;
  background: rgba(30,144,255,0.20) !important;
  border-color: rgba(30,144,255,0.50) !important;
}

/* Stronger dark overlay on inner pages */
.page-hero-img .page-hero-bg {
  background: linear-gradient(
    180deg,
    rgba(4,10,28,0.88) 0%,
    rgba(4,10,28,0.65) 45%,
    rgba(4,10,28,0.90) 100%
  ) !important;
}

/* ──────────────────────────────────────────
   RESPONSIVE: Mobile hero
────────────────────────────────────────── */
@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .hero-right { display: none !important; }
  .hero-left { text-align: center !important; padding: 0 16px !important; }
  .hero-ctas { justify-content: center !important; }
  .hero-nums { justify-content: center !important; }
  .hero-sub { margin-left: auto !important; margin-right: auto !important; }
  .hbg-overlay {
    background: rgba(4,10,28,0.88) !important;
  }
}


/* ╔══════════════════════════════════════════════════
   ║  ULTRA FIX — Override ALL inline styles in heroes
   ╚══════════════════════════════════════════════════ */

/* Override inline color:var(--gray-300) on paragraphs */
.page-hero-content > p[style],
.page-hero-content p[style*="gray"],
.page-hero-content p[style*="color"] {
  color: rgba(255,255,255,0.90) !important;
}

/* Inner page hero: full white on EVERYTHING */
.page-hero-img *:not(.page-hero-bg):not(a.btn):not(a.btn *) {
  --gray-300: rgba(255,255,255,0.88);
}
.page-hero-img .page-hero-content h1,
.page-hero-img .page-hero-content h1 span,
.page-hero-img .page-hero-content h2,
.page-hero-img .page-hero-content h2 span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.page-hero-img .page-hero-content p {
  color: rgba(255,255,255,0.90) !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* Ensure page-hero-bg IS the overlay */
.page-hero-img .page-hero-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background: linear-gradient(
    180deg,
    rgba(4,10,28,0.85) 0%,
    rgba(4,10,28,0.60) 40%,
    rgba(4,10,28,0.88) 100%
  ) !important;
}
.page-hero-img { position: relative !important; }
.page-hero-img .container { position: relative; z-index: 2 !important; }
.page-hero-img .page-hero-content { position: relative; z-index: 2 !important; }

/* Hero home text - very strong override */
#hero-section .hero-h1 { color: #ffffff !important; }
#hero-section .hh1-line {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}
#hero-section .hh1-blue {
  color: #b3e5fc !important;
  -webkit-text-fill-color: #b3e5fc !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}
#hero-section .hero-sub { color: rgba(255,255,255,0.88) !important; }

/* page-hero paragraph class */
.page-hero-p { color: rgba(255,255,255,0.90) !important; }
