*{
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;
overflow:hidden;
padding-top:4rem;
padding-bottom:6rem;
}

.hero{
min-height:100svh;   /* better than 100vh on mobile */
display:flex;
align-items:center;
position:relative;
}





/* WAVE */

.wave-bg{
position:absolute;
left:0;
bottom:20%;
width:200%;
pointer-events:none;
z-index:0;

/* IMPORTANT */
overflow:hidden;
}

.wave-bg{
position:absolute;
left:0;
bottom:20%;
width:200%;
z-index:0;   /* behind content */
pointer-events:none;
}

.wave-bg svg{
width:200%;
height:120px;
fill:none;
stroke:#ff2a2a;
stroke-width:4;
animation:waveMove 12s linear infinite;
}

@keyframes waveMove{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}


/* HERO CONTENT */

.hero-inner{
position:relative;
z-index:2;
display:flex;
flex-direction:column;
gap:2rem;
}


/* DESIGN OUTLINE */

.design{
font-size:clamp(6rem,20vw,20rem);
font-weight:800;
color:transparent;
-webkit-text-stroke:1px #555;
letter-spacing:.05em;
line-height:.9;
}


/* HEADLINE */

.headline{
max-width:60ch;
}

.main{
font-size:clamp(2.5rem,5vw,4.5rem);
font-weight:700;
line-height:1;
white-space:nowrap;
margin-bottom:0;
}

.white{
color:white;
}

.red{
color:#e53935;
}


/* REFLECTION */

.reflection{
font-size:clamp(2.5rem,5vw,4.5rem);
line-height:1;
opacity:.25;
transform:scaleY(-1);
mask-image:linear-gradient(to bottom, rgba(0,0,0,.6), transparent);
white-space:nowrap;
margin-top:-0.15em;
}


/* CTA ROW */

.cta-row{
display:flex;
justify-content:flex-end;   /* push to right */
align-items:center;
gap:1.5rem;
margin-top:2rem;

animation:moveSide 8s ease-in-out infinite alternate;
}

@keyframes moveSide{

0%{
transform:translateX(0);
}

100%{
transform:translateX(80px);
}

}


.cta-text{
display:flex;
flex-direction:column;   /* forces 2 lines */
text-align:right;
font-size:clamp(1rem,1.2vw,1.3rem);
line-height:1.4;
}

.cta{
white-space:nowrap;
}



/* RESPONSIVE */

@media (max-width:900px){

.menu{
display:none;
}


.main{
white-space:normal;
text-align: center;
}

.reflection{
text-align: center;
}



.hero{
padding-top:3rem;
}

.cta-row{
flex-direction:column;
align-items:flex-start;
}


.cta{
width:100%;
max-width:280px;
}



}



@media (max-width:768px){


html, body{
overflow-x:hidden;
}

.hero{
min-height:100svh;
position:relative;
}

/* Fix wave overflow */
.wave-bg{
position:absolute;
left:0;
bottom:clamp(30%, 35%, 45%);
width:200%;
overflow:hidden;
pointer-events:none;
}

/* Prevent SVG from stretching layout */
.wave-bg svg{
display:block;
width:200%;
max-width:none;
}


.cta-row{
flex-direction:column;      /* stack */
align-items:center;         /* center horizontally */
justify-content:center;
text-align:center;
gap:1rem;
animation:none;             /* stop movement on mobile (important UX) */
}

.cta-text{
text-align:center;
}

.design{
font-family:'Oswald', sans-serif;   /* condensed font */
font-size:clamp(5rem,28vw,15rem);   /* taller look */
letter-spacing:0.05em;
line-height:0.9;
}


.design{
transform:scaleY(1.1);
transform-origin:center;
}

}








/* ===============================
   PRINT HERO
=============================== */
.print-hero{
  background: linear-gradient(120deg,#0f0f0f,#1a1a1a);
  padding:120px 0;
  color:#fff;
}

.print-hero h1{
  font-size:clamp(2.5rem,5vw,3.5rem);
  line-height:1.2;
}

.print-hero span{
  color:#e53935;
}

.print-hero p{
  margin-top:20px;
  color:#bbb;
  max-width:500px;
}

.hero-cta{
  margin-top:30px;
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

/* ===============================
   SERVICES
=============================== */
.print-services{
  padding:100px 0;
  background:#fff;
  text-align:center;
}

.print-services h2{
  font-size:2rem;
  color:#111;
}

.services-grid{
  margin-top:50px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:30px;
}

.service-card{
  background:#fff;
  padding:30px 25px;
  border:1px solid #eee;
  transition:0.3s;
  text-align:left;
}

.service-card h3{
  margin-bottom:10px;
  color:#111;
}

.service-card p{
  color:#666;
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* ===============================
   SHOWCASE
=============================== */
.print-showcase{
  padding:100px 0;
  background:#fafafa;
  text-align:center;
}

.print-showcase h2{
  margin-bottom:40px;
  color:#111;
}

/* slider already exists in your CSS */
.print-showcase .track img{
  width:260px;
  height:180px;
  object-fit:cover;
}

/* ===============================
   PROCESS
=============================== */
.process{
  padding:100px 0;
  background:#fff;
  text-align:center;
}

.process h2{
  color:#111;
}

.process-grid{
  margin-top:50px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:30px;
}

.step{
  padding:25px;
  border:1px solid #eee;
  transition:0.3s;
}

.step span{
  font-size:2rem;
  font-weight:700;
  color:#e53935;
}

.step h4{
  margin-top:10px;
  color:#111;
}

.step p{
  margin-top:10px;
  color:#666;
}

.step:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

/* ===============================
   CTA
=============================== */
.print-cta{
  background:#111;
  color:#fff;
  padding:90px 0;
  text-align:center;
}

.print-cta h2{
  font-size:2rem;
  margin-bottom:20px;
}

/* ===============================
   BUTTON FIX (IMPORTANT)
=============================== */
.primary-btn{
  background:#e53935;
  color:#fff;
  padding:14px 28px;
  text-decoration:none;
  display:inline-block;
  border:none;
  cursor:pointer;
  transition:0.3s;
}

.primary-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(229,57,53,0.3);
}

.secondary-btn{
  background:#fff;
  border:1px solid #ddd;
  padding:14px 28px;
  text-decoration:none;
  color:#111;
  transition:0.3s;
}

.secondary-btn:hover{
  background:#f5f5f5;
}

/* ===============================
   SCROLL REVEAL
=============================== */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:0.8s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* ===============================
   RESPONSIVE
=============================== */
@media(max-width:900px){

  .print-hero{
    padding:90px 0;
  }

  .services-grid,
  .process-grid{
    grid-template-columns:1fr;
  }

}





/* ===============================
   PRICING SECTION
=============================== */
.pricing{
  padding:100px 0;
  background:#fff;
  text-align:center;
}

.pricing h2{
  font-size:2rem;
  color:#111;
}

.pricing-sub{
  color:#777;
  margin-top:10px;
}

/* GRID */
.pricing-grid{
  margin-top:50px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

/* CARD */
.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 */
.price{
  font-size:2.4rem;
  color:#e53935;
  margin:15px 0;
}

/* LIST */
.price-card ul{
  list-style:none;
  margin:20px 0;
  color:#555;
}

.price-card ul li{
  margin:8px 0;
}

/* BUTTON */
.price-card button{
  margin-top:20px;
  padding:12px 25px;
  background:#111;
  color:#fff;
  border:none;
  cursor:pointer;
  transition:0.3s;
}

.price-card button:hover{
  background:#e53935;
}

/* 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;
  border-radius:4px;
}






/* 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;
  color: #000;
}

/* CLOSE BUTTON */
.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;
}

.close-btn span:nth-child(1){
  transform:rotate(45deg);
}

.close-btn span:nth-child(2){
  transform:rotate(-45deg);
}

/* FORM */
.order-popup input,
.order-popup textarea{
  width:100%;
  padding:12px;
  margin:10px 0;
  border:1px solid #ddd;
  border-radius:6px;
}

/* 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;
}

.email-btn{
  flex:1;
  background:#111;
  color:#fff;
  border:none;
  padding:12px;
  border-radius:6px;
}


















.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;
  }

}
