* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

a {
    text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 0 !important;
    outline-offset: 0 !important
}
html, body {
    font-family: 'Montserrat', sans-serif;
}
body {
   background:#45072f;
   color: #fff;
   line-height: 1.6;

}
main{
    flex: 1;
    min-height: 100vh;
}

.container {
    position: relative;
    box-sizing: border-box;
    width: calc(100% - 160px);
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}
.mobile {
    display: none !important;
}

.d-grid {
    display: grid;
}
.d-flex {
    display: flex;
}
.hidden {
  opacity: 0;
  position: relative;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}
.section-padding {
    padding: 40px 0;
}

input,
textarea,
select {
    padding: 10px 12px;
    border: 2px solid #ddd;
    color: #fff;
    border-radius: 8px;
    outline: none;
    appearance: none;
    width: 100%;
    
}
input:focus,
textarea:focus,
select:focus{
    border-color: #23559B;
}
button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}
button:hover {
    opacity: 0.9;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}
ul{
    list-style: none;
}
.text-center{
    text-align: center;
}
.section-padding{
    padding: 40px 0;
}
.hidden{
  opacity:0;
  transform:translateY(40px);
  transition:all .6s ease;
}

.show{
  opacity:1;
  transform:translateY(0);
}
.poster img{
    display: block;
    width: 100%;
    height: auto;
}
.lazy-section{
    overflow: hidden;
}
.header{
    position:fixed;
    top:0;
    width:100%;
    padding:18px 0;
    z-index:1000;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,0.15);
    transition:all .3s ease;
}

.header.scrolled{
    background:rgba(69,7,47,0.15);
    backdrop-filter:blur(20px);
}
.logo{
font-size:22px;
font-weight:600;
color:#fff;
}
.logo a{
    color: #fff;
}
/* NAV */

.nav{
display:flex;
gap:35px;
}

.nav a{
text-decoration:none;
color:#fff;
font-size:15px;
position:relative;
}

.nav a::after{
content:"";
position:absolute;
left:0;
bottom:-5px;
width:0%;
height:2px;
background:#fff;
transition:0.3s;
}

.nav a:hover::after{
width:100%;
}

/* HAMBURGER */

.hamburger{
display:none;
flex-direction:column;
cursor:pointer;
gap:5px;
}

.hamburger span{
width:25px;
height:3px;
background:#fff;
border-radius:5px;
}
.menu-bar{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
/* MOBILE */

@media(max-width:768px){

.nav{
position:absolute;
top:100%;
left:0;
width:100%;

background:rgb(0, 0, 0);
backdrop-filter:blur(20px);

flex-direction:column;
align-items:center;
padding:30px 0;

transform:translateY(-200%);
transition:.4s;
}

.nav.active{
transform:translateY(0);
}

.hamburger{
display:flex;
}

}
.banner{
    overflow: hidden;
}
.banner img {
    width: 100%;
    height: auto;
    display: block;
}
.lazy-img{
  filter: blur(15px);
  transform: scale(1.05);
  transition: filter .6s ease, transform .6s ease;
}

.lazy-img.loaded{
  filter: blur(0);
  transform: scale(1);
}
.section-title {
    font-size: 40px;
    color: #c1b159;
    margin-bottom: 20px;
    text-shadow: 2px 2px 2px #000;
    text-align: center;
}
.welcome{
    background: #ae0072;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
.welcome p{
    font-size: 22px;
    margin: 0;
    font-weight: 500;
}
.about-us h1{
    color: #c1b159;
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 2px #000;
}
.about-us h2{
    color: #c1b159;
    font-size: 28px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 1px #000;
}
.about-us p{
    font-size: 18px;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 15px;
}
.about-us img{
    display: block;
    margin: 30px auto;
}
.cat-item {
    position: relative;
}
.cat-img img {
    border-radius: 50px 50px 50px 0;
    display: block;
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.cat-text {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #fff;
    border-radius: 50px 50px 50px 0;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
}
.cat-btn{
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #45072f;
    color: #fff;
    text-align: center;
    font-size: 24px;
    border-radius: 50px;
}
.cat-img{
    overflow: hidden;
    border-radius: 50px 50px 50px 0;
}
.cat-item:hover .cat-text{
    transform: translateY(-10px);
}
.cat-item:hover .cat-btn{
    background: #c1b159;
}
.cat-text h3{
    font-size: 16px;
    color: #45072f;
    margin: 0;
}
.cat-item:hover .cat-img img{
    transform: scale(1.05);
}
.category-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.category{
    background: #ae0072;
}
.category p{
    font-size: 18px;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 15px;
}
.day-beauties{
    background: #ae0072;
}
.day-beauties-content .d-flex{
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.day-beauties-content .d-flex .col{
    flex: 1;
}
.day-beauties-content .d-flex .col img{
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: 1px solid #c1b159;
}
.day-beauties-content .d-flex .col h3{
    font-size: 36px;
    color: #c1b159;
    margin-top: 15px;
    text-shadow: 2px 2px 2px #000;
}
.day-beauties-content .d-flex .col p{
    font-size: 16px;
    color: #fff;
    line-height: 32px;
}
.day-beauties-content .d-flex .col a{
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #45072f;
    color: #fff;
    border-radius: 8px;
    transition: 0.3s;
}
.day-beauties-content .d-flex .col a:hover{
    background: #c1b159;
}
.heart-bg{
    background: url(../images/dil-heart.png) ;
}
.heart-bg img{
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #c1b159;
}
.second-bg{
    background: #ae0072;
}
.profile-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-top: 40px;
}
.service-card{
  background:linear-gradient(180deg,#f3f3f3,#dcdcdc);
  border-radius:20px;
  padding: 25px 20px 20px;
  position:relative;
  overflow:hidden;
}

.card-content h3{
  color:#45072f;
  font-size:26px;
  margin-bottom:15px;
}

.card-content p{
  color:#6b7a8f;
  line-height:1.6;
  font-size:16px;
}

.details-btn{
  display:inline-flex;
  gap: 5px;
  align-items: center;
  margin-top:20px;
  background:#45072f;
  color:#fff;
  padding:14px 26px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}
.details-btn span, .details-btn span svg{
    display: block;
}

.card-number{
  position: absolute;
    right: 10px;
    top: 150px;
    font-size: 70px;
    font-weight: 700;
    color: rgba(255, 0, 0, 0.08);
}

.card-image{
  margin-top:25px;
}

.card-image img{
  width:100%;
  border-radius:25px;
  display: block;
}

.icon-circle{
  position:absolute;
  right:25px;
  bottom:110px;
  width:70px;
  height:70px;
  background:#ff2d2d;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  border:4px solid white;
}

.icon-circle img{
  width:35px;
}

.issue-card{
  padding:10px;
  border-radius:20px;
  border:1px solid #f0c9c9;
  background:#efefef;
  position:relative;
}

.card-bg-number{
  position:absolute;
  right:30px;
  top:20px;
  font-size:110px;
  font-weight:700;
  color:rgba(255,0,0,0.08);
}

.icon-box{
  width:150px;
  height:150px;
  background:#ff1e1e;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  border:8px solid #f7dede;
  margin-bottom:25px;
  overflow: hidden;
}

.icon-box img{
  width:100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.issue-content{
  background:#f7f7f7;
  padding:25px;
  border-radius:25px;
}

.issue-content h3{
  color:#45072f;
  margin-bottom:10px;
  font-size:22px;
}

.issue-content p{
  color:#6b7a8f;
  line-height:1.6;
}
.locations-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.locations{
    background: #ae0072;
}
.day-beaut-bg{
    background: #45072f;
}
.premium{
    border-bottom: 5px solid #ae0072;
    border-top: 5px solid #ae0072;
}
.footer{
  background:#0b0b2b;
  color:#fff;
  padding-top:60px;
}

.footer-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:40px;
}

.footer-col h3{
  margin-bottom:20px;
  font-size:20px;
}

.footer-logo{
  font-size:26px;
  margin-bottom:15px;
}

.footer-col p{
  line-height:1.6;
  color:#bdbdc7;
}

.footer-col ul{
  list-style:none;
  padding:0;
}

.footer-col ul li{
  margin-bottom:10px;
}

.footer-col ul li a{
  color:#bdbdc7;
  text-decoration:none;
  transition:0.3s;
}

.footer-col ul li a:hover{
  color:#ae0072;
}

.social-icons{
  margin-top:15px;
}

.social-icons a{
  display:inline-flex;
  width:36px;
  height:36px;
  background:#1c1c45;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  margin-right:8px;
  color:#fff;
  transition:.3s;
}

.social-icons a:hover{
  background:#ff2b2b;
}

.contact-info li{
  display:flex;
  gap:10px;
  color:#bdbdc7;
}

.footer-bottom{
  text-align:center;
  padding:20px;
  margin-top:40px;
  border-top:1px solid #2b2b55;
  font-size:14px;
  color:#bdbdc7;
}
/* DESKTOP FLOATING BUTTONS */

.cta-desktop{
  position:fixed;
  right:20px;
  bottom:40px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:999;
}

.cta-btn{
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:22px;
  text-decoration:none;
  box-shadow:0 6px 15px rgba(0,0,0,0.2);
  animation:pulse 2s infinite;
}

.whatsapp{ background:#25D366; }
.call{ background:#ff2b2b; }
.telegram{ background:#229ED9; }


/* MOBILE STICKY BAR */

.cta-mobile{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  display:flex;
  z-index:999;
}

.mobile-btn{
  flex:1;
  padding:14px;
  text-align:center;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
}

.mobile-btn i{
  margin-right:6px;
}

.mobile-btn.whatsapp{ background:#25D366; }
.mobile-btn.call{ background:#ff2b2b; }
.mobile-btn.telegram{ background:#229ED9; }


/* PULSE ANIMATION */

@keyframes pulse{
  0%{
    box-shadow:0 0 0 0 rgba(0,0,0,0.4);
  }
  70%{
    box-shadow:0 0 0 15px rgba(0,0,0,0);
  }
  100%{
    box-shadow:0 0 0 0 rgba(0,0,0,0);
  }
}


/* RESPONSIVE */

@media (max-width:768px){

  .cta-desktop{
    display:none;
  }

}

@media (min-width:769px){

  .cta-mobile{
    display:none;
  }

}
.age-popup{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.85);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.age-box{
  background:#fff;
  padding:40px;
  border-radius:12px;
  text-align:center;
  max-width:400px;
  width:90%;
}

.age-box h2{
  margin-bottom:10px;
  color: #45072f;
}

.age-box p{
  margin-bottom:20px;
  color:#555;
}

.age-buttons{
  display:flex;
  gap:10px;
  justify-content:center;
}

.age-buttons button{
  padding:12px 20px;
  border:none;
  border-radius:6px;
  font-weight:600;
  cursor:pointer;
}

#enterSite{
  background:#28a745;
  color:#fff;
}

#exitSite{
  background:#dc3545;
  color:#fff;
}
@media (max-width:991px) {
    .header{
        padding: 5px 0;
    }
    .container{
        width: calc(100% - 60px);
    }
    .logo {
        font-size: 18px;
        font-weight: 600;
        color: #fff;
    }
    .logo a{
        color: #fff;
    }
    .day-beauties-content .d-flex{
        flex-direction: column;
        flex-wrap: nowrap;
    }
   .column-reverse{
    flex-direction: column-reverse !important;
   }
}
@media (max-width:767px) {
  .desktop{
    display: none !important;
  }
  .mobile{
    display: block !important;
  }
    .header{
        padding: 5px 0;
  }
    .welcome{
        padding: 10px 0;
    }
    .welcome p {
    font-size: 16px;
    }
    .about-us h1 {
    color: #c1b159;
    }
    .about-us p {
    font-size: 15px;
    }
    .section-title {
    font-size: 30px;
    }
    .category p {
    font-size: 15px;
    }
    .day-beauties-content .d-flex .col h3 {
    font-size: 30px;
    }
}
@media (max-width:499px) {
    .about-us h1 {
    font-size: 26px;
    }
    .about-us img{
        width: 100%;
        height: auto;
    }
    .card-bg-number{
        font-size: 70px;
    }
        .section-title {
        font-size: 30px;
        line-height: 35px;
    }
    .banner{
        padding-top: 36px;
    }
    .mobile-btn{
        font-size: 13px;
        padding: 10px;
    }
}