/* =============================================
   BIZCARE THEME — main.css
   ============================================= */

:root {
  --gold: #F5A623;
  --gold-light: #FFD166;
  --gold-dark: #C8860A;
  --green: #06C167;
  --green-dark: #04a055;
  --dark: #0A0A0F;
  --dark2: #13131A;
  --dark3: #1C1C28;
  --card: #1E1E2E;
  --text: #E8E8F0;
  --muted: #8888AA;
  --white: #FFFFFF;
  --red: #FF4757;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Serif Bengali', serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 20px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(245,166,35,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 85% 80%, rgba(6,193,103,0.10) 0%, transparent 60%);
}
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  text-align: center;
  max-width: 780px;
}
.eid-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.35);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 28px;
  animation: fadeDown 0.6s ease both;
}
.moon-icon { font-size: 1.1rem; }

h1 {
  font-family: 'Noto Serif Bengali', serif;
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 12px;
  animation: fadeUp 0.7s ease 0.15s both;
}
h1 span.gold { color: var(--gold); }
h1 span.green { color: var(--green); }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeUp 0.7s ease 0.25s both;
}
.hero-sub strong { color: var(--text); }

/* Countdown */
.countdown-wrap { margin-bottom: 40px; animation: fadeUp 0.7s ease 0.35s both; }
.countdown-label { font-size: 0.8rem; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.countdown { display: flex; gap: 12px; justify-content: center; }
.cd-box {
  background: var(--card);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 70px;
  text-align: center;
}
.cd-num { font-family: 'Noto Serif Bengali', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.cd-label { font-size: 0.7rem; color: var(--muted); margin-top: 4px; }

/* Price hero */
.price-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.45s both;
}
.price-old { font-size: 1.1rem; text-decoration: line-through; color: var(--muted); }
.price-new { font-family: 'Noto Serif Bengali', serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: var(--green); }
.price-new span { font-size: 1rem; font-family: 'Noto Serif Bengali', serif; font-weight: 400; }
.price-badge { background: var(--red); border-radius: 8px; padding: 6px 14px; font-size: 0.85rem; font-weight: 700; color: #fff; }

.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.7s ease 0.55s both; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  border: none;
  border-radius: 50px;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Noto Serif Bengali', serif;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px rgba(245,166,35,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(245,166,35,0.5); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 16px 28px;
  font-size: 1rem;
  font-family: 'Noto Serif Bengali', serif;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); background: rgba(245,166,35,0.07); }

.free-banner {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(6,193,103,0.1);
  border: 1px solid rgba(6,193,103,0.3);
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 0.95rem;
  animation: fadeUp 0.7s ease 0.65s both;
}
.free-banner strong { color: var(--green); }

/* ===== SECTIONS ===== */
section { padding: 80px 20px; }
.container { max-width: 1000px; margin: 0 auto; }
.section-label { font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; text-align: center; }
.section-title { font-family: 'Noto Serif Bengali', serif; font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; text-align: center; margin-bottom: 16px; line-height: 1.2; }
.section-desc { text-align: center; color: var(--muted); font-size: 1rem; max-width: 560px; margin: 0 auto 50px; line-height: 1.7; }

/* ===== PAIN ===== */
.pain-section { background: var(--dark2); }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.pain-card { background: var(--dark3); border: 1px solid rgba(255,71,87,0.2); border-radius: 16px; padding: 24px; position: relative; overflow: hidden; }
.pain-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.pain-emoji { font-size: 1.8rem; margin-bottom: 12px; }
.pain-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.pain-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ===== TARGET ===== */
.target-section { background: var(--dark); }
.target-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.target-card { background: var(--card); border: 1px solid rgba(245,166,35,0.15); border-radius: 16px; padding: 24px 20px; text-align: center; transition: border-color 0.2s, transform 0.2s; cursor: default; }
.target-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.target-icon { font-size: 2.2rem; margin-bottom: 12px; }
.target-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.target-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

/* ===== SERVICES ===== */
.services-section { background: var(--dark2); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card { background: var(--dark3); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 30px; position: relative; overflow: hidden; transition: border-color 0.25s, transform 0.25s; }
.service-card:hover { border-color: rgba(245,166,35,0.4); transform: translateY(-4px); }
.service-card.featured { border-color: rgba(245,166,35,0.5); background: linear-gradient(135deg, #1E1E2E, #1a1a2a); }
.featured-tag { position: absolute; top: 16px; right: 16px; background: var(--gold); color: #000; font-size: 0.7rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; letter-spacing: 1px; }
.service-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; background: rgba(245,166,35,0.12); }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.service-list { list-style: none; }
.service-list li { font-size: 0.85rem; color: var(--text); padding: 5px 0; display: flex; align-items: center; gap: 8px; }
.service-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ===== PRICING ===== */
.pricing-section { background: var(--dark); }
.pricing-card { max-width: 560px; margin: 0 auto; background: var(--card); border: 2px solid var(--gold); border-radius: 28px; padding: 40px; position: relative; overflow: hidden; }
.pricing-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(245,166,35,0.08), transparent 60%); pointer-events: none; }
.pricing-top { text-align: center; margin-bottom: 32px; }
.pricing-eid-tag { display: inline-block; background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.4); color: var(--gold-light); font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; padding: 6px 18px; border-radius: 50px; margin-bottom: 20px; }
.pricing-amount { display: flex; align-items: flex-end; justify-content: center; gap: 12px; margin-bottom: 8px; }
.old-price { font-size: 1.5rem; text-decoration: line-through; color: var(--muted); padding-bottom: 4px; }
.new-price { font-family: 'Noto Serif Bengali', serif; font-size: 4rem; font-weight: 900; color: var(--green); line-height: 1; }
.new-price sup { font-size: 1.5rem; vertical-align: super; }
.savings-badge { display: inline-block; background: var(--red); color: #fff; font-size: 0.85rem; font-weight: 700; padding: 6px 16px; border-radius: 8px; margin-bottom: 6px; }
.savings-note { font-size: 0.82rem; color: var(--muted); }
.divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 28px 0; }
.pricing-items { list-style: none; }
.pricing-items li { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.04); }
.pricing-items li:last-child { border-bottom: none; }
.item-left { display: flex; align-items: center; gap: 10px; }
.item-left .ic { font-size: 1.1rem; }
.item-price { font-weight: 700; }
.free { color: var(--green); font-weight: 700; }
.strike { text-decoration: line-through; color: var(--muted); font-size: 0.85rem; }
.total-row { display: flex; justify-content: space-between; align-items: center; background: rgba(6,193,103,0.1); border: 1px solid rgba(6,193,103,0.25); border-radius: 12px; padding: 14px 18px; margin-top: 20px; font-weight: 700; font-size: 1rem; }
.total-val { color: var(--green); font-size: 1.2rem; }
.pricing-cta { margin-top: 28px; text-align: center; }
.pricing-cta .btn-primary { width: 100%; justify-content: center; font-size: 1.1rem; padding: 18px; }
.pricing-note { font-size: 0.8rem; color: var(--muted); margin-top: 12px; }

/* ===== HOSTING ===== */
.hosting-section { background: var(--dark2); }
.hosting-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 700px; margin: 0 auto; }
.host-card { background: var(--card); border-radius: 20px; padding: 30px; text-align: center; border: 1px solid rgba(255,255,255,0.07); }
.host-card.yes { border-color: rgba(6,193,103,0.35); }
.host-card.no { border-color: rgba(245,166,35,0.25); }
.host-icon { font-size: 2.5rem; margin-bottom: 14px; }
.host-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.host-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ===== WHY ===== */
.why-section { background: var(--dark); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.why-card { background: var(--card); border-radius: 16px; padding: 24px; border: 1px solid rgba(255,255,255,0.06); text-align: center; }
.why-num { font-family: 'Noto Serif Bengali', serif; font-size: 2.5rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.why-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.why-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ===== CTA FINAL ===== */
.cta-section { background: var(--dark2); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(245,166,35,0.1), transparent 65%); pointer-events: none; }
.cta-section .section-title { margin-bottom: 16px; }
.cta-section .section-desc { margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.contact-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.07); }
.contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.contact-item .ci { font-size: 1.2rem; }
.contact-item a { color: var(--gold-light); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }

/* Footer */
footer { background: var(--dark); text-align: center; padding: 24px 20px; font-size: 0.8rem; color: var(--muted); border-top: 1px solid rgba(255,255,255,0.05); }
footer span { color: var(--gold); }

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 20px; right: 20px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 50px;
  padding: 14px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: 'Noto Serif Bengali', serif;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.2s;
}
.sticky-cta:hover { transform: scale(1.05); }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Pulse */
.pulse-wrap { position: relative; display: inline-block; }
.pulse-wrap::after { content: ''; position: absolute; inset: -6px; border-radius: 50px; border: 2px solid var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 0.7; transform: scale(1); } 70% { opacity: 0; transform: scale(1.12); } 100% { opacity: 0; transform: scale(1.12); } }

/* Responsive */
@media (max-width: 500px) {
  .hosting-cards { grid-template-columns: 1fr; }
  .cd-box { padding: 10px 12px; min-width: 55px; }
}
