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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url('plansbg.png') center center / cover no-repeat fixed;
  color: #fff;
  line-height: 1.6;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* ==== Top Brand Logo ==== */
.top-logo {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 1.2rem 0;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  color: #00ffc8;
  letter-spacing: 2px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* ==== Marquee ==== */
.marquee-container {
  width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-container marquee {
  font-size: 1rem;
  color: #00ffc8;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ==== Navbar ==== */
.navbar {
  background-color: rgba(0,0,0,0.7);
  color: white;
  padding: 1.5rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1px;
}

/* ==== Plans Section ==== */
.plans-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.plan-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  width: 300px;
  color: #fff;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

.plan-card h2 {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  color: #00d5a5;
}

.plan-card small {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #ddd;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-card p {
  font-size: 0.95rem;
  color: #ddd;
  margin-bottom: 1rem;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.plan-card ul li {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.plan-card .price {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1rem 0;
  color: #00b37a;
}

.btn {
  display: inline-block;
  background-color: #00b37a;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #008861;
  transform: scale(1.05);
}

.featured {
  border: 2px solid #00b37a;
}

/* ==== Section Wrapper ==== */
.section {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 4rem 2rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  max-width: 1000px;
  margin: 4rem auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #00ffc8;
}

.section p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #f2f2f2;
}

/* ==== Feature List ==== */
.custom-features {
  list-style: none;
  padding: 0;
}

.custom-features li {
  margin-bottom: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-left: 4px solid #00b37a;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  color: #fff;
}

.custom-features li i {
  margin-right: 10px;
  font-size: 1.2rem;
  margin-top: 3px;
  color: #00ffc8;
}

/* ==== FAQ Section ==== */
.faq-item {
  margin-bottom: 1.5rem;
  padding: 1.2rem 1rem;
  border-left: 4px solid #00b37a;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  backdrop-filter: blur(5px);
  color: #f1f1f1;
  transition: background 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.faq-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #00ffc8;
}

.faq-item p {
  font-size: 0.95rem;
  color: #ddd;
}

/* ==== Modal Signup ==== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #fff;
  color: #333;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  position: relative;
  animation: fadeUp 0.4s ease forwards;
}

.modal-content h2 {
  margin-bottom: 1rem;
  text-align: center;
  color: #00b37a;
}

.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-content input {
  padding: 0.7rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.modal-content button {
  padding: 0.8rem;
  background-color: #00b37a;
  color: white;
  border: none;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.modal-content button:hover {
  background-color: #008861;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
  color: #555;
}

/* ==== Footer ==== */
.footer {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 40px 20px 10px;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 40px;
  color: #eee;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 240px;
}

.footer-logo .logo-text {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-column p,
.footer-column li,
.footer-column a {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 13px;
  color: #888;
}

/* ==== Responsive Footer ==== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .footer-column {
    flex: 1 1 100%;
  }

  .footer-logo .logo-text {
    font-size: 28px;
  }
}

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

.plan-card,
.section {
  animation: fadeUp 0.6s ease forwards;
}
