:root {
  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;

  --color-bg: #0a0a0a;
  --color-surface: #121212;
  --color-surface-hover: #1e1e1e;
  --color-text: #ededed;
  --color-text-muted: #a1a1aa;
  --color-primary: #ff4d00;
  /* Vibrant Orange */
  --color-accent: #ffffff;
  --color-border: rgba(255, 255, 255, 0.1);

  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  --container-width: 1400px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* HIDE UNCOMPILED VUE TEMPLATES */
[v-cloak] {
  display: none;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-out-expo);
}

ul {
  list-style: none;
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-kicker {
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: block;
}

/* NAVBAR */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: transform 0.3s var(--ease-out-expo);
}

.navbar {
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.navbar-scrolled {
  background: rgba(10, 10, 10, 0.95);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-heading);
  border-radius: 8px;
}

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

.brand-name {
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 0.3s var(--ease-out-expo);
}

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

.lang-switcher button {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  transition: color 0.3s;
}

.lang-switcher button.active {
  color: var(--color-primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.nav-bar {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: 0.3s;
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.95)),
    url('./areej.jpeg') center/cover no-repeat;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--color-primary);
  filter: blur(150px);
  opacity: 0.1;
  border-radius: 50%;
  animation: pulse 10s infinite alternate;
  pointer-events: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.1;
  }

  100% {
    transform: scale(1.2);
    opacity: 0.05;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ... (rest of hero styles) ... */

/* STATS ICONS */
.stat-icon {
  font-size: 2rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  display: inline-flex;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  border: 1px solid var(--color-border);
}

/* MOBILE MENU ANIMATION */
.nav-toggle[aria-expanded="true"] .nav-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #aaa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-kicker {
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: block;
  font-weight: 600;
}

.hero-facts {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-facts dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-facts dt i {
  color: var(--color-primary);
}

.hero-facts dd {
  font-size: 0.9rem;
  color: var(--color-text);
  max-width: 400px;
  line-height: 1.5;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: all 0.3s var(--ease-out-expo);
  cursor: pointer;
  white-space: nowrap;
}

.btn.primary {
  background: var(--color-primary);
  color: #000;
  border: 1px solid var(--color-primary);
}

.btn.primary:hover {
  background: transparent;
  color: var(--color-primary);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.btn.ghost:hover {
  border-color: var(--color-text);
  background: rgba(255, 255, 255, 0.05);
}

.hero-panel {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 24px;
  position: relative;
}

.hero-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-card h2 i {
  color: var(--color-primary);
}

.pill {
  display: inline-block;
  background: rgba(255, 77, 0, 0.1);
  color: var(--color-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-card ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
}

.hero-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* SECTIONS GENERIC */
.section {
  padding: 6rem 0;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s var(--ease-out-expo);
}

@media (min-width: 769px) {
  .section {
    opacity: 0;
    transform: translateY(50px);
  }
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
}

/* ABOUT SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.about-card {
  background: var(--color-surface);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid var(--color-border);
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.tag {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  border: 1px solid transparent;
  transition: 0.3s;
}

.tag:hover {
  border-color: var(--color-primary);
  color: var(--color-text);
}

.about-grid dl {
  display: grid;
  gap: 2rem;
}

.about-grid dt {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.about-grid dd {
  color: var(--color-text-muted);
}

/* STATS SECTION */
.stats-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
}

.stat-value {
  font-size: 4rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--color-text-muted);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* SECTORS */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.sector-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  border-radius: 16px;
  transition: transform 0.3s var(--ease-out-expo), border-color 0.3s;
}

.sector-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary);
}

.sector-icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(255, 77, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  font-size: 1.25rem;
  border: 1px solid rgba(255, 77, 0, 0.2);
}

.sector-label {
  color: var(--color-primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.sector-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.sector-desc {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.sector-list li {
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sector-list li::before {
  content: '→';
  color: var(--color-primary);
}

/* ACTIVITIES */
.activity {
  border-bottom: 1px solid var(--color-border);
}

.activity summary {
  padding: 2rem 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.activity summary:hover {
  color: var(--color-primary);
}

.activity summary::after {
  content: '+';
  font-weight: 300;
  font-size: 2rem;
}

.activity[open] summary::after {
  content: '-';
}

.activity-body {
  padding-bottom: 2rem;
  color: var(--color-text-muted);
  max-width: 800px;
}

/* POWERS */
.powers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.powers-card {
  background: linear-gradient(145deg, #1a1a1a, #111);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--color-border);
}

.powers-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.powers-card h3 i {
  color: var(--color-primary);
}

.powers-card ul li {
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-card {
  background: var(--color-surface);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid var(--color-border);
}

.contact-card h3 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.contact-row {
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-row:last-of-type {
  margin-bottom: 0;
}

.contact-label {
  color: var(--color-primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.contact-note {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-phone-link {
  display: block;
  color: var(--color-text);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-phone-link:hover {
  color: var(--color-primary);
  padding-left: 0.5rem;
}

[dir="rtl"] .contact-phone-link:hover {
  padding-left: 0;
  padding-right: 0.5rem;
}

/* FOOTER */
.site-footer {
  padding: 4rem 0;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: transparent;
  border: 1.5px solid var(--color-text-muted);
  color: var(--color-text-muted);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s var(--ease-out-expo);
}

.social-link:hover {
  border-color: #1877f2;
  color: #1877f2;
  transform: translateY(-2px);
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s var(--ease-out-expo);
  z-index: 90;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* MOBILE */
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--color-bg);
    flex-direction: column;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease-out-expo);
  }

  .nav-links.nav-open {
    transform: translateX(0);
  }

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

  .hero-content h1 {
    font-size: 3rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .sector-card {
    padding: 2rem;
  }

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

  .stat-card {
    padding: 1.5rem 0.5rem;
  }

  .stat-value {
    font-size: 2.5rem;
  }

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

  .activity-item {
    padding: 2rem;
  }

  .power-card {
    padding: 2rem;
  }

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

  .btn {
    width: 100%;
    padding: 1rem;
  }
}

/* SLIDESHOW */
.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background-color: var(--color-surface);
  aspect-ratio: 16 / 9;
}

.slideshow-wrapper {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.6s var(--ease-out-expo);
}

.slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
}

.slide-bg {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background-size: cover;
  background-position: center;
  filter: blur(30px) saturate(1.2);
  transform: scale(1.1);
  z-index: 0;
  opacity: 0.7;
}

.slide-image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  z-index: 1;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4rem 2rem 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
  text-align: center;
}

.slide-caption h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.slide-category {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.slide-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 10;
  font-size: 1.25rem;
}

.slide-control:hover {
  background: var(--color-primary);
}

.slide-control.prev {
  left: 1rem;
}

.slide-control.next {
  right: 1rem;
}

[dir="rtl"] .slide-control.prev {
  left: auto;
  right: 1rem;
}

[dir="rtl"] .slide-control.next {
  right: auto;
  left: 1rem;
}

.slide-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.5);
}

.indicator.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .slideshow-container {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }
  
  .slide-caption {
    padding: 2rem 1rem 1rem;
  }
  
  .slide-caption h3 {
    font-size: 1.25rem;
  }
  
  .slide-control {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .slide-control.prev {
    left: 0.5rem;
  }
  
  .slide-control.next {
    right: 0.5rem;
  }
  
  [dir="rtl"] .slide-control.prev {
    left: auto;
    right: 0.5rem;
  }
  
  [dir="rtl"] .slide-control.next {
    right: auto;
    left: 0.5rem;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    bottom: 1.5rem;
    right: 1rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}