* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #0d1420;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #c6a24a, #e2c982, #c6a24a);
  border-radius: 3px;
  opacity: var(--thumb-opacity, 0);
  transition: opacity 0.3s;
}
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #c6a24a #0d1420;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: #ece6d7;
  background: #0d1420;
  line-height: 1.7;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

/* ----- Animations ----- */
.reveal {
  opacity: 1;
}
.no-js .reveal {
  opacity: 1;
}
:not(.no-js) .reveal {
  opacity: 0;
}
.section-visible .reveal {
  animation: fadeInScale 0.35s ease forwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* ----- Site Header + Progress Bar ----- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  z-index: 100;
  pointer-events: none;
  background: #0d1420;
}
.header-star {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  pointer-events: auto;
  cursor: pointer;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.header-star:hover {
  transform: translate(-50%, -30%);
  opacity: 0.65;
}
.header-star:hover .header-star-square {
  border-color: rgba(226, 201, 130, 0.7);
  background: rgba(226, 201, 130, 0.15);
}
.header-star::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(226, 201, 130, 0.25) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.header-star::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(226, 201, 130, 0.5) 0%,
    transparent 60%
  );
  pointer-events: none;
  opacity: 0;
}
.header-star:hover::after {
  opacity: 1;
}
.header-star-square {
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(226, 201, 130, 0.25);
  background: rgba(226, 201, 130, 0.05);
}
.header-star-square:last-child {
  transform: rotate(45deg);
}
#progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(226, 201, 130, 0.1);
}
#progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #c6a24a, #e2c982, #c6a24a);
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 0 12px rgba(226, 201, 130, 0.3);
}
.header-nav {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 24px;
  pointer-events: auto;
}
.header-nav-link {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(236, 230, 215, 0.55);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
  position: relative;
}
.header-nav-link::after {
  background: #e2c982;
  transition: width 0.3s;
}
.header-nav-link:hover {
  color: #e2c982;
}
.header-nav-link:hover::after {
  width: 100%;
}
.header-nav-link.active {
  color: #e2c982;
}
.header-nav-link.active::after {
  width: 100%;
}
.nav-sep {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(226, 201, 130, 0.2);
  align-self: center;
}
.lang-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0;
  color: rgba(236, 230, 215, 0.55);
  color: #e2c982;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.lang-nav-btn .fa-globe {
  font-size: 0.85rem;
  color: #e2c982;
}

/* ----- Hamburger ----- */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  width: 22px;
  height: 18px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(236, 230, 215, 0.35);
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger:hover span {
  background: #e2c982;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ----- Mobile Menu Overlay ----- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(13, 20, 32, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-nav-link {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(236, 230, 215, 0.4);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #e2c982;
}
.mobile-menu-lang {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(226, 201, 130, 0.15);
}
.mobile-lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(236, 230, 215, 0.35);
  transition: color 0.3s;
  padding: 0;
}
.mobile-lang-btn:hover,
.mobile-lang-btn.active {
  color: #e2c982;
}
.mobile-lang-sep {
  color: rgba(226, 201, 130, 0.25);
  font-size: 0.85rem;
}

/* ----- Layout ----- */
section {
  min-height: 100vh;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.slide-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  will-change: transform, opacity;
}

.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.sectores .container,
.gobernanza .container {
  text-align: center;
}
.section-tag {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c6a24a;
  font-weight: 600;
  margin-bottom: 10px;
}
.section-title {
  font-size: 3.2rem;
  line-height: 1.1;
  color: #ece6d7;
  margin-bottom: 20px;
}
.sectores-desc {
  color: rgba(236, 230, 215, 0.5);
  max-width: 600px;
  margin: 0 auto 8px;
  font-weight: 300;
}

/* ----- Gulf Geometric Pattern Overlay ----- */
.sectores::before,
.proposito::before,
.gobernanza::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cdefs%3E%3Cpattern id='p' x='0' y='0' width='240' height='240' patternUnits='userSpaceOnUse'%3E%3Cpolygon points='120,0 240,120 120,240 0,120' fill='none' stroke='%23E2C982' stroke-width='0.5' opacity='0.12'/%3E%3Cpolygon points='120,40 200,120 120,200 40,120' fill='none' stroke='%23E2C982' stroke-width='0.3' opacity='0.08'/%3E%3Cpolygon points='120,80 160,120 120,160 80,120' fill='none' stroke='%23C6A24A' stroke-width='0.2' opacity='0.06'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23p)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}
.sectores .slide-content,
.proposito .slide-content,
.gobernanza .slide-content {
  position: relative;
  z-index: 1;
}

.hero .slide-content {
  position: relative;
  z-index: 4;
}

/* ----- Hero ----- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  background: linear-gradient(165deg, #0d1420 0%, #0a1628 40%, #0d1420 100%);
  position: relative;
  overflow: hidden;
  flex-direction: column;
  --glow-opacity: 1;
}

.logo-gcc {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 0px;
  border: 3px solid #c6a34ace;
  background: rgba(10, 22, 40, 0.5);
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 0 20px rgba(226, 201, 130, 0.15);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      to right,
      rgba(13, 20, 32, 0.55) 0%,
      rgba(13, 20, 32, 0.9) 30%,
      #0d1420 50%
    ),
    url("images/dubai.webp") left center / auto 100% no-repeat;
  pointer-events: none;
  will-change: opacity;
}
.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130vh;
  height: 130vh;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: radial-gradient(
    circle,
    rgba(226, 201, 130, 0.4) 0%,
    rgba(226, 201, 130, 0.1) 20%,
    rgba(198, 162, 74, 0.04) 45%,
    transparent 70%
  );
  pointer-events: none;
  opacity: var(--glow-opacity);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

/* ----- Hero star figure (two squares) ----- */
.star-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  pointer-events: none;
  z-index: 3;
}
.star-wrap::after {
  content: "";
  position: absolute;
  inset: -50%;
  pointer-events: none;
}
.star-square {
  position: absolute;
  inset: 0;
  border: 3px solid rgba(226, 201, 130, 0.03);
  background: rgba(226, 201, 130, 0.03);
}
.star-square:last-child {
  transform: rotate(45deg);
}
.hero h1 {
  font-size: 4.8rem;
  line-height: 1.05;
  color: #ece6d7;
  margin-bottom: 8px;
  position: relative;
}
.hero h1 em {
  font-style: italic;
  color: #e2c982;
}
.hero-title-stripe {
  display: inline-block;
  width: 50px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #c6a24a 20%,
    #e2c982 50%,
    #c6a24a 80%,
    transparent
  );
  border-radius: 2px;
  vertical-align: middle;
  margin: 0 8px;
  opacity: 0.6;
}
.hero-sub {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 12px;
  font-weight: 300;
  position: relative;
  color: rgba(236, 230, 215, 0.55);
}
.hero-sub strong {
  color: #e2c982;
  font-weight: 500;
}
.hero-desc {
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto 12px;
  font-weight: 300;
  color: rgba(236, 230, 215, 0.75);
  line-height: 1.65;
}
.hero-desc-line {
  display: block;
}
.hero-desc-line + .hero-desc-line {
  margin-top: 16px;
}
.hero-cta {
  position: relative;
  display: inline-block;
  padding: 15px 44px;
  border: 1px solid #e2c982;
  color: #e2c982;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 2px;
  font-weight: 600;
  transition: all 0.4s;
  margin-top: 20px;
  overflow: hidden;
}
.hero-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s;
}
.hero-cta:hover::before {
  left: 100%;
}
.hero-cta:hover {
  background: #e2c982;
  color: #0d1420;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(226, 201, 130, 0.2);
}

/* ----- Sectores ----- */
.sectores {
  position: relative;
  background: linear-gradient(165deg, #0a1628 0%, #0d1420 50%, #0a1628 100%);
  border-top: 1px solid rgba(226, 201, 130, 0.06);
  border-bottom: 1px solid rgba(226, 201, 130, 0.06);
}
.sectores-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 40px;
}
.sector-item {
  padding: 32px 16px 28px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #e2c982;
  background: #0d1420;
  border: 2px solid rgba(226, 201, 130, 0.1);
  border-radius: 20px 0 20px 0;
  transition: all 0.4s;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  min-height: 140px;
}
/* Unique gradient per sector */
.sector-item:nth-child(1) {
  background: linear-gradient(165deg, #0d1420 0%, #141024 50%, #0d1420 100%);
}
.sector-item:nth-child(2) {
  background: linear-gradient(165deg, #0d1420 0%, #0f1822 50%, #0d1420 100%);
}
.sector-item:nth-child(3) {
  background: linear-gradient(165deg, #0d1420 0%, #0f1a18 50%, #0d1420 100%);
}
.sector-item:nth-child(4) {
  background: linear-gradient(165deg, #0d1420 0%, #12161f 50%, #0d1420 100%);
}
.sector-item:nth-child(5) {
  background: linear-gradient(165deg, #0d1420 0%, #12121c 50%, #0d1420 100%);
}
.sector-item:nth-child(6) {
  background: linear-gradient(165deg, #0d1420 0%, #14101a 50%, #0d1420 100%);
}
.sector-item:nth-child(7) {
  background: linear-gradient(165deg, #0d1420 0%, #12161f 50%, #0d1420 100%);
}
.sector-item:nth-child(8) {
  background: linear-gradient(165deg, #0d1420 0%, #0f1a1a 50%, #0d1420 100%);
}
.sector-item:nth-child(9) {
  background: linear-gradient(165deg, #0d1420 0%, #131220 50%, #0d1420 100%);
}
.sector-item:nth-child(10) {
  background: linear-gradient(165deg, #0d1420 0%, #141018 50%, #0d1420 100%);
}
/* Watermark icon glow */
.sector-item::before {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: radial-gradient(
    circle,
    rgba(226, 201, 130, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  transition:
    opacity 0.4s,
    transform 0.4s;
}
.sector-item:nth-child(1)::before {
  background: radial-gradient(
    circle,
    rgba(255, 180, 50, 0.08) 0%,
    transparent 70%
  );
}
.sector-item:nth-child(2)::before {
  background: radial-gradient(
    circle,
    rgba(100, 180, 255, 0.06) 0%,
    transparent 70%
  );
}
.sector-item:nth-child(3)::before {
  background: radial-gradient(
    circle,
    rgba(80, 200, 120, 0.06) 0%,
    transparent 70%
  );
}
.sector-item:nth-child(4)::before {
  background: radial-gradient(
    circle,
    rgba(255, 200, 100, 0.06) 0%,
    transparent 70%
  );
}
.sector-item:nth-child(5)::before {
  background: radial-gradient(
    circle,
    rgba(200, 160, 220, 0.06) 0%,
    transparent 70%
  );
}
.sector-item:nth-child(6)::before {
  background: radial-gradient(
    circle,
    rgba(160, 140, 200, 0.06) 0%,
    transparent 70%
  );
}
.sector-item:nth-child(7)::before {
  background: radial-gradient(
    circle,
    rgba(255, 200, 100, 0.06) 0%,
    transparent 70%
  );
}
.sector-item:nth-child(8)::before {
  background: radial-gradient(
    circle,
    rgba(100, 200, 180, 0.06) 0%,
    transparent 70%
  );
}
.sector-item:nth-child(9)::before {
  background: radial-gradient(
    circle,
    rgba(180, 160, 220, 0.06) 0%,
    transparent 70%
  );
}
.sector-item:nth-child(10)::before {
  background: radial-gradient(
    circle,
    rgba(200, 180, 160, 0.05) 0%,
    transparent 70%
  );
}
.sector-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(226, 201, 130, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.4s,
    border-color 0.4s,
    background 0.4s;
}
.sector-item .sector-icon {
  font-size: 1.6rem;
  color: #c6a24a;
  transition:
    transform 0.4s,
    color 0.4s;
}
.sector-item:hover .sector-icon-wrap {
  transform: scale(1.15) translateY(-4px);
  border-color: #c6a24a;
  box-shadow: 0 8px 24px rgba(226, 201, 130, 0.1);
}
.sector-item:hover .sector-icon {
  transform: scale(1.2);
  color: #e2c982;
}
.sector-item:hover::before {
  opacity: 1.4;
  transform: scale(1.1);
}
.sector-item:hover {
  color: #ffffff;
  transform: scale(1.06);
  box-shadow: 0 0 30px rgba(226, 201, 130, 0.15);
  border-color: #c6a24a;
  z-index: 1;
}
/* Sector stagger */
.sector-item:nth-child(1) {
  animation-delay: 0s;
}
.sector-item:nth-child(2) {
  animation-delay: 0.03s;
}
.sector-item:nth-child(3) {
  animation-delay: 0.06s;
}
.sector-item:nth-child(4) {
  animation-delay: 0.09s;
}
.sector-item:nth-child(5) {
  animation-delay: 0.12s;
}
.sector-item:nth-child(6) {
  animation-delay: 0.15s;
}
.sector-item:nth-child(7) {
  animation-delay: 0.18s;
}
.sector-item:nth-child(8) {
  animation-delay: 0.21s;
}
.sector-item:nth-child(9) {
  animation-delay: 0.24s;
}
.sector-item:nth-child(10) {
  animation-delay: 0.27s;
}

/* ----- Propósito ----- */
.proposito {
  position: relative;
  background: #0d1420;
}
.proposito-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.prop-card {
  padding: 40px;
  border: 2px solid rgba(226, 201, 130, 0.12);
  border-radius: 20px 0 20px 0;
  background: rgba(10, 22, 40, 0.5);
  transition:
    border-color 0.4s,
    transform 0.4s,
    box-shadow 0.4s,
    background 0.4s;
  position: relative;
  overflow: hidden;
}
.prop-card:nth-child(1) {
  background: linear-gradient(
    165deg,
    rgba(10, 22, 40, 0.5) 0%,
    rgba(20, 40, 80, 0.4) 100%
  );
}
.prop-card:nth-child(2) {
  background: linear-gradient(
    165deg,
    rgba(10, 22, 40, 0.5) 0%,
    rgba(60, 30, 50, 0.4) 100%
  );
}
/* Top accent line */
.prop-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40%;
  right: 40%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c6a24a, transparent);
  opacity: 0.4;
  transition:
    left 0.4s,
    right 0.4s,
    opacity 0.4s;
}
.prop-card:hover::before {
  left: 20%;
  right: 20%;
  opacity: 0.8;
}
.prop-card:hover {
  border-color: #c6a24a;
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 0 40px rgba(226, 201, 130, 0.12),
    0 12px 40px rgba(0, 0, 0, 0.3);
}
/* Staggered reveal */
.prop-card:nth-child(1) {
  animation-delay: 0.05s;
}
.prop-card:nth-child(2) {
  animation-delay: 0.1s;
}
.prop-card h3 {
  font-size: 1.6rem;
  color: #e2c982;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.prop-card h3 .icon-inline {
  width: 28px;
  height: 28px;
  color: #c6a24a;
  flex-shrink: 0;
  display: block;
}
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(226, 201, 130, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.4s,
    border-color 0.4s;
}
.prop-card:hover .icon-circle {
  transform: scale(1.12);
  border-color: #c6a24a;
}
.prop-card p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: rgba(236, 230, 215, 0.75);
  text-align: left;
}

/* ----- Gobernanza ----- */
.gobernanza {
  position: relative;
  background: linear-gradient(165deg, #0a1628 0%, #0d1420 50%, #0a1628 100%);
  border-top: 1px solid rgba(226, 201, 130, 0.06);
  border-bottom: 1px solid rgba(226, 201, 130, 0.06);
  padding: 60px 20px;
}
.gov-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 28px;
  align-items: start;
}
.gov-group {
  text-align: center;
}
.gov-group > h4 {
  font-size: 0.85rem;
  color: #c6a24a;
  margin-bottom: 20px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.gov-group > h4::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 162, 74, 0.4),
    transparent
  );
}
.gov-leader {
  padding: 40px 32px 36px;
  border: 2px solid rgba(226, 201, 130, 0.12);
  border-radius: 20px 0 20px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s,
    border-color 0.4s,
    box-shadow 0.4s;
  margin-bottom: 24px;
}
.gov-leader:nth-child(2) {
  background: linear-gradient(
    165deg,
    rgba(10, 22, 40, 0.4) 0%,
    rgba(40, 25, 30, 0.35) 100%
  );
}
.gov-group:last-child .gov-leader {
  background: linear-gradient(
    165deg,
    rgba(10, 22, 40, 0.4) 0%,
    rgba(20, 35, 55, 0.35) 100%
  );
}
/* Top accent line */
.gov-leader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 35%;
  right: 35%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c6a24a, transparent);
  opacity: 0.4;
  transition:
    left 0.4s,
    right 0.4s,
    opacity 0.4s;
}
.gov-leader:hover::before {
  left: 15%;
  right: 15%;
  opacity: 0.8;
}
.gov-leader:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: #c6a24a;
  box-shadow:
    0 0 40px rgba(226, 201, 130, 0.12),
    0 12px 40px rgba(0, 0, 0, 0.3);
}
.gov-leader-diamond {
  width: 10px;
  height: 10px;
  margin: 0 auto 12px;
  border: 1.5px solid rgba(226, 201, 130, 0.4);
  transform: rotate(45deg);
  transition: border-color 0.4s;
}
.gov-leader:hover .gov-leader-diamond {
  border-color: #e2c982;
}
.gov-leader .role {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c6a24a;
  font-weight: 600;
  margin-bottom: 8px;
}
.gov-leader .name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #e2c982;
}
.gov-board {
  text-align: center;
}
.board-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.board-grid-roles {
  grid-template-columns: repeat(2, 1fr);
}
.board-member {
  padding: 14px 18px;
  border: 2px solid rgba(226, 201, 130, 0.08);
  border-radius: 20px 0 20px 0;
  text-align: left;
  font-size: 0.95rem;
  color: #ece6d7;
  background: rgba(10, 22, 40, 0.3);
  transition: all 0.4s;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 14px;
}
.board-member:hover {
  border-color: rgba(226, 201, 130, 0.3);
  color: #e2c982;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 20px rgba(226, 201, 130, 0.08);
}
.board-initials {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(226, 201, 130, 0.25);
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #c6a24a;
  flex-shrink: 0;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.board-member:hover .board-initials {
  border-color: #c6a24a;
  background: rgba(198, 162, 74, 0.1);
}
.board-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  color: inherit;
  line-height: 1.3;
}
.board-role {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c6a24a;
  font-weight: 600;
  margin-bottom: 4px;
}
/* Stagger */
.gov-group:first-child .gov-leader {
  animation-delay: 0.05s;
}
.gov-group:last-child .gov-leader {
  animation-delay: 0.15s;
}
.gov-group:first-child .board-member:nth-child(1) {
  animation-delay: 0.1s;
}
.gov-group:first-child .board-member:nth-child(2) {
  animation-delay: 0.13s;
}
.gov-group:first-child .board-member:nth-child(3) {
  animation-delay: 0.16s;
}
.gov-group:first-child .board-member:nth-child(4) {
  animation-delay: 0.19s;
}
.gov-group:first-child .board-member:nth-child(5) {
  animation-delay: 0.22s;
}
.gov-group:first-child .board-member:nth-child(6) {
  animation-delay: 0.25s;
}
.gov-group:first-child .board-member:nth-child(7) {
  animation-delay: 0.28s;
}
.gov-group:first-child .board-member:nth-child(8) {
  animation-delay: 0.31s;
}
.gov-group:last-child .board-member:nth-child(1) {
  animation-delay: 0.2s;
}
.gov-group:last-child .board-member:nth-child(2) {
  animation-delay: 0.23s;
}
.gov-group:last-child .board-member:nth-child(3) {
  animation-delay: 0.26s;
}
.gov-group:last-child .board-member:nth-child(4) {
  animation-delay: 0.29s;
}

/* ----- Contacto ----- */
.contacto-section {
  text-align: center;
  background: #0a1628;
}
.contacto-section h2 {
  font-size: 3rem;
  color: #ece6d7;
  margin-bottom: 8px;
}
.contacto-section .sub {
  color: rgba(236, 230, 215, 0.45);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 32px;
}
.contacto-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.contacto-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(236, 230, 215, 0.6);
  font-size: 0.9rem;
  transition: transform 0.3s;
}
.contacto-item:hover {
  transform: translateY(-2px);
}
.contacto-item .icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(226, 201, 130, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e2c982;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.contacto-item .icon svg {
  width: 18px;
  height: 18px;
}
.contacto-item:hover .icon {
  border-color: #e2c982;
  background: rgba(226, 201, 130, 0.08);
}
.contacto-item a {
  color: #e2c982;
  text-decoration: none;
}
.contacto-item a:hover {
  text-decoration: underline;
}

/* ----- Footer ----- */
footer {
  padding: 30px 20px;
  text-align: center;
  background: #070e1a;
  color: rgba(236, 230, 215, 0.2);
  font-size: 0.78rem;
  border-top: 1px solid rgba(226, 201, 130, 0.06);
}

/* ----- Back to top ----- */
.back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: rgba(226, 201, 130, 0.1);
  border: 1px solid rgba(226, 201, 130, 0.2);
  color: #e2c982;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
  z-index: 90;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}
.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-top:hover {
  background: #e2c982;
  color: #0d1420;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(226, 201, 130, 0.2);
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
  .hero {
    background: linear-gradient(165deg, #0d1420 0%, #0a1628 40%, #0d1420 100%);
    --glow-opacity: 0.4 !important;
  }
  .hero-bg {
    display: block;
    background:
      linear-gradient(
        to bottom,
        #0d1420 0%,
        rgba(13, 20, 32, 0.65) 30%,
        rgba(13, 20, 32, 0.85) 65%,
        #0d1420 100%
      ),
      url("images/dubai.webp") left 25% / cover no-repeat;
    filter: blur(3px);
  }
  .header-nav .header-nav-link,
  .header-nav .nav-sep {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  body.no-scroll {
    overflow: hidden;
  }
  .hero-desc {
    font-size: 0.8rem;
    max-width: 90%;
  }
  .hero h1 {
    font-size: 2.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .star-wrap {
    width: 220px;
    height: 220px;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .sectores-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proposito-grid,
  .gov-groups {
    grid-template-columns: 1fr;
  }
  .board-grid {
    grid-template-columns: 1fr;
  }
  .contacto-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .back-top {
    bottom: 20px;
    right: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal::before,
  .reveal::after {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .section-visible .reveal {
    animation: none !important;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
