/* ==========================================
   RESET & GLOBAL STYLES
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #0d0f12;
  color: #e2e8f0;
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-alt {
  background-color: #13171f;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c59b27;
  margin-bottom: 12px;
}

.line-dash {
  width: 20px;
  height: 2px;
  background-color: #c59b27;
}

h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  color: #ffffff;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
#siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 15, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

#siteHeader nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #c59b27;
}

.brand-text {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a:not(.nav-cta):not(.lang-switch-btn) {
  font-size: 0.95rem;
  font-weight: 500;
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.nav-links a:not(.nav-cta):not(.lang-switch-btn):hover {
  color: #c59b27;
}

/* Header Translation Button Styling */
.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.lang-switch-btn svg {
  width: 16px;
  height: 16px;
  stroke: #c59b27;
}

.lang-switch-btn:hover {
  background-color: rgba(197, 155, 39, 0.15);
  border-color: #c59b27;
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-cta {
  background-color: #c59b27;
  color: #0d0f12 !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background-color: #e5b32e;
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.3);
}

/* Mobile Burger Menu */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.burger span {
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: #0d0f12;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-150%);
  transition: transform 0.3s ease-in-out;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu .lang-switch-btn {
  justify-content: center;
  padding: 12px;
  margin-top: 8px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-tint-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,15,18,0.7) 0%, rgba(13,15,18,0.95) 100%);
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  padding: 60px 0;
}

.hero-text-side {
  max-width: 650px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  color: #c59b27;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.15;
  margin-bottom: 24px;
}

.editorial-italic {
  font-style: italic;
  color: #c59b27;
  font-weight: 400;
}

.lead {
  font-size: 1.15rem;
  color: #94a3b8;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #c59b27;
  color: #0d0f12;
}

.btn-primary:hover {
  background-color: #e5b32e;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
}

.btn-whatsapp:hover {
  background-color: rgba(37, 211, 102, 0.2);
  transform: translateY(-2px);
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
}

.hero-meta-display {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.slide-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #c59b27;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #c59b27;
  width: 28px;
  border-radius: 10px;
}

.slide-caption {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  color: #64748b;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.about-sticky-header h2 {
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.vision-quote {
  font-style: italic;
  color: #c59b27;
  border-left: 2px solid #c59b27;
  padding-left: 16px;
  margin-top: 24px;
}

.about-details p {
  color: #94a3b8;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.value-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.value-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: 6px;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #c59b27;
}

.value-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ==========================================
   PROJECTS SECTION
   ========================================== */
.section-head {
  margin-bottom: 50px;
}

.section-head h2 {
  font-size: 2.4rem;
}

.text-center {
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.project-card {
  background-color: #0d0f12;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 155, 39, 0.4);
}

.project-image-box {
  height: 220px;
  overflow: hidden;
}

.project-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image-box img {
  transform: scale(1.05);
}

.project-info {
  padding: 24px;
}

.project-tag {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: #c59b27;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.project-info h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.project-info p {
  color: #94a3b8;
  font-size: 0.95rem;
}

/* ==========================================
   EXECUTIVE BOARD SECTION (CAPSULES)
   ========================================== */
.team-icon-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(197, 155, 39, 0.1);
  border: 1px solid #c59b27;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.team-icon-badge svg {
  width: 24px;
  height: 24px;
  stroke: #c59b27;
}

.board-capsule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.executive-capsule {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.executive-capsule:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(197, 155, 39, 0.3);
}

.capsule-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #c59b27;
}

.capsule-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capsule-meta {
  display: flex;
  flex-direction: column;
}

.capsule-name {
  font-size: 1.05rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: #ffffff;
}

.capsule-title {
  font-size: 0.85rem;
  color: #c59b27;
  font-weight: 500;
}

.capsule-location {
  font-size: 0.75rem;
  color: #64748b;
  font-family: 'Space Mono', monospace;
  margin-top: 2px;
}

/* ==========================================
   INFO & MEMBERSHIP SECTION
   ========================================== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.info-card {
  background: #13171f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px;
  border-radius: 8px;
}

.info-card h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.info-card p {
  color: #94a3b8;
  margin-bottom: 24px;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  color: #cbd5e1;
  transition: all 0.3s ease;
}

.contact-pill:hover {
  border-color: #c59b27;
  color: #c59b27;
}

.announcement-list {
  list-style: none;
  margin-bottom: 24px;
}

.announcement-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #94a3b8;
}

.announcement-list li strong {
  color: #ffffff;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background-color: #080a0c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 70px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-tagline {
  color: #64748b;
  margin-top: 16px;
  max-width: 300px;
}

.footer-heading {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #c59b27;
}

.footer-links, .footer-contact {
  list-style: none;
}

.footer-links li, .footer-contact li {
  margin-bottom: 12px;
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-links a:hover, .footer-contact a:hover {
  color: #c59b27;
}

.footer-contact span {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: #64748b;
}

.footer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-socials a:hover {
  color: #c59b27;
}

.sep {
  color: #334155;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 992px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .hero-meta-display {
    align-items: flex-start;
  }

  .value-cards, .info-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}