/* ===== GLOBAL ===== */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: radial-gradient(circle at top, #111, #000);
  color: #fff;
  overflow-x: hidden;
}

.wrap {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* ===== HEADER ===== */
.site-header {
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #D4AF37;
  font-size: 22px;
  font-weight: bold;
}
.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 80px;
}

.logo-text {
  color: #D4AF37;
  font-weight: 700;
  font-size: 18px;
}

.login-btn {
  border: 1px solid #D4AF37;
  padding: 8px 15px;
  border-radius: 4px;
}

.main-nav a {
  position: relative;
  color: #fff;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

/* underline animation */
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #D4AF37;
  transition: 0.3s;
}

.main-nav a:hover {
  color: #D4AF37;
}

.main-nav a:hover::after {
  width: 100%;
}

/* ===== HERO ===== */
.hero {
  height: 95vh;
  display: flex;
  align-items: center;
  position: relative;
}

/* glowing background */
.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.15), transparent);
  top: 10%;
  left: 10%;
  filter: blur(80px);
}

.hero-title {
  font-size: 75px;
  font-weight: 800;
  color: #D4AF37;
  line-height: 1.1;
  animation: fadeUp 1s ease forwards;
}

.hero-sub {
  margin-top: 20px;
  color: #aaa;
  font-size: 18px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

/* ===== BUTTON ===== */
.btn {
  position: relative;
  display: inline-block;
  padding: 14px 35px;
  margin-top: 25px;
  text-decoration: none;
  font-weight: 600;
  overflow: hidden;
  border-radius: 4px;
}

/* gold button */
.btn-primary {
  background: linear-gradient(90deg, #D4AF37, #f5d76e);
  color: #000;
}

/* shine animation */
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transform: skewX(-25deg);
}

.btn-primary:hover::before {
  left: 130%;
  transition: 0.7s;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s;
}

.section.show {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  color: #D4AF37;
}

/* ===== BOX ===== */
.travel-box {
  background: linear-gradient(145deg, #111, #000);
  padding: 50px;
  border-radius: 15px;
  border: 1px solid #222;
  transition: 0.3s;
}

.travel-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(212,175,55,0.15);
}

/* ===== FEATURES ===== */
.features {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.features-left {
  flex: 1;
}

/* card */
.course-card {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  margin-top: 30px;
  border: 1px solid #222;
  transition: 0.3s;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(212,175,55,0.2);
}

.course-illus {
  font-size: 30px;
  color: #D4AF37;
}

/* ===== SIDE BOX ===== */
.what-box {
  flex: 0.4;
  background: linear-gradient(145deg, #1a1a1a, #000);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #333;
  transition: 0.3s;
}

.what-box:hover {
  box-shadow: 0 0 40px rgba(212,175,55,0.2);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #000;
  border-top: 1px solid #1a1a1a;
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-links a {
  color: #aaa;
  margin-right: 20px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #D4AF37;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand h2 {
  color: #D4AF37;
}

.footer-brand p {
  color: #aaa;
  max-width: 300px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  color: #777;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== GOLD PARTICLES ===== */
.particles {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.particles span {
  position: absolute;
  display: block;
  width: 3px;
  height: 3px;
  background: #D4AF37;
  border-radius: 50%;
  opacity: 0.4;
  animation: float 10s linear infinite;
}

@keyframes float {
  from { transform: translateY(100vh); opacity: 0; }
  to { transform: translateY(-10vh); opacity: 0.6; }
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212,175,55,0.15), transparent);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

/* ===== GLASS CARDS ===== */
.glass {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212,175,55,0.2);
}

/* ===== MAGNETIC BUTTON ===== */
.btn:hover {
  transform: scale(1.05);
  transition: 0.2s;
}

/* ===== PARALLAX ===== */
.hero {
  transform-style: preserve-3d;
}

/* ===== GOLD BORDER GLOW ===== */
.gold-border {
  border: 1px solid rgba(212,175,55,0.3);
  box-shadow: 0 0 25px rgba(212,175,55,0.15);
}


/* ===== AUTH PAGE WRAPPER ===== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #111, #000);
  padding: 20px;
}

/* ===== CARD ===== */
.auth-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.2);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 0 40px rgba(212,175,55,0.1);
  animation: fadeUp 0.8s ease;
}

/* ===== BRAND ===== */
.auth-brand {
  text-align: center;
  margin-bottom: 25px;
}

.auth-logo {
  height: 100px;
  margin-bottom: 10px;
}

.auth-title {
  color: #D4AF37;
  font-size: 26px;
  margin-bottom: 8px;
}

.auth-sub {
  color: #aaa;
  font-size: 14px;
}

/* ===== FORM ===== */
.auth-form {
  margin-top: 20px;
}

.auth-row {
  margin-bottom: 18px;
}

.auth-row label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: #ccc;
}

/* ===== INPUT ===== */
.auth-row input {
  width: 100%;
  padding: 12px;
  background: #0d0d0d;
  border: 1px solid #222;
  border-radius: 6px;
  color: #fff;
  outline: none;
  transition: 0.3s;
}

.auth-row input:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 10px rgba(212,175,55,0.3);
}

/* ===== FLEX ===== */
.auth-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== CHECKBOX ===== */
.auth-checkbox {
  font-size: 13px;
  color: #aaa;
    display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.auth-checkbox input[type="checkbox"] {
  margin: 0;
  width: 16px;
  height: 16px;
}
.auth-checkbox input {
  margin-right: 5px;
}


/* ===== LINKS ===== */
.auth-link {
  font-size: 13px;
  color: #D4AF37;
  text-decoration: none;
}

.auth-link:hover {
  text-decoration: underline;
}

/* ===== BUTTON ===== */
.auth-btn {
  width: 100%;
  padding: 13px;
  border: none;
  background: linear-gradient(90deg, #D4AF37, #f5d76e);
  color: #000;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.auth-btn:hover {
  transform: scale(1.03);
}

/* ===== SMALL TEXT ===== */
.auth-small {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  color: #aaa;
}

.auth-small a {
  color: #D4AF37;
  text-decoration: none;
}

/* ===== RECAPTCHA ===== */
.auth-recaptcha {
  display: flex;
  justify-content: center;
}

/* ===== ANIMATION ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ERROR ===== */
.auth-error {
  font-size: 12px;
  color: #ff4d4d;
  display: block;
  margin-top: 5px;
}

/* ===== NOTE TEXT ===== */
.auth-note {
  font-size: 12px;
  color: #888;
  margin-top: -10px;
  margin-bottom: 15px;
}

/* ===== FLEX INPUTS ===== */
.auth-flex > div {
  flex: 1;
}

.auth-flex {
  display: flex;
  gap: 10px;
}

/* ===== TERMS ===== */
.auth-terms {
  font-size: 13px;
  color: #aaa;
    display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.auth-terms a {
  color: #D4AF37;
  text-decoration: none;
}

.auth-terms input {
  margin-right: 6px;
}



/* ===== LEGAL PAGE ===== */
.legal-page {
  min-height: 100vh;
  padding: 80px 20px;
  background: radial-gradient(circle at top, #111, #000);
}

/* ===== CONTAINER ===== */
.legal-container {
  max-width: 900px;
  margin: auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.2);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(212,175,55,0.08);
  animation: fadeUp 0.8s ease;
}

/* ===== TITLE ===== */
.legal-title {
  font-size: 36px;
  color: #D4AF37;
  margin-bottom: 10px;
}

.legal-updated {
  color: #888;
  font-size: 14px;
  margin-bottom: 30px;
}

/* ===== SECTIONS ===== */
.legal-section {
  margin-bottom: 30px;
}

.legal-section h2 {
  color: #D4AF37;
  font-size: 20px;
  margin-bottom: 10px;
}

.legal-section p {
  color: #ccc;
  line-height: 1.7;
}

.legal-section ul {
  padding-left: 20px;
}

.legal-section li {
  margin-bottom: 8px;
  color: #aaa;
}

/* ===== ANIMATION ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== PAGE ===== */
.contact-page {
  min-height: 100vh;
  padding: 80px 20px;
  background: radial-gradient(circle at top, #111, #000);
}

/* ===== CONTAINER ===== */
.contact-container {
  max-width: 1100px;
  margin: auto;
}

/* ===== HEADER ===== */
.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h1 {
  font-size: 40px;
  color: #D4AF37;
}

.contact-header p {
  color: #aaa;
}

/* ===== GRID ===== */
.contact-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* ===== LEFT SIDE ===== */
.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h2 {
  color: #D4AF37;
  margin-bottom: 20px;
}

.info-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.info-box h4 {
  margin-bottom: 5px;
  color: #D4AF37;
}

.info-box p {
  color: #ccc;
}

/* ===== FORM BOX ===== */
.contact-form-box {
  flex: 1;
  min-width: 300px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

/* ===== FORM ===== */
.contact-row {
  margin-bottom: 15px;
}

.contact-row label {
  display: block;
  margin-bottom: 5px;
  color: #ccc;
  font-size: 13px;
}

.contact-row input,
.contact-row textarea {
  width: 100%;
  padding: 12px;
  background: #0d0d0d;
  border: 1px solid #222;
  border-radius: 6px;
  color: #fff;
  outline: none;
  transition: 0.3s;
}

.contact-row input:focus,
.contact-row textarea:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 10px rgba(212,175,55,0.3);
}

/* ===== BUTTON ===== */
.contact-btn {
  width: 100%;
  padding: 14px;
  border: none;
  background: linear-gradient(90deg, #D4AF37, #f5d76e);
  color: #000;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  transform: scale(1.03);
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {
  .contact-grid {
    flex-direction: column;
  }
}



/* ===== PAGE ===== */
.pricing-page {
  min-height: 100vh;
  padding: 80px 20px;
  background: radial-gradient(circle at top, #111, #000);
}

/* ===== CONTAINER ===== */
.pricing-container {
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h1 {
  font-size: 42px;
  color: #D4AF37;
}

.pricing-header p {
  color: #aaa;
}

/* ===== GRID ===== */
.pricing-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== CARD ===== */
.pricing-card {
  width: 260px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(212,175,55,0.15);
}

/* ===== FEATURED ===== */
.featured {
  border: 1px solid #D4AF37;
  box-shadow: 0 0 40px rgba(212,175,55,0.2);
}

.badge {
  position: absolute;
  top: -10px;
  right: 10px;
  background: #D4AF37;
  color: #000;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
}

/* ===== TEXT ===== */
.pricing-card h3 {
  color: #fff;
}

.pricing-card h2 {
  color: #D4AF37;
  margin: 10px 0;
}

.pricing-tag {
  color: #888;
  font-size: 13px;
  margin-bottom: 20px;
}

/* ===== LIST ===== */
.pricing-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 20px;
}

.pricing-card li {
  margin-bottom: 8px;
  color: #ccc;
}

/* ===== BUTTON ===== */
.pricing-btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(90deg, #D4AF37, #f5d76e);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
}

.pricing-btn:hover {
  transform: scale(1.05);
}

/* ===== LOCKED ===== */
.locked {
  opacity: 0.5;
}

.pricing-disabled {
  display: inline-block;
  margin-top: 10px;
  color: #aaa;
  font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }
}