/* ═══════════════════════════════════════
       COLOR SYSTEM — CSS CUSTOM PROPERTIES
       ═══════════════════════════════════════ */
:root {
  /* Charcoal Scale */
  --charcoal-ultra: #0A0900;
  --charcoal-base: #1E1C08;
  --charcoal-mid: #2A2810;
  --charcoal-surface: #332F14;
  --charcoal-raised: #403C18;

  /* Olive Scale */
  --olive-deep: #3D3B1A;
  --olive-mid: #4E4C22;
  --olive-military: #5A5828;
  --olive-light: #7A7840;
  --olive-mist: #9A9860;

  /* Gold Scale */
  --gold-deep: #5C4820;
  --gold-dim: #7A6030;
  --gold-warm: #B89050;
  --gold-bright: #D4AA6A;
  --gold-vivid: #E8B84B;
  --gold-highlight: #F5D080;

  /* Glow Effects */
  --gold-glow: rgba(184, 144, 80, 0.35);
  --gold-ultra-glow: rgba(184, 144, 80, 0.08);
  --gold-focus-ring: rgba(232, 184, 75, 0.50);

  /* Neutral */
  --tan-sandy: #C9A870;
  --warm-gray: #E8DCC8;
  --cream-off: #F8F5EE;
  --text-body: #9A9860;

  /* Semantic */
  --hero-gradient: linear-gradient(135deg, #0a090056 0%, #1e1c0856 42%, #2a281056 100%);
  --border-subtle: rgba(184, 144, 80, 0.12);
  --border-accent: rgba(184, 144, 80, 0.40);
  --border-strong: rgba(184, 144, 80, 0.75);

  /* Inner Page Variables */
  --surface-1: #2A2810;
  --border: rgba(184, 144, 80, 0.28);
  --text-primary: #F8F5EE;
  --text-secondary: #C9A870;
  --text-muted: #9A9860;
  --gold-mid: #B89050;
  --bg-section: #1A1800;
}

/* ═══════════════════════════════════════
       RESET & BASE
       ═══════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Tajawal', 'Segoe UI', 'Tahoma', Arial, sans-serif;
  background: var(--bg-section) !important;
  color: var(--cream-off);
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}




@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}




/* ═══════════════════════════════════════
       CONTAINER SYSTEM
       ═══════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

/* ═══════════════════════════════════════
       LAYER 2 · MAIN NAVBAR
       ═══════════════════════════════════════ */
.main-nav {
  display: flex;
  align-items: center;
  will-change: transform, opacity;
  transform: translateY(-20px);
  opacity: 0;
  position: sticky;
  top: 0;
  z-index: 200;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}

/* الـ container داخل الـ nav يحمل المحتوى */
.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  transition: padding-top 0.35s ease, padding-bottom 0.35s ease;
}



/* قبل السكرول — شفاف */
.main-nav:not(.scrolled) {
  background: transparent;
  border-bottom: 1px solid transparent;
}

/* بعد السكرول — خلفية داكنة مع blur */
.main-nav.scrolled {
background: #1c1a06;
}

.main-nav.animate-in {
  animation: navFadeIn 400ms ease-out 200ms forwards;
    border-bottom: 0.1px solid rgb(87 70 38 / 50%);
    transition: 0.3s all;
    
}

@keyframes navFadeIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.main-nav__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.main-nav__logo {
  will-change: transform;
  opacity: 0;
  flex-shrink: 0;
}

.main-nav__logo img {
  width: auto;
  height: 88px;
  object-fit: fill;
  display: block;
  transition: 0.3s all;

}

.main-nav__logo:hover img{
    filter: drop-shadow(0 0 12px rgba(184, 144, 80, 0.6));
     
}

.main-nav__logo.animate-in {
  animation: logoScale 400ms ease-out 200ms forwards;
}

@keyframes logoScale {
  from {
    transform: scale(0.85);
    opacity: 0;
  }

  to {
    transform: scale(1.0);
    opacity: 1;
  }
}

.main-nav__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.main-nav__brand-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold-bright);
  letter-spacing: 0.5px;
  line-height: 1.15;
}


.main-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.main-nav__link {
  color: var(--tan-sandy);
  text-decoration: none;
  font-size: 18px;
  padding: 8px 4px;
  will-change: transform, opacity;
  transform: translateY(-8px);
  opacity: 0;
  position: relative;
  transition: color 0.25s ease, transform 0.25s ease;
  /* خط سفلي مخفي ينمو عند hover */
  isolation: isolate;
}

/* الخط الذهبي السفلي */
.main-nav__link::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 50%;
  left: 50%;
  height: 2px;
  background: var(--gold-vivid);
  border-radius: 2px;
  transition: right 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    left 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.28s ease;
  opacity: 0;
}


.main-nav__link:hover {
  color: var(--gold-bright);
  transform: translateY(-1px);
}

.main-nav__link:hover::before {
  right: 0;
  left: 0;
  opacity: 1;
}


.main-nav__link.animate-in {
  animation: linkFadeIn 300ms ease-out forwards;
}

@keyframes linkFadeIn {
  from {
    transform: translateY(-8px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.main-nav__link--active {
  color: var(--gold-vivid);
}

.main-nav__link--active::before {
  right: 0;
  left: 0;
  opacity: 1;
}

.main-nav__cta {
  background: var(--gold-warm);
  color: var(--charcoal-ultra);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
  will-change: transform, opacity;
  transform: translateY(-8px);
  opacity: 0;
  font-family: inherit;
}

.main-nav__cta.animate-in {
  animation: linkFadeIn 300ms ease-out forwards;
  border-radius: 50px;
}

.main-nav__cta:hover {
  background: var(--gold-vivid);
}

/* ═══════════════════════════════════════
       DROPDOWN MEGA MENUS
       ═══════════════════════════════════════ */

/* Parent <li> that contains a dropdown */
.nav-item--has-drop {
  position: relative;
}

/* Chevron beside the link text */
.nav-item--has-drop>.main-nav__link::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-left: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(-45deg) translateY(-2px);
  margin-right: 7px;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  vertical-align: middle;
  opacity: 0.7;
}

.nav-item--has-drop:hover>.main-nav__link::after,
.nav-item--has-drop:focus-within>.main-nav__link::after {
  transform: rotate(-225deg) translateY(-2px);
}

/* Invisible bridge — fills gap between link and dropdown */
.nav-item--has-drop::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: 0;
  left: 0;
  height: 20px;
}

/* The dropdown panel itself */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 50%;
  transform: translateX(50%) translateY(-8px);
  min-width: 240px;
  background: rgba(14, 13, 5, 0.97);
  border: 1px solid rgba(184, 144, 80, 0.18);
  border-radius: 18px;
  padding: 10px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.60),
    0 0 0 1px rgba(184, 144, 80, 0.05),
    0 4px 20px rgba(184, 144, 80, 0.07);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 500;
  background: #1c1a06;
}

/* Tiny arrow pointing up */


/* Show on hover / focus-within — no delay when opening */
.nav-item--has-drop:hover>.nav-dropdown,
.nav-item--has-drop:focus-within>.nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(50%) translateY(0);
  transition:
    opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
    visibility 0s;
}

/* Each dropdown item */
.nav-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--warm-gray);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.35;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.nav-dropdown__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(184, 144, 80, 0.10) 0%, transparent 80%);
  opacity: 0;
  transition: opacity 0.22s ease;
  border-radius: 12px;
}

.nav-dropdown__item:hover {
  color: var(--gold-highlight);
  transform: translateX(-4px);
}

.nav-dropdown__item:hover::before {
  opacity: 1;
}

/* Icon box */
.nav-dropdown__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(184, 144, 80, 0.10);
  border: 1px solid rgba(184, 144, 80, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.3s ease;
}

.nav-dropdown__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-bright);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.22s ease;
}

.nav-dropdown__item:hover .nav-dropdown__icon {
  background: rgba(184, 144, 80, 0.20);
  border-color: rgba(184, 144, 80, 0.48);
  transform: scale(1.1) rotate(-6deg);
}

.nav-dropdown__item:hover .nav-dropdown__icon svg {
  stroke: var(--gold-vivid);
}


/* ── Light mode overrides for dropdowns ── */
[data-theme="light"] .nav-dropdown {
  background: rgba(252, 249, 240, 0.98);
  border-color: rgba(140, 110, 30, 0.20);
  box-shadow:
    0 20px 50px rgba(90, 70, 10, 0.15),
    0 0 0 1px rgba(140, 110, 30, 0.06);
}


[data-theme="light"] .nav-dropdown__item {
  color: #3A3618;
}

[data-theme="light"] .nav-dropdown__item:hover {
  color: #6B4E08;
}

[data-theme="light"] .nav-dropdown__item::before {
  background: linear-gradient(120deg, rgba(184, 134, 11, 0.10) 0%, transparent 80%);
}

[data-theme="light"] .nav-dropdown__icon {
  background: rgba(140, 110, 30, 0.09);
  border-color: rgba(140, 110, 30, 0.20);
}

[data-theme="light"] .nav-dropdown__item:hover .nav-dropdown__icon {
  background: rgba(140, 110, 30, 0.20);
  border-color: rgba(140, 110, 30, 0.50);
}

[data-theme="light"] .nav-dropdown__icon svg {
  stroke: #8B6508;
}

[data-theme="light"] .nav-dropdown__item:hover .nav-dropdown__icon svg {
  stroke: #6B4E08;
}

/* ── Mobile sub-menu inside drawer ── */
.mobile-sub {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(184, 144, 80, 0.04);
  border-top: 1px solid rgba(184, 144, 80, 0.08);
}

.mobile-sub.open {
  max-height: 400px;
}

.mobile-sub__link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-body);
  text-decoration: none;
  font-size: 14.5px;
  padding: 11px 36px 11px 24px;
  border-bottom: 1px solid rgba(184, 144, 80, 0.06);
  transition: color 0.2s, background 0.2s;
}

.mobile-sub__link:hover {
  color: var(--gold-vivid);
  background: rgba(184, 144, 80, 0.07);
}

.mobile-sub__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-warm);
  flex-shrink: 0;
}

/* Mobile row: link text + chevron toggle button */
.mobile-menu__row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu__row .mobile-menu__link {
  flex: 1;
  border-bottom: none;
}

.mob-chevron-btn {
  background: none;
  border: none;
  padding: 0 16px 0 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 48px;
}

.mob-chevron {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1.8px solid var(--gold-bright);
  border-bottom: 1.8px solid var(--gold-bright);
  transform: rotate(45deg);
  transition: transform 0.28s ease;
  flex-shrink: 0;
}

.mob-chevron-btn.open .mob-chevron {
  transform: rotate(-135deg) translate(-1px, 3px);
}

/* Legacy — keep for backward compat */
.mobile-menu__link--parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.mobile-menu__link--parent .mob-chevron {
  width: 8px;
  height: 8px;
  border-right: 1.8px solid var(--gold-bright);
  border-bottom: 1.8px solid var(--gold-bright);
  transform: rotate(45deg);
  transition: transform 0.28s ease;
  flex-shrink: 0;
}

.mobile-menu__link--parent.open .mob-chevron {
  transform: rotate(-135deg) translate(-1px, 3px);
}

[data-theme="light"] .mobile-sub {
  background: rgba(140, 110, 30, 0.04);
  border-top-color: rgba(140, 110, 30, 0.10);
}

[data-theme="light"] .mobile-sub__link {
  color: #5A5530;
  border-bottom-color: rgba(140, 110, 30, 0.06);
}

[data-theme="light"] .mobile-sub__link:hover {
  color: #6B4E08;
  background: rgba(140, 110, 30, 0.07);
}

[data-theme="light"] .mobile-sub__dot {
  background: #9A7010;
}

.lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--gold-bright);
  background: rgba(184, 144, 80, 0.09);
  border: 1px solid rgba(184, 144, 80, 0.25);
  border-radius: 50%;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
    border-radius: 50%;
}

.lang-switcher-btn:hover {
    background: rgba(184, 144, 80, 0.20);
    border-color: rgba(184, 144, 80, 0.55);
    transform: scale(1.1);
    box-shadow: 0 0 16px rgba(184, 144, 80, 0.22);

}



.mobile-menu__lang {
  display: block;
  text-align: center;
  padding: .6rem 1rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold-vivid);
  border-top: 1px solid var(--border-subtle);
  text-decoration: none;
  margin-top: .4rem;
}

/* ── Hamburger Toggle ── */
.main-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border-accent);
  border-radius: 6px;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.main-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-bright);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.main-nav__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.main-nav__toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.main-nav__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Menu Drawer ── */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background: rgba(26, 24, 8, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-accent);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s ease;
  z-index: 200;
}

.mobile-menu.open {
  max-height: 700px;
  padding: 12px 0 16px;
}

.mobile-menu__links {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.mobile-menu__link {
  display: block;
  color: var(--tan-sandy);
  text-decoration: none;
  font-size: 16px;
  padding: 13px 24px;
  border-bottom: 1px solid var(--border-subtle);
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-menu__link:last-child {
  border-bottom: none;
}

.mobile-menu__link:hover,
.mobile-menu__link--active {
  color: var(--gold-vivid);
  background: rgba(184, 144, 80, 0.06);
}

.mobile-menu__cta {
  display: block;
  margin: 12px 24px 0;
  background: var(--gold-warm);
  color: var(--charcoal-ultra);
  padding: 11px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  text-align: center;
  transition: background 0.25s ease;
}

.mobile-menu__cta:hover {
  background: var(--gold-vivid);
}

/* ═══════════════════════════════════════
       LAYER 3 · MARQUEE HERO
       ═══════════════════════════════════════ */
.marquee-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 105px);
  overflow: hidden;
  background: var(--charcoal-ultra);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ── sc-container: الـ flex الرئيسي داخل الـ hero ── */
.sc-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 100px;
}

/* container داخل sc-container: يمين — يحتوي النص */
.sc-container>.container {
  flex: 1;
  min-width: 0;
  padding: 0;
  /* الـ padding من sc-container */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
}

/* hero-shield-bg داخل sc-container: يسار — flex item بحجم ثابت */
.sc-container>.hero-shield-bg {
  position: relative;
  /* يخرج من الـ absolute ليصبح flex item */
  top: unset;
  left: unset;
  transform: none;
  flex-shrink: 0;
  width: 480px;
  height: 560px;
}

/* Subtle radial glow behind content */
.marquee-hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(232, 184, 75, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ─── Hero Content (z-indexed above marquee) ─── */
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: start;
}

/* Tagline badge */
.hero-tagline {
  display: inline-block;
  border-radius: 50px;
  border: 1px solid var(--border-accent);
  background: rgba(30, 28, 8, 0.6);
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-bright);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  /* Animation initial state */
  opacity: 0;
  transform: translateY(15px);
}

.hero-tagline.animate-in {
  animation: fadeSlideUp 600ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Main title */
.hero-title {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #c9a164;
  margin-bottom: 0;
}

.hero-title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
}

.hero-title-word.animate-in {
  animation: fadeSlideUp 500ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title-accent {
  color: var(--gold-vivid);
}

.hero-title-line2 {
  display: block;
  color: var(--tan-sandy);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
}

/* Description */
.hero-description {
  margin-top: 24px;
  max-width: 560px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--text-body);
  opacity: 0;
  transform: translateY(15px);
}

.hero-description.animate-in {
  animation: fadeSlideUp 600ms cubic-bezier(0.16, 1, 0.3, 1) 500ms forwards;
}

/* CTA Button */
.hero-cta {
  margin-top: 32px;
  padding: 14px 40px;
  border-radius: 50px;
  background: var(--gold-warm);
  color: var(--charcoal-ultra);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(184, 144, 80, 0.3);
  transition: transform 0.2s ease, background 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(15px);
}

.hero-cta.animate-in {
  animation: fadeSlideUp 600ms cubic-bezier(0.16, 1, 0.3, 1) 600ms forwards;
}

.hero-cta:hover {
  background: var(--gold-vivid);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(232, 184, 75, 0.35);
}

.hero-cta:active {
  transform: translateY(0) scale(0.97);
}

/* ─── Swiper Marquee ─── */
.marquee-container {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  z-index: 1;
  /* Gradient mask: fade top & bottom */
  /* -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
      mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent); */
}

/* Override Swiper defaults */
.marquee-container .swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.marquee-container .swiper-wrapper {
  transition-timing-function: linear !important;
}

.marquee-container .swiper-slide {
  width: 180px;
  height: 240px;
  flex-shrink: 0;
}

.marquee-card {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(184, 144, 80, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.swiper-slide:nth-child(odd) .marquee-card {
  transform: rotate(-2deg);
}

.swiper-slide:nth-child(even) .marquee-card {
  transform: rotate(4deg);
}

.marquee-card:hover {
  transform: rotate(0deg) scale(1.08) translateY(-8px) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(232, 184, 75, 0.2);
  z-index: 5;
}

.marquee-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Subtle gold border glow on cards */
.marquee-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(184, 144, 80, 0.1);
  pointer-events: none;
}

/* ─── Background Shield ─── */
.hero-shield-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-150%, -54%);
  width: 520px;
  height: 610px;
  z-index: 4;
  pointer-events: none;
  opacity: 1;
}

/* ════════════════════════════════════════
       SHIELD INTRO — PAGE LOAD CINEMATIC
       ════════════════════════════════════════ */

/* 1 — Container: materialise from nothing */
.sc-container>.hero-shield-bg {
  opacity: 0;
  animation: shieldHeroReveal 1.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s forwards;
}

@keyframes shieldHeroReveal {
  0% {
    opacity: 0;
    transform: scale(0.10) rotate(-18deg);
    filter: blur(20px) brightness(7);
  }

  15% {
    opacity: 0.6;
    filter: blur(6px) brightness(4);
  }

  46% {
    opacity: 1;
    transform: scale(1.22) rotate(6deg);
    filter: blur(0) brightness(1.8);
  }

  64% {
    transform: scale(0.93) rotate(-2.5deg);
    filter: brightness(1.12);
  }

  79% {
    transform: scale(1.05) rotate(0.8deg);
  }

  91% {
    transform: scale(0.99) rotate(0);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
    filter: none;
  }
}

/* 2 — SVG float restarts only after intro finishes */
.sc-container>.hero-shield-bg svg {
  animation: shieldFloat 6s ease-in-out 1.95s infinite;
}

/* 3 — Gold radial flash: explodes outward on reveal */
.hero-shield-bg::before {
  content: '';
  position: absolute;
  inset: -45%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 46%,
      rgba(245, 208, 128, 1.0) 0%,
      rgba(232, 184, 75, 0.65) 16%,
      rgba(184, 144, 80, 0.22) 38%,
      transparent 68%);
  opacity: 0;
  pointer-events: none;
  z-index: 8;
  animation: shieldFlashBurst 0.8s ease-out 0.27s forwards;
}

@keyframes shieldFlashBurst {
  0% {
    opacity: 0;
    transform: scale(0.18);
  }

  20% {
    opacity: 1;
    transform: scale(0.72);
  }

  55% {
    opacity: 0.28;
    transform: scale(1.35);
  }

  100% {
    opacity: 0;
    transform: scale(2.10);
  }
}

/* 4 — Expanding ring silhouette */
.hero-shield-bg::after {
  content: '';
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 3px solid rgba(232, 184, 75, 0.85);
  opacity: 0;
  pointer-events: none;
  z-index: 8;
  animation: shieldRingExpand 1.1s ease-out 0.3s forwards;
}

@keyframes shieldRingExpand {
  0% {
    opacity: 0.95;
    transform: scale(0.45);
    filter: blur(0);
  }

  40% {
    opacity: 0.70;
    filter: blur(1px);
  }

  100% {
    opacity: 0;
    transform: scale(2.30);
    filter: blur(3px);
  }
}

/* 5 — Inner image fades in after shield settles */
.hero-shield-bg svg image {
  opacity: 0;
  animation: shieldImgFadeIn 0.65s ease-out 0.95s forwards;
}

@keyframes shieldImgFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 6 — Shield border pulse starts after reveal */
.sc-container>.hero-shield-bg .shield-border-pulse {
  animation-delay: 1.4s;
}

/* Outer ambient glow ring */
.shield-glow-ring {
  position: absolute;
  inset: -60px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 45%,
      rgba(232, 184, 75, 0.10) 0%,
      rgba(184, 144, 80, 0.05) 40%,
      transparent 70%);
  opacity: 0;
  /* bloom in on page load, then settle to normal breath */
  animation:
    shieldGlowBloom 1.0s cubic-bezier(0.34, 1.56, 0.64, 1) 0.30s forwards,
    shieldBreath 4s ease-in-out 1.65s infinite;
}

@keyframes shieldGlowBloom {
  0% {
    opacity: 0;
    transform: scale(0.30);
  }

  45% {
    opacity: 1.0;
    transform: scale(1.55);
  }

  100% {
    opacity: 0.7;
    transform: scale(1);
  }
}

@keyframes shieldBreath {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

/* Shield SVG itself */
.hero-shield-bg svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 32px rgba(232, 184, 75, 0.18)) drop-shadow(0 0 80px rgba(184, 144, 80, 0.10));
  animation: shieldFloat 6s ease-in-out infinite;
}

@keyframes shieldFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Rotating shimmer sweep */
.shield-shimmer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: url(#shieldClip);
  opacity: 0.4;
  animation: shieldShimmerSpin 5s linear infinite;
}

.shield-shimmer::before {
  content: '';
  position: absolute;
  inset: -100%;
  background: conic-gradient(from 0deg at 50% 50%,
      transparent 0deg,
      rgba(245, 208, 128, 0.5) 30deg,
      transparent 60deg,
      transparent 360deg);
  animation: shieldShimmerSpin 5s linear infinite;
}

@keyframes shieldShimmerSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Pulse on the border */
.shield-border-pulse {
  animation: shieldBorderPulse 3s ease-in-out infinite;
}

@keyframes shieldBorderPulse {

  0%,
  100% {
    opacity: 0.55;
  }

  50% {
    opacity: 1;
  }
}

/* ─── Shield Orbit ─── */
@keyframes shieldOrbit {
  from {
    stroke-dashoffset: 700;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes shieldOrbitReverse {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -700;
  }
}

/* ─── Guard Image ─── */
/* مستقل عن hero-shield-bg لضمان أنه فوق كل طبقات الـ SVG */
.shield-guard {
  position: absolute;
  top: 50%;
  left: 50%;
  /* نفس إزاحة الدرع أفقياً، أعلى قليلاً لإبراز الرأس */
  transform: translate(-150%, -67%);
  width: 460px;
  z-index: 6;
  /* فوق الدرع(4) وتحت النص(10) */
  pointer-events: none;
}

.shield-guard img {
  width: 100%;
  height: auto;
  display: block;
  /* glow يتبع شكل الـ PNG الشفاف تلقائياً */
  filter:
    drop-shadow(0 0 24px rgba(232, 184, 75, 0.60)) drop-shadow(0 0 70px rgba(184, 144, 80, 0.32)) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.80)) brightness(0.92) contrast(1.08);
}

/* Dark gradient over bottom of hero to blend marquee */
.marquee-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to top, #433619, transparent);
  z-index: 2;
  pointer-events: none;
}

.footer-watermark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: radial-gradient(var(--gold-vivid) 1px, transparent 1px);
  background-size: 15px 15px;
  pointer-events: none;
}

/* ═══════════════════════════════════════
       RESPONSIVE BREAKPOINTS
       ═══════════════════════════════════════ */
/* ── 1280px — شاشات لابتوب صغيرة ── */
@media (max-width: 1600px) {

  .sc-container>.hero-shield-bg {
    width: auto;
    height: 460px;
  }
}

/* ── 1024px — تابلت أفقي ── */
@media (max-width: 1024px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }


  .marquee-container .swiper-slide {
    width: 150px;
    height: 200px;
  }

  .sc-container {
    padding: 0 32px;
    gap: 32px;
  }

  .sc-container>.hero-shield-bg {
    width: auto;
    height: 450px;
  }
}

/* ── 768px — تابلت عمودي ── */
@media (max-width: 768px) {
  .hero-content {
    align-items: center;
  }

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  /* يتحول إلى column: النص فوق، الدرع تحت */
  .sc-container {
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
    gap: 32px;
  }

  .sc-container>.container {
    align-items: center;
    text-align: center;
  }

  .sc-container>.hero-shield-bg {
    width: auto;
    height: 375px;
  }

  .shield-guard {
    width: 105%;
    bottom: -16px;
    transform: translateX(-50%);
  }

  .marquee-hero {
    height: calc(100vh - 70px);
  }

  .marquee-container .swiper-slide {
    width: 130px;
    height: 175px;
  }

  .marquee-card {
    border-radius: 12px;
  }

  .marquee-card::after {
    border-radius: 12px;
  }

  .hero-tagline {
    font-size: 12px;
    padding: 6px 18px;
  }

  .hero-description {
    font-size: 15px;
    max-width: 90%;
  }

  /* ── Switch to hamburger ── */
  .main-nav__links,
  .main-nav__cta {
    display: none;
  }

  .main-nav__toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .main-nav__logo img {
    width: 66px;
    height: 66px;
  }

  .main-nav__brand-name {
    font-size: 16px;
  }

  .main-nav__brand-sub {
    font-size: 12px;
  }
}

/* ── 480px — موبايل ── */
@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .marquee-hero {
    min-height: 100vh;
  }



  .marquee-container .swiper-slide {
    width: 110px;
    height: 148px;
  }

  .marquee-card {
    border-radius: 10px;
  }

  .marquee-card::after {
    border-radius: 10px;
  }

  .hero-cta {
    padding: 12px 28px;
    font-size: 14px;
  }

  .hero-description {
    font-size: 13px;
  }

  .sc-container {
    padding: 0 16px;
    gap: 24px;
  }

  .sc-container>.hero-shield-bg {
    width: auto;
    height: 303px;
  }

  .shield-guard {
    width: 105%;
  }

  .main-nav__logo img {
    width: auto;
    height: 70px;
  }

  .main-nav__brand-name {
    font-size: 16px;
  }
}

/* ── 360px — موبايل صغير ── */
@media (max-width: 360px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .sc-container {
    padding: 0 12px;
    gap: 16px;
  }

  .sc-container>.hero-shield-bg {
    width: auto;
    height: 255px;
  }
}

/* ═══════════════════════════════════════
       SERVICES SECTION
       ═══════════════════════════════════════ */
#services {
  position: relative;
  background: #07060400;
  background-color: #09080500;
  background: #0c0b08;
  padding: 90px 40px 100px;
  direction: rtl;
  overflow: hidden;
}

/* Radial gold glow من الأعلى */
#services::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at 50% 0%,
      rgba(184, 144, 80, 0.10) 0%,
      rgba(184, 144, 80, 0.04) 40%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.svc-texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.045;
}

/* ── Header ── */
.svc-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 50px;
}

.svc-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.svc-eyebrow__line {
  width: 0;
  height: 1px;
  background: rgba(232, 184, 75, 0.35);
  transition: width 400ms ease-out;
}

.svc-eyebrow__line.animate-in {
  width: 44px;
}

.svc-eyebrow__label {
  font-size: 13px;
  color: var(--gold-vivid);
  letter-spacing: 5px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 400ms ease-out 200ms, transform 400ms ease-out 200ms;
}

.svc-eyebrow__label.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.svc-title {
  font-size: 44px;
  font-weight: 700;
  color: #F5F0E8;
  margin-bottom: 13px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms ease-out 300ms, transform 500ms ease-out 300ms;
}

.svc-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.svc-title__accent {
  color: var(--gold-vivid);
}

.svc-divider {
  width: 0;
  height: 2px;
  background: linear-gradient(to left, transparent, var(--gold-warm), transparent);
  margin: 0 auto;
  transition: width 300ms ease-out 500ms;
}

.svc-divider.animate-in {
  width: 50px;
}

/* ── Grid ── */
.svc-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  /* gap: 24px; */
}

.svc-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

/* ── Hex Wrapper ── */
.hex-wrap {
  width: 250px;
  height: 287px;
  cursor: pointer;
  will-change: transform, opacity;
  opacity: 0;
  flex-shrink: 0;
 overflow: hidden;
 transition: 0.3s all;
}

.hex-wrap:hover{
    overflow: visible;
}

.hex-wrap.is-entering {
  animation: hexEntrance 500ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hex-wrap.is-done {
  opacity: 1;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hex-wrap.is-done:hover {
  transform: translateY(-6px);
}

@keyframes hexEntrance {
  from {
    opacity: 0;
    transform: scale(0.80) translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── SVG Text ── */
.hex-svg text {
  font-family: 'Tajawal', 'Segoe UI', Tahoma, Arial, sans-serif;
}

/* رقم الخدمة — مكبّر */
.hex-svg .num {
  font-size: 15px;
  fill: var(--gold-bright) !important;
  font-weight: 800;
  letter-spacing: 2px;
      text-shadow: -3px 0px black
}

/* اسم الخدمة العربي — مكبّر */
.hex-svg .lbl {
  font-size: 14px;
  fill: var(--cream-off) !important;
  font-weight: 700;
  text-anchor: middle;
      text-shadow: -3px 0px black
}



.hex-wrap:hover .hex-svg .lbl {
  fill: var(--gold-highlight) !important;
}

/* ── SVG Layers ── */
/* hfill شفاف — الصورة هي الخلفية الآن */
.hfill {
  fill: rgba(12, 11, 8, 0.08);
  transition: fill 0.4s ease;
}

.hex-wrap--center .hfill {
  fill: rgba(12, 11, 8, 0.05);
}

.hex-wrap:hover .hfill {
  fill: rgba(12, 11, 8, 0.00);
}

/* Overlay فوق الصورة — يتخفف عند hover */
.hoverlay {
  fill: rgba(8, 7, 4, 0.60);
  transition: fill 0.4s ease;
}

.hex-wrap--center .hoverlay {
  fill: rgba(8, 7, 4, 0.50);
}

.hex-wrap:hover .hoverlay {
  fill: rgba(8, 7, 4, 0.30);
}

.hbg {
  fill: none;
  stroke: rgba(184, 144, 80, 0.18);
  stroke-width: 1.5;
  transition: stroke 0.4s ease;
}

.hex-wrap--center .hbg {
  stroke: rgba(232, 184, 75, 0.28);
  stroke-width: 1.8;
}

.hex-wrap:hover .hbg {
  stroke: rgba(184, 144, 80, 0.32);
}

.spin1 {
  fill: none;
  stroke: var(--gold-vivid);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-dasharray: 95 445;
  stroke-dashoffset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hex-wrap:hover .spin1 {
  opacity: 1;
  animation: spinhex 1.8s linear infinite;
}

.spin2 {
  fill: none;
  stroke: var(--gold-warm);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: 60 480;
  stroke-dashoffset: -270;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hex-wrap:hover .spin2 {
  opacity: 0.55;
  animation: spinhex 2.6s linear infinite reverse;
}

@keyframes spinhex {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -540;
  }
}

.ico {
  fill: none;
  stroke: var(--gold-dim);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.35s ease;
}

.hex-wrap:hover .ico {
  stroke: var(--gold-vivid);
}

.num {
  transition: fill 0.35s ease;
}

.hex-wrap:hover .num {
  fill: var(--olive-military);
}

.lbl {
  transition: fill 0.35s ease;
}

.hex-wrap:hover .lbl {
  fill: var(--gold-highlight);
}


/* ── Services Responsive ── */
@media (max-width: 900px) {
  .hex-wrap {
    width: 168px;
    height: 195px;
  }

  .svc-row {
    gap: 18px;
  }

  .svc-grid {
    gap: 16px;
  }
}

@media (max-width: 600px) {
  #services {
    padding: 60px 16px 70px;
  }

  .hex-wrap {
    width: 140px;
    height: 162px;
  }

  .svc-row {
    gap: 12px;
  }

  .svc-grid {
    gap: 12px;
  }

  .svc-title {
    font-size: 30px;
  }

  .svc-header {
    margin-bottom: 36px;
  }

  .svc-row {
    gap: 8px;
  }

  .svc-grid {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .svc-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .svc-row {
    display: contents;
  }
}

@media (max-width: 360px) {
  .hex-wrap {
    width: 115px;
    height: 133px;
  }

  .svc-grid {
    max-width: 242px;
  }
}

/* ═══════════════════════════════════════
       WHY ALWAFAA SECTION
       ═══════════════════════════════════════ */
#why-us {
  position: relative;
  background: linear-gradient(180deg, #0c0b08 0%, #0f0e0a 60%, #0a0900 100%);
  overflow: hidden;
  padding: 100px 0 80px;
}

#why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(184, 144, 80, 0.065) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

#why-us::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to left, transparent, rgba(184, 144, 80, 0.45) 30%, var(--gold-vivid) 50%, rgba(184, 144, 80, 0.45) 70%, transparent);
}

/* ── Header ── */
.why-header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}

.why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232, 184, 75, 0.07);
  border: 1px solid rgba(232, 184, 75, 0.22);
  border-radius: 50px;
  padding: 7px 20px;
  margin-bottom: 24px;
}

.why-eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-vivid);
  box-shadow: 0 0 8px rgba(232, 184, 75, 0.9);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.6);
    opacity: 0.6;
  }
}

.why-eyebrow__text {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold-vivid);
}

.why-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--cream-off);
  line-height: 1.2;
  margin-bottom: 16px;
}

.why-title em {
  font-style: normal;
  color: var(--gold-vivid);
  position: relative;
}

.why-title em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to left, transparent, var(--gold-vivid), transparent);
  border-radius: 2px;
}

.why-subtitle {
  font-size: 17px;
  color: var(--text-body);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Stats Bar ── */
.why-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(184, 144, 80, 0.12);
  border: 1px solid rgba(184, 144, 80, 0.12);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 56px;
}

.why-stat {
  background: rgba(12, 11, 8, 0.97);
  padding: 36px 20px;
  text-align: center;
  position: relative;
  transition: background 0.3s ease;
}

.why-stat:hover {
  background: rgba(184, 144, 80, 0.07);
}

.why-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--gold-vivid);
  border-radius: 0 0 4px 4px;
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-stat:hover::before {
  transform: scaleX(1);
}

.why-stat__number {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--gold-vivid);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.why-stat__suffix {
  font-size: 1.3rem;
  color: var(--gold-bright);
}

.why-stat__label {
  font-size: 13.5px;
  color: var(--text-body);
  font-weight: 600;
}

/* ── Main Two-Column Layout ── */
.why-main {
  position: relative;
  max-height: 730px;
  z-index: 1;
  display: flex;
  align-items: stretch;
  gap: 36px;
}

/* Right column: 4 rectangular cards stacked */
.why-cards-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 56px;
}

/* Rectangular card modifier */
.why-card--rect {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 26px;
  border-radius: 16px;
}

.why-card--rect .why-card__icon {
  flex-shrink: 0;
  margin-bottom: 0;
  margin-top: 2px;
}

.why-card--rect .why-card__body {
  flex: 1;
  min-width: 0;
}

/* Left column: image with logo badge */
.why-visual-col {
  flex: 0 0 42%;
  max-width: 42%;
  position: relative;
  border-radius: 24px;
  border-bottom: 1px solid rgba(184, 144, 80, 0.18);
  /* overflow: hidden; */

}

.why-visual-col__img {
  width: 100%;
  height: 100%;
  object-position: center 20%;
  display: block;
  border-radius: 24px;
  object-fit: fill;
}

.why-visual-col__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 9, 0, 0.80) 0%,
      rgba(10, 9, 0, 0.20) 50%,
      transparent 100%);
  pointer-events: none;
}

/* Logo badge bottom-left of image */
.why-logo-badge {
  position: absolute;
  bottom: -60px;
  left: 0px;

}

.why-logo-badge__img {
  width: 115px;
  height: 177px;
  object-fit: contain;
  flex-shrink: 0;
}

.why-logo-badge__name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--cream-off);
  line-height: 1.3;
}

.why-logo-badge__sub {
  font-size: 11px;
  color: var(--gold-bright);
  font-weight: 500;
}

.why-card {

  border: 1px solid rgba(232, 184, 75, 0.22);
  border-radius: 20px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  background: linear-gradient(140deg, rgba(184, 144, 80, 0.09) 0%, rgba(30, 28, 10, 0.85) 100%);
}

.why-card:hover {
  border-color: rgba(232, 184, 75, 0.32);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(232, 184, 75, 0.08);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(232, 184, 75, 0.10) 0%, transparent 65%);
  border-radius: 0 0 64px 0;
  transition: width 0.35s ease, height 0.35s ease;
}

.why-card:hover::before {
  width: 100px;
  height: 100px;
}


.why-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(184, 144, 80, 0.10);
  border: 1px solid rgba(184, 144, 80, 0.22);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: background 0.35s, border-color 0.35s, transform 0.35s;
}

.why-card:hover .why-card__icon {
  background: rgba(232, 184, 75, 0.18);
  border-color: rgba(232, 184, 75, 0.5);
  transform: scale(1.1) rotate(-4deg);
}

.why-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-bright);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

.why-card:hover .why-card__icon svg {
  stroke: var(--gold-vivid);
}

/* FontAwesome icons inside why-card */
.why-card__icon i,
.why-card__icon .fa,
.why-card__icon [class*="fa-"] {
  font-size: 22px;
  color: var(--gold-bright);
  transition: color 0.3s ease;
}

.why-card:hover .why-card__icon i,
.why-card:hover .why-card__icon .fa,
.why-card:hover .why-card__icon [class*="fa-"] {
  color: var(--gold-vivid);
}

.why-card__title {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--cream-off);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.why-card:hover .why-card__title {
  color: var(--gold-highlight);
}

.why-card__text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-body);
  position: relative;
  z-index: 1;
  font-weight: 600;
}


/* ── Responsive ── */
@media (max-width: 1024px) {
  .why-main {
    gap: 24px;
    max-height: 100%;
  }

  .why-visual-col {
    flex: 0 0 38%;
    max-width: 38%;
  }

  .why-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-main {
    flex-direction: column-reverse;
  }

  .why-visual-col {
    flex: unset;
    max-width: 100%;
  }

  .why-visual-col__img {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  #why-us {
    padding: 72px 0 56px;
  }

  .why-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-stat {
    padding: 24px 14px;
  }

  .why-card--rect {
    padding: 18px 20px;
    gap: 14px;
  }

  .why-header {
    margin-bottom: 48px;
  }
}

/* ── Why-main scroll animations ── */

/* Cards — slide in from right (RTL: from left visually) */
.why-card--rect {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.why-card--rect.why-anim-in {
  opacity: 1;
  transform: translateX(0);
}

/* Visual column — slide in from left (RTL: from right visually) */
.why-visual-col {
  opacity: 0;
  transform: translateX(-44px) scale(0.97);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-visual-col.why-anim-in {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Stats bar — fade + scale up */
.why-stats {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background 0.4s ease,
    border-color 0.35s ease;
}

.why-stats.why-anim-in {
  opacity: 1;
  transform: translateY(0);
}

/* Counter number pulse when it finishes */
@keyframes whyCountPop {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.18);
  }

  70% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

.why-stat__number.count-pop {
  animation: whyCountPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ═══════════════════════════════════════
       ACTIVITIES SECTION
       ═══════════════════════════════════════ */
#activities {
  position: relative;
  background: linear-gradient(180deg, #0f0e0a 0%, #0c0b08 55%, #0a0900 100%);
  padding: 100px 0 90px;
  overflow: hidden;
}

#activities::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(184, 144, 80, 0.055) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

#activities::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to left, transparent, rgba(184, 144, 80, 0.45) 30%, var(--gold-vivid) 50%, rgba(184, 144, 80, 0.45) 70%, transparent);
}

/* ── Header ── */
.act-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.act-header.anim-visible {
  opacity: 1;
  transform: translateY(0);
}

.act-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232, 184, 75, 0.07);
  border: 1px solid rgba(232, 184, 75, 0.22);
  border-radius: 50px;
  padding: 7px 20px;
  margin-bottom: 20px;
}

.act-eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-vivid);
  box-shadow: 0 0 8px rgba(232, 184, 75, 0.9);
  animation: dotPulse 2s ease-in-out infinite;
}

.act-eyebrow__text {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold-vivid);
}

.act-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--cream-off);
  line-height: 1.2;
  margin-bottom: 14px;
}

.act-title em {
  font-style: normal;
  color: var(--gold-vivid);
  position: relative;
}

.act-title em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to left, transparent, var(--gold-vivid), transparent);
  border-radius: 2px;
}

.act-subtitle {
  font-size: 16px;
  color: var(--text-body);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Swiper wrap ── */
.act-swiper-wrap {
  position: relative;
  z-index: 1;
}

/* ── Card ── */
.act-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 460px;
  border: 1px solid rgba(184, 144, 80, 0.12);
  cursor: pointer;
  transform: translateY(44px) scale(0.97);
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.act-card.anim-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.act-card:hover {
  border-color: rgba(232, 184, 75, 0.50);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(232, 184, 75, 0.10), 0 0 36px rgba(184, 144, 80, 0.14);
}

/* Image fills card */
.act-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.act-card:hover .act-card__img {
  transform: scale(1.09);
}

/* Gradient overlay on image */
.act-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(5, 4, 0, 0.97) 0%,
      rgba(5, 4, 0, 0.70) 38%,
      rgba(5, 4, 0, 0.18) 68%,
      transparent 100%);
  transition: background 0.4s ease;
}

.act-card:hover .act-card__overlay {
  background: linear-gradient(to top,
      rgba(5, 4, 0, 0.98) 0%,
      rgba(5, 4, 0, 0.82) 48%,
      rgba(5, 4, 0, 0.28) 78%,
      transparent 100%);
}

/* Gold shimmer on hover top-right corner */
.act-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(232, 184, 75, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.act-card:hover::after {
  opacity: 1;
}

/* Content overlay */
.act-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px 24px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.act-card:hover .act-card__content {
  transform: translateY(-8px);
}

/* Category badge */
.act-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.act-card__badge--activity {
  background: rgba(59, 130, 246, 0.22);
  border: 1px solid rgba(59, 130, 246, 0.45);
  color: #93c5fd;
}

.act-card__badge--conference {
  background: rgba(232, 184, 75, 0.18);
  border: 1px solid rgba(232, 184, 75, 0.45);
  color: var(--gold-vivid);
}

.act-card__badge--news {
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.45);
  color: #86efac;
}

/* Date */
.act-card__date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(200, 185, 150, 0.58);
  margin-bottom: 8px;
}

.act-card__date svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  flex-shrink: 0;
}

/* Title */
.act-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--cream-off);
  line-height: 1.45;
  margin-bottom: 10px;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}



/* Description – max 3 lines */
.act-card__desc {
  font-size: 13px;
  color: rgba(200, 185, 150, 0.65);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
font-weight: 600;
}

/* Footer */
.act-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(184, 144, 80, 0.15);
  padding-top: 12px;
}

.act-card__views {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight:700;
  font-size: 12.5px;
  color: rgba(200, 185, 150, 0.55);
}

.act-card__views svg {
  width: 15px;
  height: 15px;
  stroke: rgba(184, 144, 80, 0.60);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.act-card__read-more {
  font-size: 14px;
  color: #b89050;
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0;
  font-weight:800;
  transform: translateX(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.act-card:hover .act-card__read-more {
  opacity: 1;
  transform: translateX(0);
}

/* ── Pagination ── */
.act-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.act-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(184, 144, 80, 0.28);
  border-radius: 4px;
  opacity: 1;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin: 0 !important;
}

.act-pagination .swiper-pagination-bullet-active {
  background: var(--gold-vivid);
  width: 28px;
  box-shadow: 0 0 10px rgba(232, 184, 75, 0.55);
}

/* ── Nav bar ── */
.act-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 44px;
}

.act-nav__btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(184, 144, 80, 0.09);
  border: 1px solid rgba(184, 144, 80, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.act-nav__btn:hover {
  background: rgba(184, 144, 80, 0.22);
  border-color: rgba(184, 144, 80, 0.60);
  transform: scale(1.12);
  box-shadow: 0 0 20px rgba(184, 144, 80, 0.22);
}

.act-nav__btn:disabled,
.act-nav__btn.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.act-nav__btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-bright);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .act-card {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .act-card {
    height: 400px;
  }
}

@media (max-width: 640px) {
  #activities {
    padding: 72px 0 60px;
  }

  .act-card {
    height: 380px;
  }

  .act-card__title {
    font-size: 15.5px;
  }
}

/* ═══════════════════════════════════════
       CONTACT SECTION
       ═══════════════════════════════════════ */
#contact {
  position: relative;
  background: linear-gradient(180deg, #0a0900 0%, #0d0c09 55%, #0f0e0a 100%);
  padding: 100px 0 90px;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(184, 144, 80, 0.055) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

#contact::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to left, transparent, rgba(184, 144, 80, 0.45) 30%, var(--gold-vivid) 50%, rgba(184, 144, 80, 0.45) 70%, transparent);
}

/* ── Header ── */
.ctc-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.ctc-header.anim-visible {
  opacity: 1;
  transform: translateY(0);
}

.ctc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232, 184, 75, 0.07);
  border: 1px solid rgba(232, 184, 75, 0.22);
  border-radius: 50px;
  padding: 7px 20px;
  margin-bottom: 20px;
}

.ctc-eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-vivid);
  box-shadow: 0 0 8px rgba(232, 184, 75, 0.9);
  animation: dotPulse 2s ease-in-out infinite;
}

.ctc-eyebrow__text {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold-vivid);
}

.ctc-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--cream-off);
  line-height: 1.2;
  margin-bottom: 14px;
}

.ctc-title em {
  font-style: normal;
  color: var(--gold-vivid);
  position: relative;
}

.ctc-title em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to left, transparent, var(--gold-vivid), transparent);
  border-radius: 2px;
}

.ctc-subtitle {
  font-size: 16px;
  color: var(--text-body);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Main card ── */
.ctc-card {
  position: relative;
  z-index: 1;
  display: flex;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(184, 144, 80, 0.16);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(184, 144, 80, 0.06);
  transform: translateY(44px);
  transition: opacity 0.8s ease 0.15s, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}

.ctc-card.anim-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Form panel ── */
.ctc-form-panel {
  flex: 1;
  padding: 56px 52px;
  background: linear-gradient(140deg, rgba(16, 14, 4, 0.99) 0%, rgba(22, 20, 7, 0.97) 100%);
  position: relative;
  overflow: hidden;
}

.ctc-form-panel::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 144, 80, 0.07), transparent 70%);
  pointer-events: none;
}

.ctc-form-panel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to left, transparent, rgba(184, 144, 80, 0.35) 40%, rgba(184, 144, 80, 0.35) 60%, transparent);
  pointer-events: none;
}

.ctc-form-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--cream-off);
  margin-bottom: 6px;
}

.ctc-form-desc {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Row of 2 inputs */
.ctc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.ctc-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.ctc-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 0.3px;
}

.ctc-input,
.ctc-textarea {
  width: 100%;
  background: rgba(184, 144, 80, 0.05);
  border: 1px solid rgba(184, 144, 80, 0.18);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: 'Tajawal', sans-serif;
  font-size: 14.5px;
  color: var(--cream-off);
  direction: rtl;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.ctc-input::placeholder,
.ctc-textarea::placeholder {
  color: rgba(154, 152, 96, 0.40);
}

.ctc-input:focus,
.ctc-textarea:focus {
  border-color: rgba(232, 184, 75, 0.58);
  background: rgba(184, 144, 80, 0.09);
  box-shadow: 0 0 0 3px rgba(232, 184, 75, 0.09), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.ctc-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}

.ctc-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-warm) 0%, var(--gold-vivid) 60%, #f0c84a 100%);
  color: #0a0900;
  border: none;
  border-radius: 50px;
  padding: 16px 40px;
  font-family: 'Tajawal', sans-serif;
  font-size: 15.5px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ctc-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(100%);
  transition: transform 0.5s ease;
}

.ctc-submit:hover::before {
  transform: translateX(-100%);
}

.ctc-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(184, 144, 80, 0.45);
  filter: brightness(1.06);
}

.ctc-submit svg {
  width: 17px;
  height: 17px;
  stroke: #0a0900;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  transition: transform 0.3s ease;
}

.ctc-submit:hover svg {
  transform: translateX(-5px) rotate(-10deg);
}

/* ── Info panel ── */
.ctc-info-panel {
  flex: 0 0 38%;
  max-width: 38%;
  background: linear-gradient(155deg, rgba(22, 19, 5, 0.98) 0%, rgba(10, 9, 0, 0.99) 100%);
  padding: 56px 44px;
  position: relative;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(184, 144, 80, 0.15);
  overflow: hidden;
}

/* Decorative circle bottom-left */
.ctc-info-panel::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(184, 144, 80, 0.10);
  pointer-events: none;
}

.ctc-info-panel::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(184, 144, 80, 0.08);
  pointer-events: none;
}

.ctc-info-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold-vivid);
  margin-bottom: 38px;
  position: relative;
  z-index: 1;
}

.ctc-info-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold-vivid);
  border-radius: 2px;
  margin-top: 10px;
}

.ctc-info-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.ctc-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ctc-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(184, 144, 80, 0.10);
  border: 1px solid rgba(184, 144, 80, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.ctc-info-item:hover .ctc-info-icon {
  background: rgba(184, 144, 80, 0.22);
  border-color: rgba(184, 144, 80, 0.55);
  transform: scale(1.1) rotate(-5deg);
}

.ctc-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-bright);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ctc-info-label {
  font-size: 11.5px;
  color: var(--text-body);
  margin-bottom: 3px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.ctc-info-value {
  font-size: 14.5px;
  color: var(--cream-off);
  font-weight: 600;
  line-height: 1.5;
}

/* Map button */
.ctc-map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(184, 144, 80, 0.06);
  border: 1px dashed rgba(184, 144, 80, 0.30);
  border-radius: 14px;
  padding: 75px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.ctc-map-btn:hover {
  background: rgba(184, 144, 80, 0.13);
  border-color: rgba(184, 144, 80, 0.55);
  transform: translateY(-2px);
}

.ctc-map-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-bright);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.ctc-map-btn span {
  font-size: 13.5px;
  color: var(--gold-bright);
  font-weight: 600;
}

/* Social */
.ctc-social-label {
  font-size: 12px;
  color: var(--text-body);
  margin-top: 28px;
  margin-bottom: 14px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.ctc-social-list {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.ctc-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(184, 144, 80, 0.09);
  border: 1px solid rgba(184, 144, 80, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.ctc-social-btn:hover {
  background: rgba(184, 144, 80, 0.22);
  border-color: rgba(184, 144, 80, 0.60);
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(184, 144, 80, 0.22);
}

.ctc-social-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-bright);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ctc-social-btn i,
.ctc-social-btn span {
  color: var(--gold-bright);
  font-size: 16px;
  line-height: 1;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ctc-card {
    flex-direction: column;
  }

  .ctc-info-panel {
    flex: unset;
    max-width: 100%;
    border-right: none;
    border-top: 1px solid rgba(184, 144, 80, 0.15);
  }
}

@media (max-width: 640px) {
  #contact {
    padding: 72px 0 60px;
  }

  .ctc-form-panel {
    padding: 36px 28px;
  }

  .ctc-info-panel {
    padding: 36px 28px;
  }

  .ctc-form-row {
    grid-template-columns: 1fr;
  }

  .ctc-form-title {
    font-size: 19px;
  }
}

/* ═══════════════════════════════════════
       PREFERS-REDUCED-MOTION
       ═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }


  .main-nav,
  .main-nav__logo,
  .main-nav__link,
  .main-nav__cta,
  .hero-tagline,
  .hero-title-word,
  .hero-description,
  .hero-cta,
  .svc-eyebrow__label,
  .svc-title,
  .hex-wrap {
    opacity: 1 !important;
    transform: none !important;
  }

  .marquee-container .swiper-wrapper {
    transition-duration: 0s !important;
  }
}

/* ═══════════════════════════════════════
       FOOTER
       ═══════════════════════════════════════ */
.site-footer {
  position: relative;
  background: #060500;
  border-top: 1px solid rgba(184, 144, 80, 0.15);
  overflow: hidden;
}

/* Top gold line */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to left, transparent, rgba(184, 144, 80, 0.50) 30%, var(--gold-vivid) 50%, rgba(184, 144, 80, 0.50) 70%, transparent);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 10px 0;
  flex-wrap: wrap;
}

/* Logo + name */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-brand__img {
  width: auto;
  height: 77px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.footer-brand:hover .footer-brand__img {
  opacity: 1;
}

.footer-brand__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1.3;
  transition: color 0.3s;
}

.footer-brand:hover .footer-brand__name {
  color: var(--gold-vivid);
}

/* Copyright */
.footer-copy {
  font-size: 15px;
  font-weight: 500;
  color: rgba(154, 152, 96, 0.55);
  text-align: center;
  line-height: 1.6;
  flex: 1;
}

.footer-copy strong {
  color: rgba(184, 144, 80, 0.75);
  font-weight: 600;
}

/* ── Back-to-top floating button ── */
.btt-btn {
  position: fixed;
  bottom: 32px;
  left: 28px;
  width: 54px;
  height: 54px;
  z-index: 9999;
  cursor: pointer;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.85);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btt-btn.btt-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.btt-btn:hover {
  transform: translateY(-5px) scale(1.08);
}

/* Dark background disc */
.btt-bg {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: rgba(10, 9, 0, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Arrow icon */
.btt-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  stroke: var(--gold-vivid);
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
  z-index: 1;
}

.btt-btn:hover .btt-arrow {
  stroke: var(--gold-highlight);
}

/* Progress circle SVG */
.btt-circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.btt-circle circle {
  fill: none;
  stroke: var(--gold-vivid);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 289.03;
  stroke-dashoffset: 289.03;
}



@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 0 20px;
    gap: 18px;
  }

  .footer-copy {
    font-size: 12.5px;
  }
}

/* ═══════════════════════════════════════
       THEME TOGGLE BUTTON
       ═══════════════════════════════════════ */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(184, 144, 80, 0.09);
  border: 1px solid rgba(184, 144, 80, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  background: rgba(184, 144, 80, 0.20);
  border-color: rgba(184, 144, 80, 0.55);
  transform: scale(1.1);
  box-shadow: 0 0 16px rgba(184, 144, 80, 0.22);
}

.theme-toggle__icon {
  width: 18px;
  height: 18px;
  position: absolute;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}

.theme-toggle__icon--moon {
  stroke: var(--gold-bright);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-toggle__icon--sun {
  stroke: var(--gold-bright);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  opacity: 0;
  transform: rotate(90deg) scale(0.6);
}

[data-theme="light"] .theme-toggle__icon--moon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
}

[data-theme="light"] .theme-toggle__icon--sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* ═══════════════════════════════════════
       LIGHT MODE — GLOBAL
       ═══════════════════════════════════════ */
[data-theme="light"] {
  --charcoal-ultra: #F7F4EC;
  --charcoal-base: #EDEAD9;
  --charcoal-mid: #E3DFC8;
  --charcoal-surface: #D8D3BA;
  --charcoal-raised: #CEC8A8;
  --gold-vivid: #B8860B;
  --gold-bright: #8B6508;
  --gold-warm: #9A7010;
  --gold-highlight: #6B4E08;
  --gold-glow: rgba(184, 134, 11, 0.25);
  --gold-ultra-glow: rgba(184, 134, 11, 0.06);
  --gold-focus-ring: rgba(184, 134, 11, 0.40);
  --text-body: #5A5530;
  --cream-off: #1C1A06;
  --warm-gray: #2A2710;
  --tan-sandy: #3A3618;
  --border-subtle: rgba(140, 110, 30, 0.16);
  --border-accent: rgba(140, 110, 30, 0.35);
  --border-strong: rgba(140, 110, 30, 0.65);
  /* Inner Page Variables — Light */
  --surface-1: #FFFFFF;
  --border: rgba(140, 110, 30, 0.25);
  --text-primary: #1C1A06;
  --text-secondary: #4A4820;
  --text-muted: #6A6840;
  --gold-mid: #9A7010;
  --bg-section: #EDEADA;
}

[data-theme="light"] body {
  background: #F7F4EC;
}

/* ── Navbar ── */
[data-theme="light"] .main-nav.scrolled {
  background: rgba(247, 244, 236, 0.97) !important;
  border-bottom-color: var(--gold-vivid);
  box-shadow: 0 4px 30px rgba(90, 70, 10, 0.12);
}

[data-theme="light"] .main-nav__brand-name,
[data-theme="light"] .main-nav__brand-sub {
  color: #1C1A06 !important;
}

[data-theme="light"] .main-nav__link {
  color: #3A3618;
}

[data-theme="light"] .mobile-menu {
  background: rgba(243, 240, 228, 0.98);
  border-bottom-color: rgba(140, 110, 30, 0.25);
}

[data-theme="light"] .mobile-menu__link {
  color: #3A3618;
  border-bottom-color: rgba(140, 110, 30, 0.12);
}

[data-theme="light"] .hero-tagline {
  background: #a5976873;
}

[data-theme="light"] .footer-watermark {
  background-image: radial-gradient(black 1px, transparent 1px);
}

[data-theme="light"] .mobile-menu__link:hover,
[data-theme="light"] .mobile-menu__link--active {
  color: var(--gold-vivid);
  background: rgba(184, 134, 11, 0.07);
}

/* ── Marquee / hero area ── */
[data-theme="light"] .marquee-hero {
  background: linear-gradient(135deg, #dbd7c5 0%, #e8e4d2 42%, #dbd7c5 100%);
}

[data-theme="light"] .marquee-container {
  background: transparent;

}

/* ── Services ── */
[data-theme="light"] #services {
  background: linear-gradient(180deg, #EDEADE 0%, #F2EFE4 60%, #F7F4EC 100%);
}

[data-theme="light"] #services::before {
  background-image: radial-gradient(rgba(140, 110, 30, 0.08) 1px, transparent 1px);
}

[data-theme="light"] .hbg {
  fill: rgba(203, 193, 193, 0.090);
}
[data-theme="light"] .hoverlay,
[data-theme="light"] .hex-wrap--center .hoverlay{
        fill: rgb(194 178 129 / 0%);
}

[data-theme="light"] .act-card__desc{
    color:rgb(234 219 184);
}
[data-theme="light"] .svc-eyebrow__label {
  background: rgba(184, 134, 11, 0.10);
  border-color: rgba(184, 134, 11, 0.30);
  color: #6B4E08;
}

[data-theme="light"] .hex-svg .lbl {
  fill: white !important;
}

[data-theme="light"] .hex-wrap:hover .hex-svg .lbl {
  fill: var(--gold-vivid) !important;
}

[data-theme="light"] .svc-title {
  color: #1C1A06;
}

[data-theme="light"] .svc-divider {
  background: rgba(140, 110, 30, 0.30);
}

/* ── Why-us ── */
[data-theme="light"] #why-us {
  background: linear-gradient(180deg, #F7F4EC 0%, #F0EDE2 60%, #E8E4D5 100%);
}

[data-theme="light"] #why-us::before {
  background-image: radial-gradient(#00000021 1px, transparent 1px);
}

[data-theme="light"] .why-eyebrow {
  background: rgba(184, 134, 11, 0.08);
  border-color: rgba(184, 134, 11, 0.25);
}

[data-theme="light"] .why-title {
  color: #1C1A06;
}

[data-theme="light"] .why-subtitle {
  color: #5A5530;
}

[data-theme="light"] .why-card {
  background: linear-gradient(140deg, rgba(240, 228, 190, 0.45) 0%, #FFFFFF 100%);
  border-color: rgba(184, 134, 11, 0.25);
  box-shadow: 0 2px 18px rgba(90, 70, 10, 0.07);
}

[data-theme="light"] .why-card:hover {

  box-shadow: 0 16px 44px rgba(90, 70, 10, 0.14);
}
[data-theme="light"] .act-card__title {
  color: white;
}


[data-theme="light"] .act-card__overlay {
  background: linear-gradient(to top,
      #1c1a06 0%,
      rgba(90, 85, 48, 0.33) 42%,
      rgba(90, 85, 48, 0.14) 68%,
      transparent 100%);
}

[data-theme="light"] .act-card:hover .act-card__overlay {
  background: linear-gradient(to top,
      #1c1a06 0%,
      rgba(90, 85, 48, 0.44) 52%,
      rgba(90, 85, 48, 0.20) 78%,
      transparent 100%);
}

[data-theme="light"] .why-card:hover .why-card__title {
  color: #6B4E08;
}

[data-theme="light"] .why-card__icon {
  background: rgba(184, 134, 11, 0.10);
  border-color: rgba(184, 134, 11, 0.22);
}

[data-theme="light"] .why-card:hover .why-card__icon {
  background: rgba(184, 134, 11, 0.20);
  border-color: rgba(184, 134, 11, 0.50);
}

[data-theme="light"] .why-stats {
  background: rgba(140, 110, 30, 0.10);
  border-color: rgba(140, 110, 30, 0.15);
}

[data-theme="light"] .why-stat {
  background: rgba(247, 244, 236, 0.97);
}

[data-theme="light"] .why-stat:hover {
  background: rgba(184, 134, 11, 0.07);
}

[data-theme="light"] .why-stat__label {
  color: #5A5530;
}

[data-theme="light"] .why-visual-col {
  border-color: rgb(140, 111, 30);
}

[data-theme="light"] .why-visual-col__overlay {
  background: none;
}

[data-theme="light"] .why-logo-badge__name {
  color: #1C1A06;
}

/* ── Activities ── */
[data-theme="light"] #activities {
  background: linear-gradient(180deg, #F0EDE2 0%, #F5F2E7 55%, #F7F4EC 100%);
}

[data-theme="light"] #activities::before {
  background-image: radial-gradient(rgba(140, 110, 30, 0.07) 1px, transparent 1px);
}

[data-theme="light"] .act-eyebrow {
  background: rgba(184, 134, 11, 0.08);
  border-color: rgba(184, 134, 11, 0.25);
}

[data-theme="light"] .act-title {
  color: #1C1A06;
}

[data-theme="light"] .act-card__title {
  color: white;
}

[data-theme="light"] .act-subtitle {
  color: #5A5530;
}

[data-theme="light"] .act-card {
  border-color: rgba(140, 110, 30, 0.18);
}

[data-theme="light"] .act-nav__btn {
  background: rgba(140, 110, 30, 0.10);
  border-color: rgba(140, 110, 30, 0.25);
}

[data-theme="light"] .act-nav__btn:hover {
  background: rgba(140, 110, 30, 0.22);
  border-color: rgba(140, 110, 30, 0.55);
  box-shadow: 0 0 18px rgba(140, 110, 30, 0.18);
}

[data-theme="light"] .act-pagination .swiper-pagination-bullet {
  background: rgba(140, 110, 30, 0.28);
}

/* ── Contact ── */
[data-theme="light"] #contact {
  background: linear-gradient(180deg, #F7F4EC 0%, #F0EDE2 55%, #E8E4D5 100%);
}

[data-theme="light"] #contact::before {
  background-image: radial-gradient(rgba(140, 110, 30, 0.07) 1px, transparent 1px);
}

[data-theme="light"] .ctc-eyebrow {
  background: rgba(184, 134, 11, 0.08);
  border-color: rgba(184, 134, 11, 0.25);
}

[data-theme="light"] .ctc-title {
  color: #1C1A06;
}

[data-theme="light"] .ctc-subtitle {
  color: #5A5530;
}

[data-theme="light"] .ctc-card {
  border-color: rgba(140, 110, 30, 0.20);
  box-shadow: 0 20px 60px rgba(90, 70, 10, 0.12);
}

[data-theme="light"] .ctc-form-panel {
  background: linear-gradient(140deg, #FFFFFF 0%, #FAF8F0 100%);
}

[data-theme="light"] .ctc-form-panel::after {
  background: linear-gradient(to left, transparent, rgba(140, 110, 30, 0.25) 40%, rgba(140, 110, 30, 0.25) 60%, transparent);
}

[data-theme="light"] .ctc-form-title {
  color: #1C1A06;
}

[data-theme="light"] .ctc-form-desc {
  color: #5A5530;
}

[data-theme="light"] .ctc-label {
  color: #7A5C08;
}

[data-theme="light"] .ctc-input,
[data-theme="light"] .ctc-textarea {
  background: rgba(140, 110, 30, 0.05);
  border-color: rgba(140, 110, 30, 0.20);
  color: #1C1A06;
}

[data-theme="light"] .ctc-input::placeholder,
[data-theme="light"] .ctc-textarea::placeholder {
  color: rgba(90, 85, 48, 0.38);
}

[data-theme="light"] .ctc-input:focus,
[data-theme="light"] .ctc-textarea:focus {
  border-color: rgba(184, 134, 11, 0.55);
  background: rgba(140, 110, 30, 0.08);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.09), 0 4px 20px rgba(90, 70, 10, 0.08);
}

[data-theme="light"] .ctc-info-panel {
  background: linear-gradient(155deg, rgba(225, 218, 190, 0.90) 0%, rgba(213, 206, 178, 0.98) 100%);
  border-right-color: rgba(140, 110, 30, 0.18);
}

[data-theme="light"] .ctc-info-title {
  color: #7A5C08;
}

[data-theme="light"] .ctc-info-title::after {
  background: #9A7010;
}

[data-theme="light"] .ctc-info-label {
  color: #6A6440;
}

[data-theme="light"] .ctc-info-value {
  color: #1C1A06;
}

[data-theme="light"] .ctc-info-icon {
  background: rgba(140, 110, 30, 0.12);
  border-color: rgba(140, 110, 30, 0.25);
}

[data-theme="light"] .ctc-info-item:hover .ctc-info-icon {
  background: rgba(140, 110, 30, 0.22);
  border-color: rgba(140, 110, 30, 0.55);
}

[data-theme="light"] .ctc-map-btn {
  background: rgba(140, 110, 30, 0.07);
  border-color: rgba(140, 110, 30, 0.28);
}

[data-theme="light"] .ctc-map-btn:hover {
  background: rgba(140, 110, 30, 0.15);
  border-color: rgba(140, 110, 30, 0.55);
}

[data-theme="light"] .ctc-social-label {
  color: #6A6440;
}

[data-theme="light"] .ctc-social-btn {
  background: rgba(140, 110, 30, 0.10);
  border-color: rgba(140, 110, 30, 0.22);
}

[data-theme="light"] .ctc-social-btn:hover {
  background: rgba(140, 110, 30, 0.22);
  border-color: rgba(140, 110, 30, 0.55);
  box-shadow: 0 10px 24px rgba(140, 110, 30, 0.18);
}

[data-theme="light"] .ctc-social-btn i,
[data-theme="light"] .ctc-social-btn span {
  color: #8A7040;
}
[data-theme="light"] .act-sidebar-card{
    background: var(--charcoal-surface, #0f0e00);
}
[data-theme="light"] .act-sidebar-item__cat{
    color: var(--gold-soft, #6b4e08);
}
/* ── Footer ── */
[data-theme="light"] .site-footer {
  background: #E0DAC5;
  border-top-color: rgba(140, 110, 30, 0.20);
}

[data-theme="light"] .site-footer::before {
  background: linear-gradient(to left, transparent, rgba(140, 110, 30, 0.45) 30%, var(--gold-vivid) 50%, rgba(140, 110, 30, 0.45) 70%, transparent);
}

[data-theme="light"] .footer-brand__name {
  color: #7A5C08 !important;
}

[data-theme="light"] .footer-copy {
  color: rgba(90, 85, 48, 0.70);
}

[data-theme="light"] .footer-copy strong {
  color: rgba(110, 80, 8, 0.85);
}



/* ── Back-to-top button ── */
[data-theme="light"] .btt-bg {
  background: rgba(184, 144, 80, 0.45);
}

/* ── Smooth theme transition ── */
body,
.main-nav,
.mobile-menu,
#services,
#why-us,
.why-stat,
#activities,
#contact,
.ctc-form-panel,
.ctc-info-panel,
.ctc-input,
.ctc-textarea,
.ctc-card,
.site-footer,
.footer-inner,
.btt-bg {
  transition: background 0.4s ease, background-color 0.4s ease,
    color 0.35s ease, border-color 0.35s ease,
    box-shadow 0.35s ease !important;
}


/* ═══════════════════════════════════════════════════
   INNER PAGES — PAGE HERO BANNER
   ═══════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  /* min-height: 280px; */
  display: flex;
  align-items: flex-end;
  padding: 1rem 0;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--bg-section);
  z-index: -1;
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(315deg, rgba(180, 144, 80, .12) 0%, transparent 60%);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding: 15px;
}

.page-hero__content {
  max-width: 700px;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(180, 144, 80, .15);
  border: 1px solid rgba(180, 144, 80, .3);
  border-radius: 100px;
  padding: .3rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold-vivid);
  margin-bottom: 1rem;
}

.page-hero__eyebrow svg {
  stroke: var(--gold-vivid);
  fill: none;
  flex-shrink: 0;
}

.page-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  font-size: .85rem;
  color: var(--text-muted);
}

.page-breadcrumb a {
  color: var(--gold-mid);
  text-decoration: none;
}

.page-breadcrumb a:hover {
  color: var(--gold-vivid);
}

.page-breadcrumb__sep {
  opacity: .5;
}

/* ═══════════════════════════════════════════════════
   INNER SECTION WRAPPER
   ═══════════════════════════════════════════════════ */
.inner-section {
  padding: 4rem 0 5rem;
}

/* ═══════════════════════════════════════════════════
   ABOUT / SERVICE LAYOUT (sidebar + content)
   ═══════════════════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-sidebar {
    order: 2;
  }

  .about-content {
    order: 1;
  }
}

/* Sidebar */
.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem;
}

.sidebar-card__title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--gold-vivid);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.sidebar-nav__link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .75rem;
  border-radius: 8px;
  font-size: .9rem;
  color: var(--text-secondary);
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.sidebar-nav__link:hover,
.sidebar-nav__link--active {
  background: rgba(180, 144, 80, .12);
  color: var(--gold-vivid);
}

.sidebar-nav__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-mid);
  flex-shrink: 0;
}

.sidebar-contact-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}

.sidebar-contact-link:last-child {
  border-bottom: none;
}

.sidebar-contact-link:hover {
  color: var(--gold-vivid);
}

.sidebar-contact-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.sidebar-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.sidebar-meta li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: var(--text-muted);
}

.sidebar-meta svg {
  stroke: var(--gold-mid);
  fill: none;
  flex-shrink: 0;
}

.sidebar-related {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.sidebar-related__link {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: .85rem;
  transition: color .2s;
}

.sidebar-related__link:hover {
  color: var(--gold-vivid);
}

.sidebar-related__img {
  width: 50px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.sidebar-card--cta {
  background: linear-gradient(135deg, rgba(180, 144, 80, .15), rgba(180, 144, 80, .05));
  border-color: rgba(180, 144, 80, .3);
}

/* Main Content */
.about-content {
  min-width: 0;
}

.about-content__img-wrap {
  margin-bottom: 2rem;
  border-radius: 16px;
  overflow: hidden;
}

.about-content__img {
  width: 100%;
  height: 485px;
  object-fit: cover;
}

.about-content__body.prose {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-secondary);
}

.about-content__body.prose br {
  display: block;
  margin-bottom: .5rem;
}

/* Section Nav (prev/next) */
.about-section-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.section-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: .88rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}

.section-nav-btn:hover {
  border-color: var(--gold-mid);
  color: var(--gold-vivid);
}

.section-nav-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

/* ═══════════════════════════════════════════════════
   SERVICE GALLERY & VIDEO
   ═══════════════════════════════════════════════════ */
.service-gallery {
  margin-top: 2rem;
}

.service-gallery__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.service-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.service-gallery__item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-video {
  margin-top: 2rem;
}

.service-video__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.service-video__wrap {
  position: relative;
  /* padding-bottom: 56.25%; */
  border-radius: 12px;
  overflow: hidden;
}

.service-video__wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-top: 2.5rem;
}

.service-cta-bar p {
  margin: 0;
  color: var(--text-secondary);
  font-size: .95rem;
}

/* ═══════════════════════════════════════════════════
   ACTIVITIES GRID & FILTER
   ═══════════════════════════════════════════════════ */
.act-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2.5rem;
}

.act-filter__btn {
  padding: .45rem 1.1rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all .2s;
  font-family: 'Tajawal', sans-serif;
}

.act-filter__btn:hover,
.act-filter__btn--active {
  background: var(--gold-mid);
  border-color: var(--gold-mid);
  color: #1a1500;
}

.act-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.act-grid__item {}

/* Activities Gallery */
.act-images-gallery {
  margin-bottom: 2rem;
  border-radius: 16px;
  overflow: hidden;
}

.act-gallery__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.act-videos {
  margin-top: 2rem;
}

.act-videos__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.act-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.act-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.act-back-link {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════
   ALERTS & FEEDBACK
   ═══════════════════════════════════════════════════ */
.ctc-alert {
  padding: .85rem 1.1rem;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  font-size: .9rem;
  font-weight: 500;
}

.ctc-alert--success {
  background: rgba(34, 197, 94, .12);
  border: 1px solid rgba(34, 197, 94, .35);
  color: #4ade80;
}

.ctc-alert--error {
  background: rgba(220, 38, 38, .1);
  border: 1px solid rgba(220, 38, 38, .35);
  color: #f87171;
}

.field-error {
  display: block;
  font-size: .8rem;
  color: #f87171;
  margin-top: .3rem;
}

.ctc-input.is-invalid,
.ctc-textarea.is-invalid {
  border-color: rgba(220, 38, 38, .5);
}

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .7rem 1.5rem;
  background: var(--gold-mid, #B89050);
  color: #1a1500;
  border-radius: 10px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: opacity .2s;
  font-family: 'Tajawal', sans-serif;
}

.btn-gold:hover {
  opacity: .88;
}

.btn-gold-full {
  display: block;
  text-align: center;
  padding: .8rem;
  background: var(--gold-mid, #B89050);
  color: #1a1500;
  border-radius: 10px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: opacity .2s;
}

.btn-gold-full:hover {
  opacity: .88;
}

.svc-all-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 2.2rem;
  background: transparent;
  border: 1.5px solid var(--gold-mid, #B89050);
  color: var(--gold-vivid, #E8B84B);
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  font-family: 'Tajawal', sans-serif;
  transition: background .25s, color .25s, transform .2s;
}

.svc-all-btn:hover {
  background: var(--gold-mid, #B89050);
  color: #1a1500;
  transform: translateY(-2px);
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1.25rem;
  border: 1px solid var(--gold-mid, #B89050);
  color: var(--gold-vivid);
  border-radius: 10px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: all .2s;
}

.btn-gold-outline:hover {
  background: rgba(180, 144, 80, .12);
}

.btn-gold-outline svg {
  stroke: currentColor;
  fill: none;
}

/* ═══════════════════════════════════════════════════
   EMPTY STATE
   ═══════════════════════════════════════════════════ */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}

.empty-state svg {
  stroke: var(--border);
  fill: none;
  margin-bottom: 1rem;
  display: block;
  margin-inline: auto;
}

.empty-state p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════════ */
.pagination-wrap {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

.pagination-wrap nav {
  display: flex;
  gap: .4rem;
  align-items: center;
}

.pagination-wrap span,
.pagination-wrap a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: .88rem;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0 .5rem;
  transition: all .2s;
}

.pagination-wrap a:hover {
  border-color: var(--gold-mid);
  color: var(--gold-vivid);
}

.pagination-wrap [aria-current="page"] span,
.pagination-wrap span.font-bold {
  background: var(--gold-mid, #B89050);
  color: #1a1500;
  border-color: var(--gold-mid);
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  padding: .45rem 1.1rem;
  border-radius: 8px;
  font-size: .88rem;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all .2s;
  background: transparent;
}

.pagination-btn:hover {
  border-color: var(--gold-mid);
  color: var(--gold-vivid);
}

.pagination-btn--disabled {
  opacity: .4;
  cursor: not-allowed;
}