/* ===== RESET ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Poppins,sans-serif;
}

body{
  background:#0f172a;
  color:#fff;
}

/* ===== NAVBAR ===== */
.nav{
  display:flex;
  justify-content:space-between;
  padding:15px 40px;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(10px);
  position:fixed;
  width:100%;
  z-index:1000;
}

.logo{
  font-size:28px;
  background:linear-gradient(45deg,#3b82f6,#ec4899);
  -webkit-background-clip:text;
  color:transparent;
}

.logo-img{
 height:50px;
}

nav a{
  margin:0 10px;
  color:#fff;
  text-decoration:none;
  transition:0.3s;
}

nav a:hover{
  color:#ec4899;
}

/* ===== PAGE HEADER ===== */
.page-header{
  padding:120px 20px;
  text-align:center;
  background:linear-gradient(135deg,#1e3a8a,#9333ea,#ec4899);
}

/* ===== HERO ===== */
.hero{
  height:100vh;
  background:url('images/hero.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#1e3a8a,#9333ea,#ec4899);
  opacity:0.8;
}

.hero-content{
  position:relative;
  text-align:center;
}

.hero h1{
  font-size:50px;
  animation:fadeUp 1.2s;
}

.btn{
  margin-top:20px;
  padding:12px 30px;
  border-radius:30px;
  border:none;
  background:#fff;
  color:#000;
  cursor:pointer;
}

/* ===== SECTIONS ===== */
.section{
  padding:80px 40px;
  text-align:center;
}

/* ===== CARDS ===== */
.cards{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  justify-content:center;
}

.card{
  background:rgba(255,255,255,0.1);
  backdrop-filter:blur(10px);
  padding:20px;
  border-radius:20px;
  width:260px;
  transition:0.3s;
}

.card:hover{
  transform:translateY(-10px);
}

.card img{
  width:100%;
  border-radius:15px;
}

/* ===== BEFORE AFTER ===== */
.compare{
  position:relative;
  width:300px;
  margin:auto;
}

.compare img{
  width:100%;
  border-radius:10px;
}

.compare .overlay{
  position:absolute;
  top:0;
  left:0;
  width:50%;
  overflow:hidden;
}

/* ===== REVIEWS ===== */
.review{
  background:#111;
  padding:20px;
  margin:10px;
  border-radius:15px;
}

/* ===== SLIDER ===== */
.slider{
  position:relative;
  height:200px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#1e3a8a,#9333ea,#ec4899);
  overflow:hidden;
}

.slide{
  position:absolute;
  text-align:center;
  opacity:0;
  transform:translateX(100%);
  transition:1s;
}

.slide.active{
  opacity:1;
  transform:translateX(0);
}

/* ===== POPUP ===== */
.popup{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2000;
}

.popup-content{
  background:#fff;
  color:#000;
  padding:30px;
  border-radius:15px;
  text-align:center;
  position:relative;
  animation:popIn 0.5s;
}

.close{
  position:absolute;
  top:10px;
  right:15px;
  font-size:25px;
  cursor:pointer;
}

/* ===== FOOTER ===== */
.footer{
  background:#0f172a;
  text-align:center;
  padding:20px;
  margin-top:40px;
  border-top:1px solid rgba(255,255,255,0.1);
}

.footer p{
  font-size:14px;
  opacity:0.7;
}

/* ===== ABOUT ===== */
.about-section{
  padding:60px 40px;
}

.about-container{
  display:flex;
  flex-wrap:wrap;
  gap:40px;
  align-items:center;
}

.about-text{flex:1;}

.about-image img{
  width:100%;
  max-width:400px;
  border-radius:20px;
}

/* ===== WHY ===== */
.why-section{
  text-align:center;
  padding:60px 20px;
}

.why-cards{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  justify-content:center;
}

.why-card{
  background:rgba(255,255,255,0.1);
  padding:20px;
  border-radius:15px;
  width:220px;
}

/* ===== CONTACT ===== */
.contact-container{
  display:flex;
  flex-wrap:wrap;
  gap:40px;
  padding:60px 40px;
}

.contact-form{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.contact-form input,
.contact-form textarea{
  padding:10px;
  border-radius:10px;
  border:none;
}

.contact-form button{
  padding:12px;
  border-radius:25px;
  border:none;
  background:linear-gradient(45deg,#3b82f6,#ec4899);
  color:#fff;
}

/* ===== GALLERY ===== */
.gallery-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  padding:40px;
}

.gallery-item{
  overflow:hidden;
  border-radius:15px;
}

.gallery-item img{
  width:100%;
  transition:0.5s;
}

.gallery-item:hover img{
  transform:scale(1.1);
}

/* LIGHTBOX */
#lightbox{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.9);
  justify-content:center;
  align-items:center;
}

#lightbox img{
  max-width:90%;
  max-height:90%;
}

/* ===== FLOAT BUTTONS ===== */
.whatsapp{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25d366;
  padding:15px;
  border-radius:50%;
  color:#fff;
}

.call{
  position:fixed;
  bottom:80px;
  right:20px;
  background:#ec4899;
  padding:15px;
  border-radius:50%;
  color:#fff;
}

/* ===== ANIMATION ===== */
.fade{
  opacity:0;
  transform:translateY(30px);
  transition:1s;
}

.fade.show{
  opacity:1;
  transform:translateY(0);
}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(40px)}
  to{opacity:1}
}

@keyframes popIn{
  from{transform:scale(0.5);opacity:0}
  to{transform:scale(1)}
}

.whatsapp-btn{
 position: fixed;
 bottom: 20px;
 right: 20px;
 background: linear-gradient(45deg,#25d366,#128c7e);
 color: white;
 padding: 14px 22px;
 border-radius: 50px;
 font-size: 16px;
 font-weight: bold;
 text-decoration: none;
 box-shadow: 0 5px 20px rgba(0,0,0,0.3);
 z-index: 999;
 transition: 0.3s;
}

.call-btn{
 position: fixed;
 bottom: 80px;
 right: 20px;
 background: linear-gradient(45deg,#3b82f6,#ec4899);
 color: white;
 padding: 14px 22px;
 border-radius: 50px;
 font-size: 16px;
 font-weight: bold;
 text-decoration: none;
 box-shadow: 0 5px 20px rgba(0,0,0,0.3);
 z-index: 999;
 transition: 0.3s;
}

.whatsapp-btn:hover,
.call-btn:hover{
 transform: scale(1.05);
}

/* ===== WHATSAPP ULTRA ===== */
.whatsapp-pro{
 position: fixed;
 bottom: 20px;
 right: 20px;
 display: flex;
 align-items: center;
 gap: 10px;
 background: linear-gradient(135deg,#25d366,#128c7e);
 color: white;
 padding: 14px 24px;
 border-radius: 50px;
 font-size: 16px;
 font-weight: 600;
 text-decoration: none;
 box-shadow: 0 10px 30px rgba(0,0,0,0.4);
 z-index: 999;
 overflow: hidden;
 transition: 0.3s;
}

/* glowing ring */
.whatsapp-pro::before{
 content:"";
 position:absolute;
 width:150%;
 height:150%;
 background: radial-gradient(circle,rgba(255,255,255,0.3),transparent);
 animation: pulse 2s infinite;
}

.whatsapp-pro:hover{
 transform: scale(1.08);
}

/* ===== CALL ULTRA ===== */
.call-pro{
 position: fixed;
 bottom: 90px;
 right: 20px;
 display: flex;
 align-items: center;
 gap: 10px;
 background: linear-gradient(135deg,#3b82f6,#ec4899);
 color: white;
 padding: 14px 24px;
 border-radius: 50px;
 font-size: 16px;
 font-weight: 600;
 text-decoration: none;
 box-shadow: 0 10px 30px rgba(0,0,0,0.4);
 z-index: 999;
 transition: 0.3s;
}

/* breathing animation */
.call-pro{
 animation: floatBtn 3s ease-in-out infinite;
}

.call-pro:hover{
 transform: scale(1.08);
}

/* ICON STYLE */
.icon{
 font-size: 20px;
 animation: iconBounce 1.5s infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse{
 0%{transform:scale(0.8);opacity:0.6}
 50%{transform:scale(1);opacity:0.2}
 100%{transform:scale(0.8);opacity:0.6}
}

@keyframes floatBtn{
 0%{transform:translateY(0)}
 50%{transform:translateY(-6px)}
 100%{transform:translateY(0)}
}

@keyframes iconBounce{
 0%{transform:translateY(0)}
 50%{transform:translateY(-3px)}
 100%{transform:translateY(0)}
}
/* ===== ULTRA BUTTON BASE ===== */
.whatsapp-ultra,
.call-ultra{
 position: fixed;
 right: 20px;
 padding: 16px 26px;
 border-radius: 50px;
 font-size: 16px;
 font-weight: 600;
 text-decoration: none;
 display: flex;
 align-items: center;
 gap: 10px;
 backdrop-filter: blur(10px);
 border: 1px solid rgba(255,255,255,0.2);
 box-shadow: 0 10px 30px rgba(0,0,0,0.4);
 transition: 0.3s;
}

/* WHATSAPP STYLE */
.whatsapp-ultra{
 bottom: 20px;
 background: rgba(37,211,102,0.2);
 color: #25d366;
}

/* CALL STYLE */
.call-ultra{
 bottom: 90px;
 background: rgba(236,72,153,0.2);
 color: #ec4899;
}

/* HOVER EFFECT */
.whatsapp-ultra:hover,
.call-ultra:hover{
 transform: scale(1.08);
 box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* FLOAT ANIMATION */
@keyframes floaty{
 0%{transform:translateY(0)}
 50%{transform:translateY(-6px)}
 100%{transform:translateY(0)}
}

.whatsapp-ultra{
 animation: floaty 3s infinite;
}

.call-ultra{
 animation: floaty 3s infinite;
}

/* FIX NAVBAR SIZE */
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 30px;   /* reduced */
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(10px);
  position:fixed;
  width:100%;
  top:0;
  z-index:1000;
}

/* FIX LOGO SIZE */
.logo-img{
  height:45px;   /* smaller logo */
}

/* FIX SLIDER GAP */
.slider{
  margin-top:70px;   /* pushes below navbar */
}

/* ===== PREMIUM WHY SECTION ===== */
.why-premium{
 padding:80px 20px;
 text-align:center;
 background: linear-gradient(135deg,#0f172a,#1e293b);
}

/* TITLE */
.section-title{
 font-size:36px;
 margin-bottom:10px;
 background: linear-gradient(45deg,#3b82f6,#ec4899);
 -webkit-background-clip:text;
 color:transparent;
}

.section-sub{
 color:#aaa;
 margin-bottom:40px;
}

/* GRID */
.why-grid{
 display:grid;
 grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
 gap:25px;
 padding:0 20px;
}

/* CARD */
.why-box{
 background: rgba(255,255,255,0.08);
 backdrop-filter: blur(15px);
 border-radius:20px;
 padding:30px;
 transition:0.4s;
 position:relative;
 overflow:hidden;
 border:1px solid rgba(255,255,255,0.1);
}

/* ICON */
.why-box .icon{
 font-size:40px;
 margin-bottom:15px;
}

/* HOVER EFFECT */
.why-box:hover{
 transform: translateY(-10px) scale(1.03);
 box-shadow:0 20px 40px rgba(0,0,0,0.5);
}

/* GLOW BORDER EFFECT */
.why-box::before{
 content:"";
 position:absolute;
 inset:0;
 border-radius:20px;
 padding:2px;
 background: linear-gradient(45deg,#3b82f6,#ec4899,#22c55e);
 -webkit-mask:
   linear-gradient(#000 0 0) content-box,
   linear-gradient(#000 0 0);
 -webkit-mask-composite: xor;
 mask-composite: exclude;
 opacity:0;
 transition:0.3s;
}

.why-box:hover::before{
 opacity:1;
}