/* =========================================================
   MIDNIGHT PURPLE — Modern Pro CSS
   - Responsive + Smooth scroll
   - Glass / Gradient glow / Background pattern
   - Parallax sections
   - Micro-interactions (hover, focus, subtle motion)
   Sections:
   Hero, Reviews (slider-ready), Services, Offer/Pricing, FAQ,
   Contact (separate page), Checkout (Card/PayPal)
   ========================================================= */

/* -------------------- Reset / Base -------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

:root{
  /* Midnight Purple palette */
  --bg0: #070314;
  --bg1: #0c0620;
  --card: rgba(255,255,255,0.06);
  --card2: rgba(255,255,255,0.09);
  --stroke: rgba(255,255,255,0.10);
  --stroke2: rgba(255,255,255,0.16);

  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --soft: rgba(255,255,255,0.52);

  --primary: #8b5cf6;   /* violet */
  --primary2:#a78bfa;   /* lavender */
  --accent:  #22d3ee;   /* cyan glow accent */
  --hot:     #ff4fd8;   /* pink glow accent */

  --shadow: 0 18px 55px rgba(0,0,0,0.55);
  --shadow2: 0 10px 26px rgba(0,0,0,0.40);

  --radius: 22px;
  --radius2: 16px;

  --container: 1140px;
  --pad: clamp(18px, 3vw, 36px);

  --t: 220ms;
  --t2: 420ms;

  --ring: 0 0 0 4px rgba(139,92,246,0.28);
}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 900px at 20% 10%, rgba(139,92,246,0.20), transparent 55%),
              radial-gradient(900px 700px at 85% 15%, rgba(34,211,238,0.12), transparent 50%),
              radial-gradient(900px 700px at 80% 90%, rgba(255,79,216,0.10), transparent 55%),
              linear-gradient(180deg, var(--bg0), var(--bg1));
  min-height: 100vh;
  overflow-x: hidden;
}

/* Subtle background pattern */
body::before{
  content:"";
  position: fixed;
  inset:0;
  pointer-events:none;
  opacity: 0.18;
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.16) 1px, transparent 1px);
  background-size: 22px 22px;
  mix-blend-mode: overlay;
  filter: blur(0.2px);
  z-index: -2;
}

/* Ambient glow blobs */
body::after{
  content:"";
  position: fixed;
  inset:-20%;
  pointer-events:none;
  background:
    radial-gradient(380px 300px at 30% 30%, rgba(139,92,246,0.20), transparent 60%),
    radial-gradient(300px 260px at 70% 25%, rgba(34,211,238,0.14), transparent 60%),
    radial-gradient(360px 300px at 70% 75%, rgba(255,79,216,0.12), transparent 62%);
  filter: blur(22px);
  z-index: -3;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button, input, textarea, select{ font: inherit; color: inherit; }
::selection{ background: rgba(139,92,246,0.35); }

/* -------------------- Layout Helpers -------------------- */
.container{
  width: min(var(--container), calc(100% - 2*var(--pad)));
  margin-inline: auto;
}

.section{
  padding: clamp(64px, 8vw, 112px) 0;
  position: relative;
}

.section-title{
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.section-subtitle{
  color: var(--muted);
  max-width: 68ch;
  margin: 0 0 28px;
}

.grid{
  display:grid;
  gap: 18px;
}
.grid-2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3{ grid-template-columns: repeat(3, minmax(0,1fr)); }

@media (max-width: 980px){
  .grid-3{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 680px){
  .grid-2, .grid-3{ grid-template-columns: 1fr; }
}

/* -------------------- Cards / Glass -------------------- */
.card{
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(420px 180px at 15% 10%, rgba(139,92,246,0.18), transparent 60%),
              radial-gradient(420px 180px at 85% 20%, rgba(34,211,238,0.14), transparent 60%);
  opacity: 0.7;
  pointer-events:none;
}

.card > *{ position: relative; }

.card-pad{ padding: clamp(18px, 2.4vw, 28px); }

.lift{
  transition: transform var(--t2) ease, border-color var(--t) ease, box-shadow var(--t2) ease;
}
.lift:hover{
  transform: translateY(-6px);
  border-color: rgba(167,139,250,0.35);
  box-shadow: 0 22px 60px rgba(0,0,0,0.55);
}

/* -------------------- Buttons -------------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  cursor:pointer;
  user-select:none;
  transition: transform var(--t) ease, background var(--t) ease, border-color var(--t) ease, box-shadow var(--t2) ease;
  will-change: transform;
}
.btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(167,139,250,0.38);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.btn:active{ transform: translateY(0); }

.btn-primary{
  background: linear-gradient(135deg, rgba(139,92,246,0.95), rgba(255,79,216,0.55));
  border-color: rgba(167,139,250,0.35);
  box-shadow: 0 18px 55px rgba(139,92,246,0.22);
}
.btn-primary:hover{
  box-shadow: 0 22px 70px rgba(139,92,246,0.28);
}
.btn-ghost{
  background: transparent;
  border-color: rgba(255,255,255,0.16);
}

/* Focus ring */
:focus-visible{
  outline: none;
  box-shadow: var(--ring);
  border-color: rgba(167,139,250,0.45) !important;
}

/* -------------------- Header / Nav (optional) -------------------- */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(7,3,20,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}
.logo-slot{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 200px;
}
.logo-placeholder{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.22);
  box-shadow: 0 0 0 1px rgba(139,92,246,0.15) inset;
}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand-text b{ letter-spacing:-0.02em; }
.brand-text span{ color: var(--muted); font-size: 13px; }

.nav{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a{
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: background var(--t) ease, color var(--t) ease, border-color var(--t) ease, transform var(--t) ease;
}
.nav a:hover{
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
  transform: translateY(-1px);
}
@media (max-width: 760px){
  .logo-slot{ min-width: unset; }
  .nav{ gap: 8px; }
  .nav a{ padding: 9px 10px; font-size: 14px; }
}

/* -------------------- Parallax Sections -------------------- */
.parallax{
  position: relative;
  background:
    radial-gradient(800px 500px at 20% 0%, rgba(139,92,246,0.22), transparent 60%),
    radial-gradient(700px 500px at 85% 10%, rgba(34,211,238,0.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  background-attachment: fixed;
  overflow: hidden;
}
.parallax::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(7,3,20,0.20), rgba(7,3,20,0.82));
  pointer-events:none;
}

/* Decorative stars */
.parallax .stars{
  position:absolute;
  inset:-10%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.45) 1px, transparent 1px),
    radial-gradient(circle at 60% 40%, rgba(255,255,255,0.35) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.25) 1px, transparent 1px);
  background-size: 160px 160px, 220px 220px, 280px 280px;
  opacity: 0.16;
  filter: blur(0.2px);
  transform: translateZ(0);
  pointer-events:none;
}

/* -------------------- HERO -------------------- */
.hero{
  padding: clamp(74px, 9vw, 130px) 0;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 22px;
  align-items: center;
  position: relative;
}
.hero h1{
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}
.hero p{
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.6;
  margin: 0 0 22px;
  max-width: 62ch;
}
.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-badge-row{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--soft);
  transition: transform var(--t) ease, border-color var(--t) ease;
}
.pill:hover{
  transform: translateY(-2px);
  border-color: rgba(167,139,250,0.35);
}

.hero-visual{
  min-height: 320px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(420px 260px at 30% 20%, rgba(139,92,246,0.26), transparent 60%),
    radial-gradient(420px 260px at 70% 70%, rgba(34,211,238,0.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-visual::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: conic-gradient(from 180deg, rgba(255,79,216,0.14), rgba(139,92,246,0.16), rgba(34,211,238,0.12), rgba(255,79,216,0.14));
  filter: blur(18px);
  animation: glowSpin 12s linear infinite;
  opacity: 0.75;
}
.hero-visual::after{
  
  position:absolute;
  inset:auto 14px 14px 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,0.35);
  border: 1px dashed rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}


.discord-box{
  margin-top:14px;
  padding:14px;
  border-radius:14px;

  background: rgba(0,0,0,0.35);
  border:1px solid rgba(255,255,255,0.15);

  color:rgba(255,255,255,0.85);
  font-size:14px;
  text-align:center;

  backdrop-filter: blur(8px);
}


@keyframes glowSpin{
  to { transform: rotate(360deg); }
}

@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-visual{ min-height: 260px; }
}

/* -------------------- Reviews (slider-ready) -------------------- */
.reviews-wrap{
  display:grid;
  gap: 14px;
}
.review-track{
  display:flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}
.review-track::-webkit-scrollbar{ height: 10px; }
.review-track::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
}
.review-card{
  min-width: min(320px, 86vw);
  scroll-snap-align: start;
}
.review-media{
  height: 220px;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.25);
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
}
.review-meta{
  margin-top: 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.stars{
  display:flex;
  gap: 4px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}
.review-name{
  color: var(--muted);
  font-size: 14px;
}

/* -------------------- Services -------------------- */
.service-card h3{
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.service-card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.icon-badge{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(34,211,238,0.22), transparent 60%),
    radial-gradient(22px 22px at 70% 70%, rgba(139,92,246,0.22), transparent 60%),
    rgba(255,255,255,0.05);
}

/* -------------------- Offer / Pricing (single offer) -------------------- */
.offer{
  position: relative;
}
.offer::before{
  content:"";
  position:absolute;
  inset:-40px 0 -40px 0;
  background: radial-gradient(700px 260px at 50% 10%, rgba(139,92,246,0.20), transparent 60%);
  pointer-events:none;
}
.offer-card{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}
.offer-left h3{
  margin:0 0 8px;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing:-0.02em;
}
.offer-left p{
  margin:0 0 14px;
  color: var(--muted);
  line-height:1.6;
}
.feature-list{
  display:grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style:none;
}
.feature-list li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: rgba(255,255,255,0.82);
}
.check{
  width: 18px; height: 18px;
  border-radius: 6px;
  margin-top: 2px;
  background: linear-gradient(135deg, rgba(34,211,238,0.22), rgba(139,92,246,0.24));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.10);
  flex: 0 0 18px;
}

.offer-right{
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(167,139,250,0.26);
  background:
    radial-gradient(420px 220px at 35% 15%, rgba(255,79,216,0.14), transparent 60%),
    radial-gradient(420px 220px at 80% 70%, rgba(34,211,238,0.12), transparent 60%),
    rgba(255,255,255,0.05);
  padding: 18px;
  display:flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow:hidden;
}
.offer-right::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(520px 200px at 50% 0%, rgba(139,92,246,0.22), transparent 60%);
  opacity: 0.75;
  pointer-events:none;
}
.offer-right > *{ position: relative; }

.price{
  display:flex;
  align-items: baseline;
  gap: 10px;
}
.price b{
  font-size: clamp(34px, 3.6vw, 48px);
  letter-spacing: -0.03em;
}
.price span{
  color: var(--muted);
}
.small-note{
  color: var(--soft);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 900px){
  .offer-card{ grid-template-columns: 1fr; }
}

/* -------------------- FAQ -------------------- */
.faq{
  display:grid;
  gap: 12px;
}
.faq-item{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  overflow:hidden;
  transition: border-color var(--t) ease, transform var(--t2) ease;
}
.faq-item:hover{
  border-color: rgba(167,139,250,0.30);
  transform: translateY(-2px);
}
.faq-q{
  width: 100%;
  text-align:left;
  padding: 16px 16px;
  background: transparent;
  border: 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  cursor:pointer;
}
.faq-q b{ letter-spacing:-0.02em; }
.faq-q span{
  color: var(--muted);
  font-size: 14px;
}
.faq-a{
  padding: 0 16px 16px 16px;
  color: var(--muted);
  line-height: 1.65;
}

/* If you use <details><summary> */
details.faq-item summary{
  list-style:none;
  cursor:pointer;
}
details.faq-item summary::-webkit-details-marker{ display:none; }
details.faq-item summary.faq-q{ padding: 16px; }
details.faq-item[open]{
  border-color: rgba(167,139,250,0.34);
}

/* -------------------- Forms (Contact / Checkout) -------------------- */
.form{
  display:grid;
  gap: 12px;
}
.form-row{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
@media (max-width: 680px){
  .form-row{ grid-template-columns: 1fr; }
}

.input, .textarea, .select{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.22);
  padding: 12px 12px;
  color: var(--text);
  transition: border-color var(--t) ease, box-shadow var(--t) ease, transform var(--t) ease;
}
.textarea{ min-height: 120px; resize: vertical; }
.input::placeholder, .textarea::placeholder{ color: rgba(255,255,255,0.45); }

.input:hover, .textarea:hover, .select:hover{
  border-color: rgba(167,139,250,0.28);
}
.input:focus, .textarea:focus, .select:focus{
  outline:none;
  border-color: rgba(167,139,250,0.45);
  box-shadow: var(--ring);
}

.form-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items:center;
}

/* -------------------- Checkout (Card / PayPal options) -------------------- */
.checkout{
  display:grid;
  gap: 16px;
}
.pay-methods{
  display:grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0,1fr));
}
@media (max-width: 780px){
  .pay-methods{ grid-template-columns: 1fr; }
}

.method{
  padding: 16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  cursor:pointer;
  transition: transform var(--t2) ease, border-color var(--t) ease, background var(--t) ease;
}
.method:hover{
  transform: translateY(-3px);
  border-color: rgba(34,211,238,0.26);
  background: rgba(255,255,255,0.07);
}
.method-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.method-title{
  display:flex;
  align-items:center;
  gap: 10px;
}
.method-icon{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
  display:grid;
  place-items:center;
  color: rgba(255,255,255,0.85);
}
.method-desc{
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  font-size: 14px;
}

/* Card details "panel" */
.payment-panel{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(167,139,250,0.26);
  background:
    radial-gradient(520px 240px at 30% 0%, rgba(139,92,246,0.18), transparent 60%),
    rgba(255,255,255,0.05);
}

/* -------------------- Footer -------------------- */
.footer{
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.18);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer small{ color: var(--muted); }
.footer-links{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-links a{
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background var(--t) ease, color var(--t) ease, border-color var(--t) ease;
}
.footer-links a:hover{
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
}

/* -------------------- Micro-interactions utilities -------------------- */
.glow-border{
  position: relative;
}
.glow-border::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(139,92,246,0.35), rgba(34,211,238,0.22), rgba(255,79,216,0.22));
  filter: blur(10px);
  opacity: 0.35;
  z-index:-1;
  transition: opacity var(--t2) ease;
}
.glow-border:hover::after{ opacity: 0.55; }

.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  font-size: 13px;
}

/* -------------------- Optional reveal animation hooks (JS can add .is-visible) -------------------- */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html { scroll-behavior: auto; }
  .lift, .btn, .reveal, .faq-item, .method { transition: none !important; }
  .hero-visual::before{ animation: none !important; }
}







#chatbot{
position:fixed;
bottom:20px;
right:20px;
width:320px;
z-index:999;
font-family:system-ui;
}

#chat-header{
background:#8b5cf6;
padding:10px;
border-radius:12px 12px 0 0;
font-weight:bold;
}

#chat-body{
background:#0c0620;
padding:15px;
border-radius:0 0 12px 12px;
}

.bot-msg{
background:#1b1235;
padding:10px;
border-radius:10px;
margin-bottom:10px;
}

.chat-options button{
display:block;
width:100%;
margin-top:8px;
padding:8px;
border:none;
border-radius:8px;
background:#8b5cf6;
cursor:pointer;
}

#chat-toggle{
position:absolute;
bottom:-50px;
right:0;
background:#8b5cf6;
width:45px;
height:45px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
font-size:20px;
}












#chat-toggle{
position:fixed;
bottom:20px;
right:20px;
background:#8b5cf6;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
font-size:24px;
box-shadow:0 10px 25px rgba(0,0,0,0.4);
}










#chatbot{
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  z-index: 999;
}

#chat-window{
  margin-bottom: 12px;
}

#chat-header{
  background: #8b5cf6;
  padding: 10px;
  border-radius: 12px 12px 0 0;
  font-weight: bold;
}

#chat-body{
  background: #0c0620;
  padding: 15px;
  border-radius: 0 0 12px 12px;
}

#chat-toggle{
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #8b5cf6;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}





#chatbot{
position:fixed;
bottom:20px;
right:20px;
width:320px;
z-index:999;
}

#chat-window{
background:#0c0620;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.4);
overflow:hidden;
}

#chat-header{
background:#8b5cf6;
padding:10px;
display:flex;
justify-content:space-between;
align-items:center;
font-weight:bold;
}

#chat-close{
cursor:pointer;
}

#chat-body{
padding:15px;
}

.bot-msg{
background:#1b1235;
padding:10px;
border-radius:10px;
margin-bottom:10px;
}

.chat-options button{
width:100%;
margin-top:8px;
padding:8px;
border:none;
border-radius:8px;
background:#8b5cf6;
cursor:pointer;
}










.paypal-btn{
display:block;
text-align:center;
margin-top:10px;
padding:12px;
border-radius:10px;
background:linear-gradient(135deg,#0070ba,#003087);
color:white;
font-weight:bold;
text-decoration:none;
transition:all 0.25s ease;
}

.paypal-btn:hover{
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(0,0,0,0.3);
}





.paypal-btn{
display:flex;
align-items:center;
justify-content:center;
gap:10px;

margin-top:12px;
padding:14px;

border-radius:12px;
text-decoration:none;

background:linear-gradient(135deg,#0070ba,#003087);
color:white;
font-weight:600;

transition:all 0.25s ease;
box-shadow:0 10px 25px rgba(0,0,0,0.35);
}

.paypal-btn:hover{
transform:translateY(-2px) scale(1.02);
box-shadow:0 14px 35px rgba(0,0,0,0.45);
}

.paypal-icon{
font-size:18px;
}



#chatbot{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 340px;
  z-index: 999;
}

#chat-window{
  background: #0c0620;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

#chat-header{
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  color: white;
}

#chat-close{
  cursor: pointer;
  font-size: 14px;
  opacity: 0.9;
}

#chat-close:hover{
  opacity: 1;
}

#chat-body{
  padding: 16px;
  display: grid;
  gap: 12px;
}

.bot-msg{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px 14px;
  border-radius: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
}

.chat-actions{
  display: grid;
  gap: 10px;
}

.chat-choice{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: white;
  cursor: pointer;
  transition: 0.25s ease;
}

.chat-choice:hover{
  transform: translateY(-2px);
  border-color: rgba(167,139,250,0.45);
  background: rgba(255,255,255,0.08);
}

.choice-icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  font-size: 18px;
  flex-shrink: 0;
}

.chat-choice span{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chat-choice strong{
  font-size: 15px;
  line-height: 1.2;
}

.chat-choice small{
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

.paypal-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  background: #ffc439;
  color: #003087;
  font-weight: 700;
  transition: 0.25s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.paypal-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.32);
}

.paypal-logo{
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.back-btn{
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: white;
  cursor: pointer;
  transition: 0.25s ease;
}

.back-btn:hover{
  background: rgba(255,255,255,0.08);
  border-color: rgba(167,139,250,0.35);
}














.contact-line{
display:flex;
align-items:center;
gap:10px;
margin-top:8px;
text-decoration:none;
color:white;
padding:8px;
border-radius:10px;
background:rgba(255,255,255,0.05);
transition:0.2s;
}

.contact-line:hover{
background:rgba(255,255,255,0.1);
}

.contact-icon{
width:20px;
height:20px;
}






.whatsapp-btn{
display:flex;
align-items:center;
gap:10px;
margin-top:10px;
padding:12px;
border-radius:10px;
background:#25D366;
color:white;
text-decoration:none;
font-weight:600;
justify-content:center;
}

.viber-btn{
display:flex;
align-items:center;
gap:10px;
margin-top:10px;
padding:12px;
border-radius:10px;
background:#7360F2;
color:white;
text-decoration:none;
font-weight:600;
justify-content:center;
}

.whatsapp-btn img,
.viber-btn img{
width:20px;
height:20px;
}





@media (max-width: 480px){
  #chatbot{
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
  }

  #chat-window{
    width: 100%;
    max-width: 100%;
  }

  #chat-body{
    padding: 14px;
  }

  .chat-choice,
  .paypal-btn,
  .whatsapp-btn,
  .viber-btn,
  .back-btn{
    padding: 12px;
    font-size: 14px;
  }

  .choice-icon{
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}




.bot-msg{
  word-wrap: break-word;
  overflow-wrap: break-word;
}





.menu-toggle{
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: 0.25s ease;
}

.menu-toggle:hover{
  background: rgba(255,255,255,0.10);
  border-color: rgba(167,139,250,0.35);
}

.menu-toggle span{
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 999px;
  transition: 0.25s ease;
}

.menu-toggle.active span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
  opacity: 0;
}

.menu-toggle.active span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px){

  .header-inner{
    position: relative;
  }

  .menu-toggle{
    display: flex;
  }

  .nav{
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(12,6,32,0.96);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 20px 40px rgba(0,0,0,0.38);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: 0.25s ease;
  }

  .nav.active{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a{
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
  }

  .nav a.btn{
    width: 100%;
  }
}

.brand-logo{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
}


@media (max-width:768px){
body{
padding-bottom:120px;
}
}



.footer-credit{
color:#a78bfa;
text-decoration:none;
font-weight:500;
}

.footer-credit:hover{
text-decoration:underline;
}
