/* ===========================
   ABOUT PAGE STYLES
   =========================== */

/* STORY */
.story-section {
  padding: 7rem 0;
  background: var(--bg-secondary);
}

/* =========================
   PACKAGES SECTION
   ========================= */

.packages-section {
  padding: 0 20px;
}

.packages-section h1 {
  text-align: center;
  font-size: 2.5rem;
  color: white;
}

.packages-section .subtitle {
  text-align: center;
  color: rgba(255,255,255,0.7);
  margin-bottom: 60px;
}

/* GRID */
.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.package {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 35px 25px;
  transition: all 0.3s ease;
  color: white;
  display: flex;
  flex-direction: column;
}

/* HOVER */
.package:hover {
  transform: translateY(-10px);
  border-color: rgba(102,126,234,0.6);
  box-shadow: 0 20px 60px rgba(102,126,234,0.2);
}

/* FEATURED */
.package.featured {
  border: 2px solid #667eea;
  box-shadow: 0 0 30px rgba(102,126,234,0.4);
}

/* TITLE */
.package-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* PRICE */
.price {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #36d1da, #5b86e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.currency {
  font-size: 0.5em;
  color: rgba(255,255,255,0.6);
}

/* TIMELINE */
.timeline {
  color: rgba(255,255,255,0.6);
  margin-bottom: 25px;
}

/* FEATURES */
.features {
  margin-bottom: 20px;
}

.features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
}

.features li:last-child {
  border-bottom: none;
}

.check { color: #4ade80; margin-right: 10px; }
.cross { color: #f87171; margin-right: 10px; }

/* LIMITATIONS */
.limitations {
  background: rgba(255, 200, 0, 0.08);
  border-left: 3px solid #f59e0b;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
}

/* =========================
   BUTTONS (FIXED PROPERLY)
   ========================= */

.package-btn {
  margin-top: auto; /* pushes button to bottom */
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
}

.package-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* COLORS */
.basic-btn {
  background: linear-gradient(135deg, #af4d4d, #c40000);
}

/* STANDARD - GREEN GRADIENT */
.standard-btn {
  background: linear-gradient(135deg, #6cd899, #007e33);
}

/* PREMIUM - ORANGE GRADIENT */
.premium-btn {
  background: linear-gradient(135deg, #6ad1ee, #3d30c7);
}

/* =========================
   NOTES
   ========================= */

.note {
  margin-top: 60px;
  padding: 30px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

/* =========================
   LOGO (CLEANED)
   ========================= */

.logo {
  width: 3.5vw;
  max-width: 150px;
}

.logo-main {
  width: 20vw;
  max-width: 750px;
}

/* =========================
   RESPONSIVE FIXES
   ========================= */

@media (max-width: 768px) {

  .packages {
    grid-template-columns: 1fr;
  }

  .packages-section h1 {
    font-size: 2rem;
  }

  /* LOGO BIGGER ON MOBILE */
  .logo {
    width: 10vw;
  }

  .logo-main {
    width: 45vw;
  }

  /* BUTTON FULL WIDTH + CENTER */
  .package-btn {
    width: 100%;
    max-width: 320px;
    margin: 20px auto 0 auto; /* THIS centers it */
  }
}

@media (max-width: 480px) {
  .package {
    padding: 25px 18px;
  }

  .package-btn {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .section-tag {
    color: rgba(255, 255, 255, 0.95);        /* white text */
    background: rgba(255, 255, 255, 0.4);    /* semi-transparent white */
    border: 1px solid rgba(255, 255, 255, 0.5);

    font-size: 0.7rem;                       /* slightly smaller */
    letter-spacing: 0.1em;
    padding: 0.25rem 0.9rem;

    backdrop-filter: blur(6px);              /* glass effect */
  }
}
