/* ================= ROOT ================= */
:root {
  --bg-main: #05061a;
  --bg-soft: #0b0f2a;
  --accent: #8b5cf6;
  --accent-soft: rgba(139,92,246,0.15);
  --text-main: #ffffff;
  --text-muted: #a5a8c6;
  --border-soft: rgba(255,255,255,0.08);
  --nav-height: 80px; /* match actual header height */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: radial-gradient(circle at 50% 0%, #2b145f 0%, var(--bg-main) 60%);
  color: var(--text-main);
  line-height: 1.7;
}

/* ================= UTIL ================= */
.container {
  max-width: 2000px;
  margin: auto;
  padding: 0 24px;
}

.section {
  padding: 120px;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.section-head h2 {
  font-size: 40px;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-muted);
}

/* ================= NAV ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(5, 6, 26, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
}

/* ================= NAV CONTAINER ================= */
.nav-container {
  padding: 26px 56px;     /* More breathing room */
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;      /* wider */
  margin: 0 auto;
  padding: 26px 48px;     /* TALLER BAR */
}

/* ================= BRAND (LOGO + TITLE TOGETHER) ================= */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;              /* TIGHTER */
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 64px;        
  width: 160px;         
  max-width: 100%;       
  display: block;
}
 


/* TITLE NEXT TO LOGO */
.nav-title {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
  margin-left: 2px;       /* MICRO pull closer */
}

.nav-title-main {
  font-size: 28px;       /* Slightly down = better balance */
  font-weight: 800;
  line-height: 1.15;
}

.nav-title-sub {
  font-size: 20px;       /* Subtitle should whisper, not shout */
  letter-spacing: 0.3px;
  opacity: 0.7;
}


/* ================= NAV LINKS ================= */
.nav-list {
  display: flex;
  align-items: center;
  gap: 38px;              /* MORE SPACE */
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 16px;        /* BIGGER */
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--accent);
}

/* ================= CTA BUTTON ================= */
.nav-cta {
  padding: 14px 26px;     /* BIGGER BUTTON */
  border: 2px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.nav-cta:hover {
  background: var(--accent);
  color: #05061a;
}


/* ================= HERO SECTION ================= */

.hero {
  position: relative;
  min-height: 85vh;
  min-height: 560px;

  display: grid;
  place-items: center;

  text-align: center;
  overflow: hidden;
}

/* ================= BACKGROUND VIDEO ================= */

.hero-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 200%;
  object-fit: cover;

  z-index: 0;
}

/* ================= OVERLAY ================= */

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(6, 8, 30, 0.9) 0%,
    rgba(6, 8, 30, 0.55) 45%,
    rgba(6, 8, 30, 0.9) 100%
  );

  z-index: 1;
}

/* ================= HERO CONTENT ================= */

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 900px;
  padding: 0 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ================= TITLE ================= */

.hero-content h1 {
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.1;
  margin-bottom: 18px;
}

/* ================= INTRO TEXT ================= */

.hero-intro {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);

  max-width: 720px;
  margin-bottom: 22px;
}

/* ================= DATE ================= */

.hero-date {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 26px;
}

.date-pill {
  padding: 8px 18px;
  border-radius: 999px;

  font-size: 14px;
  color: #fff;

  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);

  backdrop-filter: blur(6px);
}

.date-sep {
  opacity: 0.6;
}

/* ================= MAIN ACTION BUTTONS ================= */

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 18px;

  margin-bottom: 18px; /* ✅ هذا يصحّح المحاذاة البصرية */
}

/* ================= BUTTON BASE ================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 180px;
  height: 52px;
  padding: 0 32px;

  border-radius: 999px;

  font-size: 15px;
  font-weight: 600;
  line-height: 1;

  text-decoration: none;
  transition: all 0.25s ease;
}

/* ================= PRIMARY BUTTON ================= */

.btn-primary {
  background: var(--accent);
  color: #000;
}

/* ================= SECONDARY BUTTON ================= */

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* ================= HOVER ================= */

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.45);
}

/* ================= QUICK ACTION LINKS ================= */

.hero-quick-actions {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 14px;
  opacity: 0.8;
}

.mini-link {
  color: #fff;
  text-decoration: none;
}

.mini-link:hover {
  text-decoration: underline;
}

.mini-dot {
  opacity: 0.5;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 120px 0 100px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-date {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-quick-actions {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

/* ================= VALUE PILLARS =================*/
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD stays a card */
.pillar-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* IMAGE AREA inside the card */
.pillar-media {
  height: 220px;           /* 👈 change this value to control image size */
  overflow: hidden;
}

/* IMAGE itself */
.pillar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* TEXT */
.pillar-card h3 {
  padding: 20px 24px 0;
}

.pillar-card p {
  padding: 12px 24px 24px;
  color: var(--text-muted);
}
/* ================= EXPO IN NUMBERS ================= */

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

/* CARD */
.number-card {
  position: relative;

  /* FIXED SIZE (NOT IMAGE-DEPENDENT) */
  height: 400px;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 24px;

  border-radius: 20px;
  border: 1px solid var(--border-soft);
  overflow: hidden;

  /* IMAGE HANDLING */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* fallback */
  background-color: var(--bg-soft);
}

/* OVERLAY */
.number-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* CONTENT */
.number-value {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  z-index: 2;
}

.number-label {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  z-index: 2;
}

/* Grid stays as is – just in case */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

/* Card base */
.number-card {
  position: relative;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  background: #05061a;
}

/* Image becomes background */
.number-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark overlay for readability */
.number-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 6, 26, 0.85),
    rgba(5, 6, 26, 0.35),
    rgba(5, 6, 26, 0.15)
  );
  z-index: 1;
}

/* Text above image */
.number-value,
.number-label {
  position: relative;
  z-index: 2;
  display: block;
  color: #fff;
}

.number-label {
  position: absolute;
  bottom: 28px;
  left: 28px;
  font-size: 15px;
  opacity: 0.85;
}
.number-card {
  position: relative;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  background: #05061a;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

/* Image stays background */
.number-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}



/* ================= WHY SECTION ================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

/* CARD */
.why-card {
  background: var(--bg-soft);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-soft);

  display: flex;
  flex-direction: column;
}

/* MEDIA WRAPPER (LOCKED SIZE) */
.why-media {
  position: relative;
  width: 100%;
  height: 240px;              /* 🔒 FIXED IMAGE HEIGHT */
  overflow: hidden;
}

/* IMAGE */
.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* keeps aspect ratio */
}

/* CONTENT */
.why-body {
  padding: 24px;
  flex: 1;                    /* keeps cards equal height */
}

.why-tag {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.why-body h3 {
  margin-bottom: 12px;
}

.why-body p {
  color: var(--text-muted);
  line-height: 1.6;
}


/* ================= ABOUT / FORUM ================= */
/* ================= ABOUT SECTION ================= */

.about-section {
  padding: 120px 0;
 
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* ================= TEXT ================= */

.about-text h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

/* ================= IMAGE ================= */

.about-image {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
 
}

.about-image img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

/* BLACK COVER / OVERLAY */
.image-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ================= BUTTON ================= */

.btn-primary {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 32px;
  border-radius: 999px;

  background: linear-gradient(135deg, #a01aff, #6b2cff);
  color: #fff;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 10px 30px rgba(160,26,255,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(160,26,255,0.55);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image {
    order: -1; /* image on top on mobile */
  }
}

/* ===== SECTORS VIDEO BACKGROUND ===== */

.sectors {
  position: relative;
  overflow: hidden;
}

.sectors-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.sectors-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,6,26,0.85),
    rgba(5,6,26,0.95)
  );
  z-index: 1;
}
/* ================= SECTORS SECTION ================= */

.section.sectors {
  position: relative;
  min-height: 100vh;            /* 🔑 FULL SCREEN */
  padding: 120px 0;
  overflow: hidden;
  background: #05061a;

  display: flex;
  align-items: center;          /* 🔑 vertical centering */
}

/* ================= FIXED VIDEO BACKGROUND ================= */

.sectors-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center; /* 🔑 THIS IS THE FIX */

  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
}
  
/* ================= HARD FIX FOR GRID COLLAPSE ================= */

.sector-grid {
  width: 100%;
  max-width: 1200px;      /* 🔑 THIS IS THE FIX */
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

/* ================= DARK OVERLAY ================= */

.section.sectors::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 30% 20%, rgba(160,26,255,0.25), transparent 60%),
    linear-gradient(
      180deg,
      rgba(5,6,26,0.88),
      rgba(5,6,26,0.96)
    );

  z-index: 1;
}

/* ================= CONTENT LAYER ================= */

.section.sectors .container {
  position: relative;
  z-index: 2;
}

/* ================= SECTION HEADER ================= */

.section.sectors .section-head {
  text-align: center;
  margin-bottom: 72px;
}

.section.sectors .section-head h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 14px;
}

.section.sectors .section-sub {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
}

/* ================= GRID ================= */

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* =====================================================
   SECTORS – CARDS & CTA (FINAL CLEAN VERSION)
   ===================================================== */

/* ================= SECTOR CARD ================= */

.section.sectors .sector-card {
  position: relative;
  padding: 30px 28px;
  min-height: 190px;

  background:
    linear-gradient(
      180deg,
      rgba(32, 22, 78, 0.95),
      rgba(16, 12, 44, 0.95)
    );

  border-radius: 20px;
  border: 1px solid rgba(139, 92, 246, 0.35);

  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255,255,255,0.04);

  backdrop-filter: blur(12px);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* TITLE */
.section.sectors .sector-card h3 {
  font-size: 18.5px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

/* DESCRIPTION */
.section.sectors .sector-card p {
  font-size: 14.8px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
}

/* ================= HOVER ================= */

.section.sectors .sector-card:hover {
  transform: translateY(-8px);

  border-color: rgba(139, 92, 246, 0.65);

  box-shadow:
    0 36px 90px rgba(139, 92, 246, 0.45),
    inset 0 0 0 1px rgba(139, 92, 246, 0.45);
}

/* ================= CTA WRAPPER ================= */

.section.sectors .sectors-cta {
  margin-top: 70px;
  display: flex;
  justify-content: center;
}

/* ================= CTA BUTTON ================= */

.section.sectors .sectors-cta .btn-primary {
  padding: 16px 44px;
  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      #8b5cf6,
      #a855f7
    );

  color: #05061a;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.2px;

  text-decoration: none;

  box-shadow:
    0 12px 36px rgba(139, 92, 246, 0.45),
    inset 0 0 0 1px rgba(255,255,255,0.25);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

/* CTA HOVER */
.section.sectors .sectors-cta .btn-primary:hover {
  transform: translateY(-3px);

  box-shadow:
    0 20px 60px rgba(139, 92, 246, 0.65),
    inset 0 0 0 1px rgba(255,255,255,0.35);

  filter: brightness(1.05);
}


/* ===== SECTOR GRID ===== */

.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.sectors-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.sector-card {
  background: rgba(15, 18, 40, 0.88);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 28px;
  min-height: 180px;
}

.sector-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.sector-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA */
.sectors-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.sectors-cta .btn-primary {
  padding: 14px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: #000;
  font-weight: 700;
}

/* ================= GALLERY ================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
}

/* ===== FORUM SECTION ===== */

.forum-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.forum-content h2 {
  font-size: 36px;
  margin-bottom: 18px;
}

.forum-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 640px;
}

.forum-list {
  margin: 24px 0 32px;
  padding: 0;
  list-style: none;
}

.forum-list li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.forum-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* CTA */
.forum-content .btn-primary {
  padding: 14px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: #000;
  font-weight: 700;
}

/* =====================================================
   FORUM IMAGE – MEDIA CARD (FINAL)
   ===================================================== */

.forum-media {
  position: relative;
  height: 420px;                 /* controls visual weight */
  border-radius: 22px;
  overflow: hidden;

  border: 1px solid var(--border-soft);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.55);
}

/* IMAGE */
.forum-media img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;
}

/* DARK OVERLAY */
.forum-media::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(5,6,26,0.9),
    rgba(5,6,26,0.35),
    rgba(5,6,26,0.15)
  );

  z-index: 1;
}

/* CAPTION */
.forum-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;

  z-index: 2;
  color: #ffffff;
}

.forum-caption strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.forum-caption span {
  font-size: 14.5px;
  color: rgba(255,255,255,0.8);
}

/* ================= EXPO GALLERY ================= */

.gallery {
  padding: 120px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

/* CARD */
.gallery-card {
  height: 260px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}

/* CTA */
.gallery-cta {
  text-align: center;
  margin-top: 48px;
}

.gallery-cta .btn-primary {
  padding: 14px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.4);
}

/* ================= REGISTER SECTION ================= */

.register-section {
  padding: 120px 0;
}

/* CARD WITH BACKGROUND IMAGE */
.register-card-bg {
  position: relative;
  min-height: 360px; /* slightly taller */
  border-radius: 28px;
  overflow: hidden;

  background: url("images/register-expo.jpg") center / cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* DARK OVERLAY */
.register-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(124, 58, 237, 0.85),
      rgba(88, 28, 135, 0.85)
    );
}

/* CENTERED CONTENT */
.register-content-centered {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 0 32px;
  color: #fff;
}

.register-content-centered h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 18px;
}

.register-content-centered p {
  font-size: 17px;
  line-height: 1.75;
  opacity: 0.95;
  margin-bottom: 30px;
}

/* BUTTON */
.btn-register {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px;

  background: #0f0f14;
  color: #fff;
  font-weight: 600;
  text-decoration: none;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .register-content-centered h2 {
    font-size: 32px;
  }

  .register-card-bg {
    min-height: 300px;
  }
}

/* ================= FOOTER ================= */
.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid var(--border-soft);
  text-align: center;
  color: var(--text-muted);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .pillar-grid,
  .why-grid,
  .sector-grid,
  .numbers-grid,
  .gallery-grid,
  .split,
  .forum-inner,
  .location-card {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 44px;
  }
}