/* ============================================================
   PIYUSH608 — MAIN SITE CSS
   Shared across ALL pages. Works with new MargBooks-style header.
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;font-size:16px;}
body{
  font-family:'Inter','Segoe UI',system-ui,sans-serif;
  color:#334155;background:#fff;
  line-height:1.7;-webkit-font-smoothing:antialiased;
  margin:0;padding:0;
}
img{max-width:100%;height:auto;display:block;}
a{text-decoration:none;color:inherit;transition:.25s ease;}
ul{list-style:none;padding:0;margin:0;}
h1,h2,h3,h4,h5,h6{
  font-family:'Poppins','Inter',sans-serif;
  color:#010948;line-height:1.25;font-weight:700;margin:0 0 1rem;
}
p{margin:0 0 1rem;}
button{cursor:pointer;font-family:inherit;}

/* ── UTILITIES ────────────────────────────────────────────── */
.pk-container{max-width:1260px;margin:0 auto;padding:0 28px;}
.pk-section{padding:72px 0;}
.pk-section-sm{padding:48px 0;}
.pk-section-lg{padding:96px 0;}
.pk-bg-light{background:#f8fafc;}
.pk-bg-white{background:#fff;}

.pk-text-center{text-align:center;}
.pk-flex{display:flex;}
.pk-flex-center{display:flex;align-items:center;justify-content:center;}
.pk-flex-between{display:flex;align-items:center;justify-content:center;}
.pk-flex-wrap{flex-wrap:wrap;}
.pk-gap-2{gap:8px;}
.pk-gap-3{gap:12px;}
.pk-gap-4{gap:16px;}

/* ── SECTION TITLE ────────────────────────────────────────── */
.pk-sec-title{margin-bottom:48px;}
.pk-sec-title.center{text-align:center;}
.pk-badge{
  display:inline-flex;align-items:center;gap:6px;
  background:#EEF0F8;color:#010948;
  font-size:.76rem;font-weight:700;letter-spacing:.06em;
  text-transform:uppercase;padding:5px 14px;
  border-radius:50px;margin-bottom:14px;
}
.pk-sec-title h2{font-size:clamp(1.6rem,3vw,2.2rem);font-weight:800;color:#010948;margin-bottom:10px;}
.pk-divider{
  width:52px;height:4px;border-radius:2px;
  background:linear-gradient(90deg,#E8192C,#F27334);
  margin:12px 0 16px;
}
.pk-sec-title.center .pk-divider{margin:12px auto 16px;}
.pk-sec-title p{font-size:.975rem;color:#64748b;max-width:600px;line-height:1.75;}
.pk-sec-title.center p{margin-left:auto;margin-right:auto;}

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.pk-page-hero{
  background:linear-gradient(135deg,#010948 0%,#0F1F6E 55%,#F27334 100%);
  padding:80px 0 56px;position:relative;overflow:hidden;
}
.pk-page-hero::before{
  content:'';position:absolute;inset:0;
  background:url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 20.5V18H0v5h5v5H0v5h20v-2.5h5V20.5H20zm-2 5h-1v-1h1v1zm-1-2h-1v-1h1v1zm2 0h-1v-1h1v1zm2 2h-1v-1h1v1z'/%3E%3C/g%3E%3C/svg%3E");
}
.pk-page-hero .pk-container{position:relative;z-index:2;}
.pk-page-hero h1{color:#fff;font-size:clamp(1.75rem,4vw,2.75rem);margin-bottom:14px;}
.pk-page-hero p{color:rgba(255,255,255,.75);font-size:1.05rem;max-width:580px;margin-bottom:0;}
.pk-page-hero .highlight{
  background:linear-gradient(90deg,#FCA5A5,#F27334);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}

/* ── BREADCRUMB ───────────────────────────────────────────── */
.pk-breadcrumb{
  display:flex;align-items:center;gap:8px;
  font-size:.82rem;flex-wrap:wrap;margin-bottom:18px;
}
.pk-breadcrumb a{color:rgba(255,255,255,.65);}
.pk-breadcrumb a:hover{color:#fff;}
.pk-breadcrumb .sep{color:rgba(255,255,255,.35);}
.pk-breadcrumb .cur{color:#fff;font-weight:600;}

/* ── BUTTONS ──────────────────────────────────────────────── */
.pk-btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:13px 28px;border-radius:9px;font-size:.9rem;font-weight:700;
  cursor:pointer;border:2px solid transparent;transition:.25s;
  font-family:inherit;white-space:nowrap;text-decoration:none;
}
.pk-btn-primary{background:#010948;color:#fff;box-shadow:0 4px 16px rgba(1,9,72,.22);}
.pk-btn-primary:hover{background:#0F1F6E;transform:translateY(-2px);box-shadow:0 6px 20px rgba(1,9,72,.4);}
.pk-btn-outline{background:#fff;color:#010948;border-color:#010948;}
.pk-btn-outline:hover{background:#010948;color:#fff;}
.pk-btn-white{background:#fff;color:#010948;}
.pk-btn-white:hover{background:#EEF0F8;}
.pk-btn-wa{background:#25d366;color:#fff;border:none;}
.pk-btn-wa:hover{background:#1da851;}
.pk-btn-sm{padding:9px 18px;font-size:.82rem;}
.pk-btn-lg{padding:15px 36px;font-size:1rem;}
.pk-btn-full{width:100%;justify-content:center;}
.pk-btn-red{background:#e11d48;color:#fff;border:none;}
.pk-btn-red:hover{background:#be123c;}

/* ── CARDS ────────────────────────────────────────────────── */
.pk-card{
  background:#fff;border-radius:14px;
  border:1px solid #EEF0F8;padding:28px;
  transition:.3s;
}
.pk-card:hover{transform:translateY(-5px);box-shadow:0 14px 36px rgba(1,9,72,.08);border-color:#010948;}

/* ── FORM CONTROLS ────────────────────────────────────────── */
.pk-form-group{margin-bottom:18px;}
.pk-label{font-size:.82rem;font-weight:700;color:#334155;display:block;margin-bottom:6px;}
.pk-input{
  width:100%;padding:12px 16px;border:1.5px solid #e2e8f0;
  border-radius:9px;font-size:.9rem;color:#1e293b;
  background:#fff;font-family:inherit;transition:.25s;
}
.pk-input:focus{outline:none;border-color:#010948;box-shadow:0 0 0 3px rgba(1,9,72,.08);}
.pk-input::placeholder{color:#94a3b8;}
textarea.pk-input{resize:vertical;min-height:130px;}
select.pk-input{cursor:pointer;}

/* ── STAT CARD ────────────────────────────────────────────── */
.pk-stat-card{
  background:#fff;border-radius:12px;border:1px solid #EEF0F8;
  padding:24px 20px;text-align:center;
}
.pk-stat-num{
  font-size:2.2rem;font-weight:900;line-height:1;
  background:linear-gradient(135deg,#E8192C,#F27334);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.pk-stat-label{font-size:.82rem;color:#64748b;margin-top:6px;font-weight:500;}

/* ── TESTIMONIAL ──────────────────────────────────────────── */
.pk-testi{
  background:#fff;border-radius:14px;border:1px solid #EEF0F8;
  padding:26px;transition:.3s;height:100%;
}
.pk-testi:hover{box-shadow:0 12px 36px rgba(0,0,0,.08);border-color:#010948;}
.pk-testi-stars{color:#f59e0b;font-size:.9rem;margin-bottom:12px;}
.pk-testi-text{font-size:.9rem;color:#334155;line-height:1.75;font-style:italic;margin-bottom:18px;}
.pk-testi-author{display:flex;align-items:center;gap:12px;}
.pk-testi-av{
  width:44px;height:44px;border-radius:50%;flex-shrink:0;
  background:linear-gradient(135deg,#E8192C,#F27334);
  color:#fff;font-size:.9rem;font-weight:800;
  display:flex;align-items:center;justify-content:center;
}
.pk-testi-name{font-size:.9rem;font-weight:700;color:#010948;}
.pk-testi-role{font-size:.76rem;color:#94a3b8;}

/* ── FAQ ──────────────────────────────────────────────────── */
.pk-faq{border:1px solid #EEF0F8;border-radius:10px;margin-bottom:10px;overflow:hidden;}
.pk-faq-q{
  display:flex;justify-content:space-between;align-items:center;
  padding:16px 20px;cursor:pointer;font-size:.9rem;font-weight:600;
  color:#1e293b;background:#fff;transition:.2s;user-select:none;
}
.pk-faq-q:hover{background:#f8fafc;color:#010948;}
.pk-faq-a{padding:0 20px 16px;font-size:.875rem;color:#64748b;line-height:1.75;display:none;}
.pk-faq.open .pk-faq-q{color:#010948;background:#f0f7ff;}
.pk-faq.open .pk-faq-a{display:block;}
.pk-faq-icon{transition:.3s;color:#94a3b8;font-size:.75rem;}
.pk-faq.open .pk-faq-icon{transform:rotate(180deg);color:#010948;}

/* ── CTA BOX ──────────────────────────────────────────────── */
.pk-cta-box{
  background:linear-gradient(135deg,#010948 0%,#0F1F6E 60%,#F27334 100%);
  border-radius:20px;padding:56px 48px;text-align:center;
  position:relative;overflow:hidden;
}
.pk-cta-box::before{
  content:'';position:absolute;top:-60px;right:-60px;
  width:220px;height:220px;border-radius:50%;background:rgba(255,255,255,.04);
}
.pk-cta-box h2{color:#fff;font-size:clamp(1.5rem,2.5vw,2rem);margin-bottom:12px;}
.pk-cta-box p{color:rgba(255,255,255,.75);font-size:.975rem;margin-bottom:28px;max-width:540px;margin-left:auto;margin-right:auto;}
.pk-cta-btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;}

/* ── PRICING CARD ─────────────────────────────────────────── */
.pk-price-card{
  background:#fff;border-radius:16px;border:2px solid #EEF0F8;
  padding:36px 28px;transition:.3s;position:relative;
}
.pk-price-card:hover,.pk-price-card.featured{
  border-color:#010948;box-shadow:0 12px 40px rgba(1,9,72,.12);transform:translateY(-6px);
}
.pk-price-card.featured{background:linear-gradient(135deg,#010948,#0F1F6E);color:#fff;}
.pk-price-card.featured h3,.pk-price-card.featured p{color:rgba(255,255,255,.85);}
.pk-price-popular{
  position:absolute;top:-13px;left:50%;transform:translateX(-50%);
  background:linear-gradient(90deg,#E8192C,#F27334);
  color:#fff;font-size:.72rem;font-weight:700;
  padding:4px 18px;border-radius:50px;white-space:nowrap;
}
.pk-price-name{font-size:.875rem;font-weight:600;color:#64748b;margin-bottom:6px;}
.pk-price-amount{font-size:2.5rem;font-weight:900;color:#010948;line-height:1;}
.pk-price-card.featured .pk-price-amount{color:#fff;}
.pk-price-divider{border:none;border-top:1px solid #EEF0F8;margin:20px 0;}
.pk-price-card.featured .pk-price-divider{border-color:rgba(255,255,255,.15);}
.pk-price-features{list-style:none;padding:0;margin:0 0 28px;}
.pk-price-features li{
  display:flex;align-items:center;gap:8px;
  font-size:.875rem;padding:6px 0;border-bottom:1px solid #f1f5f9;
}
.pk-price-card.featured .pk-price-features li{border-color:rgba(255,255,255,.1);}
.pk-price-features li:last-child{border:none;}
.pk-price-features .chk{color:#10b981;font-weight:700;}

/* ── FOOTER ───────────────────────────────────────────────── */
.pk-footer{background:#010948;color:rgba(255,255,255,.65);padding:72px 0 0;}
.pk-footer a{color:rgba(255,255,255,.6);font-size:.875rem;transition:.2s;}
.pk-footer a:hover{color:#fff;padding-left:3px;}
.pk-footer h4{color:#fff;font-size:.95rem;font-weight:700;margin-bottom:18px;text-transform:uppercase;letter-spacing:.04em;}
.pk-footer p{font-size:.875rem;line-height:1.8;}
.pk-footer-links li{margin-bottom:9px;}
.pk-footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:22px 0;margin-top:52px;
  font-size:.82rem;color:rgba(255,255,255,.4);
}
.pk-social{display:flex;gap:10px;margin-top:18px;}
.pk-social-link{
  width:38px;height:38px;border-radius:50%;
  background:rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.6);font-size:.85rem;transition:.2s;
  text-decoration:none;
}
.pk-social-link:hover{background:#010948;color:#fff;padding-left:0;}

/* ── WHATSAPP FLOAT ───────────────────────────────────────── */
.pk-wa-float{
  position:fixed;bottom:24px;left:24px;
  width:56px;height:56px;border-radius:50%;
  background:#25d366;display:flex;align-items:center;
  justify-content:center;z-index:99999;
  box-shadow:0 4px 20px rgba(37,211,102,.5);
  transition:.3s;text-decoration:none;
}
.pk-wa-float:hover{transform:scale(1.1);}
.pk-wa-float svg{width:28px;height:28px;fill:#fff;}

/* ── SCROLL TOP ───────────────────────────────────────────── */
.pk-scroll-top{
  position:fixed;bottom:24px;right:24px;
  width:42px;height:42px;border-radius:50%;
  background:#010948;color:#fff;border:none;
  display:flex;align-items:center;justify-content:center;
  opacity:0;transition:.3s;z-index:99999;cursor:pointer;
  box-shadow:0 4px 14px rgba(1,9,72,.22);
}
.pk-scroll-top.vis{opacity:1;}
.pk-scroll-top:hover{background:#0F1F6E;transform:translateY(-3px);}

/* ── MOBILE STICKY CTA ────────────────────────────────────── */
.pk-mob-cta{
  display:none;position:fixed;bottom:0;left:0;right:0;
  background:#fff;box-shadow:0 -3px 20px rgba(0,0,0,.1);
  padding:10px 16px;z-index:9998;gap:10px;
}
@media(max-width:767px){.pk-mob-cta{display:flex;}}
.pk-mob-cta a{flex:1;justify-content:center;font-size:.82rem;padding:12px 10px;}

/* ── AOS FALLBACK ─────────────────────────────────────────── */
[data-aos]{opacity:0;transition:opacity .6s ease, transform .6s ease;}
[data-aos="fade-up"]{transform:translateY(24px);}
[data-aos="fade-right"]{transform:translateX(-24px);}
[data-aos="fade-left"]{transform:translateX(24px);}
[data-aos].aos-animate{opacity:1;transform:none;}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media(max-width:1199px){
  .pk-container{padding:0 20px;}
}
@media(max-width:991px){
  .pk-section{padding:56px 0;}
  .pk-section-lg{padding:72px 0;}
}
@media(max-width:767px){
  .pk-section{padding:44px 0;}
  .pk-section-sm{padding:32px 0;}
  .pk-cta-box{padding:36px 22px;}
  .pk-page-hero{padding:60px 0 40px;}
  body{padding-bottom:60px;}
}
@media(max-width:480px){
  .pk-container{padding:0 14px;}
  .pk-btn{padding:11px 18px;font-size:.85rem;}
}

