/* Colors, fonts, base body styles, and nav now live in assets/css/shared.css
   (loaded before this file) — this file only holds page-specific styles. */

/* ── ANIMATED BG ORBS ── */
.bg-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.10; animation: orbFloat linear infinite; }
.orb1 { width: 600px; height: 600px; background: var(--gold);   top: -200px; left: -200px; animation-duration: 22s; }
.orb2 { width: 500px; height: 500px; background: var(--glow-blue); bottom: -200px; right: -100px; animation-duration: 28s; animation-delay: -12s; opacity: 0.06; }
.orb3 { width: 280px; height: 280px; background: var(--gold);   top: 50%; left: 65%; animation-duration: 18s; animation-delay: -6s; }

@keyframes orbFloat {
  0%   { transform: translate(0,0) scale(1); }
  33%  { transform: translate(40px,-60px) scale(1.08); }
  66%  { transform: translate(-30px,40px) scale(0.95); }
  100% { transform: translate(0,0) scale(1); }
}

/* ── SCROLL REVEAL ── */
/* .reveal animation now lives in assets/css/shared.css for a consistent, premium easing curve across both pages */

/* ── SHARED ── */
section { position: relative; z-index: 1; }

.section-label {
  font-family: var(--font-en);
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-bn);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-desc {
  font-family: var(--font-bn);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.9;
  max-width: 560px;
  font-weight: 300;
}

.gold-divider { width: 44px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin: 1rem auto 0; opacity: 0.7; }
.gold-divider.left { margin-left: 0; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  z-index: 1;
}

.hero-content { max-width: 820px; }

.logo-wrap { margin-bottom: 2rem; animation: fadeDown 0.9s 0.1s ease both; }
.logo-img {
  width: 260px; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(212,175,106,0.35));
  animation: logoPulse 4s ease-in-out infinite;
}
@keyframes logoPulse {
  0%,100% { transform: scale(1); opacity: 0.92; }
  50%      { transform: scale(1.03); opacity: 1; }
}

.tagline-top {
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 500;
  animation: fadeDown 0.8s 0.25s ease both;
  opacity: 0;
}

.hero h1 {
  font-family: var(--font-bn);
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 0.2rem;
  animation: fadeUp 0.9s 0.35s ease both;
  opacity: 0;
}
.hero h1 .accent { color: var(--gold); }

.hero-subtitle {
  font-family: var(--font-bn);
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  color: var(--muted);
  max-width: 500px;
  margin: 1.6rem auto 2.8rem;
  line-height: 1.9;
  font-weight: 300;
  animation: fadeUp 0.9s 0.5s ease both;
  opacity: 0;
}

.cta-group {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.9s 0.7s ease both;
  opacity: 0;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-family: var(--font-bn); font-weight: 600; font-size: 0.92rem;
  padding: 0.9rem 2.2rem; border-radius: 999px; text-decoration: none;
  transition: all 0.3s cubic-bezier(.19,1,.22,1); box-shadow: 0 8px 30px rgba(212,175,106,0.22);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(212,175,106,0.34); filter: brightness(1.05); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--gold-border); color: var(--gold-light);
  font-family: var(--font-bn); font-weight: 500; font-size: 0.92rem;
  padding: 0.9rem 2.2rem; border-radius: 999px; text-decoration: none;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(.19,1,.22,1);
}
.btn-outline:hover { background: var(--glass-bg-hi); border-color: var(--gold); transform: translateY(-3px); }

.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--muted); font-family: var(--font-en); font-size: 0.62rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  animation: fadeUp 1s 1.3s ease both; opacity: 0;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.15); }
}

@keyframes fadeDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeUp   { from { opacity:0; transform:translateY(32px); }  to { opacity:1; transform:translateY(0); } }

/* ── SERVICES ── */
.services {
  padding: 8.5rem 2rem;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-header { text-align: center; margin-bottom: 4rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  transition: all 0.4s cubic-bezier(.19,1,.22,1);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; top:0; left:0; right:0; height:2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.service-card:hover { border-color: var(--gold-border); background: var(--glass-bg-hi); transform: translateY(-6px); box-shadow: 0 24px 55px rgba(0,0,0,0.32); }
.service-card:hover::after { opacity: 1; }

.service-icon { font-size: 1.8rem; margin-bottom: 1.1rem; display: block; }
.service-card h3 { font-family: var(--font-bn); font-size: 1.15rem; color: var(--gold-light); margin-bottom: 0.6rem; font-weight: 600; }
.service-card p  { font-family: var(--font-bn); color: var(--text-soft); font-size: 0.9rem; line-height: 1.85; font-weight: 300; }

/* ── PRICING ── */
.pricing { padding: 8.5rem 2rem; background: var(--navy); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 4rem; }

.retail-panel {
  margin-top: 6rem;
  padding-top: 5.5rem;
  border-top: 1px solid rgba(212,175,106,0.14);
  position: relative;
}
.retail-panel::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;   /* সব কার্ড সমান উচ্চতা */
}
.pricing-grid.packages-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* প্রতিটা কার্ড flex column — ভেতরের কন্টেন্ট stretch হবে */
.plan-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  position: relative;
  transition: all 0.4s cubic-bezier(.19,1,.22,1);
}
.plan-card:hover { transform: translateY(-8px); border-color: var(--gold-border); box-shadow: 0 32px 65px rgba(0,0,0,0.38); }
.plan-card.featured { border-color: var(--gold); background: linear-gradient(160deg, rgba(201,168,76,0.07) 0%, rgba(255,255,255,0.02) 100%); }

.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-family: var(--font-en); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.3rem 1rem; border-radius: 20px; white-space: nowrap;
}

.plan-bonus {
  background: rgba(212,175,106,.1); border: 1px solid rgba(212,175,106,.3);
  border-radius: 10px; padding: 10px 14px; font-size: 13px; color: var(--gold-light);
  margin-bottom: 18px; line-height: 1.5;
}

.plan-name    { font-family: var(--font-en); font-size: 1.5rem; color: var(--white); font-weight: 700; margin-bottom: 0.3rem; }
.plan-tagline { font-family: var(--font-bn); font-size: 0.8rem; color: var(--muted); margin-bottom: 1.4rem; font-weight: 300; }

.plan-price { margin-bottom: 1.4rem; padding-bottom: 1.4rem; border-bottom: 1px solid rgba(201,168,76,0.1); }

.price-original { font-family: var(--font-en); font-size: 0.82rem; color: var(--muted); text-decoration: line-through; opacity: 0.65; margin-bottom: 0.2rem; }

.price-row { display: flex; align-items: baseline; gap: 0.2rem; }
.plan-price .currency { font-family: var(--font-en); font-size: 1.1rem; color: var(--gold); font-weight: 600; }
.plan-price .amount   { font-family: var(--font-en); font-size: 2.6rem; color: var(--gold); font-weight: 700; line-height: 1; }
.plan-price .period   { font-family: var(--font-bn); font-size: 0.78rem; color: var(--muted); display: block; margin-top: 0.3rem; }

.pricing-note {
  font-family: var(--font-bn);
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  max-width: 640px;
  margin: 2rem auto 0;
  line-height: 1.8;
  opacity: 0.85;
}

/* features flex-grow দিয়ে CTA সবসময় নিচে থাকবে */
.plan-features { list-style: none; margin-bottom: 1.8rem; flex: 1; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-family: var(--font-bn); font-size: 0.85rem; color: var(--muted);
  padding: 0.48rem 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.55; font-weight: 300;
}
.plan-features li::before { content: '✦'; color: var(--gold); font-size: 0.5rem; margin-top: 0.45rem; flex-shrink: 0; }

.plan-cta {
  display: block; text-align: center; padding: 0.95rem;
  border-radius: 999px; text-decoration: none;
  font-family: var(--font-bn); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.02em; transition: all 0.3s cubic-bezier(.19,1,.22,1);
  margin-top: auto; /* সবসময় কার্ডের একেবারে নিচে */
}
.plan-cta.outlined { border: 1px solid rgba(201,168,76,0.4); color: var(--gold); }
.plan-cta.outlined:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }
.plan-cta.solid { background: var(--gold); color: var(--navy); }
.plan-cta.solid:hover { background: var(--gold-light); box-shadow: 0 6px 25px rgba(201,168,76,0.35); }

/* ── WHY US ── */
.why { padding: 8.5rem 2rem; background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%); }
.why-inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}

.why-points { display: flex; flex-direction: column; gap: 1.6rem; }
.why-point  { display: flex; gap: 1rem; align-items: flex-start; }
.why-point-icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--glass-bg); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; transition: all 0.3s cubic-bezier(.19,1,.22,1);
}
.why-point:hover .why-point-icon { background: rgba(201,168,76,0.18); transform: scale(1.1); }
.why-point-text h4 { font-family: var(--font-bn); color: var(--white); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; }
.why-point-text p  { font-family: var(--font-bn); color: var(--muted); font-size: 0.85rem; line-height: 1.75; font-weight: 300; }

/* ── CONTACT ── */
.contact { padding: 8.5rem 2rem 6rem; text-align: center; background: var(--navy); position: relative; border-top: 1px solid rgba(212,175,106,0.14); }
.contact::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.contact::before {
  content: ''; position: absolute; top:0; left:50%; transform:translateX(-50%);
  width: 220px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.35;
}
.contact-inner { max-width: 600px; margin: 0 auto; }

.fb-button {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: #1877f2; color: #fff;
  font-family: var(--font-bn); font-weight: 600; font-size: 0.95rem;
  padding: 1.1rem 2.8rem; border-radius: 999px; text-decoration: none;
  margin-top: 2.5rem; transition: all 0.3s cubic-bezier(.19,1,.22,1);
  box-shadow: 0 8px 30px rgba(24,119,242,0.28);
}
.fb-button:hover { background: #0e6edf; transform: translateY(-3px); box-shadow: 0 14px 40px rgba(24,119,242,0.4); }
.fb-icon { width: 22px; height: 22px; fill: white; }

/* ── FOOTER ── */
footer {
  background: var(--navy-mid);
  padding: 2.5rem 2rem; text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-family: var(--font-bn); color: var(--muted); font-size: 0.8rem; font-weight: 300;
}
footer strong { color: var(--gold); font-weight: 600; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .why-inner     { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 580px) {
  .services-grid { grid-template-columns: 1fr; }
}
