/* === GLOBAL RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  height: 100%;
  background: linear-gradient(135deg, #ffd1dc, #ffb6c1);
  background-attachment: fixed;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

/* === GLASSMORPHISM BASE === */
.glass {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
}

/* === HEADER === */
header {
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header.glass {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* === LOGO === */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.logo h1 {
  font-size: 1.5rem;
  color: #e91e63;
  white-space: nowrap;
}

/* === NAVIGATION === */
nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
nav a {
  text-decoration: none;
  color: #fff;
  margin: 0.5rem 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #ffebee;
}

/* === HOME PAGE === */
.home {
  padding: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* === HERO SECTION (HOME) === */
.home .hero {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.home .hero-text {
  flex: 1;
  min-width: 280px;
}

.home .hero-text h1 {
  font-size: 6.5rem;
  margin-bottom: 0.5rem;
}

.home .hero-text .tagline {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.home .hero-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.home .hero-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 85px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* === APP SHOWCASE SECTION === */
.showcase {
  padding: 4rem 2rem;
  margin: 4rem auto;
  max-width: 1500px;
  text-align: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

/* Liquid animation background */
.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.25), transparent 60%);
  animation: liquidMove 10s infinite linear;
  opacity: 0.4;
  z-index: 0;
}

@keyframes liquidMove {
  0% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(25px, -25px) rotate(180deg); }
  100% { transform: translate(0,0) rotate(360deg); }
}

.showcase h2 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}

.showcase-intro {
  color: #333;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}

/* === Horizontal Layout (4 columns) === */
.showcase-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* ✅ 4 in one row */
  gap: 2rem;
  justify-items: center;
  align-items: start;
  position: relative;
  z-index: 2;
}

.showcase-item {
  width: 100%;
  max-width: 300px; /* ✅ Keeps consistent width */
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.showcase-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.showcase-item img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.showcase-item:hover img {
  transform: scale(1.1);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .showcase-gallery {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablet */
  }
}

@media (max-width: 600px) {
  .showcase-gallery {
    grid-template-columns: 1fr; /* Stack vertically on mobile */
  }
}


/* === FEATURES SECTION (HOME) === */
.features {
  padding: 2rem;
  border-radius: 16px;
}

.features h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.features-grid .feature {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  padding: 1rem;
  text-align: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.features-grid .feature img {
  height: 60px;
  margin-bottom: 1rem;
}

.features-grid .feature h3 {
  margin-bottom: 0.5rem;
}

/* === TESTIMONIALS SECTION === */
.testimonials {
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
}

.testimonials h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.reviews {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.review {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.review p {
  font-style: italic;
  margin-bottom: 0.5rem;
}

.review span {
  font-size: 0.9rem;
  color: #666;
}

/* === CTA DOWNLOAD (HOME) === */
.cta-download {
  padding: 2rem;
  text-align: center;
  border-radius: 16px;
}

.cta-download h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cta-download p {
  margin-bottom: 1.5rem;
}

.cta-download .play-badge {
  height: 50px;
}

/* === RESPONSIVE EXTENSIONS === */
@media (max-width: 768px) {
  .home .hero {
    flex-direction: column;
    text-align: center;
  }

  .home .hero-text h1 {
    font-size: 2rem;
  }

  .features-grid,
  .reviews {
    flex-direction: column;
    align-items: center;
  }
}


/* === MAIN PAGE === */
.about-page {
  padding: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* === HERO SECTION === */
.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.hero-image {
  flex: 1;
  min-width: 280px;
}
.hero-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.hero-content {
  flex: 2;
  min-width: 280px;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.hero-content .tagline {
  font-size: 1.2rem;
  color: #555;
}

/* === ABOUT SECTION === */
.about-section {
  padding: 2rem;
  border-radius: 16px;
  line-height: 1.6;
}

/* === FEATURES GRID === */
.features-grid {
  padding: 2rem;
  border-radius: 16px;
}
.features-grid .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.feature {
  flex: 1;
  min-width: 250px;
  padding: 1rem;
  text-align: center;
  border-radius: 16px;
}
.feature img {
  height: 60px;
  margin-bottom: 1rem;
}
.feature h3 {
  margin-bottom: 0.5rem;
}

/* === CTA DOWNLOAD === */
.cta-download {
  padding: 2rem;
  text-align: center;
  border-radius: 16px;
}
.cta-download h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.cta-download p {
  margin-bottom: 1.5rem;
}
.cta-download img {
  height: 50px;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  background: rgba(233, 30, 99, 0.8);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.btn:hover {
  background: rgba(216, 27, 96, 0.9);
  transform: translateY(-2px);
}

/* === FOOTER === */
footer {
  text-align: center;
  font-size: 0.9rem;
  padding: 1rem;
  margin-top: auto;
}
footer.glass {
  background: rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .features-grid .grid {
    flex-direction: column;
  }
}


/* === HEADER BASE === */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff6b6b;
}

/* === HAMBURGER ICON === */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* When active, turn into "X" */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* === MOBILE MENU with TRUE LIQUID GLASS EFFECT === */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: 15px;

    /* 🌊 True liquid glass effect */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.35);

    flex-direction: column;
    align-items: flex-start;
    width: 220px;
    border-radius: 20px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

    transform: translateX(120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  /* ✅ When menu opens */
  .nav-links.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    color: #fff;
    display: block;
    width: 100%;
    margin: 0.7rem 0;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }
}






/* --- FAQ Section --- */
.faq-section {
  text-align: center;
  color: #222; /* Darker base text for contrast */
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.35); /* Brighter glass */
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 20px;
  margin: 60px auto;
  max-width: 900px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.faq-intro {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #111;
  font-size: 1.05rem;
  padding: 18px 20px;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.4);
}

.faq-question::after {
  content: "▼";
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 20px 20px;
}

.faq-answer ul {
  list-style: disc;
  margin-left: 20px;
}

.faq-answer li {
  margin-bottom: 6px;
}



/* === PRIVACY PAGE === */
.privacy-page {
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* === LIQUID GLASS CARD === */
.privacy-glass {
  max-width: 900px;
  padding: 3rem 2.5rem;
  border-radius: 22px;

  /* ✅ Perfect matching glass */
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.25);

  position: relative;
  overflow: hidden;
  line-height: 1.7;
}

/* 🌊 Liquid soft shifting highlight */
.privacy-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.25), transparent 70%);
  animation: liquidMove 12s infinite linear;
  opacity: 0.45;
  z-index: 0;
}

.privacy-glass * {
  position: relative;
  z-index: 2; /* Ensures text is above liquid effect */
}

/* Typography Cleanup */
.privacy-glass h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #111;
}

.privacy-glass h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
}

.privacy-glass ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .privacy-glass {
    padding: 1.8rem;
  }
  .privacy-glass h2 {
    font-size: 1.7rem;
  }
}

