

/* --------------------------------------------------------------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* ── Main Footer Wrapper ── */
.gmat-footer {
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  padding: 52px 80px 0 80px;
  color: #1a1a1a;
}

/* ── Top Row : 4 Columns ── */
.gmat-footer__top {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 48px;
}

/* ── Col 1 : Brand / Logo + Description ── */
.gmat-footer__brand {
  flex: 0 0 320px;
  max-width: 340px;
}

.gmat-footer__logo-link {
  display: inline-block;
  margin-bottom: 20px;
}

.gmat-footer__logo {
  height: 60px;
  width: auto;
}

.gmat-footer__desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: #333333;
  margin: 0;
}

.gmat-footer__desc strong {
  font-weight: 700;
  color: #1a1a1a;
}

/* ── Col 2 : Navigation Links ── */
.gmat-footer__nav {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 6px;
}

.gmat-footer__nav a {
  font-size: 15px;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s;
}

.gmat-footer__nav a:hover {
  color: #e63529;
}

/* ── Col 3 : Support ── */
.gmat-footer__support {
  flex: 0 0 240px;
  padding-top: 6px;
}

.gmat-footer__support-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 18px 0;
}

.gmat-footer__support p {
  font-size: 15px;
  margin: 0 0 12px 0;
  color: #1a1a1a;
}

.gmat-footer__support p strong {
  font-weight: 700;
}

/* Clickable phone & email */
.gmat-footer__link {
  color: #2563c9;
  text-decoration: none;
  font-weight: 400;
}

.gmat-footer__link:hover {
  text-decoration: underline;
}

/* ── Col 4 : Social Icons ── */
.gmat-footer__social {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  padding-top: 6px;
  margin-left: auto;
  flex-wrap: wrap;
}

.gmat-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #f5ddd8;
  color: #1a1a1a;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.gmat-footer__social-link:hover {
  background-color: #e8c4bc;
  transform: translateY(-2px);
}

/* ── Divider ── */
.gmat-footer__divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 0;
}

/* ── Bottom Copyright ── */
.gmat-footer__bottom {
  text-align: center;
  padding: 22px 0;
}

.gmat-footer__bottom p {
  font-size: 14px;
  color: #555555;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .gmat-footer {
    padding: 40px 40px 0 40px;
  }
  .gmat-footer__social {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .gmat-footer {
    padding: 36px 24px 0 24px;
  }
  .gmat-footer__top {
    flex-direction: column;
    gap: 28px;
  }
  .gmat-footer__brand {
    max-width: 100%;
    flex: unset;
  }
  .gmat-footer__nav,
  .gmat-footer__support {
    flex: unset;
  }
  .gmat-footer__social {
    margin-left: 0;
  }
}


/* ############################################################################################## */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ── Header Wrapper ── */
.gmat-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #ffffff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  font-family: 'Inter', sans-serif;
}

.gmat-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 90px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ── Logo ── */
.gmat-header__logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.gmat-header__logo {
  height: 56px;
  width: auto;
}

/* ── Desktop Nav ── */
.gmat-header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.gmat-header__nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.gmat-header__nav-link:hover {
  color: #e63529;
}

.gmat-header__nav-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  padding: 0;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}

.gmat-header__nav-btn:hover {
  color: #e63529;
}

.gmat-header__chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

/* ── Dropdown Wrapper ── */
.gmat-header__dropdown-wrap {
  position: relative;
}

/* ── Dropdown Menu ── */
.gmat-header__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: #fff5f4;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 0px 0;
  min-width: 210px;
  display: none;
  flex-direction: column;
  z-index: 1000;
}

.gmat-header__dropdown.active {
  display: flex;
}

.gmat-header__dropdown a {
  font-size: 15px;
  font-weight: 400;
  color: #1a1a1a;
  text-decoration: none;
  padding: 13px 24px;
  transition: background-color 0.15s;
}

.gmat-header__dropdown a:hover {
  background-color: #fef4f3;
  color: #e63529;
}

/* ── Language Dropdown ── */
.gmat-header__lang-dropdown {
  left: auto;
  right: 0;
  min-width: 80px;
}

.gmat-header__lang-dropdown .lang-option {
  text-align: center;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 14px;
}

.gmat-header__lang-dropdown .lang-active {
  background-color: #2563c9;
  color: #ffffff !important;
  border-radius: 4px;
  margin: 2px 8px;
  padding: 8px 12px;
}

.gmat-header__lang-dropdown .lang-active:hover {
  background-color: #1d4fa8 !important;
  color: #ffffff !important;
}

/* Chevron rotate when open */
.gmat-header__dropdown-wrap.open .gmat-header__chevron {
  transform: rotate(180deg);
}


.gmat-header__nav-btn,
.gmat-header__nav-link {
  font-size: 17px;
  font-weight: 600;
}

.gmat-header__dropdown a {
  font-size: 16px;
  font-weight: 500;
}


/* ── Mobile Right ── */
.gmat-header__mobile-right {
  display: none;
  align-items: center;
  gap: 12px;
}

/* ── Hamburger ── */
.gmat-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 2px solid #d0d0d0;
  border-radius: 8px;
  background: none;
  cursor: pointer;
  padding: 10px;
}

.gmat-header__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #1a1a1a;
  border-radius: 2px;
}

/* ============================================================
   MOBILE SLIDE PANEL
   ============================================================ */

.gmat-mobile-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: #ffffff;
  z-index: 1100;
  transition: right 0.3s ease;
  overflow-y: auto;
  font-family: 'Inter', sans-serif;
}

.gmat-mobile-panel.open {
  right: 0;
}

.gmat-mobile-panel__inner {
  padding: 20px 24px 40px;
}

.gmat-mobile-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
}

.gmat-mobile-panel__logo {
  height: 48px;
  width: auto;
}

.gmat-mobile-panel__close {
  background: none;
  border: none;
  font-size: 20px;
  color: #1a1a1a;
  cursor: pointer;
  padding: 4px;
}

.gmat-mobile-panel__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gmat-mobile-panel__link {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  padding: 14px 4px;
  border-bottom: 1px solid #f0f0f0;
  display: block;
}

.gmat-mobile-panel__acc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  padding: 14px 4px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-align: left;
}

.gmat-mobile-panel__acc-content {
  background-color: #fff5f4;
  border-radius: 12px;
  margin: 8px 0 12px 0;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.gmat-mobile-panel__acc-content.open {
  display: flex;
}

.gmat-mobile-panel__acc-content a {
  font-size: 15px;
  font-weight: 400;
  color: #1a1a1a;
  text-decoration: none;
  padding: 14px 20px;
  transition: background-color 0.15s;
}

.gmat-mobile-panel__acc-content a:hover {
  background-color: #fde8e6;
}

.gmat-mobile-panel__acc-btn.open .gmat-header__chevron {
  transform: rotate(180deg);
}

/* ── Overlay ── */
.gmat-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1050;
}

.gmat-overlay.active {
  display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .gmat-header__nav {
    display: none;
  }

  .gmat-header__mobile-right {
    display: flex;
  }

  .gmat-header__inner {
    padding: 0 20px;
  }
}