/* ───────────────────────────  Base  ─────────────────────────── */

:root {
  --white: #ffffff;
  --light-grey: #cccccc;
  --mid-grey: #1a1a1a;
  --dark-grey: #111111;
  --black: #000000;
  --glow: rgba(255, 255, 255, 0.07);
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--black);
  color: var(--white);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ───────────────────────  Navigation Bar  ───────────────────── */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.75);
  border-bottom: 2px solid #333;
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 0 15px rgba(255, 255, 255, 0.04),
    0 5px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.45s ease;
  z-index: 1000;
  overflow: hidden;
}

.navbar::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.04),
    transparent
  );
  transform: rotate(25deg);
  animation: shine 6s linear infinite;
  z-index: 0;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(25deg); }
  100% { transform: translateX(100%) rotate(25deg); }
}

.navbar .nav-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}


.nav-links a {
  position: relative;
  color: var(--light-grey);
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: var(--light-grey);
  transition: width 0.3s ease;
}

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

/* ───── Floating Navbar (Scrolled) ───── */

.navbar.scrolled {
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: none;
}



.navbar.scrolled::before {
  display: none;
}

.navbar.scrolled .nav-container {
  padding: 0.6rem 2.5rem;
  border-radius: 0;
  background-color: var(--dark-grey);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  transition: all 0.45s ease;
}

.navbar.scrolled .nav-links a {
  color: var(--light-grey);
  margin-left: 1rem;
  transition: color 0.3s;
}

.navbar.scrolled .nav-links a:hover {
  color: var(--white);
}

/* ───────────────────────  Hero Section  ─────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--black);
  overflow: hidden;
  padding: 5rem 2rem 2rem;
}

#starfield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  animation: float 6s ease-in-out infinite;
}

.hero h1 {
  color: var(--white);
  font-size: 5rem;
}

.hero p {
  color: var(--light-grey);
  margin: 1rem 0 2rem;
  font-size: 1.5rem;
}

.hero-buttons .btn {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: var(--white);
  color: var(--black);
}
.btn.primary:hover {
  box-shadow: 0 0 12px var(--white);
  transform: scale(1.05);
}

.btn.secondary {
  border: 2px solid var(--light-grey);
  color: var(--light-grey);
}
.btn.secondary:hover {
  background-color: var(--light-grey);
  color: var(--black);
  transform: scale(1.05);
}

/* ───────────── Features Section ───────────── */

.features-section {
  background: radial-gradient(circle at top, #080808 0%, #000 100%);
  padding-top: 7rem;
  padding-bottom: 7rem;
  border-top: 1px solid #111;
}

.features-section .section-title {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 3rem;
  text-align: center;
}

.feature-card {
  background-color: var(--mid-grey);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 2rem;
  width: 280px;
  color: var(--white);
  box-shadow: 0 0 15px var(--glow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card h3 {
  color: var(--white);
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--light-grey);
  line-height: 1.4;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
}

/* ───────────────────────  Sections / Cards  ─────────────────── */

.section {
  padding: 6rem 2rem;
  text-align: center;
}

.alt-bg {
  background: linear-gradient(to bottom, #111, #000);
}

.container {
  max-width: 1100px;
  margin: auto;
  background-color: var(--dark-grey);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 0 20px var(--glow);
}

.container h2 {
  color: var(--white);
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: var(--black);
  border: 1px solid #333;
  padding: 2rem;
  border-radius: 15px;
  width: 230px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.07);
}
.card.plan { border-color: #444; }

/* ───────────────────────  Extras  ───────────────────────────── */
/* ───────────── Why Us Section ───────────── */

.why-us-section {
  background: var(--black);
  padding: 7rem 2rem;
  position: relative;
  border-top: 1px solid #111;
}

.why-container {
  background-color: var(--dark-grey);
  padding: 4rem 3rem;
  max-width: 1000px;
  margin: auto;
  border-radius: 20px;
  box-shadow:
    0 0 25px rgba(255, 255, 255, 0.08),
    0 25px 60px rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  border: none;

  /* Add these to center content */
  align-items: center;
  text-align: center;
}



.why-title {
  color: var(--white);
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.why-list {
  list-style: none;
  padding: 0;
  color: var(--light-grey);
  font-size: 1.05rem;
  line-height: 1.7;
}

.why-list li {
  margin-bottom: 1.8rem;
  padding-left: 0.5rem;
  position: relative;
  transition: all 0.3s ease;
}
.why-list li:hover {
  color: var(--white);
  transform: translateX(5px);
}

/* White neon underglow */
.why-us-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.15) 0%, transparent 70%);
  filter: blur(20px);
  animation: pulse-glow 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 0.7; }
}



@keyframes slow-drift {
  0%   { transform: translateX(-50%) translateY(0); }
  100% { transform: translateX(-50%) translateY(30px); }
}


.footer {
  background-color: var(--black);
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid #222;
}
.footer a {
  color: var(--light-grey);
  text-decoration: underline;
}

/* fade‑up reveal */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* gentle floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}


/* ───────────── Plans Section ───────────── */

.plans-section {
  background: #000;
  border-top: 1px solid #111;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-title {
  color: var(--white);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.8rem;
}

.plan-subtitle {
  text-align: center;
  color: var(--light-grey);
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.plan-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.plan-card {
  position: relative;
  background: var(--mid-grey);
  border-radius: 16px;
  width: 250px;
  padding: 2rem;
  box-shadow: 0 0 15px var(--glow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.plan-card h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1rem;
}

/* Remove bullets and style list */
.plan-card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.plan-card ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
  color: var(--light-grey);
}

.plan-card ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--light-grey);
}

/* ───── Ideal Choice Badge ───── */

.badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--white);
  color: var(--black);
  font-weight: bold;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(255,255,255,0.3);
}

/* ───── Plan Toggle Buttons ───── */

.plan-buttons {
  text-align: center;
  margin-top: 3rem;
}

.plan-toggle-btn {
  background: var(--dark-grey);
  color: var(--light-grey);
  border: 1px solid #333;
  padding: 0.6rem 1.5rem;
  margin: 0.3rem;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-toggle-btn:hover {
  background: #1f1f1f;
  color: var(--white);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

/* ───────────── Ideal Card Spinning Glow ───────────── */

/* Base style for ideal card */
.plan-card.ideal {
  position: relative;
  overflow: visible;
  box-shadow:
    0 0 15px var(--glow),
    0 0 25px rgba(255, 255, 255, 0.08); /* subtle extra glow */
  animation: glow-pulse 3s ease-in-out infinite;
}

/* Glow animation for ideal card */
@keyframes glow-pulse {
  0%, 100% {
    box-shadow:
      0 0 12px rgba(255, 255, 255, 0.07),
      0 0 25px rgba(255, 255, 255, 0.05);
  }
  50% {
    box-shadow:
      0 0 18px rgba(255, 255, 255, 0.12),
      0 0 35px rgba(255, 255, 255, 0.08);
  }
}



/* ───────────── Contact Section ───────────── */

.contact-section {
  background-color: var(--black);
  padding: 5rem 2rem 4rem;
  border-top: 1px solid #111;
}

.contact-container {
  max-width: 900px;
  margin: auto;
  background-color: var(--dark-grey);
  padding: 3rem;
  border-radius: 16px;
  box-shadow:
    0 0 25px rgba(255, 255, 255, 0.04),
    0 15px 40px rgba(255, 255, 255, 0.02);
  text-align: center;
}

.contact-container h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.contact-email {
  font-size: 1rem;
  color: var(--light-grey);
  margin-bottom: 2rem;
}

.contact-email a {
  color: var(--white);
  text-decoration: underline;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #1f1f1f;
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  border: 1px solid #333;
}

.social-btn img {
  width: 20px;
  height: 20px;
}

.social-btn:hover {
  background-color: #2a2a2a;
  transform: translateY(-2px);
}

#motto {
  position: relative;
  display: inline-block;
  font-size: 3rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Glitch animation */
.glitch-out {
  animation: glitchOut 0.3s ease-in forwards;
}
.glitch-in {
  animation: glitchIn 0.3s ease-out forwards;
}

@keyframes glitchOut {
  0% {
    opacity: 1;
    transform: translateX(0) skewX(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(20px) skewX(10deg);
  }
}

@keyframes glitchIn {
  0% {
    opacity: 0;
    transform: translateX(-20px) skewX(-10deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) skewX(0deg);
  }
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem; /* spacing between logo and text */
}

.logo {
  height: 42px;
  display: block;
}

.brand-name {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
}

.plan-price {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--light-grey);
  margin: 0.4rem 0 1.2rem;
  text-align: center;
}


.btn-home {
  display: inline-block;
  background-color: var(--dark-grey);
  color: var(--light-grey);
  border: 1px solid #444;
  padding: 0.7rem 1.8rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.04);
}

.btn-home:hover {
  background-color: #1a1a1a;
  color: var(--white);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}

.currency-toggle {
  text-align: center;
  margin: 2rem 0;
}

.currency-toggle button {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.currency-toggle button:hover {
  background: var(--white);
  color: var(--black);
}

/* Semicircle button */
.mascot-toggle {
  position: fixed;
  bottom: 15px;
  left: 0;
  background-color: #111;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  cursor: pointer;
  z-index: 9999;
}

.mascot-toggle img {
  width: 30px;
  height: 30px;
}

/* Slide-out box (now beside mascot button near bottom left) */
.mascot-box {
  position: fixed;
  bottom: 10px;
  left: -340px; /* Hidden off screen */
  width: 300px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255,255,255,0.08);
  transition: left 0.4s ease;
  z-index: 9998;
}

.mascot-box.show {
  left: 60px; /* Slides out beside mascot-toggle */
}

.mascot-box h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.mascot-box p {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

/* Gallery inside mascot box */
.mascot-gallery {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.mascot-gallery img {
  width: 60px;
  height: auto;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

.mascot-gallery img:hover {
  transform: scale(1.1);
}

.plan-action-btn {
  display: block;
  margin-top: 1.5rem;
  padding: 0.6rem 1rem;
  background: #1f1f1f;
  color: var(--white);
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333;
}

.plan-action-btn:hover {
  background: #333;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}
