/* ==========================================================================
   Jwan Modern Pharma Import Co. - Official Stylesheet
   Ultra-Modern, Daylight Medical Aesthetic, Balanced Typography & Mobile-First
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Tajawal:wght@300;400;500;700;800;900&display=swap');

/* --- Root Variables & Theme Tokens --- */
:root {
  /* Brand Primary - Deep Ocean & Sapphire Blue */
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --primary-300: #93c5fd;
  --primary-400: #38bdf8;
  --primary-500: #0ea5e9;
  --primary-600: #0284c7;
  --primary: #0b62c4;
  --primary-dark: #004899;
  --primary-darker: #082f6c;
  --primary-subtle: #f0f7ff;

  /* Brand Secondary - Botanical Leaf Green */
  --secondary-50: #f0fdf4;
  --secondary-100: #dcfce7;
  --secondary-200: #bbf7d0;
  --secondary-300: #86efac;
  --secondary-400: #84cc16;
  --secondary-500: #74b437;
  --secondary: #68a62c;
  --secondary-dark: #50861e;
  --secondary-darker: #365c12;
  --secondary-subtle: #f4fbf0;

  /* Daylight Clean Backgrounds & Surfaces */
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-glass: rgba(255, 255, 255, 0.9);
  --bg-accent: #f1f5f9;
  --bg-dark-section: #0b192c;

  /* Text & Contrast */
  --text-main: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Borders & Dividers */
  --border-light: #e2e8f0;
  --border-focus: #93c5fd;
  --border-card: rgba(226, 232, 240, 0.85);

  /* Shadows - Ambient & Crisp */
  --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 6px -1px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 20px -4px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 16px 30px -8px rgba(11, 98, 196, 0.1);
  --shadow-xl: 0 20px 40px -10px rgba(11, 98, 196, 0.16);

  /* Typography */
  --font-arabic: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-english: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Transitions */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-full: 9999px;
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 15px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-arabic);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

html[lang="en"] body {
  font-family: var(--font-english);
  font-size: 14.5px;
}

img, svg, video {
  max-width: 100%;
  display: block;
}

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* --- Container & Grid --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* --- Typography Helpers --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.28;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.9rem;
  background: var(--primary-subtle);
  color: var(--primary);
  border: 1px solid var(--primary-200);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 0.75rem;
}

.section-tag.tag-green {
  background: var(--secondary-subtle);
  color: var(--secondary-dark);
  border-color: var(--secondary-200);
}

.section-title {
  font-size: 1.85rem;
  letter-spacing: -0.3px;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Buttons & UI Controls --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.45rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.925rem;
  cursor: pointer;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-white);
  box-shadow: 0 8px 20px -4px rgba(11, 98, 196, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -4px rgba(11, 98, 196, 0.45);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--text-white);
  box-shadow: 0 8px 20px -4px rgba(104, 166, 44, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -4px rgba(104, 166, 44, 0.45);
}

.btn-outline {
  background: #ffffff;
  color: var(--primary);
  border: 1.5px solid var(--primary-200);
}

.btn-outline:hover {
  background: var(--primary-subtle);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.topbar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.8rem;
  padding: 0.4rem 0;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .topbar {
    display: none !important;
  }
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--bg-accent);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--primary-dark);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-light);
}

.lang-switch-btn:hover {
  background: var(--primary-100);
  color: var(--primary);
}

/* ==========================================================================
   Navbar & Header - Prominent & Beautifully Balanced
   ========================================================================== */
.header-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  transition: var(--transition-smooth);
}

.header-sticky.is-scrolled {
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(11, 98, 196, 0.15));
  transition: transform 0.3s ease;
}

.brand-logo:hover img {
  transform: scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1.15;
  white-space: nowrap;
}

.brand-subtitle {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--secondary);
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 1.85rem;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-weight: 700;
  color: var(--text-main);
  position: relative;
  padding: 0.45rem 0;
  font-size: 1.05rem;
  white-space: nowrap;
  letter-spacing: -0.1px;
}

html[lang="en"] .nav-link {
  font-size: 1rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  border-radius: var(--radius-full);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-actions .btn {
  padding: 0.65rem 1.45rem;
  font-size: 0.95rem;
  font-weight: 800;
}

@media (max-width: 1023px) {
  .nav-actions .btn-download-profile {
    display: none; /* Hidden on mobile navbar to prevent squeezing & horizontal scroll */
  }

  .brand-logo img {
    height: 48px;
  }

  .brand-title {
    font-size: 1.15rem;
  }

  .brand-subtitle {
    font-size: 0.725rem;
  }
}

.menu-toggle-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 38px;
  height: 38px;
  background: var(--bg-accent);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 7px;
}

@media (min-width: 1024px) {
  .menu-toggle-btn {
    display: none;
  }
}

.menu-toggle-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--primary-dark);
  border-radius: 2px;
}

/* Mobile Offcanvas Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  width: 82%;
  max-width: 340px;
  background: #ffffff;
  z-index: 2000;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

html[lang="en"] .mobile-drawer {
  right: auto;
  left: -100%;
  transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.is-open {
  right: 0;
}

html[lang="en"] .mobile-drawer.is-open {
  left: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.drawer-close {
  background: var(--bg-accent);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.drawer-link {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-light);
}

.drawer-link:hover {
  color: var(--primary);
}

/* Drawer Footer & Enhanced Language Selector */
.drawer-footer {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.drawer-lang-widget {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  border: 1.5px solid var(--primary-200);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  box-shadow: 0 4px 15px rgba(11, 98, 196, 0.06);
}

.drawer-lang-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.drawer-lang-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.825rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.drawer-lang-title svg {
  color: var(--primary);
}

.drawer-lang-badge {
  background: var(--primary);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.drawer-lang-segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  background: #ffffff;
  padding: 0.3rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.drawer-lang-opt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 0.5rem;
  border-radius: 6px;
  background: transparent;
  color: var(--text-body);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.drawer-lang-opt .lang-opt-flag {
  font-size: 1rem;
  line-height: 1;
}

.drawer-lang-opt:hover {
  background: var(--bg-accent);
  color: var(--primary);
}

.drawer-lang-opt.is-active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(11, 98, 196, 0.25);
}

.drawer-lang-opt.is-active:hover {
  color: #ffffff;
}

.drawer-whatsapp-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 3.5rem 0 4rem;
  background: radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(104, 166, 44, 0.06) 0%, transparent 45%),
              linear-gradient(180deg, #ffffff 0%, var(--bg-page) 100%);
  overflow: hidden;
}

.hero-glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  top: -40px;
  right: -40px;
  width: 380px;
  height: 380px;
  background: rgba(11, 98, 196, 0.1);
}

.hero-glow-2 {
  bottom: -40px;
  left: -40px;
  width: 340px;
  height: 340px;
  background: rgba(104, 166, 44, 0.1);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-badges-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xs);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.hero-badge-pill .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
  animation: pulseGlowGreen 2s infinite;
}

.hero-title {
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.24;
  margin-bottom: 1.15rem;
  color: var(--text-main);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.65rem;
  }
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-light);
}

@media (min-width: 576px) {
  .hero-stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-stat-box {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
}

.hero-stat-num span {
  color: var(--secondary);
}

.hero-stat-label {
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Hero Showcase Visuals */
.hero-visual-card {
  position: relative;
  perspective: 1000px;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid rgba(255, 255, 255, 0.95);
  transform: perspective(800px) rotateY(-3deg) rotateX(1deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

html[lang="en"] .hero-image-wrapper {
  transform: perspective(800px) rotateY(3deg) rotateX(1deg);
}

.hero-visual-card:hover .hero-image-wrapper {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg);
}

.hero-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.hero-floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.floating-agency-badge {
  top: 8%;
  right: -15px;
  animation: floatSlow 6s ease-in-out infinite;
}

html[lang="en"] .floating-agency-badge {
  right: auto;
  left: -15px;
}

.floating-coverage-badge {
  bottom: 6%;
  left: -15px;
  animation: floatSlowReverse 7s ease-in-out infinite;
}

html[lang="en"] .floating-coverage-badge {
  left: auto;
  right: -15px;
}

@media (max-width: 576px) {
  .floating-agency-badge {
    right: 0;
    top: 4%;
  }

  html[lang="en"] .floating-agency-badge {
    left: 0;
  }

  .floating-coverage-badge {
    left: 0;
    bottom: 4%;
  }

  html[lang="en"] .floating-coverage-badge {
    right: 0;
  }
}

.badge-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon-box.green {
  background: var(--secondary-subtle);
  color: var(--secondary);
}

.badge-info h4 {
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1px;
}

.badge-info p {
  font-size: 0.725rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Highlights Strip
   ========================================================================== */
.highlights-section {
  padding: 2rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem;
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.highlight-card:hover {
  background: #ffffff;
  border-color: var(--primary-300);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.highlight-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary-100);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-card:nth-child(2) .highlight-icon {
  background: var(--secondary-100);
  color: var(--secondary);
}

.highlight-card:nth-child(3) .highlight-icon {
  background: #fef3c7;
  color: #d97706;
}

.highlight-card:nth-child(4) .highlight-icon {
  background: #e0e7ff;
  color: #4f46e5;
}

.highlight-title {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.highlight-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-section {
  padding: 4.5rem 0;
  background: var(--bg-page);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid #ffffff;
}

.about-image-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-overlay-box {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  left: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about-text {
  font-size: 0.975rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .vision-mission-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.vm-card {
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: var(--transition-smooth);
}

.vm-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-200);
}

.vm-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--primary-50);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.vm-card.mission .vm-icon {
  background: var(--secondary-50);
  color: var(--secondary);
}

.vm-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.vm-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   Accurate Yemen Map & Distribution Network
   ========================================================================== */
.map-section {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-page) 100%);
  position: relative;
}

.map-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch; /* Aligns both cards to the exact same vertical level */
}

@media (min-width: 992px) {
  .map-layout-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.map-card-wrapper {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.map-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-light);
}

.map-tabs {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.map-tab-btn {
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.785rem;
  font-weight: 700;
  background: var(--bg-accent);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.map-tab-btn.active, .map-tab-btn:hover {
  background: var(--primary);
  color: #ffffff;
}

.map-container {
  position: relative;
  width: 100%;
  min-height: 420px;
  background: radial-gradient(circle at 40% 50%, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.yemen-svg-map {
  width: 100%;
  max-height: 480px;
  filter: drop-shadow(0 8px 18px rgba(11, 98, 196, 0.06));
}

.yemen-mainland-path {
  fill: #e8f2fc;
  stroke: #b8d7f5;
  stroke-width: 14;
  transition: fill 0.3s ease;
}

.yemen-mainland-path:hover {
  fill: #d8ebfc;
}

.yemen-island-path {
  fill: #e8f2fc;
  stroke: #b8d7f5;
  stroke-width: 10;
}

/* Map Pins in Accurate Coordinate System */
.city-pin {
  cursor: pointer;
  transition: transform 0.25s ease;
}

.city-pin:hover, .city-pin.active {
  transform: scale(1.3);
}

.pin-core {
  fill: var(--primary);
  stroke: #ffffff;
  stroke-width: 14;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25));
}

.pin-core.hq {
  fill: #ef4444;
  stroke-width: 16;
}

.pin-core.green {
  fill: var(--secondary);
}

.city-label-accurate {
  font-family: var(--font-arabic);
  font-size: 78px;
  font-weight: 800;
  fill: #0f172a;
  text-anchor: middle;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.95));
}

html[lang="en"] .city-label-accurate {
  font-family: var(--font-english);
  font-size: 70px;
}

/* Map Details Sidebar Card - Fixed Steady Height & Layout */
.map-details-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 520px; /* Steady fixed height */
}

.map-city-header {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.map-city-badge {
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  background: var(--primary-subtle);
  color: var(--primary);
}

.map-city-name {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text-main);
  margin-top: 0.35rem;
}

.map-city-desc-box {
  min-height: 68px; /* Fixed description space */
  margin-bottom: 1.15rem;
}

#mapSelectedCityDesc {
  color: var(--text-body);
  font-size: 0.925rem;
  line-height: 1.65;
}

.map-city-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.meta-box {
  background: var(--bg-page);
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.meta-label {
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.meta-value {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--text-main);
}

.cities-list-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1.25rem;
}

.city-tag-btn {
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  font-weight: 700;
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.city-tag-btn:hover, .city-tag-btn.active {
  background: var(--primary-subtle);
  border-color: var(--primary);
  color: var(--primary);
}

/* ==========================================================================
   Milestones Roadmap (2020 - 2025) - Ultra Clean & 100% Bug-Free Layout
   ========================================================================== */
.timeline-section {
  padding: 4.5rem 0;
  background: var(--bg-page);
  overflow: hidden;
}

.timeline-container {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 1.5rem 0;
}

/* Central spine line */
.timeline-track-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  left: 50%;
  transform: translateX(-50%);
  border-radius: var(--radius-full);
}

.timeline-item {
  position: relative;
  width: 50%;
  box-sizing: border-box;
  margin-bottom: 2.25rem;
}

/* RTL Mode Alternation */
html[dir="rtl"] .timeline-item:nth-child(odd) {
  margin-right: 0;
  margin-left: auto;
  padding-left: 2.25rem;
  padding-right: 0;
  text-align: right;
}

html[dir="rtl"] .timeline-item:nth-child(even) {
  margin-right: auto;
  margin-left: 0;
  padding-right: 2.25rem;
  padding-left: 0;
  text-align: right;
}

/* LTR Mode Alternation */
html[dir="ltr"] .timeline-item:nth-child(odd) {
  margin-left: 0;
  margin-right: auto;
  padding-right: 2.25rem;
  padding-left: 0;
  text-align: left;
}

html[dir="ltr"] .timeline-item:nth-child(even) {
  margin-left: auto;
  margin-right: 0;
  padding-left: 2.25rem;
  padding-right: 0;
  text-align: left;
}

/* Timeline Node Circle */
.timeline-node {
  position: absolute;
  top: 1.15rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(11, 98, 196, 0.2);
  z-index: 3;
}

html[dir="rtl"] .timeline-item:nth-child(odd) .timeline-node {
  left: -10px;
  right: auto;
}

html[dir="rtl"] .timeline-item:nth-child(even) .timeline-node {
  right: -10px;
  left: auto;
}

html[dir="ltr"] .timeline-item:nth-child(odd) .timeline-node {
  right: -10px;
  left: auto;
}

html[dir="ltr"] .timeline-item:nth-child(even) .timeline-node {
  left: -10px;
  right: auto;
}

.timeline-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.timeline-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-300);
}

.timeline-year-tag {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--text-main);
}

.timeline-desc {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.6;
}

.timeline-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  padding: 0.25rem 0.7rem;
  background: var(--secondary-subtle);
  color: var(--secondary-dark);
  border: 1px solid var(--secondary-200);
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  font-weight: 700;
}

/* Mobile Responsive (< 768px) Timeline */
@media (max-width: 768px) {
  .timeline-track-line {
    left: auto !important;
    right: 22px !important;
    transform: none !important;
  }

  html[dir="ltr"] .timeline-track-line {
    right: auto !important;
    left: 22px !important;
  }

  .timeline-item {
    width: 100% !important;
    margin: 0 0 2rem 0 !important;
    padding: 0 !important;
    padding-right: 50px !important;
    padding-left: 0 !important;
    text-align: right !important;
  }

  html[dir="ltr"] .timeline-item {
    padding-left: 50px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  .timeline-item .timeline-node {
    top: 1rem;
    right: 12px !important;
    left: auto !important;
  }

  html[dir="ltr"] .timeline-item .timeline-node {
    left: 12px !important;
    right: auto !important;
  }
}

/* ==========================================================================
   Scope of Activities
   ========================================================================== */
.activities-section {
  padding: 4.5rem 0;
  background: #ffffff;
}

.activities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .activities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.activity-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.35rem;
  box-shadow: var(--shadow-xs);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.activity-card:hover {
  background: #ffffff;
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-200);
}

.activity-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  transition: var(--transition-smooth);
}

.activity-card:hover .activity-icon-wrap {
  background: var(--primary);
  color: #ffffff;
}

.activity-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.activity-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.activity-points {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-light);
}

.activity-point-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.785rem;
  font-weight: 600;
  color: var(--text-body);
}

.activity-point-item svg {
  color: var(--secondary);
  flex-shrink: 0;
}

/* ==========================================================================
   Partners & Global Agencies
   ========================================================================== */
.partners-section {
  padding: 4.5rem 0;
  background: var(--bg-page);
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

@media (min-width: 640px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.partner-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-300);
}

.partner-card.featured {
  border: 1.5px solid var(--primary-300);
  background: linear-gradient(180deg, #ffffff 0%, var(--primary-subtle) 100%);
}

.partner-top-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.partner-tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
}

.partner-tag-pill.green {
  background: var(--secondary-subtle);
  color: var(--secondary-dark);
  border: 1px solid var(--secondary-200);
}

.partner-tag-pill.blue {
  background: var(--primary-subtle);
  color: var(--primary);
  border: 1px solid var(--primary-200);
}

.partner-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.partner-flag-badge {
  font-size: 1.5rem;
  line-height: 1;
}

.partner-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
}

.partner-country {
  font-size: 0.785rem;
  font-weight: 600;
  color: var(--primary);
}

.partner-body {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.15rem;
}

.partner-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.785rem;
  font-weight: 700;
  color: var(--text-main);
}

/* ==========================================================================
   Cold Chain & Supply Infrastructure
   ========================================================================== */
.supply-section {
  padding: 4.5rem 0;
  background: #ffffff;
}

.supply-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  align-items: center;
}

@media (min-width: 992px) {
  .supply-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.supply-visual-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid #ffffff;
}

.supply-visual-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.supply-overlay-pill {
  position: absolute;
  bottom: 1.15rem;
  left: 1.15rem;
  right: 1.15rem;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.supply-overlay-pill h4 {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 1px;
}

.supply-overlay-pill p {
  font-size: 0.75rem;
  color: #94a3b8;
}

.supply-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-top: 1.5rem;
}

.supply-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.supply-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ==========================================================================
   Contact Us & Partnership Section
   ========================================================================== */
.contact-section {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, var(--bg-page) 0%, #ffffff 100%);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: var(--transition-smooth);
}

.contact-card-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-200);
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-item.whatsapp-card .contact-icon-box {
  background: var(--secondary-subtle);
  color: var(--secondary);
}

.contact-card-item h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.contact-card-item p {
  font-size: 0.875rem;
  color: var(--text-body);
}

.contact-phones-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  background: var(--primary-50);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
}

.phone-link:hover {
  background: var(--primary);
  color: #ffffff;
}

/* Form Container */
.contact-form-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-label {
  display: block;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-page);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.875rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 98, 196, 0.1);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-feedback {
  display: none;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.15rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.form-feedback.success {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary-subtle);
  border: 1px solid var(--secondary-300);
  color: var(--secondary-darker);
}

.form-feedback.error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #0b192c;
  color: #94a3b8;
  padding: 4rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  margin-bottom: 2.75rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.35fr 0.85fr 0.9fr 1.1fr;
  }
}

.footer-logo-card {
  background: #ffffff;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease;
}

.footer-logo-card:hover {
  transform: translateY(-2px);
}

.footer-logo-card img {
  height: 85px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0;
  display: block;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  color: #cbd5e1;
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.15rem;
  position: relative;
  padding-bottom: 0.4rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background: var(--secondary);
  border-radius: var(--radius-full);
}

html[dir="rtl"] .footer-heading::after {
  left: auto;
  right: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link {
  color: #cbd5e1;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: #ffffff;
}

.footer-dist-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.footer-dist-badge {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.725rem;
  font-weight: 600;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
}

/* ==========================================================================
   Floating Action Button & WhatsApp Pill
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

html[dir="rtl"] .floating-actions {
  left: auto;
  right: 1.5rem;
}

.whatsapp-float-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #ffffff;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition-bounce);
}

.whatsapp-float-btn:hover {
  transform: translateY(-3px) scale(1.03);
}

.scroll-top-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.scroll-top-btn.is-active {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}
