/* ============================================================
   INTEGRATED COMPANY — SENEGAL SUBDOMAIN
   Premium Glassmorphism Stylesheet
   Version 2.0 | 2026
   ============================================================ */

/* ─────────────────────────────────────────────────────────────
   § 0  GOOGLE FONTS
   ───────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ─────────────────────────────────────────────────────────────
   § 1  CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ───────────────────────────────────────────────────────────── */
:root {
  /* ── Brand Palette ── */
  --primary:             hsl(216, 65%, 28%);
  --primary-light:       hsl(216, 75%, 42%);
  --primary-dark:        hsl(216, 85%, 15%);
  --accent-gold:         hsl(38, 85%, 48%);
  --accent-gold-light:   hsl(38, 95%, 55%);
  --senegal-green:       hsl(145, 60%, 38%);
  --senegal-green-light: hsl(145, 55%, 48%);

  /* ── Neutrals ── */
  --bg-base:             #f0f4f8;
  --text-dark:           #0f172a;
  --text-body:           #334155;
  --text-gray:           #475569;
  --text-light-gray:     #94a3b8;

  /* ── Glass Tokens ── */
  --glass-bg:            rgba(255, 255, 255, 0.45);
  --glass-bg-hover:      rgba(255, 255, 255, 0.70);
  --glass-border:        rgba(255, 255, 255, 0.55);
  --glass-border-hover:  rgba(25, 61, 119, 0.22);
  --glass-blur:          18px;
  --glass-radius:        20px;

  /* ── Typography ── */
  --font-en:             'Outfit', 'Inter', sans-serif;
  --font-ar:             'Cairo', sans-serif;
  --font-body:           'Inter', 'Outfit', sans-serif;

  /* ── Transitions ── */
  --transition-fluid:    all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-snap:     all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Shadows ── */
  --shadow-sm:           0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md:           0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg:           0 16px 48px rgba(15, 23, 42, 0.12);
  --shadow-glow-primary: 0 8px 32px rgba(25, 61, 119, 0.18);
  --shadow-glow-gold:    0 8px 32px rgba(212, 160, 23, 0.18);
  --shadow-glow-green:   0 8px 32px rgba(36, 140, 80, 0.15);

  /* ── Layout ── */
  --container-max:       1280px;
  --nav-height:          85px;
  --nav-height-scrolled: 70px;
}

/* ─────────────────────────────────────────────────────────────
   § 2  GLOBAL RESET & BASE
   ───────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-en);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

ul,
ol {
  list-style: none;
}

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

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

/* ─────────────────────────────────────────────────────────────
   § 2a  SKIP LINK (Accessibility)
   ───────────────────────────────────────────────────────────── */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 0 0 10px 10px;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* ─────────────────────────────────────────────────────────────
   § 2b  CUSTOM SCROLLBAR
   ───────────────────────────────────────────────────────────── */

/* Webkit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-light), var(--primary));
  border-radius: 10px;
  border: 2px solid var(--bg-base);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-light) var(--bg-base);
}

/* ─────────────────────────────────────────────────────────────
   § 2c  SELECTION
   ───────────────────────────────────────────────────────────── */
::selection {
  background: var(--primary);
  color: #fff;
}

::-moz-selection {
  background: var(--primary);
  color: #fff;
}

/* ─────────────────────────────────────────────────────────────
   § 3  FLOATING GLOW BACKDROPS
   ───────────────────────────────────────────────────────────── */
.glow-backdrop {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.45;
  filter: blur(80px);
}

.glow-backdrop--navy {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  top: -10%;
  left: -8%;
  animation: floatGlow 25s ease-in-out infinite alternate;
}

.glow-backdrop--gold {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--accent-gold-light) 0%, transparent 70%);
  bottom: -10%;
  right: -8%;
  animation: floatGlow 30s ease-in-out infinite alternate-reverse;
}

.glow-backdrop--green {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--senegal-green-light) 0%, transparent 70%);
  top: 40%;
  right: 20%;
  opacity: 0.25;
  animation: floatGlow 28s ease-in-out infinite alternate;
}

/* ─────────────────────────────────────────────────────────────
   § 4  CONTAINER
   ───────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─────────────────────────────────────────────────────────────
   § 5  GLASS NAVBAR
   ───────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(240, 244, 248, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition-fluid);
}

.navbar.scrolled {
  background: rgba(240, 244, 248, 0.88);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  border-bottom-color: rgba(25, 61, 119, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  transition: var(--transition-fluid);
}

.navbar.scrolled .container {
  height: var(--nav-height-scrolled);
}

/* ── Nav Brand ── */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--font-en);
  text-decoration: none;
  flex-shrink: 0;
  transition: var(--transition-snap);
}

.nav-brand:hover {
  opacity: 0.85;
}

.nav-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  transition: var(--transition-fluid);
}

.navbar.scrolled .nav-brand img {
  width: 44px;
  height: 44px;
}

.nav-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-brand .brand-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--senegal-green);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── Nav Links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}

.nav-links a {
  position: relative;
  color: var(--text-gray);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: var(--transition-snap);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2.5px;
  background: var(--accent-gold);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
  color: var(--primary);
  background: rgba(25, 61, 119, 0.05);
}

.nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-links li.active a {
  color: #fff;
  background: var(--primary);
}

.nav-links li.active a::after {
  display: none;
}

/* ── Language Selector Group ── */
.lang-selector-group {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.75rem;
  padding: 3px;
  background: rgba(25, 61, 119, 0.05);
  border-radius: 50px;
  border: 1px solid rgba(25, 61, 119, 0.08);
}

.btn-lang-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-gray);
  background: transparent;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-snap);
  font-family: var(--font-en);
  white-space: nowrap;
}

.btn-lang-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.7);
}

.btn-lang-option.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(25, 61, 119, 0.25);
}

.btn-lang-option.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(25, 61, 119, 0.3);
}

/* ── Mobile Menu Toggle ── */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--primary);
  border-radius: 3px;
  transition: var(--transition-snap);
  transform-origin: center;
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ── Mobile Menu Overlay ── */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(240, 244, 248, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: var(--transition-fluid);
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-overlay .mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}

.mobile-menu-overlay .mobile-nav-links a {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 0.75rem 2rem;
  border-radius: 12px;
  transition: var(--transition-snap);
}

.mobile-menu-overlay .mobile-nav-links a:hover {
  background: rgba(25, 61, 119, 0.08);
  color: var(--primary);
}

.mobile-menu-overlay .mobile-nav-links li.active a {
  background: var(--primary);
  color: #fff;
}

.mobile-menu-overlay .mobile-lang-group {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

/* ─────────────────────────────────────────────────────────────
   § 6  MAIN & PAGE SECTIONS
   ───────────────────────────────────────────────────────────── */
main {
  padding-top: 115px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

.page-section {
  display: none;
  opacity: 0;
}

.page-section.active {
  display: block;
  animation: fadeInSection 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ─────────────────────────────────────────────────────────────
   § 7  HERO SECTION
   ───────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url('hero_bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  margin-top: calc(-1 * 115px);
  padding-top: 115px;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.85) 0%,
    rgba(25, 61, 119, 0.70) 50%,
    rgba(15, 23, 42, 0.80) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 1.5rem 2rem;
}

/* ── Hero Logo Wrapper ── */
.hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 2rem;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 20px 26px;
  border-radius: 20px;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  overflow: hidden;
  animation: heroFloat 3s ease-in-out infinite alternate;
}

.hero-logo-wrap::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.25) 45%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.25) 55%,
    transparent 60%,
    transparent 100%
  );
  transform: rotate(25deg);
  animation: glassReflection 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glassReflection {
  0%   { left: -60%; }
  50%  { left: 130%; }
  100% { left: 130%; }
}

.hero-logo {
  width: 240px;
  height: auto;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── Hero Badge ── */
.hero-badge {
  display: inline-block;
  padding: 0.45rem 1.2rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: shimmer 4s ease-in-out infinite;
  background-size: 200% 100%;
}

/* ── Hero Title ── */
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  font-family: var(--font-en);
}

.hero-title .text-gold {
  color: var(--accent-gold-light);
  text-shadow: 0 2px 16px rgba(212, 160, 23, 0.3);
}

.hero-title .text-green {
  color: var(--senegal-green-light);
  text-shadow: 0 2px 16px rgba(36, 140, 80, 0.25);
}

/* ── Hero Subtitle ── */
.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin: 0 auto 1rem;
  line-height: 1.7;
  font-weight: 400;
  font-family: var(--font-body);
}

/* ── Hero Buttons ── */
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* ── Hero Stats Row ── */
.hero-stats-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 0 1.5rem 3rem;
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition-snap);
}

.hero-stat-card:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-gold-light);
  line-height: 1.1;
  margin-bottom: 0.35rem;
  font-family: var(--font-en);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  line-height: 1.3;
}

/* ── Hero Cultural Strip ── */
.hero-cultural-strip {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--senegal-green) 0px,
    var(--senegal-green) 40px,
    var(--accent-gold) 40px,
    var(--accent-gold) 80px,
    var(--primary) 80px,
    var(--primary) 120px
  );
  margin-top: auto;
}

/* ─────────────────────────────────────────────────────────────
   § 8  SECTION HEADERS
   ───────────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-badge {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  background: rgba(25, 61, 119, 0.06);
  border: 1px solid rgba(25, 61, 119, 0.12);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 1rem;
}

.section-badge--green {
  background: rgba(36, 140, 80, 0.06);
  border-color: rgba(36, 140, 80, 0.12);
  color: var(--senegal-green);
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-en);
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────
   § 9  GLASS CARDS (Base)
   ───────────────────────────────────────────────────────────── */
.glass-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fluid);
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
}

.glass-card > * {
  position: relative;
  z-index: 1;
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ─────────────────────────────────────────────────────────────
   § 10  ABOUT SECTION
   ───────────────────────────────────────────────────────────── */
.about-section {
  padding: 5rem 0;
}

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

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.about-content h2 .text-gold {
  color: var(--accent-gold);
}

.about-content h2 .text-green {
  color: var(--senegal-green);
}

.about-content p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
}

.about-highlights {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: rgba(25, 61, 119, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(25, 61, 119, 0.06);
  transition: var(--transition-snap);
}

.about-highlight-item:hover {
  background: rgba(25, 61, 119, 0.08);
  transform: translateY(-2px);
}

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

.about-highlight-item .highlight-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.about-highlight-item .highlight-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ── About Media ── */
.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.about-media::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--senegal-green), var(--senegal-green-light));
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
}

/* ─────────────────────────────────────────────────────────────
   § 11  PRODUCTS GRID
   ───────────────────────────────────────────────────────────── */
.products-section {
  padding: 5rem 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.product-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fluid);
  overflow: hidden;
  border-top: 4px solid var(--accent-gold);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.product-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-card.stripe-green {
  border-top-color: var(--senegal-green);
}

.product-card.stripe-blue {
  border-top-color: var(--primary-light);
}

.product-card.stripe-orange {
  border-top-color: hsl(28, 85%, 52%);
}

.product-card.stripe-navy {
  border-top-color: var(--primary-dark);
}

.product-card.stripe-gold {
  border-top-color: var(--accent-gold);
}

/* ── Product Tag ── */
.product-tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.product-tag--agri {
  background: rgba(36, 140, 80, 0.1);
  color: var(--senegal-green);
  border: 1px solid rgba(36, 140, 80, 0.15);
}

.product-tag--manufacturing {
  background: rgba(25, 61, 119, 0.08);
  color: var(--primary-light);
  border: 1px solid rgba(25, 61, 119, 0.12);
}

.product-tag--industrial {
  background: rgba(234, 146, 20, 0.1);
  color: hsl(28, 85%, 52%);
  border: 1px solid rgba(234, 146, 20, 0.15);
}

.product-tag--global {
  background: rgba(15, 23, 42, 0.06);
  color: var(--primary-dark);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.product-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.product-card p {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* ── Product Features List ── */
.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--text-body);
  font-weight: 500;
}

.product-features svg {
  width: 20px;
  height: 20px;
  color: var(--senegal-green);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────
   § 11b  COMPANY PROFILE DOWNLOAD
   ───────────────────────────────────────────────────────────── */
.profile-download-block {
  margin-top: 5rem;
}

.profile-download-card {
  background: linear-gradient(135deg, #0c2240 0%, #061120 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 20px 45px rgba(6, 17, 32, 0.25);
  position: relative;
  overflow: hidden;
}

.profile-download-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.profile-download-info {
  position: relative;
  z-index: 2;
}

.profile-download-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.profile-download-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.profile-download-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 550px;
}

.profile-download-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.profile-download-actions .btn-gold {
  background: var(--accent-gold);
  color: #0c2240;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fluid);
  border: 1px solid transparent;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
  cursor: pointer;
}

.profile-download-actions .btn-gold:hover {
  background: #e2c084;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.35);
}

.profile-download-actions .btn-gold svg {
  flex-shrink: 0;
}

/* Profile QR Codes */
.profile-download-qrs {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.qr-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-code-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  transition: var(--transition-fluid);
}

.qr-code-box:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 30px rgba(197, 160, 89, 0.2);
}

.qr-code-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.qr-caption {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.qr-main-caption {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
}

.qr-sub-caption {
  font-size: 0.7rem;
  color: #94a3b8;
}

/* RTL for profile download */
html[dir='rtl'] .profile-download-actions {
  flex-direction: row;
}

/* ─────────────────────────────────────────────────────────────
   § 12  PARTNERS SECTION
   ───────────────────────────────────────────────────────────── */
.partners-section {
  padding: 5rem 0;
}

.partners-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

.partner-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fluid);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 1 1 280px;
  max-width: 360px;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
}

.partner-card > * {
  position: relative;
  z-index: 1;
}

.partner-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.partner-card img {
  max-width: 150px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 0.5rem;
  transition: var(--transition-snap);
}

.partner-card:hover img {
  transform: scale(1.05);
}

.partner-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.partner-card p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────
   § 13  CONTACT SECTION
   ───────────────────────────────────────────────────────────── */
.contact-section {
  padding: 5rem 0;
}

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

/* ── Contact Info Column ── */
.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-block {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fluid);
  overflow: hidden;
}

.info-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
}

.info-block > * {
  position: relative;
  z-index: 1;
}

.info-block:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.info-block h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
}

.info-card + .info-card {
  border-top: 1px solid rgba(25, 61, 119, 0.06);
}

.info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.info-icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.info-icon--green {
  background: var(--senegal-green);
}

.info-icon--gold {
  background: var(--accent-gold);
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.info-details .info-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-gray);
}

.info-details .info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}

.info-details .info-value a {
  color: var(--primary);
  transition: var(--transition-snap);
}

.info-details .info-value a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

/* ── Contact Form Card ── */
.contact-form-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fluid);
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
}

.contact-form-card > * {
  position: relative;
  z-index: 1;
}

.contact-form-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-form-card .form-subtitle {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

/* ── Form Grid ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-grid .full-width {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-gray);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1.5px solid rgba(25, 61, 119, 0.1);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-snap);
  font-family: var(--font-body);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light-gray);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(25, 61, 119, 0.1);
  background: rgba(255, 255, 255, 0.85);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1.5px solid rgba(25, 61, 119, 0.1);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-snap);
  font-family: var(--font-body);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23475569' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(25, 61, 119, 0.1);
  background-color: rgba(255, 255, 255, 0.85);
}

/* ── Form Success Overlay ── */
.form-success-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: inherit;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fluid);
}

.form-success-overlay.show {
  opacity: 1;
  visibility: visible;
}

.form-success-overlay .success-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--senegal-green);
  border-radius: 50%;
  animation: fadeInSection 0.5s ease forwards;
}

.form-success-overlay .success-icon svg {
  width: 36px;
  height: 36px;
  color: #fff;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

.form-success-overlay h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-success-overlay p {
  font-size: 1rem;
  color: var(--text-gray);
  text-align: center;
  max-width: 300px;
}

/* ─────────────────────────────────────────────────────────────
   § 14  FOOTER
   ───────────────────────────────────────────────────────────── */
footer {
  background: var(--primary-dark);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 2;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--senegal-green), var(--accent-gold), var(--primary-light));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

/* ── Footer Logo Column ── */
.footer-logo-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-col img {
  width: 160px;
  height: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  padding: 14px 20px;
  border-radius: 14px;
  transition: var(--transition-snap);
}

.footer-logo-col img:hover {
  transform: scale(1.05);
  background: #fff;
}

.footer-logo-col .footer-brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-en);
}

.footer-logo-col .footer-brand-sub {
  font-size: 0.82rem;
  color: var(--senegal-green-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-logo-col p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 320px;
}

/* ── Footer Links Column ── */
.footer-links-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-snap);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--accent-gold-light);
  transform: translateX(4px);
}

.footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition-snap);
}

.footer-links a:hover::before {
  opacity: 1;
}

/* ── Footer Contact Column ── */
.footer-contact-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent-gold-light);
  flex-shrink: 0;
  margin-top: 3px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer-contact-item a:hover {
  color: var(--accent-gold-light);
}

/* ── Footer Bottom ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom .copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom .legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom .legal-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition-snap);
}

.footer-bottom .legal-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ── Back to Main Site ── */
.back-to-main {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-snap);
  margin-top: 1rem;
}

.back-to-main:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.back-to-main svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ─────────────────────────────────────────────────────────────
   § 15  BUTTONS
   ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-en);
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-fluid);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ── Primary Button ── */
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-primary);
}

.btn-primary:active {
  transform: translateY(-1px);
}

/* ── Secondary Button ── */
.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: #fff;
  color: var(--text-dark);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-secondary:active {
  transform: translateY(-1px);
}

/* ── Gold Button ── */
.btn-gold {
  background: var(--accent-gold);
  color: var(--text-dark);
  border-color: var(--accent-gold);
}

.btn-gold:hover {
  background: var(--accent-gold-light);
  border-color: var(--accent-gold-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-gold);
}

.btn-gold:active {
  transform: translateY(-1px);
}

/* ── Green Button ── */
.btn-green {
  background: var(--senegal-green);
  color: #fff;
  border-color: var(--senegal-green);
}

.btn-green:hover {
  background: var(--senegal-green-light);
  border-color: var(--senegal-green-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-green);
}

.btn-green:active {
  transform: translateY(-1px);
}

/* ── Outline Button ── */
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-primary);
}

.btn-outline:active {
  transform: translateY(-1px);
}

/* ── Outline White (for hero/dark bg) ── */
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.65);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ── Button Sizes ── */
.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  border-radius: 8px;
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
  border-radius: 12px;
}

/* ─────────────────────────────────────────────────────────────
   § 16  UTILITY CLASSES
   ───────────────────────────────────────────────────────────── */
.text-center {
  text-align: center;
}

.text-gold {
  color: var(--accent-gold);
}

.text-green {
  color: var(--senegal-green);
}

.text-navy {
  color: var(--primary);
}

.text-white {
  color: #fff;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─────────────────────────────────────────────────────────────
   § 17  KEYFRAME ANIMATIONS
   ───────────────────────────────────────────────────────────── */

/* ── Section Fade In ── */
@keyframes fadeInSection {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Floating Glow ── */
@keyframes floatGlow {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(40px, -30px) scale(1.08);
  }
  50% {
    transform: translate(-20px, 50px) scale(0.95);
  }
  75% {
    transform: translate(60px, 20px) scale(1.12);
  }
  100% {
    transform: translate(-30px, -40px) scale(1.02);
  }
}

/* ── Hero Logo Float ── */
@keyframes heroFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

/* ── Shimmer (Hero Badge) ── */
@keyframes shimmer {
  0% {
    background-position: -200% center;
    background-image: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.25) 25%,
      rgba(255, 255, 255, 0.12) 50%,
      rgba(255, 255, 255, 0.25) 75%,
      rgba(255, 255, 255, 0.12) 100%
    );
  }
  50% {
    background-position: 200% center;
    background-image: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.25) 25%,
      rgba(255, 255, 255, 0.12) 50%,
      rgba(255, 255, 255, 0.25) 75%,
      rgba(255, 255, 255, 0.12) 100%
    );
  }
  100% {
    background-position: -200% center;
    background-image: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.25) 25%,
      rgba(255, 255, 255, 0.12) 50%,
      rgba(255, 255, 255, 0.25) 75%,
      rgba(255, 255, 255, 0.12) 100%
    );
  }
}

/* ── Spin (loading) ── */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ── Pulse (notification) ── */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

/* ─────────────────────────────────────────────────────────────
   § 18  RTL OVERRIDES (Arabic)
   ───────────────────────────────────────────────────────────── */
html[dir='rtl'] body {
  font-family: var(--font-ar);
}

html[dir='rtl'] .nav-brand {
  font-family: var(--font-ar);
}

html[dir='rtl'] .hero-title {
  font-family: var(--font-ar);
}

html[dir='rtl'] .section-badge {
  letter-spacing: 0;
  font-family: var(--font-ar);
}

html[dir='rtl'] .section-title {
  letter-spacing: 0;
  font-size: 2.7rem;
  font-family: var(--font-ar);
}

html[dir='rtl'] .section-desc {
  font-family: var(--font-ar);
}

html[dir='rtl'] .nav-links a {
  font-size: 1rem;
  font-family: var(--font-ar);
}

html[dir='rtl'] .btn {
  font-family: var(--font-ar);
}

html[dir='rtl'] .btn-lang-option {
  font-family: var(--font-ar);
}

html[dir='rtl'] .btn-lang-option.active {
  font-family: var(--font-en);
}

html[dir='rtl'] .form-input,
html[dir='rtl'] .form-textarea,
html[dir='rtl'] .form-select {
  direction: rtl;
  text-align: right;
  font-family: var(--font-ar);
}

html[dir='rtl'] .form-label {
  text-align: right;
  font-family: var(--font-ar);
  letter-spacing: 0;
}

html[dir='rtl'] .form-select {
  background-position: left 1rem center;
  padding-left: 2.5rem;
  padding-right: 1.1rem;
}

html[dir='rtl'] .skip-link {
  left: auto;
  right: 1rem;
}

html[dir='rtl'] .lang-selector-group {
  margin-left: 0;
  margin-right: 0.75rem;
}

html[dir='rtl'] .footer-links a:hover {
  transform: translateX(-4px);
}

html[dir='rtl'] .footer-links a::before {
  order: 1;
}

html[dir='rtl'] .about-media::after {
  right: auto;
  left: -12px;
}

html[dir='rtl'] .hero-badge {
  letter-spacing: 0.5px;
}

html[dir='rtl'] .product-tag {
  letter-spacing: 0;
}

html[dir='rtl'] .info-details .info-label {
  letter-spacing: 0;
}

html[dir='rtl'] .footer-links-col h4,
html[dir='rtl'] .footer-contact-col h4 {
  letter-spacing: 0;
}

html[dir='rtl'] .about-highlight-item .highlight-text {
  font-family: var(--font-ar);
}

html[dir='rtl'] .stat-label {
  font-family: var(--font-ar);
}

html[dir='rtl'] .stat-number {
  font-family: var(--font-en);
}

html[dir='rtl'] .copyright {
  font-family: var(--font-ar);
}

/* ─────────────────────────────────────────────────────────────
   § 19  RESPONSIVE — 1024px
   ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {

  .about-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-media {
    order: -1;
  }

  .profile-download-card {
    grid-template-columns: 1fr;
    padding: 2rem;
    text-align: center;
  }

  .profile-download-title {
    font-size: 1.8rem;
  }

  .profile-download-desc {
    max-width: 100%;
  }

  .profile-download-actions {
    justify-content: center;
  }

  .profile-download-qrs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .qr-code-box {
    width: 90px;
    height: 90px;
    padding: 0.5rem;
  }

  .qr-main-caption {
    font-size: 0.72rem;
  }

  .qr-sub-caption {
    display: none;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-logo-col {
    grid-column: 1 / -1;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .products-grid {
    gap: 1.5rem;
  }

  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* ─────────────────────────────────────────────────────────────
   § 20  RESPONSIVE — 768px  (Tablet / Mobile)
   ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* ── Nav ── */
  .nav-links {
    display: none;
  }

  .lang-selector-group {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .navbar .container {
    height: 70px;
  }

  .navbar.scrolled .container {
    height: 62px;
  }

  .nav-brand img {
    width: 44px;
    height: 44px;
  }

  .navbar.scrolled .nav-brand img {
    width: 38px;
    height: 38px;
  }

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

  /* ── Main ── */
  main {
    padding-top: 90px;
    padding-bottom: 40px;
  }

  /* ── Hero ── */
  .hero-section {
    min-height: 70vh;
    margin-top: -90px;
    padding-top: 90px;
  }

  .hero-content {
    padding: 2rem 1rem 1.5rem;
  }

  .hero-logo {
    width: 90px;
    height: 90px;
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    padding: 0 1rem 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.78rem;
  }

  /* ── Section Headers ── */
  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-desc {
    font-size: 1.05rem;
  }

  /* ── Glass Cards ── */
  .glass-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  /* ── Products ── */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .product-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  /* ── About ── */
  .about-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-highlights {
    flex-direction: column;
    gap: 0.75rem;
  }

  /* ── Partners ── */
  .partners-container {
    flex-direction: column;
    align-items: stretch;
  }

  .partner-card {
    max-width: none;
  }

  /* ── Contact ── */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-form-card {
    padding: 1.5rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid .full-width {
    grid-column: auto;
  }

  .info-block {
    padding: 1.5rem;
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-logo-col {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-bottom .legal-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  /* ── Sections ── */
  .about-section,
  .products-section,
  .partners-section,
  .contact-section {
    padding: 3rem 0;
  }

  /* ── Container ── */
  .container {
    padding: 0 1rem;
  }
}

/* ─────────────────────────────────────────────────────────────
   § 21  RESPONSIVE — 480px  (Small Mobile)
   ───────────────────────────────────────────────────────────── */
@media (max-width: 480px) {

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    padding: 0.35rem 1rem;
  }

  .hero-logo {
    width: 80px;
    height: 80px;
  }

  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero-stat-card {
    padding: 1.15rem 1rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-badge {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
  }

  .section-desc {
    font-size: 0.98rem;
  }

  .glass-card {
    padding: 1.25rem;
    border-radius: 14px;
  }

  .product-card {
    padding: 1.25rem;
    border-radius: 14px;
  }

  .about-content h2 {
    font-size: 1.75rem;
  }

  .contact-form-card {
    padding: 1.25rem;
  }

  .contact-form-card h3 {
    font-size: 1.2rem;
  }

  .btn {
    padding: 0.75rem 1.4rem;
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 0.85rem 1.8rem;
    font-size: 0.98rem;
  }

  .nav-brand {
    font-size: 1rem;
  }

  .nav-brand .brand-sub {
    font-size: 0.62rem;
  }

  .mobile-menu-overlay .mobile-nav-links a {
    font-size: 1.15rem;
    padding: 0.65rem 1.5rem;
  }

  footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-logo-col .footer-brand-name {
    font-size: 1.1rem;
  }

  .footer-bottom {
    padding-top: 1.5rem;
  }

  .back-to-main {
    font-size: 0.8rem;
    padding: 0.5rem 1.2rem;
  }
}

/* ─────────────────────────────────────────────────────────────
   § 22  RTL RESPONSIVE OVERRIDES
   ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  html[dir='rtl'] .section-title {
    font-size: 2.1rem;
  }

  html[dir='rtl'] .hero-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 480px) {
  html[dir='rtl'] .section-title {
    font-size: 1.8rem;
  }

  html[dir='rtl'] .hero-title {
    font-size: 1.85rem;
  }

  html[dir='rtl'] .about-content h2 {
    font-size: 1.65rem;
  }
}

/* ─────────────────────────────────────────────────────────────
   § 23  PRINT STYLES
   ───────────────────────────────────────────────────────────── */
@media print {
  .navbar,
  .glow-backdrop,
  .mobile-menu-overlay,
  .skip-link,
  .hero-cultural-strip,
  .back-to-main {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  main {
    padding-top: 0;
  }

  .hero-section {
    min-height: auto;
    margin-top: 0;
    padding: 2rem 0;
  }

  .hero-section::before {
    display: none;
  }

  .hero-title {
    color: #000;
    text-shadow: none;
    -webkit-text-fill-color: #000;
  }

  .glass-card,
  .product-card,
  .partner-card,
  .info-block,
  .contact-form-card {
    background: #fff;
    backdrop-filter: none;
    box-shadow: none;
    border: 1px solid #ddd;
    break-inside: avoid;
  }

  footer {
    background: #333;
  }

  .section-title {
    -webkit-text-fill-color: #000;
    background: none;
  }
}

/* ─────────────────────────────────────────────────────────────
   § 24  FOCUS VISIBLE (Accessibility)
   ───────────────────────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 2px;
  border-radius: 4px;
}

.btn:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 3px;
}

.form-input:focus-visible,
.form-textarea:focus-visible,
.form-select:focus-visible {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(25, 61, 119, 0.12);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--primary-light);
  outline-offset: 2px;
}

.btn-lang-option:focus-visible {
  outline: 2px solid var(--primary-light);
  outline-offset: 2px;
}

/* ─────────────────────────────────────────────────────────────
   § 25  REDUCED MOTION
   ───────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .glow-backdrop {
    animation: none;
  }

  .hero-logo {
    animation: none;
  }

  .hero-badge {
    animation: none;
  }

  .page-section.active {
    animation: none;
    opacity: 1;
  }
}

/* ─────────────────────────────────────────────────────────────
   § 26  HIGH CONTRAST MODE
   ───────────────────────────────────────────────────────────── */
@media (prefers-contrast: high) {
  :root {
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.3);
    --glass-bg-hover: rgba(255, 255, 255, 0.95);
  }

  .section-title {
    -webkit-text-fill-color: var(--primary-dark);
    background: none;
  }

  .hero-badge {
    border-color: rgba(255, 255, 255, 0.6);
  }

  .nav-links a {
    color: var(--text-dark);
  }
}

/* ─────────────────────────────────────────────────────────────
   § 27  LOADING / SKELETON STATES
   ───────────────────────────────────────────────────────────── */
.skeleton {
  position: relative;
  overflow: hidden;
  background: rgba(25, 61, 119, 0.06);
  border-radius: 8px;
}

.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  animation: shimmerSkeleton 1.8s ease-in-out infinite;
}

@keyframes shimmerSkeleton {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.skeleton-text {
  height: 1rem;
  margin-bottom: 0.5rem;
  border-radius: 4px;
}

.skeleton-text.short {
  width: 60%;
}

.skeleton-title {
  height: 1.5rem;
  width: 80%;
  margin-bottom: 0.75rem;
}

.skeleton-image {
  width: 100%;
  height: 200px;
  border-radius: 12px;
}

/* ─────────────────────────────────────────────────────────────
   § 28  TOAST / NOTIFICATION
   ───────────────────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  pointer-events: auto;
  animation: toastSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 400px;
}

.toast.toast-success {
  border-left: 4px solid var(--senegal-green);
}

.toast.toast-error {
  border-left: 4px solid hsl(0, 72%, 51%);
}

.toast.toast-info {
  border-left: 4px solid var(--primary-light);
}

.toast .toast-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.toast .toast-message {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}

.toast .toast-close {
  margin-left: auto;
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.5;
  transition: var(--transition-snap);
}

.toast .toast-close:hover {
  opacity: 1;
}

@keyframes toastSlideIn {
  0% {
    opacity: 0;
    transform: translateX(30px) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@media (max-width: 480px) {
  .toast-container {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
  }

  .toast {
    max-width: none;
  }
}

html[dir='rtl'] .toast-container {
  right: auto;
  left: 2rem;
}

html[dir='rtl'] .toast {
  border-left: none;
}

html[dir='rtl'] .toast.toast-success {
  border-right: 4px solid var(--senegal-green);
}

html[dir='rtl'] .toast.toast-error {
  border-right: 4px solid hsl(0, 72%, 51%);
}

html[dir='rtl'] .toast.toast-info {
  border-right: 4px solid var(--primary-light);
}

html[dir='rtl'] .toast .toast-close {
  margin-left: 0;
  margin-right: auto;
}

/* ─────────────────────────────────────────────────────────────
   § 29  SCROLL-TRIGGERED REVEAL (JS helper classes)
   ───────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for grid children */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.10s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.20s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.30s; }
.stagger-7 { transition-delay: 0.35s; }
.stagger-8 { transition-delay: 0.40s; }

/* ─────────────────────────────────────────────────────────────
   § 30  MAP EMBED CONTAINER
   ───────────────────────────────────────────────────────────── */
.map-container {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-border);
  margin-top: 1.5rem;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .map-container iframe {
    height: 220px;
  }
}

/* ─────────────────────────────────────────────────────────────
   § 31  WHATSAPP / SOCIAL FAB
   ───────────────────────────────────────────────────────────── */
.fab-social {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.fab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-fluid);
}

.fab-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.fab-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.fab-whatsapp {
  background: #25D366;
}

.fab-whatsapp:hover {
  background: #1ebe5a;
}

html[dir='rtl'] .fab-social {
  right: auto;
  left: 2rem;
  align-items: flex-start;
}

@media (max-width: 480px) {
  .fab-social {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .fab-btn {
    width: 50px;
    height: 50px;
  }

  .fab-btn svg {
    width: 24px;
    height: 24px;
  }

  html[dir='rtl'] .fab-social {
    left: 1.25rem;
  }
}

/* ─────────────────────────────────────────────────────────────
   § 32  COOKIE / CONSENT BANNER
   ───────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  padding: 1.25rem 2rem;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

.cookie-banner p a {
  color: var(--accent-gold-light);
  text-decoration: underline;
}

.cookie-banner .cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 1rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-banner .cookie-actions {
    justify-content: center;
  }
}

/* ─────────────────────────────────────────────────────────────
   END OF STYLESHEET
   ───────────────────────────────────────────────────────────── */
