*{
margin:0;
padding:0;
box-sizing:border-box;
}




/* HIDE SCROLLBAR - KEEP SCROLL WORKING */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  display: none;
}

/* Firefox */
html {
  scrollbar-width: none;
}

/* IE / old Edge */
body {
  -ms-overflow-style: none;
}



/* SPINNER */
.spinner{
  position:relative;
  width:60px;
  height:60px;

  /* smoother rotation */
  animation: spin 1.8s cubic-bezier(.4,0,.2,1) infinite;
}

/* DOT BASE */
.spinner span{
  position:absolute;
  width:6px;
  height:6px;
  border-radius:50%;

  top:50%;
  left:50%;

  background:#e53935;

  /* smoother fade */
  animation: fade 1.8s cubic-bezier(.4,0,.2,1) infinite;
}

/* DEPTH (IMPORTANT 🔥) */
.spinner span:nth-child(1){ transform: translate(-50%, -50%) rotate(0deg) translateY(-20px) scale(1); }
.spinner span:nth-child(2){ transform: translate(-50%, -50%) rotate(45deg) translateY(-20px) scale(0.9); }
.spinner span:nth-child(3){ transform: translate(-50%, -50%) rotate(90deg) translateY(-20px) scale(0.8); }
.spinner span:nth-child(4){ transform: translate(-50%, -50%) rotate(135deg) translateY(-20px) scale(0.7); }
.spinner span:nth-child(5){ transform: translate(-50%, -50%) rotate(180deg) translateY(-20px) scale(0.6); }
.spinner span:nth-child(6){ transform: translate(-50%, -50%) rotate(225deg) translateY(-20px) scale(0.7); }
.spinner span:nth-child(7){ transform: translate(-50%, -50%) rotate(270deg) translateY(-20px) scale(0.8); }
.spinner span:nth-child(8){ transform: translate(-50%, -50%) rotate(315deg) translateY(-20px) scale(0.9); }

/* DELAYS */
.spinner span:nth-child(1){ animation-delay:-1.6s; }
.spinner span:nth-child(2){ animation-delay:-1.4s; }
.spinner span:nth-child(3){ animation-delay:-1.2s; }
.spinner span:nth-child(4){ animation-delay:-1.0s; }
.spinner span:nth-child(5){ animation-delay:-0.8s; }
.spinner span:nth-child(6){ animation-delay:-0.6s; }
.spinner span:nth-child(7){ animation-delay:-0.4s; }
.spinner span:nth-child(8){ animation-delay:-0.2s; }

/* ROTATION */
@keyframes spin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

/* FADE */
@keyframes fade{
  0%{ opacity:1; }
  50%{ opacity:0.3; }
  100%{ opacity:1; }
}



#loader{
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;

  opacity: 1;
  visibility: visible;
  transition: opacity .5s ease, visibility .5s ease;
}

#loader.hide{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}







body{
background:#ffffff;
color:white;
font-family:'Poppins',sans-serif;
line-height:1.5;
padding-top: 5rem;
}

html, body{
  overflow-x: hidden;
  width: 100%;
}


/* GLOBAL CONTAINER */

.container{
width:min(1200px,92%);
margin:auto;
}








/* ===============================
   PREMIUM HEADER REPLACE
=============================== */
.nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;

  display: flex;
  justify-content: center;

  padding: 14px 0;

  transition: transform .35s ease, opacity .35s ease;
  will-change: transform;
}

.nav.hide{
  transform: translateY(-110%);
  opacity: .2;
}

.nav.show{
  transform: translateY(0);
  opacity: 1;
}

.nav-inner{
  width:min(1200px,92%);
  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:14px 24px;
  border-radius:26px;

  /* LIGHT PREMIUM GLASS */
  background: linear-gradient(
    145deg,
    rgba(245,245,245,.95),
    rgba(220,220,220,.88)
  );

  border: 1px solid rgba(255,255,255,.7);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  position:relative;
  overflow:hidden;

  /* 3D DEPTH */
  box-shadow:
    inset 0 2px 8px rgba(255,255,255,.9),
    inset 0 -6px 12px rgba(0,0,0,.08),
    0 10px 25px rgba(0,0,0,.18),
    0 18px 40px rgba(0,0,0,.12);
}





/* SHINY EFFECT */
.nav-inner::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:50%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.25),
    transparent
  );
  transform:skewX(-25deg);
  animation:navShine 6s linear infinite;
}

@keyframes navShine{
  100%{ left:140%; }
}

.logo img{
  height:42px;
  position:relative;
  z-index:2;
}

.menu{
  display:flex;
  gap:28px;
  position:relative;
  z-index:2;
}

.menu a{
  color:#000000;
  text-decoration:none;
  font-weight:500;
  position:relative;
  transition:.3s;
}

.menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#e53935;
  transition:.3s;
}

.menu a:hover{
  color:#e53935;
}

.menu a:hover::after{
  width:100%;
}

.menu-toggle{
  width:42px;
  height:42px;
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  cursor:pointer;
  position:relative;
  z-index:2;
}

.menu-toggle span{
  width:24px;
  height:2px;
  background:#fff;
  margin:auto;
  transition:.35s 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);
}


/* ===============================
   FINAL CREATIVE MOBILE PILLS
=============================== */
.mobile-menu{
  position: fixed;
  top: 88px;
  right: 18px;
  z-index: 99998;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;

  pointer-events: none;
}

.mobile-menu a{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: fit-content;
  max-width: 88vw;

  /* TIGHTER FIT */
  padding: 12px 20px;

  /* LESS ROUNDED */
  border-radius: 18px;

  color: #fff;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;

  /* SOLID PREMIUM RED */
  background: #9f1111;

  border: 1px solid rgba(255,255,255,.08);

  box-shadow:
    0 10px 22px rgba(0,0,0,.22),
    0 0 14px rgba(229,57,53,.12);

  opacity: 0;
  visibility: hidden;
  transform: translateX(40px) scale(.94);

  transition:
    opacity .4s ease,
    transform .4s cubic-bezier(.22,1,.36,1),
    visibility .4s ease;
}

/* ONLY SHOW WHEN ACTIVE */
.mobile-menu.active{
  pointer-events: auto;
}

.mobile-menu a.show{
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}





@media(max-width:900px){
  .menu{
    display:none;
  }

  .menu-toggle{
    display:flex;
  }

  .nav{
    padding:10px 0;
  }

  .nav-inner{
    width:94%;
    border-radius:18px;
    padding:12px 16px;
  }

  .logo img{
    height:36px;
  }
  .hero-inner{
  flex-direction: column;
  gap: 30px;
}
.hero-cta{
  flex-direction: column;
  align-items: stretch;
}
}






.logo-hero{
  background:#fff;
  padding:100px 0;
}

.hero-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

.hero-left{
  flex:1;
}

.hero-left h1{
  font-size:clamp(2.5rem,5vw,3.5rem);
  color:#111;
  line-height:1.2;
}

.hero-left span{
  color:#e53935;
}

.hero-left p{
  margin-top:20px;
  color:#555;
  max-width:480px;
}

.hero-cta{
  margin-top:30px;
  display:flex;
  gap:15px;
}

.primary-btn{
  background:#e53935;
  color:#fff;
  border:none;
  padding:14px 28px;
  cursor:pointer;
}

.secondary-btn{
  background:#fff;
  border:1px solid #ddd;
  padding:14px 28px;
  cursor:pointer;
}

/* RIGHT VISUAL */
.hero-right{
  flex:1;
  display:flex;
  gap:20px;
}

.hero-card{
  width:120px;
  height:120px;
  background:#fff;
  border:1px solid #eee;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}






.logo-showcase{
  background:#fafafa;
  padding:80px 0;
  text-align:center;
}

.logo-showcase h2{
  margin-bottom:40px;
  font-size:2rem;
  color:#111;
}

.slider{
  overflow:hidden;
}

.track{
  display:flex;
  gap:20px;
  width:max-content;
  will-change:transform;
  animation:scroll 25s linear infinite;
}

.track img{
  width:220px;
  height:160px;
  object-fit:cover;
  border-radius:8px;
  background:#fff;
  padding:10px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

@keyframes scroll{
  to{ transform:translateX(-50%); }
}



.pricing{
  padding:100px 0;
  background:#fff;
  text-align:center;
}

.pricing-sub{
  color:#777;
  margin-top:10px;
}

.pricing-grid{
  margin-top:50px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.price-card{
  position:relative;
  background:#fff;
  border:1px solid #eee;
  padding:35px 25px;
  transition:0.3s;
}

.price-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.price{
  font-size:2.4rem;
  color:#e53935;
  margin:15px 0;
}

.price-card ul{
  list-style:none;
  margin:20px 0;
  color:#555;
}

.price-card ul li{
  margin:8px 0;
}

.price-card button{
  margin-top:20px;
  padding:12px 25px;
  background:#111;
  color:#fff;
  border:none;
  cursor:pointer;
}

/* 🔥 HIGHLIGHT CARD */
.highlight{
  border:2px solid #e53935;
  transform:scale(1.05);
}

/* BADGE */
.badge{
  position:absolute;
  top:-12px;
  left:50%;
  transform:translateX(-50%);
  background:#e53935;
  color:#fff;
  padding:5px 12px;
  font-size:12px;
}





.testimonials{
  background:#fafafa;
  padding:100px 0;
  text-align:center;
}

.testimonial-grid{
  margin-top:50px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.testimonial-card{
  background:#fff;
  padding:25px;
  text-align:left;
  border:1px solid #eee;
  transition:0.3s;
}

.testimonial-card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.testimonial-card p{
  color:#555;
  margin-bottom:20px;
}

/* CLIENT */
.client{
  display:flex;
  align-items:center;
  gap:12px;
}

.avatar{
  width:40px;
  height:40px;
  background:#ddd;
  border-radius:50%;
}

.client span{
  display:block;
  font-size:12px;
  color:#777;
}



html{
  scroll-behavior: smooth;
}
#pricing{
  scroll-margin-top: 100px; /* adjusts for navbar */
}




/* OVERLAY */
.order-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);

  opacity:0;
  visibility:hidden;
  transition:0.3s ease;

  z-index:1000;
}

.order-overlay.active{
  opacity:1;
  visibility:visible;
}

/* POPUP */
.order-popup{
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%) scale(0.92);

  width:95%;
  max-width:500px;
  max-height:90vh;

  overflow-y:auto;

  background:#fff;
  border-radius:14px;
  padding:22px;

  opacity:0;
  visibility:hidden;

  transition:0.3s ease;

  z-index:1001;
}

.order-popup.active{
  opacity:1;
  visibility:visible;
  transform:translate(-50%,-50%) scale(1);
}

/* HEADER */
.popup-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}

/* CLOSE BUTTON (ANIMATED X) */
.close-btn{
  width:28px;
  height:28px;
  position:relative;
  cursor:pointer;
}

.close-btn span{
  position:absolute;
  width:100%;
  height:2px;
  background:#e53935;
  top:50%;
  left:0;
  transition:0.3s;
}

.close-btn span:nth-child(1){
  transform:rotate(45deg);
}

.close-btn span:nth-child(2){
  transform:rotate(-45deg);
}

/* HOVER ANIMATION */
.close-btn:hover span{
  transform:rotate(0deg);
}

/* PLAN */
.plan-line{
  font-size:14px;
  color:#555;
  margin-bottom:15px;
}

/* INPUTS */
.order-popup input,
.order-popup textarea{
  width:100%;
  padding:12px;
  margin:10px 0;
  border:1px solid #ddd;
  border-radius:6px;
}

/* TEXTAREAS */
#idea{
  height:90px;
}

#previewMessage{
  height:130px;
  font-size:13px;
  background:#fafafa;
}

/* FILE */
.file-box{
  font-size:12px;
  margin-top:5px;
}

#fileName{
  display:block;
  margin-top:5px;
  color:#777;
}

/* BUTTONS */
.action-buttons{
  display:flex;
  gap:10px;
  margin-top:15px;
}

.wa-btn{
  flex:1;
  background:#25D366;
  color:#fff;
  border:none;
  padding:12px;
  border-radius:6px;
  cursor:pointer;
  transition:0.2s;
}

.wa-btn:hover{
  transform:translateY(-2px);
}

.email-btn{
  flex:1;
  background:#111;
  color:#fff;
  border:none;
  padding:12px;
  border-radius:6px;
  cursor:pointer;
  transition:0.2s;
}

.email-btn:hover{
  transform:translateY(-2px);
}








.site-footer{
  background:#000;
  color:#fff;
  padding:clamp(4rem,8vw,6rem) 0 2rem;
}

/* CONTAINER */
.footer-container{
  width:min(1100px,92%);
  margin:auto;

  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:2rem;
}

/* LOGO */
.footer-logo{
  font-size:1.8rem;
  font-weight:800;
  margin-bottom:1rem;
}

/* TEXT */
.footer-brand p{
  color:#aaa;
  max-width:300px;
  line-height:1.6;
}

/* LINKS */
.footer-links h4,
.footer-contact h4{
  margin-bottom:1rem;
}

.footer-links a{
  display:block;
  color:#aaa;
  text-decoration:none;
  margin-bottom:0.5rem;
  transition:0.3s;
}

.footer-links a:hover{
  color:#fff;
}

/* CONTACT */
.footer-contact p{
  color:#aaa;
  margin-bottom:0.5rem;
}

/* SOCIAL */
.footer-social{
  margin-top:1rem;
  display:flex;
  gap:12px;
}

.footer-social a{
  width:35px;
  height:35px;
  border:1px solid #333;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  text-decoration:none;
  color:#fff;
  transition:0.3s;
}

.footer-social a:hover{
  background:#c62828;
  border-color:#c62828;
}

/* CTA */
.footer-cta{
  text-align:center;
  margin-top:4rem;
}

.footer-cta h3{
  font-size:2rem;
  margin-bottom:1rem;
}

.footer-btn{
  display:inline-block;
  padding:12px 28px;
  background:#c62828;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.footer-btn:hover{
  background:#e53935;
  transform:translateY(-2px);
}

/* BOTTOM */
.footer-bottom{
  text-align:center;
  margin-top:3rem;
  color:#666;
  font-size:0.9rem;
}


@media (max-width:768px){

  .footer-container{
    grid-template-columns:1fr;
    text-align:left;
  }

  .footer-cta h3{
    font-size:1.5rem;
  }

}
