/* ============================================================
   Frameboxx Andheri – Landing Page Styles
   ============================================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #ffd200;
  --dark: #1a1a1a;
  --darker: #0d0d0d;
  --gold: #ffd200;
  --gold-dark: #cc9900;
  --white: #ffffff;
  --light: #fffde7;
  --gray: #444444;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: var(--dark);
}
.section-title span {
  color: var(--red);
}
.section-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 40px;
  font-size: 1rem;
}
.divider {
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 12px auto 30px;
  border-radius: 2px;
}
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}
.btn-red {
  background: var(--gold);
  color: var(--dark);
}
.btn-red:hover {
  background: #e6be00;
  transform: translateY(-2px);
}
.btn-white {
  background: var(--gold);
  color: var(--dark);
}
.btn-white:hover {
  background: #e6be00;
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: #e6be00;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ============================================================
   PROFESSIONAL NAVBAR
   ============================================================ */

/* ---- Top Bar ---- */
.topbar {
  background: var(--gold);
  padding: 7px 0;
  font-size: 0.76rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--dark);
  font-weight: 600;
}
.topbar-item svg {
  opacity: 0.8;
  flex-shrink: 0;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-badge {
  background: var(--dark);
  color: var(--gold);
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
}
.topbar-socials {
  display: flex;
  gap: 6px;
}
.tsocial {
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.15);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  transition: var(--transition);
}
.tsocial:hover {
  background: var(--dark);
  color: var(--gold);
}

/* ---- Main Navbar ---- */
#sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}
#sticky-header.scrolled .navbar-main {
  padding: 10px 0;
  background: rgba(10, 10, 20, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
#sticky-header.scrolled .topbar {
  display: none;
}

.navbar-main {
  background: rgba(10, 10, 20, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 0;
  transition: var(--transition);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ---- Logo ---- */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(255, 210, 0, 0.45);
  flex-shrink: 0;
}
.logo-f {
  color: var(--dark);
}
.logo-b {
  color: var(--red);
}
.logo-text {
  line-height: 1.25;
}
.logo-text strong {
  display: block;
  color: var(--white);
  font-size: 1.15rem;
  letter-spacing: 0.3px;
}
.logo-text em {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.3px;
}

/* ---- Nav Links ---- */
#main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition:
    color 0.25s,
    background 0.25s;
  position: relative;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}
.nav-link:hover,
.nav-link.active-nav {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}
.nav-link:hover::after,
.nav-link.active-nav::after {
  transform: scaleX(1);
}
.drop-arrow {
  transition: transform 0.25s;
  flex-shrink: 0;
}

/* ---- Courses Dropdown ---- */
.nav-dropdown-wrap {
  position: relative;
}
.nav-dropdown-wrap:hover .drop-arrow {
  transform: rotate(180deg);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
  width: 560px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  z-index: 200;
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #1a1a1a;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  margin-bottom: 16px;
}
.drop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.drop-item:hover {
  background: rgba(255, 255, 255, 0.06);
}
.drop-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.drop-item strong {
  display: block;
  color: var(--white);
  font-size: 0.8rem;
}
.drop-item em {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  font-style: normal;
}
.dropdown-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
  text-align: center;
}

/* ---- Navbar CTA Buttons ---- */
.navbar-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-btn-outline {
  display: inline-block;
  padding: 9px 18px;
  border: 1.5px solid var(--gold);
  border-radius: 7px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}
.nav-btn-solid {
  display: inline-block;
  padding: 9px 20px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(255, 210, 0, 0.4);
}
.nav-btn-solid:hover {
  background: #e6be00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 210, 0, 0.5);
}

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Mobile Drawer ---- */
.mob-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
  flex-shrink: 0;
  z-index: 10;
}
.mob-close:hover {
  background: var(--red);
  border-color: var(--red);
}

#mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #0d0d0d;
  z-index: 1100;
  padding: 30px 24px;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.77, 0, 0.175, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#mobile-nav-drawer.open {
  right: 0;
}
#mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#mob-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.mob-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.mob-logo .logo-text strong {
  font-size: 1.05rem;
}
.mob-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mob-links a {
  display: block;
  padding: 11px 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
}
.mob-links a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}
.mob-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mob-contact {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.mob-contact p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  margin-bottom: 6px;
}

/* ---- Banner top offset ---- */
#banner-slider {
  margin-top: 112px;
} /* topbar ~35px + navbar ~60px + buffer */
#sticky-header.scrolled ~ #banner-slider,
#sticky-header.scrolled + * {
  /* no extra margin when topbar is hidden */
}

@media (max-width: 1024px) {
  .topbar-left .topbar-item:nth-child(3) {
    display: none;
  }
  #main-nav {
    display: none;
  }
  .navbar-cta .nav-btn-outline {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .logo-img {
    height: 44px;
  }
  #banner-slider {
    margin-top: 108px;
  }
}
@media (max-width: 640px) {
  .topbar {
    display: none;
  }
  #banner-slider {
    margin-top: 62px;
  }
  .navbar-main {
    padding: 20px 0;
  }
  .navbar-inner {
    justify-content: flex-start;
    gap: 0;
  }
  .logo-img {
    height: 38px;
    max-width: 140px;
    object-fit: contain;
    object-position: left center;
  }
  .navbar-cta {
    display: none;
  }
  .hamburger {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 8px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-left: auto;
  }
}

/* keep old .logo-text for about section float card etc */
.about-float-card .logo-text strong {
  color: var(--dark);
  font-size: 0.9rem;
}

/* ---------- Banner Slider ---------- */
#banner-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  margin-top: 70px; /* header height */
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 6s ease;
}
.slide.active .slide-img {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10, 10, 20, 0.82) 0%,
    rgba(10, 10, 20, 0.55) 55%,
    rgba(10, 10, 20, 0.25) 100%
  );
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 6% 80px;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease 0.35s,
    transform 0.7s ease 0.35s;
}
.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-badge {
  display: inline-block;
  background: var(--red);
  color: var(--dark);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.slide-title {
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.slide-title span {
  color: var(--gold);
}

.slide-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 34px;
  max-width: 600px;
  line-height: 1.6;
}

.slide-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-50%) scale(1.08);
}
.slider-prev {
  left: 24px;
}
.slider-next {
  right: 24px;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}
.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Slider auto-play progress bar */
.slider-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--red);
  z-index: 11;
  width: 0;
  transition: width linear;
}

/* Slide counter label */
.slide-counter {
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
  z-index: 10;
}

@media (max-width: 900px) {
  #banner-slider {
    height: 75vh;
    min-height: 480px;
  }
  .slide-title {
    font-size: 2.2rem;
  }
  .slide-content {
    padding: 0 5% 80px;
  }
}
@media (max-width: 600px) {
  #banner-slider {
    height: 88vh;
    min-height: 420px;
  }
  .slide-title {
    font-size: 1.7rem;
  }
  .slide-sub {
    font-size: 0.9rem;
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .slider-prev {
    left: 12px;
  }
  .slider-next {
    right: 12px;
  }
}

/* ---------- Hero ---------- */
#hero {
  padding-top: 80px;
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--darker) 0%,
    #1a1a1a 60%,
    #0d0d0d 100%
  );
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 60px 0;
}
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-title span {
  color: var(--gold);
}
.hero-sub {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-style: italic;
}
.hero-desc {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
  font-size: 1rem;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.hstat {
  text-align: center;
}
.hstat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}
.hstat-lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Form Card */
.hero-form-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 36px;
}
.hero-form-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 6px;
  text-align: center;
}
.hero-form-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  margin-bottom: 6px;
  font-weight: 600;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
  appearance: none;
}
.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.12);
}
.form-group select option {
  background: var(--dark);
}
.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.form-check input {
  width: auto;
  margin-top: 3px;
  accent-color: var(--red);
}
.form-check label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}
.otp-row {
  display: flex;
  gap: 10px;
}
.otp-row input {
  flex: 1;
}
.otp-row .btn {
  white-space: nowrap;
  padding: 12px 16px;
  font-size: 0.82rem;
}

/* ---------- Trust Bar ---------- */
#trust-bar {
  background: var(--gold);
  padding: 30px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  gap: 24px;
  padding-right: 72px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  color: var(--dark);
  min-width: 0;
  text-align: center;
}
.trust-icon {
  display: none;
}
.trust-num {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  white-space: nowrap;
}
.trust-lbl {
  font-size: 0.75rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  line-height: 1.35;
  max-width: 150px;
}

/* ---------- Courses ---------- */
#courses {
  padding: 80px 0;
  background: var(--light);
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
}
.course-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.28s,
    box-shadow 0.28s;
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 36px rgba(217, 28, 34, 0.16);
}
.course-img-wrap {
  position: relative;
  overflow: hidden;
}
.course-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.course-card:hover .course-img {
  transform: scale(1.07);
}
.course-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 20px;
}
.course-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.course-name {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}
.course-desc {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 16px;
  flex: 1;
}
.course-btns {
  display: flex;
  gap: 8px;
}
.course-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 9px 6px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
  cursor: pointer;
  border: none;
}
.course-btn:hover {
  transform: translateY(-2px);
}
.course-btn-call {
  background: var(--gold);
  color: var(--dark);
}
.course-btn-call:hover {
  background: #e6be00;
}
.course-btn-enquire {
  background: var(--gold);
  color: var(--dark);
}
.course-btn-enquire:hover {
  background: #e6be00;
}

/* ---------- Why Frameboxx ---------- */
#why {
  padding: 80px 0;
  background: var(--white);
}
.section-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.section-label::before,
.section-label::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold-dark);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.why-card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 32px 24px 28px;
  text-align: left;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.why-card:hover::before,
.why-card--active::before {
  transform: scaleX(1);
}
.why-card:hover {
  border-color: rgba(255, 210, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
.why-card--active {
  border-color: rgba(255, 210, 0, 0.4);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}
.why-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 210, 0, 0.14);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 22px;
}
.why-card--active .why-icon {
  background: var(--gold);
  color: var(--dark);
}
.why-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.why-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- About ---------- */
#about {
  padding: 80px 0;
  background: var(--darker);
  color: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-badge {
  display: inline-block;
  background: var(--red);
  color: var(--dark);
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.about-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-content h2 span {
  color: var(--gold);
}
.about-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.about-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}
.about-visual {
  position: relative;
}
.about-img-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  position: relative;
}
.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.about-img-box:hover .about-img {
  transform: scale(1.04);
}
.about-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  color: #fff;
  padding: 28px 20px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.about-img-caption i {
  color: var(--red);
  margin-right: 6px;
}
.about-float-card {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gold);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  color: var(--dark);
}
.about-float-card .num {
  font-size: 1.8rem;
  font-weight: 900;
}
.about-float-card .lbl {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* ---------- Affiliations ---------- */
#affiliations {
  padding: 80px 0;
  background: var(--light);
}
.affil-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.affil-cat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.affil-cat-card h4 {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light);
}
.affil-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.affil-tag {
  background: var(--light);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  transition: var(--transition);
}
.affil-tag:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ---------- Alumni Slider ---------- */
#alumni {
  padding: 80px 0 60px;
  background: var(--light);
  overflow: hidden;
}

.alumni-slider-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}
.alumni-slider-wrap::before,
.alumni-slider-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.alumni-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--light), transparent);
}
.alumni-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--light), transparent);
}

.alumni-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: alumniScroll 28s linear infinite;
}
.alumni-slider-wrap:hover .alumni-track {
  animation-play-state: paused;
}

@keyframes alumniScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.alumni-item {
  width: 220px;

  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.alumni-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(217, 28, 34, 0.2);
}
.alumni-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.alumni-item:hover img {
  transform: scale(1.07);
}

@media (max-width: 600px) {
  .alumni-item {
    width: 160px;
    height: 210px;
  }
  .alumni-track {
    gap: 14px;
  }
}

/* ---------- Testimonials ---------- */
#testimonials {
  padding: 80px 0;
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--light);
  border-radius: 12px;
  padding: 28px;
  border-left: 4px solid var(--red);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.t-video-thumb {
  background: linear-gradient(135deg, var(--dark), var(--darker));
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  margin-bottom: 16px;
  cursor: pointer;
}
.t-play-icon {
  font-size: 2.5rem;
}
.t-platform {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}
.t-quote {
  font-style: italic;
  color: var(--gray);
  font-size: 0.88rem;
  margin-bottom: 16px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.t-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}
.t-batch {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ---------- Life at Frameboxx ---------- */
#life {
  padding: 80px 0;
  background: var(--darker);
  color: var(--white);
}
.life-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.life-tab {
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}
.life-tab.active,
.life-tab:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.life-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.life-cell {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}
.life-cell:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--red);
}
.life-cell-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

/* ---------- FAQs ---------- */
#faqs {
  padding: 80px 0;
  background: var(--light);
}
.faqs-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  gap: 10px;
}
.faq-question:hover {
  color: var(--gold-dark);
}
.faq-arrow {
  font-size: 1.2rem;
  transition: var(--transition);
  flex-shrink: 0;
  color: var(--red);
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 200px;
}
.faq-answer-inner {
  padding: 0 24px 18px;
  color: var(--gray);
  font-size: 0.88rem;
  border-top: 1px solid var(--light);
}

/* ---------- Centers ---------- */
#centers {
  padding: 80px 0;
  background: var(--white);
}
.centers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.center-card {
  background: var(--light);
  border-radius: 12px;
  padding: 28px;
  border-top: 4px solid var(--red);
  transition: var(--transition);
}
.center-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.center-card.main {
  background: var(--dark);
  color: var(--white);
}
.center-card.main .center-city {
  color: var(--gold);
}
.center-card.main .center-addr {
  color: rgba(255, 255, 255, 0.7);
}
.center-tag {
  display: inline-block;
  background: var(--red);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.center-city {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.center-addr {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ---------- Contact Form ---------- */
#contact {
  padding: 80px 0;
  background: var(--darker);
  color: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.contact-info h2 span {
  color: var(--gold);
}
.contact-info p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 30px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(217, 28, 34, 0.2);
  border: 1px solid rgba(217, 28, 34, 0.4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-detail-value {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px;
}
.contact-form-wrap h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
}

/* ---------- Footer ---------- */
footer {
  background: #080810;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 60px 0 48px;
}
.footer-brand .footer-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.footer-brand .footer-tagline {
  line-height: 1.65;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.25s;
  font-size: 0.82rem;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-list a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}
.footer-list a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-list li {
  display: flex;
  gap: 10px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}
.footer-contact-list li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}
.footer-contact-list a {
  color: rgba(255, 255, 255, 0.55);
}
.footer-contact-list a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--white);
}
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0 32px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- Floating CTA ---------- */
#floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  border: none;
}
.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.floating-btn.whatsapp {
  background: var(--gold);
  color: var(--dark);
}
.floating-btn.call {
  background: var(--gold);
  color: var(--dark);
}

/* ---------- Floating Enquire Now Side Button ---------- */
#floating-enquire {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 22px 13px;
  border: none;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.25);
  transition:
    padding-right 0.2s ease,
    background 0.2s ease;
  white-space: nowrap;
}
#floating-enquire:hover {
  padding-right: 18px;
  background: var(--gold-dark);
}

@media (max-width: 1024px) {
  .trust-bar-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-right: 58px;
  }

  .trust-item:last-child {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  #trust-bar {
    padding: 28px 0 30px;
  }

  .trust-bar-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    gap: 26px 12px;
    padding-right: 54px;
  }

  .trust-item {
    align-items: center;
    justify-content: start;
  }

  .trust-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .trust-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .trust-item:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .trust-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .trust-item:nth-child(5) {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .trust-num {
    font-size: 1.75rem;
  }

  .trust-lbl {
    font-size: 0.68rem;
    max-width: 118px;
  }

  #floating-enquire {
    font-size: 0.72rem;
    letter-spacing: 1.2px;
    padding: 18px 10px;
  }
}

@media (max-width: 380px) {
  .trust-bar-inner {
    padding-right: 46px;
    gap: 24px 10px;
  }

  .trust-num {
    font-size: 1.58rem;
  }

  .trust-lbl {
    font-size: 0.66rem;
    letter-spacing: 0.4px;
  }
}

/* ---------- Toast ---------- */
#toast {
  position: fixed;
  top: 90px;
  right: 24px;
  background: var(--red);
  color: var(--dark);
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 2000;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.4s ease;
  box-shadow: var(--shadow);
}
#toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Scroll Progress ---------- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  z-index: 2001;
  transition: width 0.1s linear;
}

/* ---------- Student Works Gallery ---------- */
#student-works {
  padding: 80px 0;
  background: var(--darker);
}
#student-works .section-title {
  color: var(--white);
}
#student-works .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

.sw-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.sw-filter {
  padding: 9px 24px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.sw-filter:hover,
.sw-filter.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* Uniform grid – all cells equal size */
.sw-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.sw-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

.sw-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.sw-item:hover img {
  transform: scale(1.07);
}

.sw-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 15, 26, 0.85) 0%,
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px 16px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.sw-item:hover .sw-overlay {
  opacity: 1;
}
.sw-tag {
  background: var(--red);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sw-zoom {
  color: var(--white);
  font-size: 1.1rem;
  opacity: 0.85;
  transition: transform 0.25s ease;
}
.sw-item:hover .sw-zoom {
  transform: scale(1.2);
}

/* Hidden state when filtered out */
.sw-item.sw-hidden {
  display: none;
}

/* Lightbox */
.sw-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.sw-lightbox.open {
  opacity: 1;
  pointer-events: all;
}
#sw-lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 14, 0.92);
  z-index: 2999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#sw-lb-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.sw-lb-inner {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  z-index: 3001;
  text-align: center;
}
.sw-lb-inner img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
.sw-lb-caption {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  margin-top: 12px;
  letter-spacing: 0.5px;
}
.sw-lb-close,
.sw-lb-prev,
.sw-lb-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1rem;
  cursor: pointer;
  z-index: 3002;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
  backdrop-filter: blur(4px);
}
.sw-lb-close:hover,
.sw-lb-prev:hover,
.sw-lb-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.sw-lb-close {
  top: 20px;
  right: 24px;
}
.sw-lb-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.sw-lb-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  .sw-gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
}
@media (max-width: 600px) {
  .sw-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  .sw-lb-prev {
    left: 8px;
  }
  .sw-lb-next {
    right: 8px;
  }
}

/* ---------- Video Testimonial Slider ---------- */
#testimonials {
  padding: 80px 0;
  background: var(--darker);
  overflow: hidden;
}
#testimonials .section-title {
  color: var(--white);
}
#testimonials .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

.tsv-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

/* Arrow buttons */
.tsv-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}
.tsv-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* Viewport clips the track */
.tsv-viewport {
  overflow: hidden;
  flex: 1;
}

/* Track moves horizontally */
.tsv-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Each card */
.tsv-card {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.tsv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

/* Thumbnail */
.tsv-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.tsv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
  filter: brightness(0.85);
}
.tsv-card:hover .tsv-thumb img {
  transform: scale(1.05);
  filter: brightness(0.65);
}

/* YouTube play button */
.tsv-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.tsv-play i {
  font-size: 3.8rem;
  color: #fff;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.7));
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}
.tsv-card:hover .tsv-play i {
  color: var(--red);
  transform: scale(1.15);
}

/* Name / course label */
.tsv-info {
  padding: 16px 18px;
}
.tsv-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
}
.tsv-course {
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Dots */
.tsv-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.tsv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  padding: 0;
}
.tsv-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* YouTube Modal */
.yt-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.yt-modal.open {
  opacity: 1;
  pointer-events: all;
}
#yt-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 3999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#yt-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.yt-modal-box {
  position: relative;
  width: min(860px, 92vw);
  z-index: 4001;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.9);
}
.yt-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 4002;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.yt-modal-close:hover {
  background: var(--gold);
  color: var(--dark);
}
.yt-iframe-wrap {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
}
.yt-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Responsive */
@media (max-width: 580px) {
  .tsv-arrow {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }
}

/* ---------- Our Gallery ---------- */
#gallery {
  padding: 80px 0;
  background: var(--white);
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.gallery-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid rgba(26, 26, 26, 0.2);
  background: transparent;
  color: var(--gray);
  transition: var(--transition);
}
.gallery-tab i {
  font-size: 0.85rem;
}
.gallery-tab:hover,
.gallery-tab.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* Panels */
.gallery-panel {
  display: none;
}
.gallery-panel.active {
  display: block;
  animation: galFadeIn 0.35s ease;
}
@keyframes galFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Uniform equal-size grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 14px;
}

.gal-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: var(--light);
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gal-item:hover img {
  transform: scale(1.07);
}
.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 26, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 1.6rem;
  color: var(--white);
}
.gal-item:hover .gal-overlay {
  opacity: 1;
}

/* Gallery Lightbox */
.gal-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.gal-lightbox.open {
  opacity: 1;
  pointer-events: all;
}
#gal-lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 14, 0.92);
  z-index: 2999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#gal-lb-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.gal-lb-inner {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  z-index: 3001;
  text-align: center;
}
.gal-lb-inner img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
.gal-lb-caption {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  margin-top: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.gal-lb-close,
.gal-lb-prev,
.gal-lb-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1rem;
  cursor: pointer;
  z-index: 3002;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
  backdrop-filter: blur(4px);
}
.gal-lb-close:hover,
.gal-lb-prev:hover,
.gal-lb-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.gal-lb-close {
  top: 20px;
  right: 24px;
}
.gal-lb-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.gal-lb-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 190px;
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  .gallery-tab {
    padding: 9px 16px;
    font-size: 0.8rem;
  }
  .gal-lb-prev {
    left: 8px;
  }
  .gal-lb-next {
    right: 8px;
  }
}

/* ---------- Our Recruiters Slider ---------- */
#recruiters {
  padding: 80px 0 60px;
  background: var(--light);
  overflow: hidden;
}

.recruiters-slider-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.recruiters-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollRecruiters 40s linear infinite;
}

.recruiters-track:hover {
  animation-play-state: paused;
}

@keyframes scrollRecruiters {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.recruiter-item {
  width: 180px;
  height: 90px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.recruiter-item:hover {
  box-shadow: 0 8px 28px rgba(217, 28, 34, 0.15);
  transform: translateY(-4px);
}

.recruiter-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: grayscale(40%);
  transition: filter 0.3s ease;
}

.recruiter-item:hover img {
  filter: grayscale(0%);
}

@media (max-width: 600px) {
  .recruiter-item {
    width: 130px;
    height: 68px;
    padding: 10px 14px;
  }
  .recruiters-track {
    gap: 16px;
  }
}

/* ---------- Our Affiliations ---------- */
#our-affiliations {
  padding: 80px 0;
  background:
    linear-gradient(180deg, rgba(255, 210, 0, 0.08), rgba(255, 255, 255, 0)),
    var(--white);
}

.affiliations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.affiliation-group {
  background: var(--white);
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.affiliation-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.affiliation-heading i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--gold);
  color: var(--dark);
  font-size: 1rem;
}

.affiliation-heading h3 {
  color: var(--dark);
  font-size: 1.05rem;
  line-height: 1.25;
}

.affiliation-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
}

.affiliation-logo {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 10px;
  background: #fff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.affiliation-logo:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 210, 0, 0.65);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.affiliation-logo img {
  width: 100%;
  max-width: 150px;
  max-height: 62px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .affiliations-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  #our-affiliations {
    padding: 60px 0;
  }

  .affiliation-group {
    padding: 18px;
  }

  .affiliation-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .affiliation-logo {
    min-height: 78px;
    padding: 10px;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  nav {
    display: none;
  }
  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--darker);
    padding: 16px;
    gap: 2px;
  }
  .hamburger {
    display: flex;
  }
  #sticky-header .hdr-inner {
    flex-wrap: wrap;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hdr-cta .btn {
    display: none;
  }
}
@media (max-width: 600px) {
  .hero-title {
    font-size: 1.6rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn {
    text-align: center;
  }
}

/* ============================================================
   GET IN TOUCH – Contact Section
   ============================================================ */
#contact {
  background: #0d0d0d;
  padding: 80px 0;
}

.contact-header {
  text-align: center;
  margin-bottom: 56px;
  padding: 0 20px;
}

.contact-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.contact-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.contact-title span {
  color: var(--gold);
}

.contact-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
}

.contact-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: stretch;
}

/* Left info column */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-icon-box {
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--dark);
  font-size: 1.1rem;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-info-head {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.contact-info-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.contact-info-value {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

a.contact-info-value:hover {
  color: var(--gold);
}

.contact-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 13px 28px;
  border-radius: 8px;
  transition:
    background 0.25s,
    transform 0.25s;
  align-self: flex-start;
  margin-top: 6px;
}

.contact-call-btn:hover {
  background: #e6be00;
  transform: translateY(-2px);
}

/* Right map */
.contact-map {
  border-radius: 12px;
  overflow: hidden;
  min-height: 340px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(240, 165, 0, 0.15);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
}

@media (max-width: 900px) {
  .contact-body {
    grid-template-columns: 1fr;
  }
  .contact-map {
    min-height: 280px;
  }
  .contact-map iframe {
    min-height: 280px;
  }
  .contact-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 1.7rem;
  }
}

/* ============================================================
   ONLOAD ENQUIRY POPUP
   ============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  z-index: 5000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.enquiry-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 5001;
  background: #111111;
  border-radius: 16px;
  width: min(460px, 92vw);
  padding: 36px 32px 32px;
  border: 2px solid var(--gold);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 210, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.enquiry-popup.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%);
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    color 0.25s;
}
.popup-close:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.popup-header {
  text-align: center;
  margin-bottom: 24px;
}
.popup-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.popup-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.25;
}
.popup-title span {
  color: var(--gold);
}
.popup-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.popup-form .popup-field {
  margin-bottom: 14px;
}
.popup-input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.92rem;
  outline: none;
  transition:
    border-color 0.25s,
    background 0.25s;
  font-family: inherit;
}
.popup-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.popup-input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}
.popup-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.popup-select option {
  background: #1a1a1a;
  color: var(--white);
}

.popup-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  transition:
    background 0.25s,
    transform 0.25s;
  font-family: inherit;
}
.popup-submit:hover {
  background: #e6be00;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .enquiry-popup {
    padding: 28px 20px 24px;
  }
  .popup-title {
    font-size: 1.25rem;
  }
}
