@charset "UTF-8";

/* ============================================================
   ADMISSIONS.CSS — Genesis International School
   Premium admissions page styles.
   Depends on: index.css (grid, base, animations), Poppins font
   ============================================================ */

/* ============================================================
   0. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand palette (mirrors homepage / about) */
  --brand-navy:    #18213b;
  --brand-ice:     #eef5ff;
  --brand-slate:   #37435b;
  --brand-gold:    #d3a55f;
  --brand-cream:   #f6f2ea;
  --brand-white:   #ffffff;
  --brand-soft:    rgba(255, 255, 255, 0.88);
  --shadow-soft:   0 28px 80px rgba(23, 37, 72, 0.12);

  /* From about palette */
  --genesis-red:   #8B0000;
  --genesis-blue:  #46AADC;
  --soft-slate:    #3B4757;
  --soft-text:     #555555;
  --muted:         #777777;
  --glass:         rgba(255, 255, 255, 0.76);
  --glass-border:  rgba(255, 255, 255, 0.5);

  /* Page-level tokens */
  --adm-section-pad:   100px 0;
  --adm-card-radius:   28px;
  --adm-card-shadow:   0 20px 60px rgba(23, 37, 72, 0.10);
  --adm-card-border:   1px solid rgba(44, 60, 88, 0.08);
  --adm-transition:    0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  --adm-gold-gradient: linear-gradient(135deg, var(--brand-gold) 0%, #f0c98a 100%);
  --adm-navy-gradient: linear-gradient(135deg, #18213b 0%, #0f1628 100%);
}

/* ============================================================
   1. SHARED UTILITY — EYEBROW / SECTION HEADERS
   ============================================================ */

.adm-eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--genesis-red);
  margin-bottom: 12px;
}

.adm-section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brand-navy);
  line-height: 1.1;
  margin-bottom: 16px;
}

.adm-section-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  color: var(--soft-text);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

.adm-centered {
  text-align: center;
}

.adm-centered .adm-section-subtitle {
  margin: 0 auto;
}

/* ============================================================
   2. HERO SECTION  (#adm-hero)
   ============================================================ */

.adm-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(8, 14, 38, 0.55) 0%, rgba(8, 14, 38, 0.82) 100%),
    url('../img/gallery-1-1.jpg') center center / cover no-repeat;
}

.adm-hero__inner {
  position: relative;
  z-index: 2;
  padding: 60px 20px 80px;
  max-width: 820px;
  margin: 0 auto;
}

.adm-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 28px;
}

.adm-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color var(--adm-transition);
}

.adm-hero__breadcrumb a:hover {
  color: var(--brand-gold);
}

.adm-hero__breadcrumb span {
  color: var(--brand-gold);
  opacity: 0.8;
}

.adm-hero h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--brand-white);
  line-height: 1.02;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.adm-hero h1 .gold {
  color: var(--brand-gold);
}

.adm-hero__lead {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 660px;
  margin: 0 auto 40px;
}

.adm-hero__cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Gold line decoration */
.adm-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--brand-gold);
  border-radius: 999px;
}

/* ============================================================
   3. SHARED BUTTON STYLES  (local, complement index.css)
   ============================================================ */

.button-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-navy);
  color: var(--brand-white);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--adm-transition), transform var(--adm-transition), box-shadow var(--adm-transition);
  white-space: nowrap;
}

.button-modern:hover {
  background: #0f1628;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(23, 37, 72, 0.22);
  color: var(--brand-white);
  text-decoration: none;
}

.button-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-white);
  color: var(--brand-navy);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 999px;
  border: 2px solid var(--brand-white);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--adm-transition);
  white-space: nowrap;
}

.button-white:hover {
  background: transparent;
  color: var(--brand-white);
  text-decoration: none;
  transform: translateY(-2px);
}

.button-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brand-white);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--adm-transition);
  white-space: nowrap;
}

.button-outline:hover {
  border-color: var(--brand-white);
  background: rgba(255, 255, 255, 0.12);
  color: var(--brand-white);
  text-decoration: none;
  transform: translateY(-2px);
}

.button-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-gold);
  color: var(--brand-navy);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--adm-transition);
  white-space: nowrap;
}

.button-gold:hover {
  background: #c49450;
  color: var(--brand-navy);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211, 165, 95, 0.35);
}

/* ============================================================
   4. CURRICULUM TABS SECTION  (.adm-tabs-section)
   ============================================================ */

.adm-tabs-section {
  padding: var(--adm-section-pad);
  background: linear-gradient(180deg, #f9fbff 0%, #f3f7fb 100%);
}

.adm-tabs-section .container {
  max-width: 900px;
}

.adm-tab-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(24, 33, 59, 0.07);
  border-radius: 999px;
  padding: 6px;
  gap: 4px;
  margin-bottom: 40px;
}

.adm-tab-btn {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-navy);
  background: transparent;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 11px 36px;
  cursor: pointer;
  transition: all var(--adm-transition);
  user-select: none;
}

.adm-tab-btn.active {
  background: var(--brand-navy);
  color: var(--brand-white);
  box-shadow: 0 8px 24px rgba(23, 37, 72, 0.2);
}

.adm-tab-btn:not(.active):hover {
  border-color: var(--brand-navy);
}

.adm-tab-content {
  position: relative;
}

.adm-tab-pane {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.36s ease, transform 0.36s ease;
}

.adm-tab-pane.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
  animation: tabFadeIn 0.38s ease forwards;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.adm-tab-text h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--brand-navy);
  margin-bottom: 18px;
  line-height: 1.2;
}

.adm-tab-text p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: var(--soft-text);
  line-height: 1.85;
  margin-bottom: 16px;
}

.adm-tab-badge-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.adm-tab-badge-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--brand-ice);
  border: 1px solid rgba(70, 170, 220, 0.25);
  border-radius: 999px;
  padding: 7px 18px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-navy);
}

.adm-tab-badge-list li i {
  color: var(--brand-gold);
  font-size: 12px;
}

.adm-tab-image-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--adm-card-shadow);
  aspect-ratio: 4/3;
  position: relative;
}

.adm-tab-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.adm-tab-image-frame:hover img {
  transform: scale(1.04);
}

.adm-tab-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(23, 37, 72, 0.12);
}

.adm-tab-image-badge .badge-icon {
  width: 44px;
  height: 44px;
  background: var(--adm-gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.adm-tab-image-badge .badge-icon i {
  color: var(--brand-navy);
  font-size: 18px;
}

.adm-tab-image-badge span {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.4;
}

.adm-tab-image-badge small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
}

@media (max-width: 768px) {
  .adm-tab-pane.active {
    grid-template-columns: 1fr;
  }
  .adm-tab-image-frame {
    aspect-ratio: 16/9;
  }
}

/* ============================================================
   5. ADMISSION PROCESS SECTION  (.adm-process-section)
   ============================================================ */

.adm-process-section {
  padding: var(--adm-section-pad);
  background: var(--brand-white);
  position: relative;
  overflow: hidden;
}

.adm-process-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 165, 95, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.adm-steps-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}

/* Horizontal connector line on desktop */
.adm-steps-track::before {
  content: "";
  position: absolute;
  top: 44px;
  left: calc(12.5%);
  width: calc(75%);
  height: 2px;
  background: linear-gradient(90deg, var(--brand-gold) 0%, rgba(211, 165, 95, 0.3) 100%);
  z-index: 0;
}

.adm-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px 24px;
}

.adm-step__number {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--brand-white);
  border: 3px solid var(--brand-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  box-shadow: 0 8px 28px rgba(211, 165, 95, 0.22);
  transition: transform var(--adm-transition), box-shadow var(--adm-transition);
}

.adm-step__number .step-num {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--brand-gold);
  line-height: 1;
  text-transform: uppercase;
}

.adm-step__number i {
  font-size: 22px;
  color: var(--brand-navy);
  margin-top: 4px;
}

.adm-step__card {
  background: var(--brand-white);
  border: var(--adm-card-border);
  border-radius: 24px;
  padding: 28px 20px;
  box-shadow: var(--adm-card-shadow);
  width: 100%;
  transition: transform var(--adm-transition), box-shadow var(--adm-transition);
}

.adm-step:hover .adm-step__number {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(211, 165, 95, 0.32);
}

.adm-step:hover .adm-step__card {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(23, 37, 72, 0.15);
}

.adm-step__card h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--brand-navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.adm-step__card p {
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
  color: var(--soft-text);
  line-height: 1.7;
  margin: 0;
}

/* Vertical timeline — mobile */
@media (max-width: 991px) {
  .adm-steps-track {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .adm-steps-track::before {
    display: none;
  }
}

@media (max-width: 575px) {
  .adm-steps-track {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
  }

  .adm-steps-track::before {
    display: block;
    top: 44px;
    left: 43px;
    width: 2px;
    height: calc(100% - 88px);
    background: linear-gradient(180deg, var(--brand-gold) 0%, rgba(211, 165, 95, 0.3) 100%);
  }

  .adm-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    padding: 0 0 28px;
    gap: 20px;
  }

  .adm-step__number {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    margin-bottom: 0;
  }

  .adm-step__card {
    flex: 1;
  }
}

/* ============================================================
   6. AGE GUIDELINES SECTION  (.adm-age-section)
   ============================================================ */

.adm-age-section {
  padding: var(--adm-section-pad);
  background: linear-gradient(180deg, #f3f7fb 0%, var(--brand-cream) 100%);
}

.adm-age-wrap {
  max-width: 720px;
  margin: 48px auto 0;
}

.adm-age-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 32px;
  font-style: italic;
}

/* Premium table */
.adm-age-table-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--adm-card-shadow);
  border: var(--adm-card-border);
}

.adm-age-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Poppins", sans-serif;
}

.adm-age-table thead tr {
  background: var(--brand-navy);
}

.adm-age-table thead th {
  padding: 20px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-white);
  text-align: left;
}

.adm-age-table tbody tr {
  background: var(--brand-white);
  transition: background var(--adm-transition);
}

.adm-age-table tbody tr:nth-child(even) {
  background: var(--brand-ice);
}

.adm-age-table tbody tr:hover {
  background: rgba(211, 165, 95, 0.08);
}

.adm-age-table tbody td {
  padding: 18px 32px;
  font-size: 15px;
  color: var(--soft-text);
  border-bottom: 1px solid rgba(44, 60, 88, 0.05);
}

.adm-age-table tbody td:first-child {
  font-weight: 600;
  color: var(--brand-navy);
}

.adm-age-table tbody tr:last-child td {
  border-bottom: none;
}

/* Mobile: stacked cards */
@media (max-width: 575px) {
  .adm-age-table-wrap {
    display: none;
  }

  .adm-age-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
  }
}

@media (min-width: 576px) {
  .adm-age-cards {
    display: none;
  }
}

.adm-age-card-item {
  background: var(--brand-white);
  border-radius: 16px;
  border: var(--adm-card-border);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 6px 20px rgba(23, 37, 72, 0.07);
}

.adm-age-card-item .ac-class {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-navy);
}

.adm-age-card-item .ac-age {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--soft-text);
}

/* ============================================================
   7. DOCUMENTS REQUIRED SECTION  (.adm-docs-section)
   ============================================================ */

.adm-docs-section {
  padding: var(--adm-section-pad);
  background: var(--brand-white);
}

.adm-docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.adm-doc-card {
  background: var(--brand-white);
  border-radius: var(--adm-card-radius);
  border: var(--adm-card-border);
  box-shadow: var(--adm-card-shadow);
  padding: 40px 30px 36px;
  text-align: center;
  transition: transform var(--adm-transition), box-shadow var(--adm-transition);
  position: relative;
  overflow: hidden;
}

.adm-doc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--adm-gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--adm-transition);
}

.adm-doc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 88px rgba(23, 37, 72, 0.15);
}

.adm-doc-card:hover::before {
  transform: scaleX(1);
}

.adm-doc-icon-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(211, 165, 95, 0.18) 0%, rgba(211, 165, 95, 0.06) 100%);
  border: 2px solid rgba(211, 165, 95, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: background var(--adm-transition), transform var(--adm-transition);
}

.adm-doc-icon-wrap i {
  font-size: 32px;
  color: var(--brand-gold);
  transition: transform var(--adm-transition);
}

.adm-doc-card:hover .adm-doc-icon-wrap {
  background: var(--adm-gold-gradient);
  transform: scale(1.06);
}

.adm-doc-card:hover .adm-doc-icon-wrap i {
  color: var(--brand-navy);
  transform: scale(1.1);
}

.adm-doc-card h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--brand-navy);
  margin-bottom: 12px;
}

.adm-doc-card p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--soft-text);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 991px) {
  .adm-docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .adm-docs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================================
   8. SCHOOL BROCHURES SECTION  (.adm-brochures-section)
   ============================================================ */

.adm-brochures-section {
  padding: var(--adm-section-pad);
  background: linear-gradient(180deg, var(--brand-cream) 0%, #f3f7fb 100%);
}

.adm-brochures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.adm-brochure-card {
  background: var(--brand-white);
  border-radius: var(--adm-card-radius);
  border: var(--adm-card-border);
  box-shadow: var(--adm-card-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--adm-transition), box-shadow var(--adm-transition);
}

.adm-brochure-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 88px rgba(23, 37, 72, 0.15);
}

.adm-brochure-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.adm-brochure-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.adm-brochure-card:hover .adm-brochure-img-wrap img {
  transform: scale(1.06);
}

/* Coming Soon overlay */
.adm-brochure-img-wrap .coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 33, 59, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-badge {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-navy);
  background: var(--brand-gold);
  padding: 7px 18px;
  border-radius: 999px;
}

.adm-brochure-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.adm-brochure-campus {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 6px;
}

.adm-brochure-body h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.adm-brochure-body p {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--soft-text);
  line-height: 1.7;
  margin: 0 0 20px;
  flex: 1;
}

.adm-brochure-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-ice);
  color: var(--brand-navy);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(70, 170, 220, 0.2);
  transition: all var(--adm-transition);
  align-self: flex-start;
}

.adm-brochure-btn i {
  color: var(--genesis-red);
  font-size: 14px;
}

.adm-brochure-btn:hover {
  background: var(--brand-navy);
  color: var(--brand-white);
  border-color: var(--brand-navy);
  text-decoration: none;
}

.adm-brochure-btn:hover i {
  color: var(--brand-gold);
}

.adm-brochure-card.is-coming-soon .adm-brochure-btn {
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 991px) {
  .adm-brochures-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .adm-brochures-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================================
   9. WHY CHOOSE GENESIS  (.adm-why-section)
   ============================================================ */

.adm-why-section {
  padding: var(--adm-section-pad);
  background: linear-gradient(135deg, var(--brand-navy) 0%, #0f1628 60%, #1a2744 100%);
  position: relative;
  overflow: hidden;
}

/* Radial glow decoration */
.adm-why-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 165, 95, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.adm-why-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(70, 170, 220, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.adm-why-section .adm-section-title {
  color: var(--brand-white);
}

.adm-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
  position: relative;
  z-index: 1;
}

.adm-why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color var(--adm-transition), transform var(--adm-transition), background var(--adm-transition), box-shadow var(--adm-transition);
  backdrop-filter: blur(8px);
}

.adm-why-card:hover {
  border-color: var(--brand-gold);
  transform: translateY(-6px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.adm-why-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(211, 165, 95, 0.22) 0%, rgba(211, 165, 95, 0.08) 100%);
  border: 2px solid rgba(211, 165, 95, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: background var(--adm-transition), transform var(--adm-transition);
}

.adm-why-icon i {
  font-size: 30px;
  color: var(--brand-gold);
  transition: transform var(--adm-transition);
}

.adm-why-card:hover .adm-why-icon {
  background: var(--adm-gold-gradient);
  transform: scale(1.08);
}

.adm-why-card:hover .adm-why-icon i {
  color: var(--brand-navy);
  transform: scale(1.12);
}

.adm-why-card h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-white);
  margin-bottom: 10px;
}

.adm-why-card p {
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 991px) {
  .adm-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .adm-why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ============================================================
   10. FAQ ACCORDION  (.adm-faq-section)
   ============================================================ */

.adm-faq-section {
  padding: var(--adm-section-pad);
  background: linear-gradient(180deg, #f3f7fb 0%, var(--brand-white) 100%);
}

.adm-faq-list {
  max-width: 820px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--brand-white);
  border: var(--adm-card-border);
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(23, 37, 72, 0.07);
  overflow: hidden;
  transition: box-shadow var(--adm-transition);
}

.faq-item.open {
  box-shadow: 0 16px 52px rgba(23, 37, 72, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  transition: background var(--adm-transition);
}

.faq-question:hover {
  background: rgba(211, 165, 95, 0.04);
}

.faq-question-text {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.4;
}

.faq-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-ice);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--adm-transition), transform var(--adm-transition);
}

.faq-arrow i {
  font-size: 14px;
  color: var(--brand-navy);
  transition: transform var(--adm-transition);
}

.faq-item.open .faq-arrow {
  background: var(--brand-gold);
}

.faq-item.open .faq-arrow i {
  color: var(--brand-navy);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  border-top: 1px solid rgba(44, 60, 88, 0.06);
}

.faq-answer-inner p {
  font-family: "Poppins", sans-serif;
  font-size: 14.5px;
  color: var(--soft-text);
  line-height: 1.8;
  margin: 18px 0 0;
}

.faq-answer-inner ul {
  margin: 14px 0 0 0;
  padding-left: 20px;
}

.faq-answer-inner ul li {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--soft-text);
  line-height: 1.75;
  margin-bottom: 6px;
}

/* ============================================================
   11. ENQUIRY FORM SECTION  (.adm-enquiry-section)
   ============================================================ */

.adm-enquiry-section {
  padding: var(--adm-section-pad);
  background:
    radial-gradient(circle at 10% 50%, rgba(211, 165, 95, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(70, 170, 220, 0.06) 0%, transparent 40%),
    var(--brand-cream);
}

.adm-enquiry-wrap {
  max-width: 820px;
  margin: 52px auto 0;
  background: var(--brand-white);
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
  border: var(--adm-card-border);
  padding: 52px 48px;
}

.adm-enquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.adm-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.adm-form-group.full-width {
  grid-column: 1 / -1;
}

.adm-form-group label {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft-slate);
}

.adm-form-group input,
.adm-form-group select,
.adm-form-group textarea {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--brand-navy);
  background: #f8fafd;
  border: 1.5px solid rgba(44, 60, 88, 0.13);
  border-radius: 14px;
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--adm-transition), box-shadow var(--adm-transition);
  appearance: none;
  -webkit-appearance: none;
}

.adm-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2337435b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 42px;
}

.adm-form-group input:focus,
.adm-form-group select:focus,
.adm-form-group textarea:focus {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(211, 165, 95, 0.15);
  background: var(--brand-white);
}

.adm-form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.adm-form-submit-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
}

@media (max-width: 767px) {
  .adm-enquiry-wrap {
    padding: 36px 24px;
  }

  .adm-enquiry-form {
    grid-template-columns: 1fr;
  }

  .adm-form-group.full-width {
    grid-column: 1;
  }
}

/* ============================================================
   12. CALL TO ACTION SECTION  (.adm-cta-section)
   ============================================================ */

.adm-cta-section {
  padding: 120px 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(70, 170, 220, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(211, 165, 95, 0.12) 0%, transparent 40%),
              linear-gradient(135deg, var(--brand-navy) 0%, #0f1628 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Floating ring decoration */
.adm-cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(211, 165, 95, 0.15);
  pointer-events: none;
  animation: ctaFloat 8s ease-in-out infinite;
}

.adm-cta-ring:nth-child(1) {
  width: 400px;
  height: 400px;
  top: -180px;
  left: -180px;
  animation-delay: 0s;
}

.adm-cta-ring:nth-child(2) {
  width: 280px;
  height: 280px;
  bottom: -120px;
  right: -100px;
  border-color: rgba(70, 170, 220, 0.12);
  animation-delay: -4s;
}

@keyframes ctaFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(6deg); }
}

.adm-cta-section .adm-cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.adm-cta-section h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--brand-white);
  line-height: 1.12;
  margin-bottom: 20px;
}

.adm-cta-section h2 .gold {
  color: var(--brand-gold);
}

.adm-cta-section p {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 44px;
}

.adm-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   13. ANIMATION DELAY UTILITIES (stagger)
   ============================================================ */

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ============================================================
   14. RESPONSIVE GLOBAL OVERRIDES
   ============================================================ */

@media (max-width: 991px) {
  :root {
    --adm-section-pad: 72px 0;
  }
}

@media (max-width: 575px) {
  :root {
    --adm-section-pad: 56px 0;
  }

  .adm-hero {
    min-height: 60vh;
  }

  .adm-hero h1 {
    font-size: 2.6rem;
  }

  .adm-hero__cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .adm-hero__cta-row .button-modern,
  .adm-hero__cta-row .button-outline {
    justify-content: center;
  }

  .adm-tab-switcher {
    width: 100%;
  }

  .adm-tab-btn {
    flex: 1;
    text-align: center;
  }
}
