/* ---------- UI COMPONENTS ---------- */

/* Section spacing */
section{
  position: relative;
  overflow: hidden;
}

/* Headings */
h1,h2,h3,h4,h5{
  letter-spacing: .5px;
}

/* Service Cards */
.service-card{
  background:#fff;
  padding:45px 35px;
  border-radius:22px;
  text-align:center;
  transition:.5s;
  border:1px solid #eee;
  height:100%;
  position:relative;
}

.service-card::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:22px;
  background:linear-gradient(135deg, rgba(198,40,40,.15), rgba(0,0,0,.1));
  opacity:0;
  transition:.5s;
}

.service-card:hover::before{
  opacity:1;
}

.service-card:hover{
  transform:translateY(-12px) scale(1.01);
  box-shadow:0 30px 70px rgba(0,0,0,.18);
  border-top:5px solid var(--lux-red);
}

.service-card .icon{
  font-size:48px;
}

/* Images */
img{
  transition:.6s;
}
img:hover{
  transform:scale(1.03);
}

/* Links */
a{
  transition:.3s;
}
a:hover{
  text-decoration:none;
}

/* Footer */
footer a{
  color:#fff;
  transition:.3s;
}
footer a:hover{
  color:var(--lux-red);
}

/* Lists */
ul{
  list-style:none;
  padding-left:0;
}
ul li{
  margin-bottom:10px;
}

/* Glass effect blocks */
.glass-box{
  background:rgba(255,255,255,.1);
  backdrop-filter:blur(10px);
  border-radius:20px;
  border:1px solid rgba(255,255,255,.15);
}

/* Project images */
.project-card{
  overflow:hidden;
  border-radius:20px;
}
.project-card img{
  transition:.6s;
}
.project-card:hover img{
  transform:scale(1.08);
}

/* CTA Section */
.cta-box{
  background:linear-gradient(135deg, var(--lux-red), var(--deep-red));
  color:#fff;
  border-radius:30px;
  padding:60px;
}

/* Buttons */
/* Premium CTA Button */
.btn-premium{
  position:relative;
  display:inline-block;
  padding:14px 36px;
  border-radius:50px;
  font-weight:600;
  font-size:15px;
  letter-spacing:.5px;
  text-decoration:none;
  color:#fff;
  background:linear-gradient(135deg,#ff2b2b,#b30000);
  box-shadow:0 10px 25px rgba(255,43,43,.35);
  overflow:hidden;
  transition:all .4s ease;
}

/* Glow ring */
.btn-premium::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:linear-gradient(135deg,#ff4d4d,#ff0000,#ff4d4d);
  border-radius:inherit;
  z-index:-1;
  filter:blur(8px);
  opacity:.7;
}

/* Shine animation */
.btn-premium::after{
  content:"";
  position:absolute;
  top:-50%;
  left:-50%;
  width:200%;
  height:200%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.25),
    transparent
  );
  transform:rotate(25deg);
  animation:shine 3s infinite linear;
}

/* Hover */
.btn-premium:hover{
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 15px 40px rgba(255,43,43,.55);
}

/* Click */
.btn-premium:active{
  transform:scale(.98);
}

/* Shine keyframes */
@keyframes shine{
  0%{transform:translateX(-100%) rotate(25deg);}
  100%{transform:translateX(100%) rotate(25deg);}
}


/* Mobile tweaks */
@media(max-width:768px){
  .hero h1{
    font-size:2.2rem;
  }
  .service-card{
    padding:30px 20px;
  }
}

/* ---------- WHY SECTION ---------- */

.why-section{
  background: linear-gradient(135deg,#000,#111);
  color:#fff;
  padding:100px 0;
  position:relative;
  overflow:hidden;
}

.why-content p{
  color:#ddd;
  max-width:500px;
}

/* Points */
.why-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
}

.why-item{
  background:rgba(255,255,255,0.05);
  padding:12px 18px;
  border-radius:12px;
  display:flex;
  align-items:center;
  gap:10px;
  transition:.4s;
  border:1px solid rgba(255,255,255,0.08);
}

.why-item span{
  color:var(--lux-red);
  font-size:18px;
  font-weight:bold;
}

.why-item:hover{
  background:rgba(255,255,255,0.1);
  transform:translateX(6px);
}

/* Visual */
.why-visual{
  position:relative;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 40px 80px rgba(0,0,0,.6);
}

.why-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Floating overlay box */
.why-overlay-box{
  position:absolute;
  bottom:30px;
  right:30px;
  background:linear-gradient(135deg,var(--lux-red),var(--deep-red));
  color:#fff;
  padding:20px 28px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 15px 40px rgba(198,40,40,.6);
  animation:float 3s ease-in-out infinite;
}

.why-overlay-box h4{
  margin:0;
  font-size:28px;
  font-weight:700;
}

.why-overlay-box p{
  margin:0;
  font-size:14px;
  opacity:.9;
}

/* Mobile */
@media(max-width:768px){
  .why-points{
    grid-template-columns:1fr;
  }
  .why-section{
    padding:60px 0;
  }
}
