body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #080010;
  color: #fff;
}

/* HEADER */
.header {
  background: #0b0018;
  padding: 25px;
  text-align: center;
  position: relative;
  border-bottom: 2px solid #6900ff;
}

.menu-toggle {
  position: absolute;
  top: 22px;
  right: 22px;
  background: none;
  border: none;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

/* NAV */
.nav {
  display: none;
  flex-direction: column;
  background: #110022;
  border-bottom: 2px solid #6900ff;
}

.nav.show {
  display: flex;
}

.nav a {
  padding: 14px;
  color: #fff;
  text-decoration: none;
}
.nav a:hover {
  background: #6900ff;
}

/* HERO */
.hero {
  text-align: center;
  padding: 90px 20px;
}

.glow {
  color: #d9c0ff;
  text-shadow: 0 0 12px #b36bff;
}

/* VERIFIED BADGE */
.verified-badge {
  margin-top: 15px;
  display: inline-block;
  padding: 10px 20px;
  background: #15002a;
  border: 2px solid #00ffb7;
  box-shadow: 0 0 18px #00ffb7;
  border-radius: 8px;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 8px #00ffb7; }
  50% { box-shadow: 0 0 20px #00ffc8; }
  100% { box-shadow: 0 0 8px #00ffb7; }
}

/* KARTICE */
.cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  padding: 40px 15px;
}

.card {
  width: 320px;
  background: #120022;
  border: 2px solid #6900ff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 0 18px #4b02aa;
}

/* WHATSAPP FORMA */
.form-box {
  max-width: 600px;
  margin: 40px auto;
  background: #140025;
  padding: 30px;
  border-radius: 12px;
  border: 2px solid #6900ff;
  box-shadow: 0 0 18px #4b02aa;
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 2px solid #6900ff;
  background: #0f001b;
  color: white;
  margin-bottom: 12px;
}

.glow-btn {
  width: 100%;
  padding: 14px;
  background: #6900ff;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 0 12px #6900ff;
}

/* TRUSTED PARTNERI */
.trusted {
  text-align: center;
  margin-top: 60px;
}

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

.tp {
  background: #160028;
  padding: 14px;
  border-radius: 10px;
  border: 2px solid #6900ff;
  box-shadow: 0 0 12px #4b02aa;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 25px;
  margin-top: 50px;
  background: #0a0018;
}
.overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.95);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  transform:translateX(100%);
  transition:transform .35s ease;
  z-index:9999;
}

.overlay.open{
  transform:translateX(0);
}

.overlay a{
  color:#fff;
  font-size:22px;
  margin:10px 0;
  text-decoration:none;
}

.closebtn{
  position:absolute;
  top:20px;
  right:30px;
  font-size:40px;
  color:#fff;
  cursor:pointer;
}
/* ======================
   OVERLAY HAMBURGER MENU
   ====================== */
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.96);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  transform:translateX(100%);
  transition:transform .35s ease;
  z-index:10000;
}

.overlay.open{
  transform:translateX(0);
}

.overlay a{
  color:#fff;
  font-size:22px;
  margin:10px 0;
  text-decoration:none;
}

.closebtn{
  position:absolute;
  top:18px;
  right:24px;
  font-size:38px;
  color:#fff;
  cursor:pointer;
}
