*{
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:#000;
color:white;
font-family:'Poppins',sans-serif;
line-height:1.5;
padding-top: 5rem;
}


/* 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);
}

.menu a.active{
  color:#e53935;
}

.menu a.active::after{
  width:100%;
}

.mobile-menu a.active{
  background:#e53935;
}







@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 ================= */
.hero{
  position:relative;
  padding:160px 0;
  text-align:center;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 30% 30%, rgba(229,57,53,.15), transparent 40%),
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.05), transparent 40%);
}

.hero-content{
  position:relative;
  z-index:2;
}

.hero h1{
  font-size:clamp(2.5rem,5vw,4rem);
  line-height:1.2;
}

.hero span{
  color:#e53935;
}

.hero p{
  color:#aaa;
  max-width:600px;
  margin:20px auto;
}

/* ================= BUTTON ================= */
.cta-row{
  margin-top:20px;
}

button{
  padding:12px 24px;
  border:none;
  background:#e53935;
  color:#fff;
  cursor:pointer;
  border-radius:8px;
  margin:5px;
  transition:.3s;
}

button:hover{
  transform:translateY(-2px) scale(1.03);
  box-shadow:0 10px 25px rgba(229,57,53,.3);
}

.ghost{
  background:transparent;
  border:1px solid #fff;
}

.ghost:hover{
  background:#fff;
  color:#000;
}

/* ================= TRUST ================= */
.trust{
  padding:60px 0;
  text-align:center;
  color:#aaa;
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
}

/* ================= SERVICES ================= */
.services{
  padding:120px 0;
}

.services h2{
  text-align:center;
  margin-bottom:40px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

.card{
  background:#121212;
  padding:20px;
  border-radius:16px;
  transition:.4s;
  border:1px solid rgba(255,255,255,.05);
}

.card img{
  width:100%;
  border-radius:10px;
  margin-bottom:10px;
  transition:.4s;
}

.card h3{
  margin-top:10px;
}

.card p{
  color:#aaa;
  margin:10px 0;
}

.card button{
  width:100%;
  margin-top:10px;
}

.card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,.5);
  border-color:#e53935;
}

.card:hover img{
  transform:scale(1.05);
}

/* ================= WHY ================= */
.why{
  padding:120px 0;
}

.why-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.why img{
  width:100%;
  border-radius:16px;
}

.why ul{
  margin-top:20px;
}

.why li{
  margin:8px 0;
  color:#ccc;
}

/* ================= PROCESS ================= */
.process{
  padding:120px 0;
  background:#111;
}

.process h2{
  text-align:center;
  margin-bottom:40px;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
}

.step{
  background:#141414;
  padding:20px;
  border-radius:12px;
  text-align:center;
  border:1px solid rgba(255,255,255,.05);
  transition:.3s;
}

.step span{
  color:#e53935;
  font-weight:700;
}

.step:hover{
  transform:translateY(-5px);
  border-color:#e53935;
}

/* ================= CTA ================= */
.cta{
  padding:120px 0;
  text-align:center;
  background:#e53935;
}

.cta p{
  margin:10px 0;
}

.cta button{
  background:#000;
}

.cta button:hover{
  background:#fff;
  color:#000;
}

/* ================= ANIMATION ================= */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:.6s ease;
}

.reveal.show{
  opacity:1;
  transform:translateY(0);
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .hero{
    padding:120px 0;
  }

  .why-grid{
    grid-template-columns:1fr;
  }

}


/* INITIAL STATE */
.process-card{
  opacity:0;
  transform:translateY(40px);
  transition:all .6s ease;
}

/* ACTIVE STATE */
.process-card.show{
  opacity:1;
  transform:translateY(0);
}




/* HERO */
.studio-hero{
  padding:160px 0;
  text-align:center;
  background: radial-gradient(circle at top, rgba(229,57,53,.15), transparent);
}

.studio-hero h1 span{
  color:#e53935;
}

.studio-help{
  padding:120px 0;
}

.help-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:25px;
  margin-top:40px;
}

.help-card{
  background:#111;
  padding:30px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.05);
  transition:.3s;
}

.help-card:hover{
  transform:translateY(-8px);
  border-color:#e53935;
}

/* SERVICES */
.studio-services{
  padding:120px 0;
}

/* SHOWCASE */
.studio-showcase{
  padding:120px 0;
  background:#111;
}

/* PRICING */
.studio-pricing{
  padding:120px 0;
}

/* CTA */
.studio-cta{
  padding:120px 0;
  text-align:center;
  background:#e53935;
}

.studio-cta button{
  background:#000;
}


/* ================= SHOWCASE GRID ================= */

.bento-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:220px;
  gap:24px;
}

.bento-item{
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,.3);
  transform:translateY(40px);
  opacity:0;
  transition:.6s ease;
}

.bento-item.show{
  transform:translateY(0);
  opacity:1;
}

.bento-item img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* variations */
.large{
  grid-column:span 2;
  grid-row:span 2;
}

.tall{
  grid-row:span 2;
}

.wide{
  grid-column:span 2;
}

/* mobile */
@media(max-width:900px){
  .bento-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .bento-grid{
    grid-template-columns:1fr;
  }
}



/* ================= PRICING GRID ================= */

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  margin-top:50px;
}

.pricing-card{
  background:#111;
  padding:30px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  transition:.3s;
}

.pricing-card:hover{
  transform:translateY(-8px);
  border-color:#e53935;
}

.plan{
  display:inline-block;
  background:#e53935;
  padding:6px 14px;
  border-radius:20px;
  font-size:.8rem;
  margin-bottom:10px;
}

.price{
  font-size:1.8rem;
  font-weight:700;
  margin:10px 0;
}

.pricing-card button{
  width:100%;
  margin-top:15px;
}

.featured{
  transform:scale(1.05);
  border-color:#e53935;
}

/* responsive */
@media(max-width:1100px){
  .pricing-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .pricing-grid{
    grid-template-columns:1fr;
  }

  .featured{
    transform:none;
  }
}


.studio-showcase h2,
.studio-pricing h2{
  text-align:center;
  margin-bottom:40px;
}



/* POPUP */
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:none;
}

/* OVERLAY */
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(6px);
  display:none;
  z-index:999;
}

/* POPUP */
.popup{
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%) scale(.95);

  width:90%;
  max-width:500px;

  background:#ffffff;
  color:#000;

  padding:30px;
  border-radius:16px;

  box-shadow:0 20px 60px rgba(0,0,0,.4);

  display:none;
  z-index:1000;

  transition:.3s ease;
}

/* HEADER */
.popup-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin-bottom:20px;
}

.popup-head h3{
  font-size:1.4rem;
}

.plan{
  font-size:.9rem;
  color:#666;
}

/* CLOSE */
/* CLOSE BUTTON */
.close-btn{
  position:absolute;
  top:20px;
  right:20px;

  width:36px;
  height:36px;

  border-radius:50%;
  border:1px solid #ddd;
  background:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  cursor:pointer;
  transition:.3s;
}

/* X LINES */
.close-btn span{
  position:absolute;
  width:16px;
  height:2px;
  background:#000;
}

.close-btn span:first-child{
  transform:rotate(45deg);
}

.close-btn span:last-child{
  transform:rotate(-45deg);
}

/* HOVER */
.close-btn:hover{
  background:#e53935;
  border-color:#e53935;
}

.close-btn:hover span{
  background:#fff;
}

/* FORM */
.form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* INPUTS */
input, textarea{
  width:100%;
  padding:12px;
  border-radius:8px;
  border:1px solid #ddd;
  font-family:Poppins;
  font-size:.9rem;
}

textarea{
  min-height:90px;
}

/* FILE */
.file-label{
  font-size:.85rem;
  color:#666;
}

/* MESSAGE BOX */
#message{
  background:#f5f5f5;
  font-size:.8rem;
}

/* BUTTON */
.primary-btn{
  margin-top:10px;
  padding:14px;
  border:none;
  border-radius:10px;

  background:#e53935;
  color:#fff;
  font-weight:600;

  transition:.3s;
}

.primary-btn:hover{
  background:#c62828;
}







.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;
  }

}
