/* =========================================================
   زهرة المدائن — Premium Arabic RTL (Mobile First)
   Static HTML/CSS/JS — GitHub Pages ready
   Strict: box-sizing border-box everywhere, no 100vw,
           navbar no transform/translate, no horizontal scroll.
   ========================================================= */

/* ---------- FONT FACE: Qomra ---------- */
@font-face {
  font-family: 'Qomra';
  src: url('../assets/fonts/Qomra-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Qomra';
  src: url('../assets/fonts/Qomra-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Qomra';
  src: url('../assets/fonts/Qomra-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Qomra';
  src: url('../assets/fonts/Qomra-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- VARIABLES ---------- */
:root {
  --primary: #00a5c3;
  --primary-dark: #008ca6;
  --primary-light: #4cc4da;
  --secondary: #b2a396;
  --bg: #fff8f3;
  --bg-soft: #fffdfb;
  --partners-bg: #dcfbff;
  --text: #1a1a1a;
  --text-soft: #4a5763;
  --muted: #8b95a0;
  --white: #ffffff;
  --border: rgba(0, 165, 195, 0.12);
  --shadow-sm: 0 4px 12px rgba(0, 50, 70, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 50, 70, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 50, 70, 0.12);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --t: 0.3s ease;
  --container: 1200px;
}

/* ---------- GLOBAL RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Qomra', 'Segoe UI', 'Tahoma', sans-serif;
  font-weight: 400;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(0,165,195,0.05), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(178,163,150,0.06), transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.7;
  direction: rtl;
  text-align: right;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul, ol { list-style: none; }

::selection {
  background: var(--primary);
  color: var(--white);
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(0, 165, 195, 0.4); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ---------- LAYOUT (mobile-first) ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 18px;
}

section {
  padding: 70px 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.section-title {
  font-size: clamp(24px, 6vw, 40px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: clamp(14px, 3.4vw, 17px);
  color: var(--text-soft);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: all var(--t);
  text-align: center;
  line-height: 1.2;
}
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 8px 22px rgba(0, 165, 195, 0.30);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 165, 195, 0.45);
}
.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- NAVBAR (no transform/translate, full width, glass) ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 165, 195, 0.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: background var(--t), padding var(--t), box-shadow var(--t), border-color var(--t);
}
.navbar.scrolled {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: none;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 500;
  opacity: 0.78;
  position: relative;
  padding: 6px 0;
  transition: opacity var(--t), color var(--t);
}
.nav-links a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--t);
}
.nav-links a:hover { color: var(--primary); opacity: 1; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, #00a5c3, #008ca6);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 50px;
  font-weight: 500;
  opacity: 1 !important;
  box-shadow: 0 8px 20px rgba(0, 165, 195, 0.3);
}
.nav-cta:hover {
  box-shadow: 0 12px 30px rgba(0, 165, 195, 0.4);
}
.nav-cta::after { display: none; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: opacity var(--t), background var(--t);
}
.menu-toggle.active span:nth-child(1) { background: var(--primary); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { background: var(--primary); }

/* mobile dropdown */
.nav-mobile-panel {
  position: fixed;
  top: 64px;
  left: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 165, 195, 0.15);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.10);
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}
.nav-mobile-panel.open { display: flex; }
.nav-mobile-panel a {
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 500;
  padding: 12px 14px;
  border-radius: 12px;
  text-align: right;
}
.nav-mobile-panel a:hover {
  background: rgba(0, 165, 195, 0.08);
  color: var(--primary);
}
.nav-mobile-panel .nav-cta {
  text-align: center;
  margin-top: 6px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 110px 0 60px;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.45;
  pointer-events: none;
}
.hero-bg-shape.shape-1 {
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 165, 195, 0.5), transparent 70%);
}
.hero-bg-shape.shape-2 {
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(178, 163, 150, 0.5), transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(0, 165, 195, 0.10);
  color: var(--primary-dark);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(0, 165, 195, 0.18);
  margin-bottom: 22px;
}

.hero-text { text-align: center; }

.hero h1 {
  font-size: clamp(28px, 8vw, 56px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero-h1-accent {
  display: block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 6px;
  font-size: 0.85em;
}

.hero p.lead {
  font-size: clamp(15px, 3.6vw, 18px);
  color: var(--text-soft);
  line-height: 1.85;
  max-width: 620px;
  margin: 0 auto 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 38px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.hero-stat {
  text-align: center;
  padding: 14px 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 165, 195, 0.10);
  backdrop-filter: blur(8px);
}
.hero-stat strong {
  display: block;
  font-size: clamp(18px, 5vw, 26px);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.3px;
  line-height: 1.1;
}
.hero-stat span {
  display: block;
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 4px;
}

/* HERO GLOBE */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 320px;
}
.globe {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(0, 140, 166, 0.4), transparent 60%),
    linear-gradient(135deg, #4cc4da, #00a5c3, #008ca6);
  box-shadow:
    inset -16px -16px 50px rgba(0, 50, 70, 0.4),
    inset 16px 16px 30px rgba(255, 255, 255, 0.2),
    0 0 60px rgba(0, 165, 195, 0.5),
    0 20px 60px rgba(0, 50, 70, 0.2);
  position: relative;
  overflow: hidden;
  animation: globeRotate 20s linear infinite;
}
.globe::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    repeating-linear-gradient(0deg, transparent 0 32px, rgba(255,255,255,0.08) 32px 33px),
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(255,255,255,0.08) 32px 33px);
  opacity: 0.7;
}
.globe::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(ellipse 80px 50px at 25% 35%, rgba(178,163,150,0.7), transparent 70%),
    radial-gradient(ellipse 60px 40px at 70% 50%, rgba(178,163,150,0.6), transparent 70%),
    radial-gradient(ellipse 70px 50px at 50% 75%, rgba(178,163,150,0.55), transparent 70%);
}
@keyframes globeRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.globe-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  margin-top: -150px;
  margin-left: -150px;
  border: 1.5px dashed rgba(0, 165, 195, 0.35);
  border-radius: 50%;
  animation: orbit 18s linear infinite;
  pointer-events: none;
}
.globe-orbit::before {
  content: '✈';
  position: absolute;
  top: -14px;
  left: 50%;
  margin-left: -14px;
  font-size: 24px;
  color: var(--primary);
  filter: drop-shadow(0 4px 10px rgba(0, 165, 195, 0.5));
}
@keyframes orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.globe-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  margin-top: -160px;
  margin-left: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,165,195,0.4) 0%, transparent 70%);
  filter: blur(35px);
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.85; }
}

/* ---------- PARTNERS ---------- */
.partners { padding: 60px 0; }

.partners-box {
  background: var(--partners-bg);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.partners-box::before,
.partners-box::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.partners-box::before {
  right: 0;
  background: linear-gradient(to left, var(--partners-bg), transparent);
}
.partners-box::after {
  left: 0;
  background: linear-gradient(to right, var(--partners-bg), transparent);
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.partners-box:hover .marquee { animation-play-state: paused; }

.marquee-item {
  flex-shrink: 0;
  margin: 0 20px;
  width: 110px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t);
}
.marquee-item img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.marquee-item:hover { transform: scale(1.1); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

/* ---------- EXPERIENCE ---------- */
.experience-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.experience-text { text-align: center; }
.experience-text p {
  font-size: clamp(15px, 3.4vw, 18px);
  color: var(--text-soft);
  line-height: 1.95;
  max-width: 620px;
  margin: 16px auto 0;
}
.experience-globe {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.experience-globe .globe {
  width: 200px;
  height: 200px;
}
.experience-globe .globe-orbit {
  width: 250px;
  height: 250px;
  margin-top: -125px;
  margin-left: -125px;
}
.experience-globe .globe-glow {
  width: 270px;
  height: 270px;
  margin-top: -135px;
  margin-left: -135px;
}

/* ---------- OFFERS (interactive cards) ---------- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}
.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 16px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  width: 100%;
}
.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  opacity: 0;
  transition: opacity var(--t);
  z-index: 0;
}
.offer-card > * { position: relative; z-index: 1; }
.offer-card:hover,
.offer-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  outline: none;
}
.offer-card:hover::before,
.offer-card:focus-visible::before { opacity: 1; }
.offer-card:hover .offer-icon,
.offer-card:focus-visible .offer-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.offer-card:hover .offer-title,
.offer-card:focus-visible .offer-title { color: var(--white); }

.offer-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(0, 165, 195, 0.10);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: background var(--t), color var(--t);
}
.offer-icon svg {
  width: 26px;
  height: 26px;
}

.offer-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  transition: color var(--t);
}

/* ---------- WHY US ---------- */
.whyus { background: rgba(0, 165, 195, 0.04); }

.whyus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.whyus-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
}
.whyus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.whyus-num {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(0, 165, 195, 0.10);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whyus-card h3 {
  font-size: clamp(14px, 3.6vw, 17px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
}
.whyus-highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.whyus-highlight::after {
  content: '★';
  position: absolute;
  top: 14px;
  left: 16px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 16px;
}
.whyus-highlight h3 { color: var(--white); }
.whyus-highlight .whyus-num {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* ---------- UMRAH ---------- */
.umrah-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
.umrah-text { text-align: center; }
.umrah-text .btn { margin-top: 12px; }

.umrah-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}
.umrah-mockup img {
  max-width: 260px;
  width: 100%;
  filter: drop-shadow(0 25px 50px rgba(0, 50, 70, 0.22));
  animation: floatY 5s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.umrah-mockup::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  margin-left: -25%;
  width: 50%;
  height: 22px;
  background: rgba(0, 50, 70, 0.18);
  border-radius: 50%;
  filter: blur(16px);
  animation: shadowPulse 5s ease-in-out infinite;
  z-index: -1;
}
@keyframes shadowPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.35; }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: linear-gradient(180deg, var(--bg) 0%, var(--partners-bg) 100%);
  overflow: hidden;
  padding-inline: 0;
}
.testimonials > .container { padding-inline: 18px; }

.testimonials-track-wrap {
  position: relative;
  overflow: hidden;
  padding: 14px 0;
}
.testimonials-track-wrap::before,
.testimonials-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  z-index: 2;
  pointer-events: none;
}
.testimonials-track-wrap::before {
  right: 0;
  background: linear-gradient(to left, var(--partners-bg), transparent);
}
.testimonials-track-wrap::after {
  left: 0;
  background: linear-gradient(to right, var(--partners-bg), transparent);
}

.testimonials-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: testimonialScroll 36s linear infinite;
  padding-inline: 16px;
}
.testimonials-track-wrap:hover .testimonials-track { animation-play-state: paused; }

@keyframes testimonialScroll {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

.testimonial {
  flex-shrink: 0;
  width: 280px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform var(--t), box-shadow var(--t);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.testimonial-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(0, 165, 195, 0.10);
  border-radius: 50%;
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.testimonial-quote {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.85;
}

/* ---------- BRANCH (Khalda) ---------- */
.branch-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr;
}
.branch-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.branch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.branch-image:hover img { transform: scale(1.06); }
.branch-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  box-shadow: 0 6px 16px rgba(0, 165, 195, 0.35);
}
.branch-text {
  padding: 28px 22px;
  text-align: center;
}
.branch-text .section-title {
  text-align: center;
  margin-bottom: 14px;
}
.branch-text p {
  font-size: clamp(14px, 3.4vw, 16px);
  color: var(--text-soft);
  line-height: 1.95;
  margin-bottom: 20px;
}
.branch-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.branch-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.branch-meta svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ---------- MANAGEMENT ---------- */
.management { background: linear-gradient(180deg, var(--bg) 0%, #f4ece3 100%); }

.management-card {
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  padding: 28px 22px;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.management-text { text-align: center; }
.management-text .section-title { text-align: center; }
.management-text p {
  font-size: clamp(14px, 3.4vw, 16px);
  color: var(--text-soft);
  line-height: 1.95;
  margin: 14px auto 22px;
  max-width: 620px;
}
.management-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}
.management-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  text-align: right;
  transition: background var(--t);
}
.management-list li:hover { background: rgba(0, 165, 195, 0.06); }
.management-list strong {
  display: block;
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
}
.management-list span {
  display: block;
  color: var(--text-soft);
  font-size: 13px;
}

.management-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
  background: #ddd;
  box-shadow: var(--shadow-md);
}
.board-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}
.board-slide.active {
  opacity: 1;
  visibility: visible;
}
.board-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.board-slide-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0,30,40,0.92), rgba(0,30,40,0.5) 50%, transparent);
  color: #fff;
  padding: 22px 18px 18px;
}
.board-slide-overlay strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}
.board-slide-overlay span {
  font-size: 13px;
  opacity: 0.92;
}
.board-arrows {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  z-index: 3;
}
.board-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary);
  transition: background var(--t), color var(--t);
}
.board-arrow:hover {
  background: var(--primary);
  color: #fff;
}
.board-arrow svg {
  width: 16px;
  height: 16px;
}

/* ---------- FACEBOOK ---------- */
.facebook {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.facebook::before {
  content: 'f';
  position: absolute;
  top: -80px;
  left: -40px;
  font-size: 360px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  font-family: 'Arial Black', sans-serif;
  line-height: 1;
  pointer-events: none;
}
.facebook-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.facebook-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.facebook-icon svg {
  width: 32px;
  height: 32px;
  color: #fff;
}
.facebook .section-title {
  color: #fff;
  margin-bottom: 8px;
}
.facebook p {
  font-size: clamp(14px, 3.4vw, 17px);
  margin-bottom: 18px;
  opacity: 0.95;
}
.facebook .followers-count {
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 700;
  margin-bottom: 22px;
}
.btn-facebook {
  background: #fff;
  color: var(--primary-dark);
  font-weight: 700;
  padding: 13px 28px;
}
.btn-facebook:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- SOCIAL LINKS ---------- */
.social { padding: 60px 0; }
.social-inner { text-align: center; }
.social-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.social-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--t), background var(--t), color var(--t), box-shadow var(--t);
}
.social-icon:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 165, 195, 0.35);
}
.social-icon svg {
  width: 22px;
  height: 22px;
}

/* ---------- CONTACT ---------- */
.contact { padding: 50px 0 70px; }
.contact-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 36px 22px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 165, 195, 0.30);
  position: relative;
  overflow: hidden;
}
.contact-card::before,
.contact-card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.contact-card::before {
  width: 220px;
  height: 220px;
  top: -100px;
  right: -80px;
}
.contact-card::after {
  width: 160px;
  height: 160px;
  bottom: -70px;
  left: -60px;
}
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  padding: 14px 24px;
  border-radius: 50px;
  font-size: clamp(18px, 5vw, 24px);
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
  z-index: 2;
  transition: background var(--t), color var(--t), transform var(--t);
  direction: ltr;
}
.contact-phone:hover {
  background: #fff;
  color: var(--primary-dark);
  transform: translateY(-2px);
}
.contact-phone svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------- FOOTER ---------- */
.footer {
  background: linear-gradient(180deg, #0f2530 0%, #051820 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 36px 0 24px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.btn-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  transition: background var(--t), color var(--t), transform var(--t);
  direction: ltr;
}
.btn-email:hover {
  background: #fff;
  color: var(--primary-dark);
  transform: translateY(-2px);
}
.footer-bottom {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-hero {
  padding: 140px 0 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero h1 {
  font-size: clamp(28px, 7vw, 48px);
  font-weight: 700;
  color: var(--text);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  z-index: 2;
}

.about-intro { padding: 40px 0 80px; }
.about-intro-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 22px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.about-intro-image {
  display: flex;
  justify-content: center;
}
.about-intro-image .icon-big {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, rgba(0,165,195,0.12), rgba(0,165,195,0.04));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-intro-image .icon-big::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 2px dashed rgba(0, 165, 195, 0.4);
  border-radius: 50%;
  animation: orbit 20s linear infinite;
}
.about-intro-image img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}
.about-intro-text {
  text-align: center;
}
.about-intro-text p {
  color: var(--text-soft);
  line-height: 2;
  font-size: clamp(14px, 3.4vw, 16.5px);
  margin-bottom: 14px;
}
.about-intro-text p:last-child { margin-bottom: 0; }

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE — TABLET & UP
   ========================================================= */
@media (min-width: 600px) {
  .container { padding-inline: 24px; }
  section { padding: 90px 0; }

  .hero-actions { gap: 14px; }
  .hero-stats { gap: 16px; }

  .marquee-item { width: 130px; height: 70px; margin: 0 28px; }
  .partners-box { padding: 36px 0; }

  .offers-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .whyus-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonial { width: 320px; padding: 26px 22px; }

  .branch-card { grid-template-columns: 1fr 1fr; }
  .branch-text { padding: 36px 30px; text-align: right; }
  .branch-text .section-title { text-align: right; }
  .branch-meta { align-items: flex-start; }

  .about-intro-card { padding: 44px 36px; }
}

@media (min-width: 900px) {
  section { padding: 110px 0; }

  .nav-links { display: flex; }
  .menu-toggle { display: none; }

  .hero { padding: 140px 0 80px; }
  .hero-inner {
    grid-template-columns: 1.15fr 1fr;
    gap: 50px;
  }
  .hero-text { text-align: right; }
  .hero p.lead { margin: 0 0 28px; }
  .hero-actions { justify-content: flex-start; }
  .hero-stats { margin: 0; max-width: none; }
  .hero-visual { min-height: 420px; }
  .globe { width: 320px; height: 320px; }
  .globe-orbit { width: 400px; height: 400px; margin-top: -200px; margin-left: -200px; }
  .globe-glow { width: 420px; height: 420px; margin-top: -210px; margin-left: -210px; }

  .marquee-item { width: 150px; height: 75px; margin: 0 32px; }

  .experience-inner { grid-template-columns: 1fr 1fr; gap: 60px; }
  .experience-text { text-align: right; }
  .experience-text .section-title { text-align: right; }
  .experience-text p { margin: 16px 0 0; }
  .experience-globe { min-height: 380px; }
  .experience-globe .globe { width: 260px; height: 260px; }
  .experience-globe .globe-orbit { width: 330px; height: 330px; margin-top: -165px; margin-left: -165px; }
  .experience-globe .globe-glow { width: 350px; height: 350px; margin-top: -175px; margin-left: -175px; }

  .offers-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .offer-card { padding: 32px 20px; }
  .offer-icon { width: 64px; height: 64px; }
  .offer-icon svg { width: 30px; height: 30px; }
  .offer-title { font-size: 17px; }

  .whyus-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .whyus-card { padding: 28px 26px; }

  .umrah-inner { grid-template-columns: 1fr 1fr; gap: 50px; }
  .umrah-text { text-align: right; }
  .umrah-text .section-title { text-align: right; }
  .umrah-mockup img { max-width: 320px; }

  .testimonial { width: 360px; padding: 28px 24px; }

  .branch-image { aspect-ratio: auto; min-height: 420px; }
  .branch-text { padding: 50px 40px; }

  .management-card { grid-template-columns: 1fr 1fr; gap: 50px; padding: 44px 40px; }
  .management-text { text-align: right; }
  .management-text .section-title { text-align: right; }
  .management-text p { margin: 14px 0 22px; }
  .management-list { max-width: none; }

  .about-hero { padding: 180px 0 50px; }
  .about-intro-card {
    grid-template-columns: 1fr 1.6fr;
    gap: 50px;
    padding: 56px 50px;
  }
  .about-intro-text { text-align: right; }
  .about-intro-image .icon-big { width: 200px; height: 200px; }
  .about-intro-image img { width: 110px; height: 110px; }
}

@media (min-width: 1100px) {
  .hero h1 { font-size: 56px; }
  .hero-stats { max-width: 520px; }
  .hero-stat { padding: 16px 10px; }
  .marquee-item { width: 160px; }
}

/* ---------- accessibility: reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .marquee, .testimonials-track, .globe, .globe-orbit, .globe-glow, .umrah-mockup img {
    animation: none !important;
  }
}
