*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #0a0a0a; color: #f0ece4; line-height: 1.6; }
a { text-decoration: none; color: inherit; }

/* GOLD SYSTEM & PALETTE */
:root {
  --gold: #C9A84C;
  --gold-light: #e8c96a;
  --gold-dim: #8a6e2f;
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --white: #f0ece4;
  --muted: #8a8580;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 2rem;
  background: rgba(10,10,10,0.92);
  border-bottom: 0.5px solid rgba(201,168,76,0.2);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  letter-spacing: 4px;
  color: var(--white);
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 4px; }
.nav-cta {
  background: var(--gold); color: var(--black);
  padding: 9px 20px; border-radius: 4px;
  font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.hero-bg-line {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  border-left: 0.5px solid rgba(201,168,76,0.12);
  pointer-events: none;
}
.hero-circle {
  position: absolute;
  top: 50%; right: 8%;
  transform: translateY(-50%);
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 0.5px solid rgba(201,168,76,0.15);
  pointer-events: none;
}
.hero-circle-2 {
  position: absolute;
  top: 50%; right: 8%;
  transform: translateY(-50%);
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 0.5px solid rgba(201,168,76,0.07);
  pointer-events: none;
}
.hero-inner { max-width: 680px; margin: 0 auto; width: 100%; position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 32px; height: 0.5px;
  background: var(--gold);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 8vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 15px; color: var(--muted);
  max-width: 440px; margin-bottom: 2rem; line-height: 1.7;
}
.hero-date {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 0.5px solid rgba(201,168,76,0.3);
  color: var(--gold); font-size: 12px; letter-spacing: 1px;
  padding: 8px 16px; border-radius: 4px; margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-gold {
  background: var(--gold); color: var(--black);
  padding: 14px 28px; border-radius: 4px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent; color: var(--white);
  padding: 14px 28px; border-radius: 4px;
  font-size: 13px; letter-spacing: 0.5px;
  border: 0.5px solid rgba(240,236,228,0.25);
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 15px;
  color: var(--muted); letter-spacing: 0.5px;
}
.hero-tagline span { color: var(--gold); }

/* PILLARS */
.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid rgba(201,168,76,0.15);
  border-bottom: 0.5px solid rgba(201,168,76,0.15);
}
.pillar {
  padding: 2rem 1.5rem; text-align: center;
  border-right: 0.5px solid rgba(201,168,76,0.15);
}
.pillar:last-child { border-right: none; }
.pillar-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600;
  color: var(--gold); display: block; margin-bottom: 4px;
}
.pillar-sub { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

/* SECTIONS */
.section { padding: 5rem 2rem; max-width: 800px; margin: 0 auto; }
.section-eyebrow {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before { content: ''; display: block; width: 24px; height: 0.5px; background: var(--gold); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 5vw, 42px); font-weight: 600;
  color: var(--white); margin-bottom: 0.5rem; line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { font-size: 14px; color: var(--muted); max-width: 520px; line-height: 1.7; margin-bottom: 2.5rem; }

/* DURATION + FORMAT */
.info-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem;
}
.info-box {
  background: var(--black-3);
  border: 0.5px solid rgba(201,168,76,0.2);
  border-radius: 8px; padding: 1.5rem;
}
.info-box-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
.info-box-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 0.5rem;
}
.info-box ul { list-style: none; }
.info-box ul li {
  font-size: 13px; color: var(--muted); padding: 4px 0;
  display: flex; align-items: flex-start; gap: 8px;
}
.info-box ul li::before { content: '✓'; color: var(--gold); font-size: 12px; margin-top: 2px; flex-shrink: 0; }

/* THREE COLUMNS */
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
.col-card {
  background: var(--black-3);
  border: 0.5px solid rgba(201,168,76,0.15);
  border-radius: 8px; padding: 1.25rem;
}
.col-card-title {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; font-weight: 500;
}
.col-card ul { list-style: none; }
.col-card ul li {
  font-size: 13px; color: var(--muted); padding: 5px 0;
  border-bottom: 0.5px solid rgba(201,168,76,0.08);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.4;
}
.col-card ul li:last-child { border-bottom: none; }
.col-card ul li .li-icon { color: var(--gold); flex-shrink: 0; font-size: 12px; margin-top: 2px; }

/* LEARN LIST */
.learn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 2rem; }
.learn-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--black-3);
  border: 0.5px solid rgba(201,168,76,0.12);
  border-radius: 8px; padding: 1rem;
}
.learn-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600; color: rgba(201,168,76,0.25);
  line-height: 1; flex-shrink: 0; width: 28px;
}
.learn-text { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* ENROLL CTA */
.enroll-section {
  background: var(--black-2);
  border-top: 0.5px solid rgba(201,168,76,0.15);
  border-bottom: 0.5px solid rgba(201,168,76,0.15);
  padding: 4rem 2rem;
  text-align: center;
}
.enroll-inner { max-width: 560px; margin: 0 auto; }
.enroll-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 5vw, 40px); font-weight: 600;
  color: var(--white); margin-bottom: 0.75rem;
}
.enroll-title em { font-style: italic; color: var(--gold); }
.enroll-sub { font-size: 14px; color: var(--muted); margin-bottom: 2rem; }
.payment-card {
  background: var(--black-3);
  border: 0.5px solid rgba(201,168,76,0.25);
  border-radius: 8px; padding: 1.5rem;
  margin-bottom: 1.5rem; text-align: left;
}
.payment-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.payment-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 0.5px solid rgba(201,168,76,0.08);
  font-size: 13px;
}
.payment-row:last-child { border-bottom: none; }
.payment-key { color: var(--muted); }
.payment-val { color: var(--white); font-weight: 500; }
.enroll-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.limited-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 0.5px solid rgba(201,168,76,0.3);
  color: var(--gold); font-size: 11px; letter-spacing: 1px;
  padding: 8px 16px; border-radius: 4px; margin-bottom: 1.5rem;
}

/* FOOTER */
footer {
  padding: 3rem 2rem 2rem;
  border-top: 0.5px solid rgba(201,168,76,0.12);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; max-width: 800px; margin: 0 auto;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600; color: var(--white); letter-spacing: 3px;
}
.footer-brand span { color: var(--gold); }
.footer-tagline { font-size: 11px; color: var(--muted); font-style: italic; margin-top: 4px; }
.footer-right { text-align: right; }
.footer-contact { font-size: 13px; color: var(--white); margin-bottom: 4px; }
.footer-built { font-size: 10px; color: var(--gold-dim); letter-spacing: 0.5px; }
.divider { height: 0.5px; background: rgba(201,168,76,0.12); margin: 0; }

/* STORE TABS */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
  border-bottom: 0.5px solid rgba(201,168,76,0.15);
}
.product-tab {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 10px 12px;
  position: relative;
  transition: color 0.3s;
  letter-spacing: 1px;
}
.product-tab:hover {
  color: var(--white);
}
.product-tab.active {
  color: var(--gold);
  font-weight: 600;
}
.product-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* STORE CARDS */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.store-card {
  background: var(--black-3);
  border: 0.5px solid rgba(201,168,76,0.15);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.store-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.store-card-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 110%;
  overflow: hidden;
  background: #111;
  border-bottom: 0.5px solid rgba(201,168,76,0.1);
}
.store-card-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.store-card:hover .store-card-img {
  transform: scale(1.04);
}
.store-card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.store-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.store-card-price {
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.store-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: rgba(201,168,76,0.06);
  color: var(--gold);
  border: 0.5px solid rgba(201,168,76,0.3);
  padding: 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.store-card-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* COURSE VIDEO CARDS */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.video-card {
  background: var(--black-3);
  border: 0.5px solid rgba(201,168,76,0.15);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.4);
}
.video-iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  background: #111;
}
.video-iframe-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-placeholder {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(20,20,20,0.95) 0%, rgba(10,10,10,0.98) 100%);
  color: var(--muted);
  text-align: center;
  padding: 1rem;
}
.video-placeholder-icon {
  font-size: 28px;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
}
.video-card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.video-card-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}
.video-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.video-card-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.video-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--gold-dim);
  border-top: 0.5px solid rgba(201,168,76,0.1);
  padding-top: 0.75rem;
}

/* ABOUT PAGE DETAILS */
.about-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 0.5px solid rgba(201,168,76,0.2);
}
.about-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.92) 100%);
  z-index: 1;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 650px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: start;
}
.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 3rem 0 1rem 0;
}
.about-gallery-img-wrapper {
  position: relative;
  padding-top: 130%;
  border-radius: 6px;
  overflow: hidden;
  border: 0.5px solid rgba(201,168,76,0.15);
}
.about-gallery-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-gallery-img-wrapper:hover .about-gallery-img {
  transform: scale(1.05);
}

/* FLOATING WHATSAPP BUTTON */
.float-wa {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #C9A84C 0%, #25d366 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(201,168,76,0.25);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse-gold 2s infinite;
}
.float-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}
.float-wa svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
.float-wa .tooltip {
  position: absolute;
  right: 70px;
  background: rgba(17, 17, 17, 0.95);
  color: var(--white);
  border: 0.5px solid rgba(201,168,76,0.3);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.float-wa:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(201, 168, 76, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }
}

/* MOBILE NAV HAMBURGER MENU BUTTON */
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  transition: color 0.2s;
}
.menu-btn:hover {
  color: var(--gold);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  nav { padding: 1rem 1.5rem; }
  .menu-btn { display: block; }
  
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    border-bottom: 0.5px solid rgba(201,168,76,0.2);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
    align-items: center;
    transform: translateY(-15px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    backdrop-filter: blur(8px);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .three-col { grid-template-columns: 1fr; }
  .info-row { grid-template-columns: 1fr; }
  .learn-grid { grid-template-columns: 1fr; }
  
  .hero { padding: 7rem 1.25rem 4rem; }
  .section { padding: 3.5rem 1.25rem; }
  
  footer { flex-direction: column; text-align: center; }
  .footer-right { text-align: center; }
  
  .product-tabs { gap: 1.5rem; }
  .product-tab { font-size: 18px; }
  
  .float-wa {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
  .float-wa svg {
    width: 24px;
    height: 24px;
  }
  .float-wa .tooltip {
    display: none; /* Hide tooltips on mobile */
  }
}

/* NEW FIREBASE AUTH AND ADMIN DASHBOARD UI STYLES */
.auth-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}
.auth-card {
  background: var(--black-3);
  border: 0.5px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  padding: 2.2rem;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  color: var(--white);
}
.auth-pending-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.auth-tabs {
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  margin-bottom: 2rem;
}
.auth-tab {
  background: none;
  border: none;
  color: var(--muted);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  padding-bottom: 0.5rem;
  cursor: pointer;
  transition: color 0.3s;
  position: relative;
}
.auth-tab:hover {
  color: var(--white);
}
.auth-tab.active {
  color: var(--gold);
  font-weight: 600;
}
.auth-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
}
.input-group {
  margin-bottom: 1.25rem;
  text-align: left;
}
.input-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.input-group input, .input-group select, .input-group textarea {
  background: var(--black-2);
  border: 0.5px solid rgba(201, 168, 76, 0.25);
  color: var(--white);
  border-radius: 6px;
  padding: 10px 14px;
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.15);
}
.error-box {
  background: rgba(255, 80, 80, 0.08);
  border: 0.5px solid rgba(255, 80, 80, 0.3);
  color: #ff8585;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 1.25rem;
  line-height: 1.4;
  text-align: left;
}
.success-box {
  background: rgba(201, 168, 76, 0.08);
  border: 0.5px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 1.25rem;
  line-height: 1.4;
  text-align: left;
}
.auth-submit-btn {
  width: 100%;
  margin-top: 1rem;
  justify-content: center;
}

/* Spinner / Loader Styles */
.spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}
.spinner-dot {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(201, 168, 76, 0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s infinite linear;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Student Banner styling */
.student-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--black-3);
  border: 0.5px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.student-info {
  display: flex;
  flex-direction: column;
}
.student-info span {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.student-info strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--white);
}
.banner-btn {
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Admin Styling Dashboard Row Grid */
.admin-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.admin-badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
  display: inline-block;
}
.admin-badge.approved {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-light);
  border: 0.5px solid rgba(201, 168, 76, 0.3);
}
.admin-badge.pending {
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
}
.admin-course-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1rem 0;
  align-items: center;
}
.admin-course-checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  cursor: pointer;
  color: var(--muted);
  user-select: none;
}
.admin-course-checkbox input {
  accent-color: var(--gold);
}
.admin-course-checkbox:hover {
  color: var(--white);
}
.admin-action-btn-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.admin-compact-btn {
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.5px;
  border-radius: 4px;
}

