@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Kufi Arabic';
  src: url('../assets/fonts/NotoKufiArabic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ===== BRAND IDENTITY COLORS ===== */
:root {
  --color-bg-deep: #050505;
  --color-bg: #0a0a0a;
  --color-bg-card: #0f0f0f;
  --color-bg-card-hover: #161616;
  --color-accent: #ffffff;
  --color-accent-dim: rgba(255, 255, 255, 0.7);
  --color-accent-muted: rgba(255, 255, 255, 0.4);
  --color-text: #e8e8e8;
  --color-text-secondary: #999999;
  --color-text-muted: #555555;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-hover: rgba(255, 255, 255, 0.2);
  --color-glow: rgba(255, 255, 255, 0.04);
  --font-en: 'Poppins', sans-serif;
  --font-ar: 'Noto Kufi Arabic', sans-serif;
  --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #333 var(--color-bg);
}

html::-webkit-scrollbar {
  width: 5px;
}
html::-webkit-scrollbar-track {
  background: var(--color-bg);
}
html::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}

body {
  font-family: var(--font-en);
  background: var(--color-bg-deep);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* RTL / Arabic mode (default) */
html[dir="rtl"] body {
  font-family: var(--font-ar);
}

html[dir="ltr"] body {
  font-family: var(--font-en);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

/* ===== STAR CANVAS ===== */
#star-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ===== LOADING SCREEN ===== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--transition-smooth), visibility 0.8s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo-img {
  height: 180px;
  width: auto;
  opacity: 0;
  animation: loaderFadeIn 1s 0.2s forwards;
}

.loader-line {
  width: 120px;
  height: 1px;
  background: #333;
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}

.loader-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  animation: loaderSlide 1.5s ease-in-out infinite;
}

@keyframes loaderFadeIn {
  to { opacity: 1; }
}

@keyframes loaderSlide {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.5s var(--transition-smooth);
}

.nav.scrolled {
  padding: 0.7rem 0;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--color-border);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.nav-logo-img {
  height: 90px;
  width: auto;
  transition: opacity 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.4s var(--transition-smooth);
}

html[dir="ltr"] .nav-links a::after {
  right: auto;
  left: 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-weight: 600 !important;
  padding: 0.65rem 1.6rem !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-accent) !important;
  transition: all 0.4s var(--transition-smooth) !important;
}

.nav-cta:hover {
  background: var(--color-accent);
  color: var(--color-bg-deep) !important;
  border-color: var(--color-accent) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1001;
}

.lang-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--color-text-secondary);
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-toggle:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--color-accent);
  transition: all 0.3s ease;
  display: block;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 4rem;
}

.hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-70%, -50%);
  width: 750px;
  height: 750px;
  z-index: 0;
}

html[dir="rtl"] .hero-bg {
  left: 50%;
  right: auto;
  transform: translate(-70%, -50%);
}

html[dir="ltr"] .hero-bg {
  left: auto;
  right: -30%;
  transform: translate(0, -50%);
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  filter: brightness(0.7);
  border-radius: 50%;
  mask-image: radial-gradient(circle, black 45%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle, black 45%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
}

html[dir="ltr"] .hero-content {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
  color: var(--color-accent);
  opacity: 0;
  transform: translateY(40px);
}

html[dir="rtl"] .hero h1 {
  font-family: var(--font-ar);
  font-weight: 500;
}

.hero-subtitle {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--color-accent-dim);
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
}

.hero-description {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 300;
  color: var(--color-text-secondary);
  max-width: 800px;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2.2rem;
  background: var(--color-accent);
  color: var(--color-bg-deep);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--transition-smooth);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.5rem;
  color: var(--color-text-secondary);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.btn-secondary:hover {
  color: var(--color-accent);
}

.btn-secondary .arrow {
  transition: transform 0.3s ease;
  font-size: 1.2em;
}

.btn-secondary:hover .arrow {
  transform: translateY(3px);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1s 2.5s forwards;
  z-index: 3;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 45px;
  background: #333;
  position: relative;
  overflow: hidden;
}

.hero-scroll .scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--color-accent);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 100%; }
}

@keyframes fadeInUp {
  to { opacity: 1; }
}

/* ===== SECTION COMMONS ===== */
.section {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 10vw, 10rem) 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: #444;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

html[dir="rtl"] .section-title {
  font-family: var(--font-ar);
  font-weight: 500;
}

.section-description {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  line-height: 1.9;
  font-weight: 300;
}

/* ===== WHY SECTION ===== */
.why-section {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.01), transparent);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

html[dir="rtl"] .why-grid {
  direction: rtl;
}

.why-image {
  position: relative;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.2);
  transition: transform 0.8s var(--transition-smooth);
}

.why-image:hover img {
  transform: scale(1.03);
}

.why-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 40% 20%, transparent 20%, rgba(0,0,0,0.6) 70%),
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.8) 100%),
    linear-gradient(to right, transparent 40%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

.why-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-border);
  pointer-events: none;
  z-index: 2;
}

.why-content {
  padding: 2rem 0;
}

.why-text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.why-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.why-list li {
  position: relative;
  padding: 0.6rem 0;
  padding-right: 1.5rem;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  border-bottom: 1px solid var(--color-border);
}

html[dir="ltr"] .why-list li {
  padding-right: 0;
  padding-left: 1.5rem;
}

.why-list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border: 1px solid #555;
  border-radius: 50%;
}

html[dir="ltr"] .why-list li::before {
  right: auto;
  left: 0;
}

.why-reason {
  margin-bottom: 2.5rem;
}

.why-reason p {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.why-bold-line {
  padding: 2rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
}

.why-bold-line h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.why-bold-line p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* ===== PHILOSOPHY SECTION ===== */
.philosophy-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.philosophy-bg-full {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.philosophy-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.45) grayscale(60%);
}

.philosophy-bg-full::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.5) 0%, rgba(5,5,5,0.15) 35%, rgba(5,5,5,0.2) 65%, rgba(5,5,5,0.8) 100%);
}

.philosophy-section > .container {
  position: relative;
  z-index: 2;
}

.philosophy-header {
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.philosophy-intro {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.pillar {
  padding: 1.5rem;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
  transition: all 0.5s var(--transition-smooth);
}

.pillar:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
}

.pillar-number {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #555;
  margin-bottom: 0.8rem;
  font-family: var(--font-en);
}

.pillar h3 {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 0.7rem;
  line-height: 1.5;
}

.pillar p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.positioning-line {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 500;
  color: var(--color-accent);
  line-height: 1.6;
}

/* Philosophy BG flip for RTL */
html[dir="rtl"] .philosophy-bg-img {
  transform: scaleX(-1);
}

/* ===== GUIDANCE SECTION ===== */
.guidance-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.guidance-bg-full {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.guidance-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4) grayscale(50%);
}

.guidance-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.2) 40%, rgba(5,5,5,0.2) 60%, rgba(5,5,5,0.7) 100%);
}

.guidance-section > .container {
  position: relative;
  z-index: 2;
}

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

.guidance-positioning {
  text-align: center;
}

.guidance-details h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.guidance-details ul {
  list-style: none;
}

.guidance-details li {
  position: relative;
  padding: 0.35rem 0;
  padding-right: 1.2rem;
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  line-height: 1.7;
}

html[dir="ltr"] .guidance-details li {
  padding-right: 0;
  padding-left: 1.2rem;
}

.guidance-details li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0.85rem;
  width: 6px;
  height: 1px;
  background: #666;
}

html[dir="ltr"] .guidance-details li::before {
  right: auto;
  left: 0;
}

/* ===== IMPACT CIRCLE SECTION ===== */
.impact-section {
  text-align: center;
  overflow: hidden;
}

.impact-header {
  max-width: 700px;
  margin: 0 auto 4rem;
}

.impact-header .section-title {
  text-align: center;
}

.impact-header .section-description {
  margin: 0 auto;
  text-align: center;
  max-width: 600px;
}

.impact-circle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

/* Interlocking wide arrows circle */
.impact-ring {
  position: relative;
  width: 460px;
  height: 460px;
}

.impact-arrows-spinner {
  width: 100%;
  height: 100%;
  animation: spinCircle 40s linear infinite;
}

@keyframes spinCircle {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.impact-ring-svg {
  width: 100%;
  height: 100%;
}

.arrow-band {
  transition: fill 0.4s ease;
}

.arrow-band:hover {
  fill: rgba(255, 255, 255, 0.15);
}

.arrow-label {
  font-family: var(--font-ar);
}

html[dir="ltr"] .arrow-label {
  font-family: var(--font-en);
}

.impact-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: start;
}

.impact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.impact-dot {
  width: 8px;
  height: 8px;
  border: 1px solid #555;
  border-radius: 50%;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

.impact-item h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 0.3rem;
}

.impact-item p {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.impact-closing {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: var(--color-accent);
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ENTRY PATHS SECTION ===== */
.paths-section {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.01), transparent);
}

.paths-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.paths-header .section-title {
  text-align: center;
}

.paths-header .section-description {
  margin: 0 auto;
  text-align: center;
}

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

.path-card {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: all 0.5s var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.path-card-img {
  position: relative;
  height: 200px;
  margin: calc(-1 * clamp(2rem, 4vw, 3rem));
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.path-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) grayscale(40%);
  transition: all 0.5s ease;
}

.path-card:hover .path-card-img img {
  filter: brightness(0.6) grayscale(20%);
  transform: scale(1.03);
}

.path-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
}

.path-icon {
  width: 56px;
  height: 56px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 2rem;
  transition: all 0.4s ease;
}

.path-card:hover .path-icon {
  background: var(--color-accent);
  color: var(--color-bg-deep);
  border-color: var(--color-accent);
}

.path-card h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.path-desc {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.path-benefits {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.path-benefits h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent-dim);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.path-benefits ul {
  list-style: none;
}

.path-benefits li {
  position: relative;
  padding: 0.5rem 0;
  padding-right: 1.2rem;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

html[dir="ltr"] .path-benefits li {
  padding-right: 0;
  padding-left: 1.2rem;
}

.path-benefits li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 1rem;
  width: 5px;
  height: 5px;
  background: #555;
  border-radius: 50%;
}

html[dir="ltr"] .path-benefits li::before {
  right: auto;
  left: 0;
}

.path-cta {
  align-self: flex-start;
}

html[dir="ltr"] .path-cta {
  align-self: flex-start;
}

/* ===== CTA SECTION (Tea Glass) ===== */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(6rem, 12vw, 10rem) 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-bg-img {
  width: auto;
  height: 90%;
  max-width: 55%;
  object-fit: contain;
  object-position: center;
  opacity: 0.5;
  filter: grayscale(70%) brightness(0.55) contrast(1.2);
  mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.cta-content {
  max-width: 550px;
  text-align: center;
}

.cta-tagline {
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

html[dir="rtl"] .cta-content h2 {
  font-family: var(--font-ar);
  font-weight: 500;
}

.cta-content > p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.btn-cta-book {
  font-size: 0.9rem;
  padding: 1rem 3rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.01), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  margin-top: 4rem;
}

.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 0.3rem;
}

.contact-detail-text p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  font-weight: 300;
}

.contact-detail-text a {
  color: var(--color-text-secondary);
}

.contact-detail-text a:hover {
  color: var(--color-accent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #555;
}

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

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

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

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
}

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

.footer-logo-img {
  height: 100px;
  width: auto;
  margin-bottom: 1.2rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-weight: 300;
  max-width: 320px;
}

.footer h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 300;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.025), transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-image {
    order: -1;
  }

  .why-image img {
    height: 400px;
  }

  .philosophy-pillars {
    grid-template-columns: 1fr;
  }

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

  .hero-bg {
    width: 400px;
    height: 400px;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    opacity: 0.4;
  }

  html[dir="ltr"] .hero-bg {
    left: auto;
    right: -10%;
    transform: translate(0, -50%);
    opacity: 0.3;
  }

  .hero-content {
    margin-left: 0;
    max-width: 100%;
    text-align: right;
  }

  html[dir="ltr"] .hero-content {
    text-align: left;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-details {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-ring {
    width: 360px;
    height: 360px;
  }

  .impact-circle-wrap {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .why-image {
    display: block !important;
  }

  .why-image img {
    height: 300px;
    display: block !important;
  }

  .philosophy-bg-full {
    display: block !important;
  }

  .philosophy-bg-img {
    display: block !important;
  }

  .guidance-bg-full {
    display: block !important;
  }

  .guidance-bg-img {
    display: block !important;
  }

  .path-card-img {
    height: 150px;
    display: block !important;
  }

  .path-card-img img {
    display: block !important;
  }

  .cta-bg {
    display: block !important;
  }

  .cta-bg-img {
    display: block !important;
    max-width: 80%;
    opacity: 0.3;
  }
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition-smooth);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

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

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

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

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

  .footer-bottom {
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .impact-ring {
    width: 300px;
    height: 300px;
  }

  .impact-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cursor-glow {
    display: none;
  }
}

@media (max-width: 480px) {
  .impact-ring {
    width: 240px;
    height: 240px;
  }
}
