/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:      #1270C3;
  --blue-light:#3B9EE8;
  --blue-sky:  #E8F4FD;
  --gold:      #F5A623;
  --gold-deep: #D97706;
  --gold-light:#FEF3C7;
  --white:     #ffffff;
  --text-dark: #0F172A;
  --text-mid:  #334155;
  --text-soft: #64748B;
  --radius:    20px;
}

html, body {
  font-family: 'Cairo', sans-serif;
  background: #fff;
  color: var(--text-dark);
  overflow-x: hidden; /* Prevent horizontal scroll on all devices */
  overflow-y: hidden; /* Only allowed on desktop single-page */
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  height: 100%;
  width: 100%;
  max-width: 100vw;
}

/* ── Full-page container ── */
#fullpage {
  height: 100dvh;
  overflow: hidden;
  position: relative;
}

#sections-wrapper {
  position: relative;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}

.section {
  width: 100%;
  height: 100dvh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ── New Site Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.header-top-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 8px 40px 10px; /* Added bottom padding for massive overlap */
  background: var(--blue);
  color: var(--white);
  position: relative;
  z-index: 20;
}

/* ── Fizzing Bubbles ── */
.header-fizz {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0; 
  overflow: hidden;
}

.fizz-bubble {
  position: absolute;
  bottom: -20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: fizzRise linear infinite;
  box-shadow: inset 0 0 5px rgba(255,255,255,0.6);
}

@keyframes fizzRise {
  0% { transform: translateY(0) scale(0.6); opacity: 0; }
  20% { opacity: 1; }
  50% { transform: translateY(-40px) translateX(10px) scale(1.1); }
  100% { transform: translateY(-100px) translateX(-15px) scale(0.8); opacity: 0; }
}

.header-logo {
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-btn {
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-btn:hover { opacity: 0.85; }

.logo-btn img {
  height: 54px; /* Slightly smaller to fit better */
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  background: var(--white);
  object-fit: contain;
  margin-top: -6px; /* Pull it up more */
}

.logo-text {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.logo-name {
  color: var(--white);
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.2;
  white-space: nowrap;
}

.logo-sub {
  color: var(--gold-light);
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 1.15rem; /* Make it same size as logo-name */
  line-height: 1.2;
  white-space: nowrap;
  
  /* Shiny Gold Effect */
  background: linear-gradient(110deg, var(--gold-light) 0%, var(--gold) 40%, #FFF 50%, var(--gold) 60%, var(--gold-deep) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineGold 3s linear infinite;
  filter: drop-shadow(0px 2px 5px rgba(245, 166, 35, 0.4));
}

@keyframes shineGold {
  0% { background-position: 200% center; }
  100% { background-position: 0% center; }
}

.header-nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-link {
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  opacity: 0.85;
  transition: all 0.2s;
  display: flex;
  align-items: center;
}

.nav-link:hover, .nav-link.active {
  opacity: 1;
  transform: translateY(-2px);
  color: var(--gold-light);
}

.home-btn {
  color: var(--white);
}

.header-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-social {
  display: flex;
  gap: 12px;
}

.header-social a {
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-social a:hover {
  opacity: 1;
  color: var(--gold-light);
}

.header-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.3);
}

.lang-switch {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  opacity: 0.85;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.lang-switch:hover {
  opacity: 1;
  color: var(--gold-light);
}

.header-wave {
  width: 100%;
  height: 4vw;
  min-height: 25px;
  max-height: 50px;
  line-height: 0;
  margin-top: -10px; /* huge negative margin to eliminate any gaps */
  position: relative;
  z-index: 10;
  overflow: visible; /* Let svg bleed if needed */
}

.header-wave svg {
  width: 110%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -5%;
  display: block;
  overflow: visible;
}

.wave-bg {
  animation: beverageWave 8s ease-in-out infinite alternate;
}

.wave-fg {
  animation: beverageWave 10s ease-in-out infinite alternate-reverse;
}

@keyframes beverageWave {
  0% { transform: translateX(-3%) scaleY(1); }
  50% { transform: translateX(3%) scaleY(0.85); }
  100% { transform: translateX(-2%) scaleY(1.05); }
}

.wave-path-fill {
  fill: var(--blue);
}

.mobile-menu-toggle {
  display: none;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s;
}

.slider-arrow:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.05);
}

.slider-prev {
  right: 30px; /* Right edge for RTL */
}

.slider-next {
  left: 30px; /* Left edge for RTL */
}

@media (max-width: 992px) {
  .header-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    gap: 10px;
  }
  .header-nav {
    display: none;
  }
  .header-logo {
    display: flex;
    align-items: center;
    order: 1;
  }
  .logo-btn img {
    height: 40px;
  }
  .logo-name {
    font-size: 0.9rem;
    white-space: normal;
    line-height: 1.2;
  }
  .logo-sub {
    font-size: 0.75rem;
    white-space: normal;
    line-height: 1.2;
  }
  .header-actions {
    display: flex;
    align-items: center;
    order: 2;
    margin-right: auto;
  }
  /* Hide social icons on mobile header (moved to mobile menu) */
  .header-social { 
    display: none !important; 
  } 
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    order: 3;
    padding: 5px;
    position: relative;
    z-index: 100;
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
  }
  .slider-prev { right: 15px; }
  .slider-next { left: 15px; }
}

/* Mobile menu overlay */
#mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(255,255,255,0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 80px 24px 40px;
  overflow-y: auto;
}
#mobile-menu.open { display: flex; }
#mobile-menu-close {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  padding: 10px;
  border-radius: 10px;
}
.mobile-nav-item {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 280px;
  padding: 14px 24px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Cairo', sans-serif;
  color: #0F172A !important;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  -webkit-transform: translateZ(0);
}
.mobile-nav-item.active {
  color: var(--blue);
  background: rgba(18,112,195,0.07);
  border-color: rgba(18,112,195,0.15);
}

/* ── Dot Navigation ── */
#dot-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dot-btn {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}
.dot-inner {
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: rgba(18,112,195,0.25);
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.dot-btn.active .dot-inner {
  width: 8px;
  height: 22px;
  border-radius: 4px;
  background: var(--blue);
}

/* ── Section Counter ── */
#section-counter {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: monospace;
  letter-spacing: 0.12em;
  user-select: none;
}
.counter-current { font-weight: 900; font-size: 1.1rem; color: var(--blue); }
.counter-line { height: 1px; width: 28px; background: rgba(18,112,195,0.25); }
.counter-total { font-size: 1rem; color: rgba(18,112,195,0.45); }

/* ── Backgrounds ── */
.bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.bg-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.bg-overlay {
  position: absolute;
  inset: 0;
}
.dot-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(18,112,195,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
}
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.accent-strip-r {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 8px;
  z-index: 10;
  background: linear-gradient(to bottom, var(--blue) 60%, var(--gold) 100%);
}
.accent-strip-l {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 8px;
  z-index: 10;
  background: linear-gradient(to bottom, var(--blue) 60%, var(--gold) 100%);
}

/* ── Loading Screen ── */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.3s ease;
}
#loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}
.loading-logo-wrap {
  position: relative;
}
.loading-logo-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(245,166,35,0.5);
  animation: loadingRing1 2.2s ease-out infinite;
}
.loading-logo-ring2 {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(18,112,195,0.3);
  animation: loadingRing2 2.2s ease-out 0.6s infinite;
}
@keyframes loadingRing1 {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0; }
}
@keyframes loadingRing2 {
  0% { transform: scale(1); opacity: 0.35; }
  100% { transform: scale(2.2); opacity: 0; }
}
.loading-logo {
  width: 112px; height: 112px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(245,166,35,0.1), 0 0 50px rgba(245,166,35,0.25), 0 8px 30px rgba(18,112,195,0.1);
  object-fit: cover;
  animation: loadingPulse 2.8s ease-in-out infinite;
}
@keyframes loadingPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
.loading-title {
  text-align: center;
}
.loading-title h2 {
  font-weight: 900;
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  color: var(--text-dark);
  line-height: 1.15;
}
.loading-title p {
  font-weight: 900;
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  color: var(--blue);
  margin-top: 2px;
  line-height: 1.15;
}
.loading-bar-wrap {
  width: 208px;
  height: 3px;
  border-radius: 99px;
  background: rgba(18,112,195,0.1);
  overflow: hidden;
}
.loading-bar {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 50%, var(--gold) 100%);
  animation: loadingBarFill 1.6s ease-in-out forwards;
}
@keyframes loadingBarFill {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ── Floating animations ── */
@keyframes floatA {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(14px,-20px) scale(1.04); }
  66% { transform: translate(-10px,10px) scale(0.97); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0,0) scale(1); }
  40% { transform: translate(-16px,-12px) scale(1.05); }
  80% { transform: translate(12px,14px) scale(0.96); }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.1); }
}

/* ── Gold shimmer ── */
@keyframes shimmerGold {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.gold-shimmer {
  background: linear-gradient(90deg, #D97706, #F5A623, #FCD34D, #F5A623, #D97706);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerGold 3.5s linear infinite;
}

/* ── Bubble animation ── */
@keyframes bubbleRise {
  0% { transform: translateY(0) scale(1); opacity: 0.85; }
  100% { transform: translateY(-200px) scale(0.5); opacity: 0; }
}
.bubble {
  position: absolute;
  z-index: 11;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.95) 0%, rgba(18,112,195,0.25) 60%, transparent 80%);
  border: 1.5px solid rgba(18,112,195,0.35);
  box-shadow: 0 0 6px rgba(18,112,195,0.15), inset 0 1px 2px rgba(255,255,255,0.8);
  animation: bubbleRise linear infinite;
}

/* ── Wave animation ── */
#intro-waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  pointer-events: none;
  z-index: 10;
}
#intro-waves svg { position: absolute; bottom: 0; left: 0; width: 100%; }

/* ── Hero image carousel (managed from admin panel) ── */
#hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.8s ease-in-out;
}
.hero-slide.active {
  opacity: 0.07;
  filter: blur(1.5px);
  animation: heroKenBurns 6s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide.active { animation: none; }
}
.hero-carousel-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 45%, rgba(255,255,255,0.86) 100%);
}

/* ── Section content ── */
.section-content {
  position: relative;
  z-index: 20;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Badges ── */
.badge-blue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(18,112,195,0.08);
  border: 1px solid rgba(18,112,195,0.18);
}
.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(18, 112, 195, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}
.badge-premium::before {
  content: "";
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
  animation: shineBadge 3s infinite;
}
@keyframes shineBadge {
  0% { left: -100%; }
  20%, 100% { left: 200%; }
}
.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-deep);
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.22);
}

/* ── Buttons ── */
.btn-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: clamp(0.9rem, 1.9vw, 1rem);
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(18,112,195,0.3), 0 1px 4px rgba(0,0,0,0.08);
  text-decoration: none;
}
.btn-blue:hover { box-shadow: 0 8px 32px rgba(18,112,195,0.4); transform: translateY(-2px); }

/* ── Cards ── */
.card-white {
  background: #fff;
  border: 1px solid rgba(18,112,195,0.1);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(18,112,195,0.08), 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s, transform 0.25s;
}
.card-white:hover {
  box-shadow: 0 10px 40px rgba(18,112,195,0.14), 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

/* ── Divider lines ── */
.divider-lines {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
}
.divider-lines .line-left {
  height: 2px; width: 56px; border-radius: 2px;
  background: linear-gradient(to left, var(--gold), transparent);
}
.divider-lines .line-right {
  height: 2px; width: 56px; border-radius: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.divider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

/* ── Input ── */
.input-field {
  width: 100%;
  border-radius: 12px;
  padding: 12px 16px;
  background: #F8FBFF;
  border: 1.5px solid rgba(18,112,195,0.15);
  color: var(--text-dark);
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: block;
}
.input-field:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(18,112,195,0.1);
}
.input-field::placeholder { color: #94A3B8; }

/* ────────────────────────────── SECTION 0: INTRO ────────────────────────────── */
#sec-intro {
  background: #fff;
  align-items: center;
  justify-content: center;
}

#hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
.hero-carousel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85); /* 85% white overlay to keep content readable */
  z-index: 2;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  color: var(--blue);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0;
}
#hero-carousel:hover .slider-arrow {
  opacity: 1;
}
.slider-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.slider-prev { right: 20px; }
.slider-next { left: 20px; }

#intro-center.intro-split {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 150px;
  gap: 40px;
}

.intro-col-logo {
  flex: 0 0 45%;
  display: flex;
  justify-content: flex-start; /* Pushes to the far right edge in RTL */
}

.intro-col-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.intro-logo-wrap { position: relative; margin-bottom: 28px; }
.intro-logo-glow {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.28) 0%, transparent 70%);
  filter: blur(16px);
  animation: pulseGlow 3s ease-in-out infinite;
}
.intro-logo {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(245,166,35,0.12), 0 0 50px rgba(245,166,35,0.28), 0 8px 30px rgba(18,112,195,0.1);
  object-fit: cover;
  position: relative;
  aspect-ratio: 1 / 1;
}
@media (min-width: 768px) { .intro-logo { max-width: 450px; } }

@media (max-width: 992px) {
  #intro-center.intro-split {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }
  .intro-col-logo {
    order: 1;
    margin-bottom: 20px;
  }
  .intro-col-text {
    order: 2;
    align-items: center !important;
    text-align: center !important;
  }
  .intro-col-text > div {
    justify-content: center !important;
    text-align: center !important;
    align-items: center !important;
  }
  .intro-logo { max-width: 250px; }
}

.intro-heading-wrap {
  margin-bottom: 24px;
  animation: fadeUp 0.65s 0.4s both ease-out;
}
.intro-h1-main {
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.12;
  font-size: clamp(1.8rem, 5.2vw, 3.6rem);
  margin: 0;
}
.intro-subtitle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}
.intro-subtitle-line {
  height: 2px; width: 40px; border-radius: 2px;
}
.intro-subtitle-line.left { background: linear-gradient(to left, var(--gold), transparent); }
.intro-subtitle-line.right { background: linear-gradient(to right, var(--gold), transparent); }
.intro-h1-sub {
  font-weight: 900;
  color: var(--blue);
  line-height: 1.12;
  font-size: clamp(1.8rem, 5.2vw, 3.6rem);
  margin: 0;
}

.intro-tagline {
  border-radius: 16px;
  padding: 14px 24px;
  max-width: 520px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(18,112,195,0.15);
  box-shadow: 0 4px 20px rgba(18,112,195,0.08);
  margin-bottom: 28px;
  animation: fadeUp 0.55s 0.76s both ease-out;
}
.intro-tagline p {
  color: var(--text-mid);
  font-size: clamp(0.88rem, 2vw, 1.1rem);
  line-height: 1.7;
  font-weight: 600;
}

.intro-scroll-hint {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}
.intro-scroll-hint svg { color: rgba(18,112,195,0.4); }

/* ────────────────────────────── SECTION 1: ABOUT ────────────────────────────── */
#sec-about {
  background: #fff;
  flex-direction: row;
}
.about-photo-panel {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 38%;
  overflow: hidden;
  z-index: 1;
}
.about-photo-panel img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.about-photo-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(18,112,195,0.15) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,1) 100%);
}
.about-content {
  position: relative;
  z-index: 20;
  padding: 80px 48px 40px;
  max-width: 680px;
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .about-photo-panel { display: none; }
  .about-content { padding: 80px 32px 40px; margin: 0 auto; max-width: 100%; }
}

.about-content h2 {
  font-weight: 900;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  color: var(--text-dark);
  line-height: 1.1;
  margin: 12px 0 16px;
}
.about-desc { color: var(--text-mid); line-height: 1.85; font-size: clamp(0.88rem, 1.8vw, 1.02rem); margin-bottom: 10px; }
.about-highlight {
  border-radius: 16px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #E8F4FD 0%, #EEF6FF 100%);
  border: 1px solid rgba(18,112,195,0.2);
  margin: 12px 0 20px;
}
.about-highlight p { color: var(--blue); font-weight: 600; font-size: clamp(0.86rem, 1.7vw, 1rem); line-height: 1.75; }

.about-stats { display: flex; gap: 12px; }
.stat-card {
  flex: 1;
  border-radius: 16px;
  padding: 16px 12px;
  text-align: center;
  background: #fff;
  border: 1.5px solid rgba(18,112,195,0.1);
  box-shadow: 0 4px 16px rgba(18,112,195,0.07);
  transition: transform 0.25s;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}
.stat-value { font-weight: 900; font-size: clamp(1.8rem, 4vw, 2.5rem); line-height: 1; }
.stat-label { font-size: 0.78rem; font-weight: 600; color: var(--text-soft); margin-top: 4px; }

/* ────────────────────────────── SECTION 2: VISION ────────────────────────────── */
#sec-vision {
  background: linear-gradient(160deg, #F8FBFF 0%, #EEF6FF 50%, #F8FBFF 100%);
}
#sec-vision .section-content {
  padding: 80px 40px 40px;
}
.vision-header { text-align: center; margin-bottom: 32px; }
.vision-header h2 {
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  color: var(--text-dark);
  margin: 12px 0 0;
}
.vision-cards-vertical {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.vision-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vision-row-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin: 0;
}

.vision-row-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-card-wide {
  background: #fff;
  border: 1px solid rgba(18,112,195,0.1);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 24px rgba(18,112,195,0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  margin-right: 25px; /* Indent the card under the title in RTL */
}
.vision-card-wide:hover { transform: translateY(-4px); box-shadow: 0 10px 40px rgba(18,112,195,0.12); }

.vision-card-wide p {
  color: var(--text-mid);
  line-height: 1.8;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  margin: 0;
}

.vision-list-wide {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px 24px;
}
.vision-list-wide li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-mid);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.6;
}
.vision-list-wide li::before { 
  content: "✓"; 
  font-weight: 900; 
  font-size: 1rem; 
  color: var(--check-color); 
  margin-top: 2px;
}

/* ────────────────────────────── SECTION 3: BRANDS ────────────────────────────── */
#sec-brands {
  background: #fff;
  flex-direction: column;
}
.brands-header { padding: 70px 48px 12px; }
.brands-header h2 { font-weight: 900; font-size: clamp(1.8rem, 4.5vw, 3rem); color: var(--text-dark); margin-top: 8px; }
.brands-header p { color: var(--text-soft); font-size: clamp(0.85rem, 1.8vw, 1rem); margin-top: 4px; }

.brands-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 16px 48px 40px;
  flex: 1;
  align-items: flex-start;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.brands-scroll::-webkit-scrollbar { display: none; }

.brand-item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  width: clamp(250px, 32vw, 380px);
}
.brand-item-title {
  font-weight: 900;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  text-align: center;
  margin: 0;
}
.brand-card {
  width: 100%;
  height: clamp(280px, 45vh, 400px);
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
  /* overflow visible so the image can pop out */
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}
.brand-card:hover { transform: translateY(-8px); }
.brand-btn-more {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  border-radius: 99px;
  padding: 6px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 5;
}
.brand-card:hover .brand-btn-more {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}
.brand-card-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.brand-pop-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: center center;
}
.brand-item-wrapper:hover .brand-pop-image {
  transform: scale(1.1) translateY(-10px);
}

/* ────────────────────────────── SECTION 4: STATS ────────────────────────────── */
#sec-stats {
  background: #fff;
}
#sec-stats .section-content { padding: 80px 40px 40px; }
.stats-header { text-align: center; margin-bottom: 32px; }
.stats-header h2 { font-weight: 900; font-size: clamp(1.7rem, 4.5vw, 3.2rem); color: var(--text-dark); margin: 12px 0 0; }
.stats-rings {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 0;
}
.stats-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(18,112,195,0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 600px) { .stats-grid { gap: 14px; } }

.stats-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(18,112,195,0.08);
  border: 1px solid rgba(18,112,195,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s;
}
.stats-card:hover { transform: translateY(-4px); }
.stats-card-top { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.stats-card-icon {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.stats-num {
  font-weight: 900;
  line-height: 1;
  font-size: clamp(3.2rem, 9vw, 6rem);
}
.stats-lbl { margin-top: 8px; font-weight: 600; color: var(--text-soft); font-size: clamp(0.82rem, 1.9vw, 1.02rem); }

/* ────────────────────────────── SECTION 5: BRANCHES ────────────────────────────── */
#sec-branches {
  background: linear-gradient(160deg, #F8FBFF 0%, #EEF6FF 50%, #F8FBFF 100%);
}
#sec-branches .section-content { padding: 80px 48px 40px; }
.branches-header { text-align: center; margin-bottom: 24px; }
.branches-header h2 { font-weight: 900; font-size: clamp(1.6rem, 4.5vw, 3rem); color: var(--text-dark); margin: 12px 0 8px; }
.branches-hq {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 12px; padding: 10px 20px;
  background: #fff; border: 1px solid rgba(18,112,195,0.18);
  box-shadow: 0 4px 16px rgba(18,112,195,0.08);
}
.branches-hq span { font-weight: 700; color: var(--blue); font-size: clamp(0.88rem, 1.8vw, 1rem); }

.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 20px auto 0;
}
@media (max-width: 768px) { .branches-grid { grid-template-columns: repeat(2, 1fr); } }

.branch-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(18,112,195,0.1);
  box-shadow: 0 4px 16px rgba(18,112,195,0.06);
  transition: transform 0.25s;
}
.branch-card:hover { transform: translateY(-3px); }
.branch-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.branch-name { font-weight: 900; font-size: clamp(0.95rem, 2vw, 1.15rem); color: var(--text-dark); }
.branch-sub { font-size: clamp(0.68rem, 1.3vw, 0.8rem); color: #94A3B8; line-height: 1.4; margin-top: 2px; }

/* ────────────────────────────── SECTION 6: CONTACT ────────────────────────────── */
#sec-contact {
  background: #fff;
  flex-direction: column;
}
.contact-photo-panel {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 35%;
  overflow: hidden;
  z-index: 1;
}
.contact-photo-panel img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
.contact-photo-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.45) 42%, rgba(255,255,255,1) 100%);
}
@media (max-width: 1024px) { .contact-photo-panel { display: none; } }

.contact-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 48px 20px;
  position: relative;
  z-index: 20;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 800px;
  width: 100%;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

.contact-info h2 {
  font-weight: 900;
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  color: var(--text-dark);
  line-height: 1.1;
  margin: 12px 0 14px;
}
.contact-info p {
  color: var(--text-mid); line-height: 1.85;
  font-size: clamp(0.88rem, 1.7vw, 1rem); margin-bottom: 24px;
}
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.contact-item-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-item-label { font-weight: 600; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: #94A3B8; margin-bottom: 3px; }
.contact-item-val { font-weight: 600; font-size: clamp(0.84rem, 1.7vw, 0.98rem); color: var(--text-dark); }

.contact-form {
  background: #fff;
  border: 1.5px solid rgba(18,112,195,0.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(18,112,195,0.08), 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.contact-form-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}
.contact-form h3 { font-weight: 900; font-size: clamp(1.1rem, 2.4vw, 1.3rem); color: var(--text-dark); margin-bottom: 20px; }
.contact-form form { display: flex; flex-direction: column; gap: 14px; }

.contact-footer {
  position: relative; z-index: 20;
  padding: 12px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(18,112,195,0.1);
  background: #FAFBFF;
  flex-shrink: 0;
}
.contact-footer-copy { font-size: clamp(0.68rem, 1.3vw, 0.8rem); color: #94A3B8; }
.fb-link {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: #E8F4FD; border: 1px solid rgba(18,112,195,0.15);
  text-decoration: none; transition: transform 0.2s;
  color: var(--blue);
}
.fb-link:hover { transform: translateY(-2px); }

/* ── Fade-in animation ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeUp 0.5s both ease-out; }
.fade-in-1 { animation-delay: 0.1s; }
.fade-in-2 { animation-delay: 0.2s; }
.fade-in-3 { animation-delay: 0.3s; }
.fade-in-4 { animation-delay: 0.4s; }
.fade-in-5 { animation-delay: 0.5s; }

/* ── Scrollbar ── */
::-webkit-scrollbar { display: none; }
* { -ms-overflow-style: none; scrollbar-width: none; }

/* ── Selection ── */
::selection { background: rgba(18,112,195,0.18); }

/* ── Responsive ── */
@media (max-width: 640px) {
  #navbar { padding: 10px 16px 16px; }
  #navbar-wave { height: 8px; }
  .nav-logo-text { max-width: 190px; }
  .nav-logo-main { font-size: 0.85rem; }
  .nav-logo-sub { font-size: 0.95rem; }
  .nav-items { display: none; }
  .nav-menu-btn { display: block; }
  #dot-nav { display: none; }
  #section-counter { display: none; }
  .about-stats { flex-direction: column; gap: 10px; }
  .contact-main { padding: 70px 24px 20px; }
  .brands-header { padding: 70px 24px 12px; }
  .brands-scroll { padding: 16px 24px 40px; }
  .contact-footer { padding: 12px 24px; }
}

/* ── Mobile: natural document scrolling instead of full-page snap ──
   Prevents content from being clipped by 100dvh + overflow:hidden, and
   removes the "tiny swipe jumps a whole section" behaviour — each
   section becomes a normal block the user scrolls through. ── */
@media (max-width: 768px) {
  html, body { overflow-y: auto; overflow-x: hidden; height: auto; }
  #fullpage { height: auto; overflow: visible; }
  #sections-wrapper { height: auto; transform: none !important; transition: none; }
  .section { height: auto; min-height: auto; overflow: visible; padding-bottom: 40px; }

  #sec-intro { padding-top: 110px; padding-bottom: 40px; }
  #intro-center { padding-top: 0; }
  /* Intro tweaks */
  .intro-split { flex-direction: column-reverse; margin-top: 20px; padding: 0 16px; }
  .intro-logo { width: 100%; max-width: 160px; height: auto; margin-bottom: 20px; }
  .intro-tagline { margin-bottom: 20px; }

  #sec-about { flex-direction: column; }
  .about-content { padding: 90px 24px 40px !important; }

  #sec-vision .section-content,
  #sec-stats .section-content,
  #sec-branches .section-content { padding: 90px 24px 40px; }
  
  .vision-card-wide { margin-right: 0; padding: 20px; }
  .vision-list-wide { grid-template-columns: 1fr; }
  .vision-cards-vertical { gap: 24px; }

  .brands-header { padding-top: 90px; }
  #sec-brands .section-content { min-height: auto; }
  .brand-card { height: 300px; }

  .contact-photo-panel { display: none; }
  .contact-main { padding-top: 90px; }
  .contact-grid { max-width: 100%; }

  .stats-num { font-size: clamp(2.4rem, 12vw, 3.6rem); }
  .vision-card, .stats-card, .branch-card, .stat-card { transform: none !important; }
}

/* ── Product Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  max-height: 90dvh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.modal-overlay.active .modal-box {
  transform: scale(1);
}
.modal-close {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(18, 112, 195, 0.1);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--blue);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.modal-close:hover {
  background: rgba(18, 112, 195, 0.2);
}
.modal-content {
  display: flex;
  flex-direction: column;
}
.modal-image-wrap {
  width: 100%;
  height: 250px;
  background: #F8FBFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-bottom: 1px solid rgba(18,112,195,0.1);
}
.modal-image-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.modal-info {
  padding: 30px;
  text-align: center;
}
.modal-info h3 {
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin: 0 0 10px;
}
.modal-info .badge-blue {
  margin: 0 auto 20px;
}
.modal-info p {
  color: var(--text-mid);
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0;
}

/* ── Animations ── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.animate-on-scroll.fade-in {
  transform: translateY(0) scale(0.95);
}
.animate-on-scroll.slide-left {
  transform: translateX(-30px);
}
.animate-on-scroll.slide-right {
  transform: translateX(30px);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Stagger delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Page load transition */
body.page-fade-in {
  animation: pageFadeIn 0.8s ease-out forwards;
}
@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
