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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #fdfdfd;
  color: #333;
}

img {
  max-width: 100%;
  display: block;
}

/* ─────── Navbar ─────────────────────────────── */
.navbar {
  background-color: #f010e5;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links a:hover {
  color: #007BFF;
}

/* ─────── Hero Section ─────────────────────────────── */
.hero-section {
  background: url('assets/images/banner.webp') center center / cover no-repeat;
  position: relative;
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 20px;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  padding: 10px 20px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: #007BFF;
  color: white;
}

.btn-glow {
  box-shadow: 0 0 10px rgba(0,123,255,0.5);
}

/* Click effect */
.btn-clicked {
  transform: scale(0.96);
  box-shadow: 0 0 0 2px #007BFF inset;
  transition: transform 0.1s, box-shadow 0.2s;
}

/* ─────── Sections ─────────────────────────────── */
.section {
  padding: 80px 20px;
}

.section-light {
  background-color: #f5f5f5;
}

.section-dark {
  background-color: #f0f0f5;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
}

.section-text {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.testimonial {
  font-style: italic;
  margin-bottom: 20px;
  text-align: center;
}

/* ─────── Tips List ─────────────────────────────── */
.tips-list {
  max-width: 600px;
  margin: auto;
  padding-left: 1.5rem;
  list-style: none;
}

.tips-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 10px;
}

.tips-list li::before {
  content: "❤️";
  position: absolute;
  left: 0;
  top: 0;
}

/* ─────── Form Styles ─────────────────────────────── */
.download-container {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.download-container form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.checkbox-label {
  font-size: 0.9rem;
}

/* ─────── Footer ─────────────────────────────── */
.footer {
  background: #222;
  color: #ccc;
  padding: 40px 20px;
  text-align: center;
}

.footer-nav {
  margin: 10px 0;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  margin: 0 10px;
}

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

/* ─────── Responsive ─────────────────────────────── */
@media (min-width: 768px) {
  .form-row {
    flex-direction: row;
  }

  .form-row input {
    flex: 1;
  }
}

.hidden {
  display: none;
}

/* ─────── Navbar Logo ─────────────────────────────── */
.navbar .logo {
  display: flex;
  align-items: center;
  
  gap: 8px;
  font-weight: 700;
  font-size: 1.35rem;
  color: #ee32ee !important;
  text-decoration: none !important;
}

.navbar .logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 3px #eba625);
}


.logo-text {
  color: #ffffff !important;
  text-shadow: 0 0 6px rgba(255,255,255,0.6);
}

/* ─────── Section Centering ─────────────────────────────── */
#welcome-love .love-container,
#community .community-container,
#emotional .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ─────── Emotional Section Video ─────────────────────────────── */
#emotional .section-lottie {
  border: 1px solid transparent;
  border-radius: 18px;
  background: linear-gradient(45deg,#ff66d4 0%,#ffa33b 50%,#53e7f2 100%) border-box;
  box-shadow: 0 0 20px rgba(255,99,222,.3);
  padding: 0;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 720px;
}

@media (max-width: 767px) {
  #emotional .section-lottie {
    max-width: 100%;
    margin: 1rem;
  }
}

/* ─────── Telegram Button ─────────────────────────────── */
.telegram-desktop,
.telegram-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.telegram-desktop {
  background-color: #229ED9;
  color: white;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 0 15px #229ED9;
  animation: blinkGlowTelegram 1.5s infinite;
}

.telegram-float {
  width: 60px;
  height: 60px;
  background-color: rgba(34, 158, 217, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(34, 158, 217, 0.3), 0 0 16px rgba(34, 158, 217, 0);
  animation: blinkGlowTelegram 0.5s infinite;
  backdrop-filter: blur(2px);
}

.telegram-float img {
  width: 100%;
  height: auto;
  display: block;
}

.telegram-inline-btn {
  display: inline-block;
  background-color: #229ED9;
  color: white;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  animation: blinkGlowTelegram 1.5s infinite;
  transition: background 0.3s ease;
}

.telegram-inline-btn i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.telegram-inline-btn:hover {
  background-color: #1a8bb4;
}

@keyframes blinkGlowTelegram {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 10px rgba(34, 158, 217, 0.6), 0 0 20px rgba(34, 158, 217, 0.3);
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 20px rgba(34, 158, 217, 1), 0 0 40px rgba(34, 158, 217, 0.8);
  }
}

/* Hide desktop telegram button on small screens */
@media (max-width: 768px) {
  .telegram-desktop {
    display: none;
  }
}

/* Hide float on large screens */
@media (min-width: 769px) {
  .telegram-float {
    display: none;
  }
}

/* ─────── Pricing Section ───────────────────────── */
.pricing-section {
  background: #fafafa;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: #ee32ee;
  margin-bottom: 10px;
}

.desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  color: #333;
}

.pricing-card ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.btn {
  background: #ee32ee;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #d020d0;
}

.btn.primary {
  background: #d020d0;
}

/* Highlight featured (middle) card */
.pricing-card.featured {
  border: 2px solid #ee32ee;
  box-shadow: 0 8px 30px rgba(238, 50, 238, 0.15);
}
