:root {
  /* Core Colors - Clean & Modern */
  --color-primary: hsl(210, 80%, 45%);
  --color-primary-light: hsl(210, 80%, 55%);
  --color-primary-dark: hsl(210, 80%, 35%);
  --color-primary-foreground: hsl(0, 0%, 100%);

  --color-accent: hsl(35, 90%, 60%);
  --color-accent-light: hsl(35, 90%, 70%);
  --color-accent-foreground: hsl(0, 0%, 100%);

  --color-secondary: hsl(210, 30%, 20%);
  --color-secondary-foreground: hsl(0, 0%, 98%);

  /* Background & Foreground */
  --color-background: hsl(0, 0%, 99%);
  --color-surface: hsl(0, 0%, 100%);
  --color-foreground: hsl(210, 20%, 30%);
  --color-muted: hsl(210, 20%, 96%);
  --color-muted-foreground: hsl(210, 15%, 50%);
  --color-border: hsl(210, 20%, 92%);

  /* Card */
  --color-card: hsl(0, 0%, 100%);
  --color-card-foreground: hsl(210, 20%, 30%);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, hsla(210, 80%, 45%, 0.9) 0%, hsla(210, 30%, 20%, 0.9) 100%);
  --gradient-clean: linear-gradient(to right, hsla(0,0,0,0) 0%, hsla(0,0,0,0.02) 100%);
  --gradient-gold: linear-gradient(135deg, hsl(35, 90%, 60%) 0%, hsl(35, 90%, 50%) 100%);
  --gradient-overlay: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4));

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-card: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-elevated: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
  --shadow-glow: 0 0 40px hsla(210, 80%, 45%, 0.15);

  /* Spacing */
  --radius: 1rem;
  --container-max: 1280px;
  --container-padding: 2rem;

  /* Typography */
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Montserrat', sans-serif; /* Clean, geometric */
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-secondary);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

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

/* ==========================================
   UTILITIES
   ========================================== */

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

.text-gradient {
  color: var(--color-primary);
  /* Simplified for cleaner look, less shiny gold */
}

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

.hidden {
  display: none !important;
}

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

@media (min-width: 992px) {
  .grid-split {
    grid-template-columns: 1fr 1fr;
  }
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
  opacity: 0;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-hero {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-hero:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-hero-outline {
  background: transparent;
  color: var(--color-primary-foreground);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-hero-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-elevated);
}

/* ==========================================
   HEADER
   ========================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.header-top-bar {
  background: var(--color-primary);
  color: white;
  font-size: 0.75rem;
  padding: 0.5rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-accent);
  color: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.logo-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--color-secondary);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-foreground);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--color-primary);
}

.btn-header-cta {
  background: var(--color-primary);
  color: white;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
}

.btn-header-cta:hover {
  background: var(--color-primary-dark);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8rem;
  background: #6e6e6e;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.7));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 60rem;
}

.hero-title {
  font-size: 3.5rem;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0.8;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid white;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ==========================================
   MISSION SECTION (Split Layout)
   ========================================== */

.mission {
  padding: 6rem 0;
  background: white;
}

.mission-header {
  text-align: left;
  margin-bottom: 0;
}

.section-title-center, .section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-secondary);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-muted-foreground);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.mission-card {
  background: var(--color-background);
  padding: 2rem;
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-elevated);
  background: white;
}

.mission-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: white;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.mission-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.mission-description {
  font-size: 0.95rem;
  color: var(--color-muted-foreground);
  line-height: 1.6;
}

/* ==========================================
   STATS BAR (With Background Image)
   ========================================== */

.stats-bar {
  padding: 6rem 0;
  background-color: var(--color-primary);
  position: relative;
  color: white;
  overflow: hidden;
}

.stats-bg-image {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  mix-blend-mode: overlay;
}

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  text-align: center;
}

@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-value {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.stat-caption {
  font-size: 1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ==========================================
   ACTIVITIES SECTION (Split with Image)
   ========================================== */

.activities {
  padding: 6rem 0;
  background: var(--color-background);
}

.activities-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  height: 100%;
  min-height: 400px;
}

.activities-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activities-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}

.activity-item:hover {
  transform: translateX(5px);
}

.activity-icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

/* ==========================================
   GALLERY
   ========================================== */

.gallery {
  padding: 6rem 0;
  background: white;
}

.gallery-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.gallery-grid-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-text h3 {
  color: white;
  font-size: 1.25rem;
  margin: 0;
}

.gallery-text span {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
}

/* ==========================================
   PARTNERS SECTION (Clean Grid)
   ========================================== */

.partners {
  padding: 6rem 0;
  background-color: var(--color-background);
  position: relative;
}

.partners-bg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 30%;
  background-image: url('https://blanchedalmond-seahorse-331425.hostingersite.com/wp-content/uploads/2025/12/omar-ramadan-eEhOyEtBGMQ-unsplash-1.jpg'); /* Placeholder */
  background-size: cover;
  opacity: 0.05;
  mask-image: linear-gradient(to left, black, transparent);
  -webkit-mask-image: linear-gradient(to left, black, transparent);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.partner-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.partner-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--color-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ==========================================
   CTA
   ========================================== */

.cta {
  padding: 8rem 0;
  position: relative;
  background-color: var(--color-secondary);
  color: white;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.cta-title {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
  color: var(--color-foreground);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
   font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

.hero {
  background: url('./img/9.png');
}

.bts-editais {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.bts-editais a {
  background: #1773cf;
  max-width: max-content;
}

.bts-editais a:hover {
  background: #185da1;
}


@media (max-width: 700px) {
.hero-content {
    padding-bottom: 6rem;
    padding-top: 3rem;
}
}