/* ---------------------------------------------------
   FONTS + ROOT VARIABLES
--------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --black: #000000;
  --charcoal: #0e0e0f;
  --dark-grey: #1a1a1c;
  --gold: #d4af37;
  --soft-gold: rgba(212, 175, 55, 0.55);
  --white: #f5f5f5;
}

/* GLOBAL RESET */
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  letter-spacing: .5px;
}

strong { color: var(--gold); }

/* ---------------------------------------------------
   HERO (VUSI-INSPIRED LUXURY LAYOUT)
--------------------------------------------------- */

/* ================================
   LUXURY DARK HERO SECTION
===================================*/

#hero {
  position: relative;
  height: 95vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/hero.2.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.85)
  );
  backdrop-filter: blur(4px);
}

.hero-content {
  position: relative;
  max-width: 850px;
  text-align: center;
  padding: 20px;
  z-index: 5;
  animation: fadeUp 1.3s ease forwards;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #f5f5f5;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #d4d4d4;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* CTA Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.btn-primary {
  padding: 14px 28px;
  background: linear-gradient(135deg, #d4af37, #b58d2b);
  color: #000;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.8px;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f7d774, #d4af37);
  transform: scale(1.05);
}

.btn-secondary {
  padding: 14px 28px;
  border: 1px solid #d4af37;
  color: #d4af37;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.8px;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.15);
  transform: scale(1.05);
}

/* Floating Gold Badges */
.hero-badge {
  position: absolute;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.6);
  backdrop-filter: blur(10px);
  color: #d4af37;
  font-size: 0.95rem;
  border-radius: 14px;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  animation: floatBadge 6s infinite ease-in-out;
  z-index: 5;
}

.badge-1 { top: 18%; left: 10%; animation-delay: 0.2s; }
.badge-2 { bottom: 20%; right: 14%; animation-delay: 1s; }
.badge-3 { top: 40%; right: 8%; animation-delay: 2s; }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50% { transform: translateY(-15px); opacity: 1; }
}

/* ================================
   MOBILE RESPONSIVENESS
===================================*/
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 5px;
  }

  .hero-badge {
    display: none; /* Optional: hide badges for cleaner mobile UI */
  }
}


.cta-buttons {
  margin-top: 30px;
}

.btn {
  padding: 14px 30px;
  background: var(--gold);
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  color: var(--black);
  transition: .3s;
}

.btn:hover {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline {
  padding: 14px 30px;
  border: 2px solid var(--gold);
  border-radius: 40px;
  color: var(--gold);
  margin-left: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}
/* ============================================================
   LUXURY NAVIGATION BAR
============================================================ */
.luxury-nav {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  backdrop-filter: blur(18px);
  background: rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid rgba(255, 215, 0, 0.08);
  padding: 15px 0;
  transition: 0.4s ease;
}

.luxury-nav.nav-scrolled {
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  padding: 10px 0;
}

.nav-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "SF Pro Display", "Poppins", sans-serif;
}

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: #e5e5e5;
  padding-bottom: 5px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-family: "SF Pro Display", sans-serif;
  transition: 0.3s ease;
}

.nav-link:hover {
  color: #fff;
}

/* GOLD UNDERLINE HOVER */
.nav-link::after {
  content: "";
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #f6e27a);
  position: absolute;
  left: 0;
  bottom: -3px;
  transition: 0.4s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* ============================================================
   MOBILE NAVIGATION
============================================================ */
.menu-btn {
  width: 35px;
  height: 25px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-btn span {
  width: 100%;
  height: 4px;
  background: #d4af37;
  border-radius: 5px;
  transition: 0.3s ease;
}

/* Transform lines on open */
.menu-btn.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.menu-btn.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* MOBILE MENU PANEL */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: rgba(15, 15, 15, 0.97);
  backdrop-filter: blur(20px);
  padding-top: 120px;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: 0.5s ease;
  border-left: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  color: #f1f1f1;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: "SF Pro Display", sans-serif;
  letter-spacing: 1px;
  position: relative;
}

.mobile-nav a::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #d4af37;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: 0.4s;
}

.mobile-nav a:hover::after {
  width: 100%;
}

/* ============================================================
   RESPONSIVENESS
============================================================ */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  .menu-btn {
    display: flex;
  }
}

@media (max-width: 500px) {
  .nav-container {
    padding: 0 20px;
  }
}

/* ---------------------------------------------------
   ABOUT — LUXURY SPLIT SECTION
--------------------------------------------------- */
.about-premium {
  padding: 120px 8%;
  background: var(--charcoal);
}

.about-wrapper {
  display: flex;
  gap: 70px;
  align-items: center;
}

.about-image-box img {
  width: 100%;
  max-width: 550px;
  border-radius: 16px;
  border: 2px solid var(--gold);
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
}

.about-title {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 25px;
}

.about-desc {
  font-size: 1.1rem;
  opacity: .88;
  margin-bottom: 18px;
}


/* ---------------------------------------------------
   FINANCIAL PROGRAMS — ELITE GRID
--------------------------------------------------- */
.financial-section {
  padding: 140px 10%;
  background: var(--black);
  text-align: center;
}

.financial-intro h2 {
  font-size: 3rem;
  color: var(--gold);
}

.financial-grid {
  margin-top: 60px;
  display: grid;
  gap: 35px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.financial-card {
  background: var(--dark-grey);
  padding: 30px;
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,0.22);
  transition: .3s ease;
}

.financial-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

/* ---------------------------------------------------
   PREMIUM GALLERY — REGIONAL CARDS
--------------------------------------------------- */
#premium-gallery {
  padding: 140px 8%;
  background: var(--charcoal);
  text-align: center;
}

.gallery-header h2 {
  font-size: 2.8rem;
  color: var(--gold);
}

.premium-gallery-grid {
  margin-top: 60px;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gallery-card {
  position: relative;
  height: 320px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
  transition: .4s ease;
  border: 2px solid rgba(212,175,55,0.25);
}

.gallery-card:hover {
  transform: scale(1.04);
  border-color: var(--gold);
}

/* text */
.gallery-card h3 {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.7rem;
  text-shadow: 0 0 6px rgba(0,0,0,0.7);
}

/* overlay */
.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  transition: .4s ease;
}

.gallery-card:hover::before {
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
}

/* ---------------------------------------------------
   FAQ — GOLD ACCORDION
--------------------------------------------------- */
#faq {
  padding: 140px 8%;
  background: var(--black);
}

.faq-item {
  margin-bottom: 20px;
  background: var(--charcoal);
  padding: 18px 25px;
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,0.25);
  cursor: pointer;
}

.faq-item h4 {
  color: var(--gold);
  font-size: 1.2rem;
}

.faq-item p {
  display: none;
  margin-top: 10px;
  opacity: .85;
}

/* ---------------------------------------------------
   CONTACT — GLASS LUXE CARD
--------------------------------------------------- */
#contact {
  padding: 140px 8%;
  display: flex;
  justify-content: center;
}

.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.28);
  backdrop-filter: blur(14px);
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 18px;
}

#contact input, 
#contact textarea {
  width: 100%;
  padding: 15px;
  margin-top: 15px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: 10px;
  color: var(--white);
}

/* ---------------------------------------------------
   FOOTER — ULTRA MINIMAL PRESTIGE
--------------------------------------------------- */
footer {
  padding: 40px 10%;
  text-align: center;
  background: var(--charcoal);
  border-top: 1px solid rgba(212,175,55,0.18);
}

footer .socials a {
  color: var(--gold);
  margin: 0 8px;
  text-decoration: none;
  font-weight: 500;
}

/* ---------------------------------------------------
   RESPONSIVE
--------------------------------------------------- */
@media (max-width: 900px) {
  #hero {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding-top: 120px;
  }

  .hero-img {
    width: 90%;
    height: 60vh;
  }

  .hero-content {
    width: 100%;
  }

  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }
}
/* --- SECTION TITLES --- */
.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #f1c27d;
  letter-spacing: 2px;
  margin-bottom: 40px;
  text-align: center;
}

/* --- SPEAKING SECTION --- */
.speaking-section {
  padding: 80px 5%;
  background: #0d0d0d;
}

.speaking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.speaking-video video {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

/* Cards */
.speaking-cards {
  display: grid;
  gap: 20px;
}

.speak-card {
  padding: 25px;
  border-radius: 16px;
  border-left: 4px solid #d4af37;
  transition: 0.4s ease;
}

.speak-card h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #f1c27d;
}

.speak-card p {
  color: #dcdcdc;
  font-size: 0.95rem;
}

.speak-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

/* Glass Card Style */
.glass-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* --- TESTIMONIALS --- */
.testimonials-section {
  background: #050505;
  padding: 90px 5%;
  text-align: center;
}

.testimonial-slider {
  max-width: 850px;
  margin: auto;
  position: relative;
}

.testimonial-card {
  padding: 40px;
  border-radius: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card p {
  font-size: 1.2rem;
  font-weight: 300;
  color: #f4f4f4;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}
