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

/* ===== DESIGN TOKENS ===== */
:root {
    /* Light luxury palette — soft lavender & purple */
    --bg-deep:       #e4daea;
    --bg-dark:       #dbd0e3;
    --bg-surface:    #d0c4da;
    --bg-elevated:   #c9bbd5;

    --primary:       #6E467E;
    --primary-light: #9b6fc0;
    --primary-vivid: #8a5aad;
    --primary-glow:  rgba(110, 70, 126, 0.2);

    --accent:        #F4C95D;
    --accent-glow:   rgba(244, 201, 93, 0.3);

    --text-primary:  #2d1b3d;
    --text-secondary:#5a4268;
    --text-muted:    #8a7a98;

    --border-subtle: rgba(110, 70, 126, 0.1);
    --border-glow:   rgba(110, 70, 126, 0.2);

    --glass-bg:      rgba(228, 218, 234, 0.75);
    --glass-border:  rgba(110, 70, 126, 0.12);
    --glass-shadow:  0 8px 32px rgba(0, 0, 0, 0.06),
                     0 2px 8px rgba(110, 70, 126, 0.05);

    /* Navbar */
    --navbar-height: 90px;

    /* Typography */
    --font-header: 'coramorant', 'Cormorant Garamond', serif;
    --font-body:   'poppines', 'Poppins', sans-serif;

    /* Timing */
    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);

    /* cards */
      --c1: #d8cce4;
      --c2: #cfc2dd;
      --c3: #d4c8e0;
      --c4: #cabdd8;
      --c5: #d1c5dc;
      --c6: #c8bbd5;
      --c7: #d2c6df;
}

/* ===== BASE ===== */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Gradient Blobs — soft pastels for light background */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    will-change: transform;
}

.blob--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(110, 70, 126, 0.18) 0%, transparent 70%);
    top: -15%;
    left: -10%;
    animation: blobFloat1 18s ease-in-out infinite;
}

.blob--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 201, 93, 0.14) 0%, transparent 70%);
    bottom: -20%;
    right: -8%;
    animation: blobFloat2 22s ease-in-out infinite;
}

.blob--3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(155, 111, 192, 0.12) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation: blobFloat3 20s ease-in-out infinite;
}

/* Subtle light rays */
.light-ray {
    position: absolute;
    width: 2px;
    height: 200%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(110, 70, 126, 0.05) 30%,
        rgba(110, 70, 126, 0.025) 50%,
        transparent 100%
    );
    transform-origin: top center;
    opacity: 0;
    animation: rayPulse 8s ease-in-out infinite;
}

.light-ray:nth-child(4) { left: 20%; animation-delay: 0s; transform: rotate(-5deg); }
.light-ray:nth-child(5) { left: 45%; animation-delay: 2s; transform: rotate(2deg); }
.light-ray:nth-child(6) { left: 70%; animation-delay: 4s; transform: rotate(-3deg); }
.light-ray:nth-child(7) { left: 85%; animation-delay: 6s; transform: rotate(4deg); }

/* Mesh overlay */
.mesh-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(110, 70, 126, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(244, 201, 93, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(155, 111, 192, 0.035) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes blobFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(60px, 40px) scale(1.1); }
    66%      { transform: translate(-30px, 60px) scale(0.95); }
}

@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(-50px, -30px) scale(1.05); }
    66%      { transform: translate(40px, -50px) scale(0.9); }
}

@keyframes blobFloat3 {
    0%, 100% { transform: translateX(-50%) translate(0, 0) scale(1); }
    33%      { transform: translateX(-50%) translate(30px, -40px) scale(1.08); }
    66%      { transform: translateX(-50%) translate(-40px, 30px) scale(0.92); }
}

@keyframes rayPulse {
    0%, 100% { opacity: 0; }
    50%      { opacity: 1; }
}

/* Fine grain noise texture */
.bg-canvas::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
}

/* ===== HERO / LOADER ===== */
.loader-to-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    background: transparent;
    will-change: height;
}

/* Brand — absolute positioned for smooth GSAP center→left slide */
.loader-to-navbar .brand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
    will-change: transform;
}

.loader-to-navbar .brand img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0;
    filter: blur(8px);
    box-shadow:
        0 0 40px rgba(110, 70, 126, 0.15),
        0 0 80px rgba(110, 70, 126, 0.06);
    flex-shrink: 0;
    will-change: transform, opacity, filter, width, height;
}

.loader-to-navbar .brand h1 {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 10px;
    text-transform: uppercase;
    font-family: var(--font-header);
    overflow: hidden;
    will-change: transform, font-size;
}

/* Individual characters for text animation */
.loader-to-navbar .brand h1 .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    filter: blur(4px);
    will-change: transform, opacity, filter;
}

/* ===== NAVBAR GLASSMORPHISM ===== */
/* Applied via GSAP — purely visual, no layout changes */
.loader-to-navbar.is-navbar {
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: transform 0.4s var(--ease-premium), background 0.4s ease;
}

.loader-to-navbar.is-navbar.nav-hidden {
    transform: translateY(-100%);
}

/* ===== NAVIGATION ===== */
.main-nav {
    position: absolute;
    top: 50%;
    right: 48px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
}

.main-nav a {
    position: relative;
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 8px;
    opacity: 0;
    transform: translateX(-20px);
    filter: blur(4px);
    transition: color 0.35s var(--ease-premium),
                background 0.35s var(--ease-premium);
    will-change: transform, opacity, filter;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 20px;
    right: 20px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-premium);
}

.main-nav a:hover {
    color: var(--text-primary);
    background: rgba(110, 70, 126, 0.06);
}

.main-nav a:hover::before {
    transform: scaleX(1);
}

/* Active state */
.main-nav a.active {
    color: var(--primary);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-glow);
}

/* ===== MAIN CONTENT ===== */
.main-content {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    padding-top: calc(var(--navbar-height) + 40px);
    will-change: transform, opacity;
}

/* Hero content section */
.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 48px 120px;
    text-align: center;
}

.hero-content .tagline {
    font-family: var(--font-header);
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero-content .tagline span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content .subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 48px;
}

.hero-content .cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.4s var(--ease-premium);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-vivid) 100%);
    color: #fff;
    box-shadow: 0 4px 24px var(--primary-glow),
                0 1px 3px rgba(0, 0, 0, 0.12);
}



.btn--ghost {
    background: var(--bg-dark);
    color: var(--text-secondary);
    border: 1px solid var(--border-glow);
    backdrop-filter: blur(8px);
    animation: shake 4s infinite;
}
@keyframes shake {
  0%, 90%, 100% {
    transform: translateX(0) rotate(0);
  }

  92% { transform: translateX(-4px) rotate(-4deg); }
  94% { transform: translateX(4px) rotate(4deg); }
  96% { transform: translateX(-4px) rotate(-4deg); }
  98% { transform: translateX(4px) rotate(4deg); }
}
.btn--ghost:hover {
    color: var(--text-primary);
    border-color: var(--primary-light);
    background: rgba(110, 70, 126, 0.06);
    transform: translateY(-2px);
}

/* ===== FEATURES SECTION ===== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px 120px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(110, 70, 126, 0.1);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s var(--ease-premium);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08),
                0 0 24px var(--primary-glow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card .icon {
    font-size: 2.4rem;
    margin-bottom: 20px;
    display: block;
    color: var(--primary);
}

.feature-card h3 {
    font-family: var(--font-header);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== DIVIDER ===== */
.section-divider {
    max-width: 200px;
    margin: 0 auto 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.25;
}
.leadership-section {
  position: relative;
  width: 100%;
  padding: 120px 0 100px;
  overflow: hidden;
  background: transparent;
}
 
/* Noise texture overlay */
.leadership-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .45;
  pointer-events: none;
  z-index: 0;
}
 
/* Background blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.blob-1 {
  width: 600px; height: 600px;
  top: -120px; left: -160px;
  background: radial-gradient(circle, rgba(110,70,126,.09) 0%, transparent 70%);
}
.blob-2 {
  width: 500px; height: 500px;
  bottom: -80px; right: -120px;
  background: radial-gradient(circle, rgba(244,201,93,.08) 0%, transparent 70%);
}
.blob-3 {
  width: 380px; height: 380px;
  top: 40%; left: 45%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(110,70,126,.06) 0%, transparent 70%);
}
 
/* ─── Section Header ───────────────────────────────────── */
.section-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 72px;
  padding: 0 24px;
}
 
.section-eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--primary-light);
  opacity: 0;
  transform: translateY(14px);
  display: inline-block;
  margin-bottom: 16px;
}
 
.section-title {
  font-family: var(--font-header);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.12;
  letter-spacing: -.01em;
  overflow: hidden;
}
 
.section-title-inner {
  display: block;
  transform: translateY(100%);
  opacity: 0;
}
 
.section-accent-line {
  width: 0;
  height: 2px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
  border-radius: 2px;
}
 
.section-subtitle {
  font-family: var(--font-body);
  font-size: .93rem;
  font-weight: 300;
  color: var(--text-secondary);
  margin-top: 18px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(12px);
}
 
/* ─── Carousel Wrapper ─────────────────────────────────── */
.carousel-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
 
.carousel-stage {
  position: relative;
  width: 100%;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
}
 
/* ─── Leader Card ──────────────────────────────────────── */
.leader-card {
  position: absolute;
  width: 300px;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  will-change: transform, opacity, filter;
  transition: transform .55s cubic-bezier(.22,.61,.36,1),
              opacity  .55s cubic-bezier(.22,.61,.36,1),
              filter   .55s cubic-bezier(.22,.61,.36,1),
              box-shadow .55s cubic-bezier(.22,.61,.36,1);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  user-select: none;
}
 
/* Corner accent */
.leader-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 52px; height: 52px;
  border-top:  1px solid var(--border-glow);
  border-right: 1px solid var(--border-glow);
  border-top-right-radius: 24px;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity .4s ease;
}
 
.leader-card.is-active::after { opacity: 1; }
 
/* Card image area */
.card-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
 
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 5s cubic-bezier(.25,.46,.45,.94);
  transform: scale(1);
}
 
.leader-card.is-active .card-img {
  transform: scale(1.08);
}
 
/* Gradient overlay */
.card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 35%,
    rgba(45,27,61,.18) 60%,
    rgba(45,27,61,.70) 100%
  );
  z-index: 2;
}
 
/* Gold accent glow on active */
.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(244,201,93,.15) 0%, transparent 60%);
  z-index: 3;
  opacity: 0;
  transition: opacity .55s ease;
}
.leader-card.is-active .card-glow { opacity: 1; }
 
/* Glass overlay info panel */
.card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 5;
  padding: 22px 24px 22px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.18);
}
 
.card-name {
  font-family: var(--font-header);
  font-size: 1.45rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  letter-spacing: .01em;
  opacity: 0;
  transform: translateY(30px);
  display: block;
}
 .arabic-quote
.card-role {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 5px;
  opacity: 0;
  transform: translateY(15px);
  display: block;
}
 
/* Active glow ring */
.leader-card.is-active {
  box-shadow:
    0 20px 60px rgba(45,27,61,.14),
    0 8px 24px rgba(110,70,126,.12),
    0 0 0 1px rgba(244,201,93,.18);
}
 
.leader-card.is-active:hover {
  transform: translateY(-8px) scale(1) !important;
  box-shadow:
    0 28px 70px rgba(45,27,61,.18),
    0 16px 40px rgba(45,27,61,.08),
    0 0 20px var(--primary-glow),
    0 0 0 1px rgba(244,201,93,.22) !important;
}
 
/* ─── Navigation Buttons ───────────────────────────────── */
.carousel-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
}
 
.nav-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow: 0 4px 16px rgba(45,27,61,.08);
  color: var(--primary);
}
 
.nav-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(110,70,126,.15);
  background: rgba(228,218,234,.92);
}
 
.nav-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
 
/* ─── Progress Bar ─────────────────────────────────────── */
.progress-track {
  width: 200px; height: 3px;
  background: rgba(110,70,126,.10);
  border-radius: 3px;
  overflow: hidden;
  flex: 1;
  max-width: 220px;
}
 
.progress-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width .1s linear;
}
 
/* ─── Counter ──────────────────────────────────────────── */
.carousel-counter {
  font-family: var(--font-header);
  font-size: 1rem;
  color: var(--text-secondary);
  letter-spacing: .06em;
  min-width: 52px;
  text-align: center;
}
 
/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 700px) {
  .carousel-stage { height: 440px; }
  .leader-card { width: 240px; height: 340px; }
  .card-name { font-size: 1.2rem; }
}
/* ===== FOOTER ===== */
.site-footer {
    text-align: center;
    padding: 48px;
    color: var(--text-muted);
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-top: 1px solid var(--border-subtle);
}
.brand-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}
.brand-content img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    animation: float 5s ease-in-out infinite;
}
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}
.brand-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}
.bold {
    font-weight: 700;
}   
/* ===== ABOUT SECTION (Redesigned Who We Are) ===== */
.about-section {
    padding: 120px 48px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header .eyebrow {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.about-title {
    font-family: var(--font-header);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 2px;
}

.about-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 24px;
    padding: 48px;
    transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.about-glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08), 0 0 20px var(--primary-glow);
}

.about-glass-card:hover::before {
    opacity: 1;
}

.about-glass-card.main-card {
    text-align: center;
    padding: 60px 40px;
    border-top: 2px solid var(--primary-light);
}

.main-card .card-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 24px;
    text-shadow: 0 0 15px var(--accent-glow);
}

.main-card .lead-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto 32px;
    font-family: var(--font-body);
    font-weight: 300;
}

.main-card .lead-text strong {
    color: var(--primary);
    font-weight: 600;
}

.main-card .arabic-quote {
    font-family: 'Amiri', 'Tajawal', var(--font-header);
    font-size: 2rem;
    color: var(--primary-vivid);
    font-weight: 700;
    direction: rtl;
    line-height: 1.6;
    margin-top: 20px;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.about-grid .about-glass-card {
    flex: 1 1 350px;
    max-width: 480px;
}

.about-glass-card h3 {
    font-family: var(--font-header);
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.about-glass-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.about-grid .wide-card {
    flex: 1 1 100%;
    max-width: 992px; /* (480*2 + 32) */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--glass-bg), rgba(155, 111, 192, 0.05));
}
.heading {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
}
 .cards-section {
      position: relative; /* stacking context for sticky child */
      /* NO overflow:hidden */
    }
 
    .cards-label {
      text-align: center;
      padding: 7rem 2rem 4rem;
    }
 
    .cards-label p {
      font-size: 0.72rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
    }
 
    .cards-label h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.8rem);
      font-weight: 400;
      line-height: 1.1;
    }

    .scroll-section {
      position: relative;
      /* height set by JS */
    }
    .wrapper {
      position: sticky;
      top: 0;
      height: 100vh;
      /* CRITICAL: overflow must be visible so cards sliding up from
         below the viewport aren't clipped */
      overflow: visible;
    }
 
    /* The list fills the sticky viewport frame */
    .list {
      position: relative;
      width: 100%;
      height: 100%;
      /* overflow: visible is the default — leave it */
    }
 
    /* Each card is absolutely placed, filling the frame */
    .item {
      position: absolute;
      inset: 0;
      /* Start below viewport — JS sets this via gsap.set */
      /* Each card has a unique background via nth-child */
      border-radius: 0; /* full-bleed cards — JS animates this */
      display: flex;
      align-items: center;
      justify-content: center;
      /* overflow:hidden is required for border-radius to clip the card content */
      overflow: hidden;
      /* transform-origin centre so the scale shrink looks natural */
      transform-origin: center top;
      will-change: transform;
    }
 
    /* Per-card colours */
    .item:nth-child(1) { background: var(--c1); }
    .item:nth-child(2) { background: var(--c2); }
    .item:nth-child(3) { background: var(--c3); }
    .item:nth-child(4) { background: var(--c4); }
    .item:nth-child(5) { background: var(--c5); }
    .item:nth-child(6) { background: var(--c6); }
    .item:nth-child(7) { background: var(--c7); }
 
    /* ── Item inner layout: content left, image right ── */
    .item {
      flex-direction: row;
      align-items: stretch;
      padding: 0;
    }
 
    .item-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 5vw, 5rem);
      gap: 0;
      position: relative;
      z-index: 1;
    }
 
    /* Ghost number watermark */
    .item-number {
      font-family: var(--font-header);
      font-size: clamp(6rem, 18vw, 13rem);
      font-weight: 700;
      line-height: 1;
      color: rgba(110, 70, 126, 0.07);
      user-select: none;
      position: absolute;
      top: 50%;
      left: clamp(1.5rem, 4vw, 4rem);
      transform: translateY(-55%);
      pointer-events: none;
      z-index: 0;
    }
 
    .item-content h1 {
      font-family: var(--font-header);
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 600;
      line-height: 1.1;
      letter-spacing: 0.5px;
      color: var(--text-primary);
      margin-bottom: 0.8rem;
      position: relative;
      z-index: 1;
    }
 
    .item-content h2 {
      font-family: var(--font-body);
      font-size: clamp(0.85rem, 1.4vw, 1rem);
      font-weight: 300;
      color: var(--text-secondary);
      line-height: 1.65;
      margin-bottom: 2rem;
      max-width: 42ch;
      position: relative;
      z-index: 1;
    }
 
    .item-content ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      position: relative;
      z-index: 1;
    }
 
    .item-content ul li {
      font-family: var(--font-body);
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      font-weight: 500;
      color: var(--text-secondary);
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-transform: uppercase;
    }
 
    .item-content ul li::before {
      content: '';
      display: inline-block;
      width: 18px;
      height: 1.5px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      flex-shrink: 0;
      border-radius: 2px;
    }
 
    /* Image panel */
    .item-media {
      width: 42%;
      flex-shrink: 0;
      object-fit: contain;
      display: block;
    }
/* ===== ARABIC QUOTE SECTION ===== */
.quote {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 24px;
    position: relative;
    width: 100%;
}

.quote::before,
.quote::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.quote::before { top: 0; }
.quote::after { bottom: 0; }

.arabic-quote {
    font-family: 'Amiri', 'Tajawal', var(--font-header);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    direction: rtl;
    line-height: 1.8;
    margin: 0 auto;
    position: relative;
    max-width: 900px;
    text-shadow: 0 4px 15px var(--primary-glow);
}

.quote .arabic-quote::after {
    content: '✧ ✦ ✧';
    display: block;
    font-size: 1.2rem;
    color: var(--accent);
    margin-top: 30px;
    opacity: 0.8;
    letter-spacing: 15px;
    text-shadow: 0 0 10px var(--accent-glow);
}
    /* Decorative corner accent */
    .item-content::after {
      content: '';
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      width: 50px;
      height: 50px;
      border-top: 1px solid var(--border-glow);
      border-right: 1px solid var(--border-glow);
    }
 
    /* ── Section heading ── */
    .section-heading {
      text-align: center;
      padding: 7rem 2rem 4rem;
    }
    .section-heading .eyebrow {
      font-family: var(--font-body);
      font-size: 0.72rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 1rem;
      font-weight: 500;
    }
    .section-heading h1 {
      font-family: var(--font-header);
      font-size: clamp(2.5rem, 6vw, 5rem);
      font-weight: 700;
      line-height: 1.05;
      color: var(--text-primary);
      text-shadow: 0 0 5px var(--primary-glow);
    }
 
 
    /* ── Responsive ── */
    @media (max-width: 700px) {
      .item { flex-direction: column; }
      .item-media { width: 100%; height: 220px; order: -1; }
      .item-number { font-size: 5rem; top: auto; bottom: 1rem; left: 1rem; transform: none; }
    }
 
    /* Progress dots */
    .cards-progress {
      position: fixed;
      right: 2rem;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      z-index: 100;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .cards-progress.visible { opacity: 1; }
    .progress-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--border);
      border: 1px solid rgba(255,255,255,0.15);
      transition: background 0.3s, transform 0.3s;
    }
    .progress-dot.active {
      background: var(--accent);
      transform: scale(1.4);
    }
    .join-section {
  position: relative;
  width: 100%;
  padding: 120px 48px 110px;
  overflow: hidden;
  background: transparent;
}
 
/* Noise texture */
.join-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .4;
  pointer-events: none;
  z-index: 0;
}
 
/* Blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; }
.blob-1 { width:500px; height:500px; top:-80px; right:-100px;  background: radial-gradient(circle, rgba(110,70,126,.09) 0%, transparent 70%); }
.blob-2 { width:420px; height:420px; bottom:-60px; left:-80px; background: radial-gradient(circle, rgba(244,201,93,.07) 0%, transparent 70%); }
 
/* ── Layout ──────────────────────────────────────────── */
.join-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
 
/* ── Left: header column ─────────────────────────────── */
.join-header {
  position: sticky;
  top: 80px;
}
 
.join-eyebrow {
  font-family: var(--font-body);
  font-size: .70rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--primary-light);
  display: block;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(14px);
}
 
.join-title {
  font-family: var(--font-header);
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.08;
  letter-spacing: -.01em;
  overflow: hidden;
}
 
.join-title-inner {
  display: block;
  transform: translateY(100%);
  opacity: 0;
}
 
.join-title em {
  font-style: italic;
  color: var(--primary);
}
 
.join-accent-line {
  width: 0;
  height: 2px;
  margin-top: 28px;
  background: linear-gradient(90deg, var(--primary), var(--accent), transparent);
  border-radius: 2px;
}
 
.join-desc {
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 24px;
  opacity: 0;
  transform: translateY(12px);
}
 
/* Decorative large quote mark */
.join-deco-quote {
  font-family: var(--font-header);
  font-size: 14rem;
  line-height: .7;
  color: var(--primary);
  opacity: .05;
  position: absolute;
  bottom: -20px;
  left: -12px;
  pointer-events: none;
  user-select: none;
}
 
/* Sub-label */
.join-sublabel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 38px;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  opacity: 0;
}
.join-btn {
    padding: 10px 30px;
    background-color: var(--primary);
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    margin-top: 20px;
    width: fit-content;
    cursor: pointer;
    text-decoration: none;
    margin-top: 40px;
    animation: float 5s ease-in-out infinite;
}
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}
.joinBtn {
    text-decoration: none !important;
    color: white;
}

.join-sublabel::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--primary-light);
  opacity: .5;
}
 
/* ── Right: cards column ─────────────────────────────── */
.join-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 
/* ── Gain Card ───────────────────────────────────────── */
.gain-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px 32px 30px;
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(40px);
  transition: transform .45s cubic-bezier(.22,.61,.36,1),
              box-shadow .45s ease;
}
 
.gain-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(45,27,61,.12),
    0 6px 20px rgba(110,70,126,.10),
    0 0 0 1px rgba(244,201,93,.16);
}
 
/* Corner accent */
.gain-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 44px; height: 44px;
  border-top: 1px solid var(--border-glow);
  border-right: 1px solid var(--border-glow);
  border-top-right-radius: 20px;
  pointer-events: none;
}
 
/* Soft inner glow on hover */
.gain-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(244,201,93,.07) 0%, transparent 55%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
}
.gain-card:hover::before { opacity: 1; }
 
/* Number badge */
.card-number {
  position: absolute;
  top: 28px; right: 58px;
  font-family: var(--font-header);
  font-size: 5rem;
  font-weight: 700;
  color: var(--primary);
  opacity: .06;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
 
/* Icon */
.card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(110,70,126,.15), rgba(244,201,93,.12));
  border: 1px solid rgba(110,70,126,.14);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
 
.card-icon svg {
  width: 20px; height: 20px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
 
.card-title {
  font-family: var(--font-header);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: .01em;
}
 
.card-body {
  font-family: var(--font-body);
  font-size: .83rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
}
 
/* Accent pill */
.card-pill {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 14px;
  background: linear-gradient(90deg, rgba(110,70,126,.10), rgba(244,201,93,.10));
  border: 1px solid rgba(110,70,126,.12);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
}
 
/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 860px) {
  .join-section { padding: 80px 28px 80px; }
  .join-inner { grid-template-columns: 1fr; gap: 48px; }
  .join-header { position: static; }
  .join-deco-quote { display: none; }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .loader-to-navbar .brand h1 {
        font-size: 2rem;
        letter-spacing: 6px;
    }

    .loader-to-navbar .brand img {
        width: 90px;
        height: 90px;
    }

    .main-nav {
        right: 20px;
        gap: 4px;
    }

    .main-nav a {
        font-size: 0.72rem;
        padding: 8px 12px;
        letter-spacing: 1px;
    }

    .hero-content {
        padding: 60px 24px 80px;
    }

    .hero-content .tagline {
        font-size: 2.4rem;
    }

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

    .features {
        padding: 0 24px 80px;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .main-nav {
        right: 12px;
    }

    .main-nav a {
        font-size: 0.65rem;
        padding: 6px 8px;
        letter-spacing: 0.5px;
    }

    .hero-content .tagline {
        font-size: 1.8rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.82rem;
    }
    .heading {
        font-size: 2.2rem;
    }
    .item {
        display: flex;
        flex-direction: column;
    }
    .item-content,
    .item-media {
        height: 50vh;
        width: 100%;
        padding-top: 0;
        padding-bottom: 0;
    }
    .item-number {
        font-size: .6rem;
        top: 2rem;
        left: 1.05rem;
        height: 1.6rem;
        width: 1.6rem;
    }
}
/* ===== CONTACT SECTION ===== */
.contact-section {
  position: relative;
  width: 100%;
  padding: 120px 48px;
  overflow: hidden;
  background: transparent;
  z-index: 1;
}

/* Decorative blobs */
.contact-section .blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; }
.contact-section .blob-3 { width: 380px; height: 380px; top: 40%; left: 45%; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(110,70,126,.06) 0%, transparent 70%); }

/* ── Contact Inner ── */
.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* ── Contact Header ── */
.contact-header {
  margin-bottom: 64px;
}

.contact-eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--primary-light);
  display: block;
  margin-bottom: 18px;
}

.contact-title {
  font-family: var(--font-header);
  font-size: clamp(3rem, 6vw, 4.4rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 0;
}

.contact-title em {
    font-style: italic;
    color: var(--primary);
}

.contact-accent-line {
  width: 160px;
  height: 2px;
  margin: 24px auto 0;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
  border-radius: 2px;
}

.contact-desc {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 22px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Social Cards Grid ── */
.contact-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ── Social Card ── */
.social-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 32px 30px;
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  max-width: 320px;
  transition: transform .45s cubic-bezier(.22,.61,.36,1),
              box-shadow .45s ease;
}

/* Corner accent */
.social-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 44px; height: 44px;
  border-top: 1px solid var(--border-glow);
  border-right: 1px solid var(--border-glow);
  border-top-right-radius: 20px;
  pointer-events: none;
}

/* Soft inner glow on hover */
.social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(244,201,93,.07) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
}
.social-card:hover::before { opacity: 1; }

.social-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(45,27,61,.12),
    0 6px 20px rgba(110,70,126,.10),
    0 0 0 1px rgba(244,201,93,.16);
}

.social-card .card-icon {
  margin: 0 auto 20px;
}

.social-card .card-title {
  margin-bottom: 8px;
}

/* ── Contact Responsive ── */
@media (max-width: 860px) {
  .contact-section { padding: 80px 28px; }
  .contact-cards { flex-direction: column; align-items: center; }
  .social-card { max-width: 100%; }
}

/* ===== FULLSCREEN OVERLAY MENU SYSTEM ===== */

/* Blur main page when menu is open */
.main-content,
.loader-to-navbar {
  transition: filter 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

body.menu-open .main-content,
body.menu-open .loader-to-navbar {
  filter: blur(14px) scale(0.99);
  pointer-events: none;
}

/* Fixed Menu Button at bottom right */
.fixed-menu-btn {
  position: fixed;
  bottom: 2.2rem;
  right: 2.2rem;
  z-index: 9999;
  padding: 14px 28px;
  border-radius: 50px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s var(--ease-premium);
  will-change: transform, opacity;
}

.fixed-menu-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 30px var(--primary-glow);
}

.fixed-menu-btn:active {
  transform: translateY(-1px) scale(0.98);
}

/* Fullscreen Overlay Menu Panel — Lighter theme matching website */
.overlay-menu-panel {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(228, 218, 234, 0.88);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.overlay-menu-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-panel-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  text-align: right;
  width: 100%;
  height: 100%;
  padding: 4vw 5vw 3.5vw;
}

/* Menu Header with Close Button */
.menu-panel-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.menu-brand-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  font-weight: 600;
}

.menu-close-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s var(--ease-premium);
}

.menu-close-btn:hover {
  background: var(--primary);
  border-color: var(--primary-light);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 20px var(--primary-glow);
}

/* Menu Row Items */
.menu-links-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  width: min(40vw, 500px);
}

.menu-row-clip {
  overflow: hidden;
  width: 100%;
}

.menu-row-item {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 1rem;
  padding: clamp(0.6rem, 1.8vw, 1.2rem) 0;
  border-bottom: 1px solid rgba(110, 70, 126, 0.15);
  width: 100%;
  text-decoration: none;
  color: var(--text-primary);
  transition: color 0.35s ease;
}

.menu-row-item .idx {
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 0.9vw, 0.85rem);
  color: var(--primary);
  font-weight: 600;
}

.menu-row-item .label {
  position: relative;
  font-family: var(--font-header);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.8rem, 3.8vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: var(--text-primary);
  transition: color 0.35s ease;
}

.menu-row-item .label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.menu-row-item:hover .label {
  color: var(--primary-vivid);
}

.menu-row-item:hover .label::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-row-item .arrow {
  font-family: var(--font-body);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.35s ease;
  color: var(--primary);
}

.menu-row-item:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Footer */
.menu-panel-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.menu-panel-footer .socials {
  display: flex;
  gap: 1.5rem;
}

.menu-panel-footer .socials a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-panel-footer .socials a:hover {
  color: var(--primary);
}

@media (max-width: 720px) {
  .menu-panel-inner {
    padding: 5rem 1.4rem 2rem;
  }
  .menu-links-list {
    width: 100%;
  }
  .fixed-menu-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 12px 22px;
    font-size: 0.75rem;
  }
}


