@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700;800&display=swap');

:root {
  --primary: #EBC736;
  --black: #0D0D0D;
  --white: #FFFFFF;
  --offwhite: #F5F5F0;
  --warmgrey: #2A2A2A;
  --midgrey: #888888;

  --max-width: 1200px;
  --radius: 20px;
  --transition: 0.25s ease;
}

/* ---------- RESET ---------- */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ---------- GLOBAL ---------- */

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: auto;
}

.section {
  padding: 100px 0;
}

.section-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.section-subtitle {
  color: #a8a8a8;
  max-width: 700px;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ---------- HEADER ---------- */

header {
  position: sticky;
  top: 0;
  z-index: 999;
  overflow: visible;

  background: rgba(13, 13, 13, 0.78);

  backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.navbar {
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  overflow: visible;
}

/* ---------- LOGO ---------- */

.logo {
  display: flex;
  align-items: center;
  height: 34px;
}

.logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* ---------- NAVIGATION ---------- */

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  color: rgba(255,255,255,0.82);

  font-weight: 500;
  font-size: 0.95rem;

  transition: 0.2s ease;
}

.nav-item > a:hover {
  color: white;
}

/* ---------- DROPDOWN ---------- */

.dropdown {
  position: absolute;

  top: 100%;
  left: 50%;

  transform: translateX(-50%) translateY(8px);

  min-width: 230px;

  padding: 18px 14px 14px;

  background: rgba(18,18,18,0.96);

  backdrop-filter: blur(20px);

  border-radius: 20px;

  border: 1px solid rgba(255,255,255,0.05);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.45);

  opacity: 0;
  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;

  z-index: 999;
}

.dropdown a {
  display: block;

  padding: 12px 14px;

  border-radius: 12px;

  color: rgba(255,255,255,0.88);

  font-size: 0.94rem;

  transition: 0.18s ease;
}

.dropdown a:hover {
  background: rgba(255,255,255,0.05);
  color: var(--primary);
}

/* ---------- SHOW DROPDOWN ---------- */

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;

  pointer-events: auto;

  transform: translateX(-50%) translateY(0);
}

/* ---------- HERO ---------- */

.hero {
  min-height: 88vh;

  display: flex;
  align-items: center;

  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at top right, rgba(235,199,54,0.13), transparent 30%),
    radial-gradient(circle at bottom left, rgba(235,199,54,0.08), transparent 25%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-tag {
  display: inline-block;

  background: rgba(235,199,54,0.1);
  color: var(--primary);

  padding: 10px 18px;

  border-radius: 999px;

  margin-bottom: 28px;

  font-weight: 700;
  font-size: 0.92rem;
}

.hero h1 {
  font-size: clamp(4rem, 8vw, 7rem);

  line-height: 0.95;

  margin-bottom: 28px;

  font-weight: 800;

  letter-spacing: -0.06em;
}

.hero p {
  color: #c7c7c7;

  font-size: 1.18rem;

  line-height: 1.8;

  margin-bottom: 36px;

  max-width: 700px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- BUTTONS ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 24px;

  border-radius: 999px;

  font-weight: 700;

  transition: var(--transition);
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.08);
  color: white;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.quiz-banner p {
  font-size: 1.1rem;
  color: var(--blk);
  margin: 0;
  font-weight: 500;
}

.quiz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.95rem 1.6rem;
  border-radius: 999px;

  background: var(--y);
  color: var(--blk);

  text-decoration: none;
  font-weight: 700;

  transition: 0.2s ease;
}

.quiz-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

/* ---------- GRID ---------- */

.grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* ---------- CARDS ---------- */

.card {
  background: linear-gradient(
    to bottom right,
    rgba(24,24,24,1),
    rgba(18,18,18,1)
  );

  border: 1px solid rgba(255,255,255,0.05);

  border-radius: var(--radius);

  padding: 32px;

  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);

  border-color: rgba(235,199,54,0.2);
}

.card h3 {
  margin-bottom: 14px;

  font-size: 1.4rem;
}

.card p {
  color: #b7b7b7;
}

/* ---------- NEWSROOM ---------- */

.news-grid {
  display: grid;
  gap: 24px;

  margin-top: 50px;
}

.news-card {
  background: linear-gradient(
    to bottom right,
    rgba(24,24,24,1),
    rgba(18,18,18,1)
  );

  padding: 36px;

  border-radius: var(--radius);

  border: 1px solid rgba(255,255,255,0.05);
}

.news-meta {
  color: var(--primary);

  font-size: 0.9rem;

  margin-bottom: 14px;

  font-weight: 700;
}

.news-card h2 {
  margin-bottom: 14px;

  font-size: 1.7rem;
}

.news-card p {
  color: #bcbcbc;
  line-height: 1.8;
}

/* ---------- FOOTER ---------- */

.site-footer {
  margin-top: 140px;

  padding: 80px 0;

  border-top: 1px solid rgba(255,255,255,0.05);

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.01),
      rgba(255,255,255,0.015)
    );
}

.footer-grid {
  display: grid;

  grid-template-columns: 1.2fr 1fr;

  gap: 100px;
}

/* ---------- LEFT ---------- */

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  height: 34px;
  width: auto;

  margin-bottom: 22px;
}

.footer-copyright {
  color: #8a8a8a;

  font-size: 0.95rem;

  margin-bottom: 16px;
}

.footer-description {
  color: #b2b2b2;

  line-height: 1.8;

  margin-bottom: 28px;
}

/* ---------- SOCIAL ICONS ---------- */

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 32px;
  height: 32px;

  border-radius: 10px;

  background: rgba(255,255,255,0.03);

  border: 1px solid rgba(255,255,255,0.05);

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  transition: 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);

  background: rgba(255,255,255,0.06);
}

.footer-socials img {
  width: 14px;
  height: 14px;

  object-fit: contain;

  display: block;
}

/* ---------- RIGHT ---------- */

.footer-links-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 40px;
}

.footer-column h3 {
  color: white;

  font-size: 1rem;

  margin-bottom: 20px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column a {
  color: #9f9f9f;

  margin-bottom: 12px;

  transition: 0.2s ease;
}

.footer-column a:hover {
  color: white;
}

/* ---------- EXECUTIVES ---------- */

.executive-grid {
  display: flex;

  justify-content: center;

  gap: 60px;

  flex-wrap: wrap;
}

.executive-card {
  width: 320px;

  display: flex;
  flex-direction: column;

  transition: 0.25s ease;
}

.executive-card:hover {
  transform: translateY(-4px);
}

/* ---------- EXECUTIVE CARD IMAGE ---------- */

.executive-image {
  width: 100%;
  aspect-ratio: 1 / 1;

  border-radius: 28px;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      rgba(235,199,54,0.18),
      rgba(255,255,255,0.04)
    );

  border: 1px solid rgba(255,255,255,0.05);

  margin-bottom: 24px;
}

.executive-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

.executive-card h2 {
  font-size: 1.45rem;

  margin-top: 4px;

  margin-bottom: 6px;

  letter-spacing: -0.03em;

  min-height: 44px;

  display: flex;
  align-items: flex-end;
}

.executive-card p {
  color: #a8a8a8;

  font-size: 1rem;

  min-height: 28px;
}

/* ---------- EXECUTIVE PROFILE ---------- */

.executive-profile {
  display: grid;

  grid-template-columns: 420px 1fr;

  gap: 70px;

  align-items: start;
}

/* ---------- EXECUTIVE PROFILE IMAGE ---------- */

.executive-profile-image {
  aspect-ratio: 1 / 1;

  border-radius: 36px;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      rgba(235,199,54,0.18),
      rgba(255,255,255,0.04)
    );

  border: 1px solid rgba(255,255,255,0.05);
}

.executive-profile-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

.executive-profile-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);

  line-height: 0.95;

  margin-bottom: 14px;

  letter-spacing: -0.05em;
}

.executive-profile-content h2 {
  color: #c4c4c4;

  font-size: 1.3rem;
  font-weight: 500;

  margin-bottom: 36px;
}

.executive-profile-content p {
  color: #a8a8a8;

  font-size: 1.05rem;

  line-height: 1.95;

  margin-bottom: 26px;

  max-width: 760px;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 950px) {

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }

  .executive-profile {
    grid-template-columns: 1fr;

    gap: 40px;
  }

}

@media (max-width: 650px) {

  .footer-links-grid {
    grid-template-columns: 1fr;
  }

}


/* ---------- NEW MOBILE NAVIGATION (ADDED) ---------- */

.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 2000;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 6px auto;
  border-radius: 999px;
  transition: 0.25s ease;
}

/* ---------- MOBILE MENU PANEL ---------- */

.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: rgba(13,13,13,0.98);
  backdrop-filter: blur(24px);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 1500;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a,
.mobile-menu summary {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.mobile-menu details {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-submenu {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
  margin-left: 10px;
}

.mobile-submenu a {
  color: #b7b7b7;
  font-size: 1rem;
  font-weight: 500;
}

/* ---------- MOBILE ACTIVE BUTTON ANIMATION ---------- */

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

/* ---------- UPDATED RESPONSIVE MOBILE QUERY ---------- */

@media (max-width: 900px) {

  .main-nav {
    display: none;
  }

  /* Show the hamburger button on mobile */
  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .section {
    padding: 80px 0;
  }

}

/* ---------- FAQ DROPDOWN ---------- */

.faq-item {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 26px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
  transition: 0.2s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question span {
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    margin-top 0.25s ease;
  opacity: 0;
  margin-top: 0;
}

.faq-answer p {
  color: #b7b7b7;
  line-height: 1.9;
  max-width: 780px;
}

/* ---------- ACTIVE ---------- */

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  margin-top: 18px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}
