/* RESET */
*{margin:0;padding:0;box-sizing:border-box;}
body{
  font-family:'Poppins', sans-serif;
  background:#0a0a0a;
  color:#fff;
  overflow-x:hidden;
}
/* =========================
PREMIUM H3 STYLE (GLOBAL)
========================= */

h3{
  font-size:32px;
  line-height:1.3;

  margin-top:35px;
  margin-bottom:18px;

  font-family:'Playfair Display', serif;
  font-weight:600;
  letter-spacing:0.5px;

  background:linear-gradient(45deg,#d4af37,#fff,#d4af37);

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  display:inline-block;

  position:relative;
}

/* PREMIUM UNDERLINE */
h3::after{
  content:"";

  position:absolute;
  left:0;
  bottom:-8px;

  width:70px;
  height:2px;

  background:linear-gradient(90deg,#d4af37,transparent);
}

/* MOBILE */
@media(max-width:768px){

  h3{
    font-size:24px;
    margin-top:28px;
    margin-bottom:14px;
  }

  h3::after{
    width:50px;
  }

}
.container{
  width:100%;
  max-width:1200px;
  margin:auto;
  padding:0 15px;
}
/* CONTENT LINKS SAME AS TEXT */

.content a,
.gallery-content a,
.about-text a,
.luxury-content a{
  color:inherit !important;   /* text jaisa color */

  text-decoration:none;

  border-bottom:1px solid rgba(212,175,55,0.45);

  transition:0.3s ease;
}

/* HOVER */
.content a:hover,
.gallery-content a:hover,
.about-text a:hover,
.luxury-content a:hover{
  color:#d4af37 !important;

  border-bottom:1px solid #d4af37;
}

/* REMOVE GLOBAL UNDERLINE EFFECT */
.content a::after,
.gallery-content a::after,
.about-text a::after,
.luxury-content a::after{
  display:none !important;
}
/* HEADER (GLASS UI) */
header{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  padding:15px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;

  background:rgba(10,10,10,0.7);
  backdrop-filter:blur(12px);

  border-bottom:1px solid rgba(255,255,255,0.05);
  box-shadow:0 5px 20px rgba(0,0,0,0.4);

  z-index:1000;
}

.logo{
  font-family:'Playfair Display', serif;
  font-size:28px;
  letter-spacing:1px;
}
.logo span{
  background:linear-gradient(45deg,#d4af37,#fff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
nav a{
  text-decoration:none;
  color:#fff;
  position:relative;
  padding:5px 0;
  font-size:15px;
  transition:0.3s;
}

/* GOLD LINE ANIMATION */
nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:linear-gradient(90deg,#d4af37,#c58b6d);
  transition:0.4s;
}

nav a:hover{
  color:#d4af37;
}

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

/* NAV */
nav ul{
  display:flex;
  list-style:none;
  gap:30px;
}
/* IMPORTANT FIX */
.submenu{
  position:absolute;
  display:block; /* ensure vertical */
}
.dropdown{
  position:relative;
}

.submenu{
  position:absolute;
  top:40px;
  left:0;

  background:rgba(20,20,20,0.9);
  backdrop-filter:blur(12px);

  border-radius:12px;
  min-width:200px;
  padding:10px 0;

  box-shadow:0 10px 30px rgba(0,0,0,0.6);
  border:1px solid rgba(255,255,255,0.05);

  display:flex;
  flex-direction:column;

  opacity:0;
  visibility:hidden;
  transform:translateY(15px);
  transition:0.3s;
}
/* HOVER EFFECT */
.submenu a:hover{
  background:rgba(212,175,55,0.08);
  color:#d4af37;
  padding-left:25px;
}

.dropdown:hover .submenu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

nav a{
  text-decoration:none;
  color:#fff;
  position:relative;
  font-size:15px;
}
nav a::after{
  content:'';
  position:absolute;
  width:0;
  height:2px;
  background:#d4af37;
  left:0;
  bottom:-5px;
  transition:0.4s;
}
nav a:hover::after{
  width:100%;
}
.header-icons{
  display:flex;
  gap:15px;
}

.header-icons a{
   width:44px;
  height:44px;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  /* GOLD DEFAULT */
  background:linear-gradient(45deg,#d4af37,#c58b6d);
  color:#000;

  font-size:17px;
  box-shadow:0 4px 10px rgba(0,0,0,0.4);
  text-decoration:none; /* underline remove */
  transition:0.3s;
}

.header-icons a:hover{
  background:linear-gradient(45deg,#d4af37,#c58b6d);
  color:#000;
  transform:scale(1.1);
  box-shadow:0 0 15px rgba(212,175,55,0.6);
}
/* Mobile */

@media (max-width: 991px){

  .header-icons{
    display: none;
  }

}
/* BUTTON */
.btn{
  padding:10px 22px;
  border:none;
  border-radius:30px;
  background:linear-gradient(45deg,#d4af37,#c58b6d);
  color:#000;
  cursor:pointer;
  transition:0.3s;
}
.btn:hover{
  transform:scale(1.08);
  box-shadow:0 0 20px rgba(212,175,55,0.6);
}

/* SIGNATURE SHOWCASE */
.signature-showcase{
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  position:relative;
  background:linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.95)),
  url('../../index.html') center/cover no-repeat;
}

.signature-content{
  max-width:700px;
  animation:fadeUp 1.5s ease;
}

.signature-content h1{
  font-size:55px;
  font-family:'Playfair Display', serif;
  background:linear-gradient(45deg,#d4af37,#fff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.signature-content p{
  margin:20px 0;
  color:#ccc;
  font-size:18px;
}

/* ANIMATION */
@keyframes fadeUp{
  from{opacity:0; transform:translateY(40px);}
  to{opacity:1; transform:translateY(0);}
}

/* ESCORT GRID */
section{padding:80px 20px;}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  max-width:1200px;
  margin:auto;
}

.card{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(10px);
  border-radius:15px;
  overflow:hidden;
  transition:0.4s;
}
.card img{
  width:100%;
  height:300px;
  object-fit:cover;
}
.card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 25px rgba(212,175,55,0.4);
}

.card-content{
  padding:15px;
}

/* FLOATING WHATSAPP */
.whatsapp{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25d366;
  color:#fff;
  padding:15px 18px;
  border-radius:50%;
  font-size:20px;
  text-decoration:none;
  box-shadow:0 0 15px rgba(0,0,0,0.5);
}

/* MOBILE */
.menu-toggle{display:none;font-size:22px;cursor:pointer;}

@media(max-width:768px){

  nav{
    position:absolute;
    top:70px;
    right:-100%;
    width:220px;
    background:#111;
    transition:0.3s;
  }

  nav ul{
    flex-direction:column;
    padding:20px;
  }

  nav.active{
    right:0;
  }

  .menu-toggle{
    display:block;
  }

  .signature-content h1{
    font-size:32px;
  }

  /* ✅ YAHI PAR HONA CHAHIYE */
  .submenu{
    display:none;
    position:static;
    background:rgba(255,255,255,0.03);
    backdrop-filter:blur(10px);

    margin-top:12px;
    padding:12px 0;
    border-radius:12px;

    border:1px solid rgba(255,255,255,0.05);
  }
.submenu a{
  display:block;
  padding:14px 20px;  /* 👈 important */
  font-size:15px;
  letter-spacing:0.3px;
  color:#ddd;
  transition:0.3s;
}
.submenu a:hover{
  background:rgba(212,175,55,0.08);
  color:#d4af37;
  padding-left:26px; /* smooth shift */
}
  .submenu li{
    margin:6px 0;
  }

}
/*banner header*/
.premium-banner{
  height:100vh;
  background:url('../images/banner.webp') center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

/* DARK + GOLD OVERLAY */
.banner-overlay{
  position:absolute;
  width:100%;
  height:100%;
   background: linear-gradient(
    rgba(0,0,0,0.3),
    rgba(0,0,0,0.7)
  );
}

/* CONTENT */
.banner-content{
  position:relative;
  z-index:2;
  max-width:700px;
}

.banner-content h1{
  font-size:55px;
  font-family:'Playfair Display', serif;
  background:linear-gradient(45deg,#d4af37,#fff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.banner-content p{
  margin:20px 0;
  color:#ccc;
  font-size:18px;
}

/* BUTTONS */
.banner-buttons{
  display:flex;
  justify-content:center;
  gap:15px;
}
.btn{
  background:linear-gradient(45deg,#d4af37,#c58b6d);
  color:#000;
  padding:12px 26px;
  border-radius:30px;
  text-decoration:none;
  display:inline-block;
}

.btn-outline{
  border:1px solid #d4af37;
  color:#d4af37;
  padding:12px 26px;
  border-radius:30px;
  text-decoration:none;
  display:inline-block;
  transition:0.3s;
}

.btn-outline:hover{
  background:#d4af37;
  color:#000;
}
/* MOBILE */
@media(max-width:768px){
  .banner-content h1{
    font-size:32px;
  }
}
/* CONTENT SECTION */
.about-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
}

/* LEFT 60% */
.about-text{
  flex:0 0 60%;
}

.about-text h2{
  font-size:38px;
  margin-bottom:20px;
  font-family:'Playfair Display', serif;

  background:linear-gradient(45deg,#d4af37,#fff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.about-text p{
  color:#bbb;
  line-height:1.7;
  margin-bottom:12px;
  font-size:15px;
}

/* RIGHT IMAGE 40% */
.about-image{
  flex:0 0 40%;
  position:relative; /* ⭐ important */
}

/* IMAGE */
.about-image img{
  width:100%;
  border-radius:20px;
  display:block;
  box-shadow:0 20px 40px rgba(0,0,0,0.6);
}

/* OVERLAY CONTAINER */
.image-overlay{
  position:absolute;
  bottom:60px;
  left:20px;
  z-index:2;
}

/* BADGE */
.badge{
  display:inline-block;

  background:rgba(0,0,0,0.65); /* thoda strong */
  backdrop-filter:blur(10px);
white-space:nowrap;
  padding:10px 16px;
  border-radius:14px;

  color:#d4af37;
  font-size:13px;
  font-weight:500;

  box-shadow:0 8px 25px rgba(0,0,0,0.6);
  border:1px solid rgba(212,175,55,0.2);
}

/* MOBILE */
@media(max-width:768px){

  .about-container{
    flex-direction:column;
    text-align:center;
  }

  .about-text,
  .about-image{
    flex:100%;
  }

  /* mobile me center kar do */
  .image-overlay{
    left:15px;       /* ⭐ left me shift */
    bottom:45px;     /* ⭐ niche se gap */
    transform:none;  /* ⭐ center hatao */
  }
  }

}
/*escort card*/
/* SECTION */
.escort-section{
  padding:80px 20px;
  background:#0a0a0a;
}

.section-header{
  text-align:center;
  margin-bottom:40px;
}

.section-header h2{
  font-size:38px;
  font-family:'Playfair Display', serif;
  background:linear-gradient(45deg,#d4af37,#fff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.section-header p{
  color:#bbb;
  margin-top:10px;
}

/* GRID */
.escort-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* CARD */
.escort-card{
  background:#111;
  border-radius:18px;
  overflow:hidden;
  transition:0.3s;
}

.escort-card:hover{
  transform:translateY(-8px);
  box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

/* IMAGE */
.escort-img{
  position:relative;
  overflow:hidden;
  
}

.escort-img img{
  width:100%;
  display:block;
  transition:0.4s;
}

.img2{
  position:absolute;
  top:0;
  left:0;
  opacity:0;
}

.escort-card:hover .img1{
  opacity:0;
}

.escort-card:hover .img2{
  opacity:1;
}

/* BADGE */
.badge{
  position:absolute;
  top:10px;
   
  left:10px;
  background:rgba(0,0,0,0.6);
  color:#d4af37;
  font-size:12px;
  padding:5px 10px;
  border-radius:20px;
}

/* INFO */
.escort-info{
  padding:15px;
  text-align:center;
}

.escort-info h3{
  margin-bottom:5px;
}

.escort-info p{
  color:#aaa;
  font-size:14px;
  margin-bottom:10px;
}

/* BUTTON */
.view-btn{
  display:inline-block;
  padding:8px 18px;
  border-radius:25px;
  text-decoration:none;
  background:linear-gradient(45deg,#d4af37,#c58b6d);
  color:#000;
  font-size:14px;
}

/* MOBILE */
@media(max-width:768px){
  .escort-grid{
    grid-template-columns:1fr;
  }
}
.view-all{
  text-align:center;
  margin-top:40px;
}

.view-all-btn{
  display:inline-block;
  padding:12px 30px;
  border-radius:30px;

  background:linear-gradient(45deg,#d4af37,#c58b6d);
  color:#000;

  text-decoration:none;
  font-size:15px;
  transition:0.3s;
}

.view-all-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 20px rgba(212,175,55,0.3);
}
/* ============================= */
/* FEATURED COMPANION SECTION */
/* ============================= */

.featured-companion{
  padding:100px 20px;

  background:
    radial-gradient(circle at top left, rgba(212,175,55,0.08), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255,0,0,0.06), transparent 40%),
    #0a0a0a;
}

.featured-container{
  max-width:1200px;
  margin:auto;

  display:flex;
  align-items:center;
  gap:60px;
}

/* LEFT IMAGE */
.featured-image{
  flex:0 0 35%;
  position:relative;
}

/* FIXED IMAGE SIZE */
.featured-image img{
  width:100%;
  height:650px;          /* 👈 fixed height */
  object-fit:cover;

  border-radius:28px;

  display:block;

  box-shadow:
    0 25px 60px rgba(0,0,0,0.65),
    0 0 25px rgba(212,175,55,0.08);

  transition:0.5s;
}

/* HOVER */
.featured-image:hover img{
  transform:scale(1.02);
}

/* TAG */
.featured-tag{
  position:absolute;
  bottom:25px;
  left:25px;

  padding:10px 18px;

  background:rgba(0,0,0,0.65);
  backdrop-filter:blur(12px);

  border:1px solid rgba(212,175,55,0.2);

  border-radius:30px;

  color:#d4af37;
  font-size:13px;
  letter-spacing:0.5px;

  box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

/* RIGHT CONTENT */
.featured-content{
  flex:0 0 55%;
}

.small-text{
  display:inline-block;

  margin-bottom:15px;

  color:#d4af37;
  letter-spacing:2px;
  font-size:12px;
}

/* HEADING */
.featured-content h2{
  font-size:44px;
  line-height:1.2;
  margin-bottom:22px;

  font-family:'Playfair Display', serif;

  background:linear-gradient(45deg,#d4af37,#ffffff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* TEXT */
.featured-content p{
  color:#b8b8b8;
  line-height:1.9;
  margin-bottom:18px;
  font-size:15px;
}

/* BUTTONS */
.featured-buttons{
  display:flex;
  align-items:center;
  gap:15px;
  margin-top:25px;
}

/* MAIN BUTTON */
.featured-btn{
  display:inline-block;

  padding:13px 30px;

  border-radius:40px;

  background:linear-gradient(45deg,#d4af37,#c58b6d);

  color:#000;
  text-decoration:none;

  font-size:14px;
  font-weight:500;

  transition:0.3s;
}

.featured-btn:hover{
  transform:translateY(-3px);

  box-shadow:
    0 10px 25px rgba(212,175,55,0.25);
}

/* WHATSAPP ICON BUTTON */
.featured-outline{
  width:48px;
  height:48px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  background:rgba(255,255,255,0.04);

  border:1px solid rgba(255,255,255,0.08);

  color:#d4af37;
  text-decoration:none;

  font-size:18px;

  transition:0.3s;
}

.featured-outline:hover{
  background:#d4af37;
  color:#000;

  transform:scale(1.08);
}

/* MOBILE */
@media(max-width:768px){

  .featured-container{
    flex-direction:column;
    gap:40px;
  }

  .featured-image,
  .featured-content{
    flex:100%;
  }

  .featured-content{
    text-align:center;
  }

  .featured-content h2{
    font-size:30px;
  }

  .featured-buttons{
    justify-content:center;
  }

  .featured-image img{
    border-radius:24px;
  }

}
/* SECTION BG */
.why-section{
  padding:100px 20px;

  background:
    radial-gradient(circle at top left, rgba(255,0,0,0.15), transparent 40%),
    radial-gradient(circle at bottom right, rgba(180,0,0,0.15), transparent 40%),
    #0a0a0a;
}

/* CONTAINER */
.why-container{
  max-width:1200px;
  margin:auto;
}

/* HEADER */
.why-header{
  text-align:center;
  margin-bottom:60px;
}

.why-header h2{
  font-size:40px;
  font-family:'Playfair Display', serif;
 text-shadow:0 0 20px rgba(255,80,80,0.25);
  background:linear-gradient(45deg,#ff3b3b,#ffffff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.why-header p{
  color:#bbb;
  margin-top:10px;
}

/* GRID */
.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

/* CARD */
.why-card{
  background:rgba(255,255,255,0.03);
  backdrop-filter:blur(12px);

  padding:25px;
  border-radius:18px;

  border:1px solid rgba(255,0,0,0.1);

  text-align:center;
  transition:0.3s;
}

/* HOVER */
.why-card:hover{
  transform:translateY(-10px);
  box-shadow:
    0 15px 40px rgba(0,0,0,0.6),
    0 0 25px rgba(255,0,0,0.25);
}

/* ICON */
.why-card .icon{
  font-size:26px;
  margin-bottom:10px;
  color:#ff3b3b;
}
.why-content{
  max-width:700px;
  margin:50px auto 0;
  text-align:center;
}

.why-content p{
  color:#bbb;
  line-height:1.7;
  margin-bottom:16px;
  font-size:15px;
}
/* TITLE */
.why-card h3{
  margin-bottom:8px;
}

/* TEXT */
.why-card p{
  font-size:14px;
  color:#bbb;
}

/* MOBILE */
@media(max-width:768px){
  .why-grid{
    grid-template-columns:1fr;
  }

  .why-header h2{
    font-size:28px;
  }
}

/* =========================
LUXURY OVERLAP SECTION
========================= */

.luxury-overlap{
  padding:120px 20px;

  background:
    radial-gradient(circle at top left, rgba(212,175,55,0.08), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255,0,0,0.08), transparent 35%),
    #050505;

  overflow:hidden;
}

.luxury-wrapper{
  max-width:1200px;
  margin:auto;

  display:flex;
  align-items:center;
  gap:70px;
}

/* LEFT SIDE */
.luxury-content{
  flex:0 0 52%;
}

.luxury-tag{
  color:#d4af37;
  font-size:13px;
  letter-spacing:2px;

  display:inline-block;
  margin-bottom:18px;
}

.luxury-content h2{
  font-size:52px;
  line-height:1.15;

  margin-bottom:24px;

  font-family:'Playfair Display', serif;

  background:linear-gradient(45deg,#d4af37,#ffffff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.luxury-content p{
  color:#bcbcbc;
  line-height:1.9;
  font-size:15px;

  margin-bottom:16px;
}
.premium-points{
  margin-top:15px;
  padding-left:20px;
}

.premium-points li{
  color:#d0d0d0;
  margin-bottom:10px;
  line-height:1.7;
  font-size:15px;
}


/* POINTS */
.luxury-points{
  margin:35px 0;
}

.luxury-points div{
  display:flex;
  align-items:center;
  gap:12px;

  margin-bottom:14px;

  color:#ddd;
  font-size:15px;
}

.luxury-points i{
  color:#d4af37;
  font-size:14px;
}

/* BUTTON */
.luxury-btn{
  display:inline-block;

  padding:14px 32px;
  border-radius:40px;

  background:linear-gradient(45deg,#d4af37,#c58b6d);

  color:#000;
  text-decoration:none;

  font-size:14px;
  font-weight:500;

  transition:0.4s;
}

.luxury-btn:hover{
  transform:translateY(-4px);

  box-shadow:
    0 15px 30px rgba(212,175,55,0.25);
}

/* RIGHT SIDE */
.luxury-images{
  flex:0 0 48%;
  position:relative;

  min-height:700px;
}

/* BIG IMAGE */
.big-image{
  width:100%;
  max-width:430px;

  margin-left:auto;
}

.big-image img{
  width:100%;
  height:650px;
  object-fit:cover;

  border-radius:32px;

  display:block;

  box-shadow:
    0 25px 60px rgba(0,0,0,0.65),
    0 0 30px rgba(212,175,55,0.08);
}

/* SMALL FLOAT IMAGE */
.small-image{
  position:absolute;

  bottom:40px;
  left:0;

  width:240px;

  z-index:2;
}

.small-image img{
  width:100%;
  height:320px;
  object-fit:cover;

  border-radius:26px;

  border:8px solid rgba(15,15,15,0.95);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.7),
    0 0 25px rgba(212,175,55,0.12);
}

/* MOBILE */
@media(max-width:768px){

  .luxury-wrapper{
    flex-direction:column;
    gap:50px;
  }

  .luxury-content,
  .luxury-images{
    flex:100%;
  }

  .luxury-content{
    text-align:center;
  }

  .luxury-content h2{
    font-size:34px;
  }

  .luxury-points div{
    justify-content:center;
  }

  .luxury-images{
    min-height:auto;
    padding-bottom:120px;
  }

  .big-image{
    max-width:100%;
  }

  .big-image img{
    height:500px;
    border-radius:24px;
  }

  .small-image{
    width:180px;

    left:-5px;
    bottom:0;
  }

  .small-image img{
    height:240px;
    border-radius:20px;
  }

}

/* =========================
PREMIUM CONTENT SECTION
========================= */

.premium-content-section{
  padding:80px 20px;
  background:#0b0b0b;
}

.premium-content-box{

  max-width:900px;
  margin:auto;

  background:
  linear-gradient(
    145deg,
    #151515,
    #1d1d1d
  );

  border:
  1px solid rgba(255,255,255,0.06);

  border-radius:28px;

  padding:50px;

  box-shadow:
  0 20px 50px rgba(0,0,0,0.35);
}

.premium-content-box h2{

  font-size:44px;
  line-height:1.15;
  margin-bottom:28px;

  font-weight:700;

  letter-spacing:-1px;

  background:
  linear-gradient(
    135deg,
    #f6e6b4 0%,
    #d4a64f 45%,
    #fff6dc 100%
  );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  font-family:
  "Playfair Display",
  serif;
}

.premium-content-box p{
  color:#bdbdbd;
  font-size:16px;
  line-height:2;
  margin-bottom:22px;
}

.premium-content-box p:last-child{
  margin-bottom:0;
}

/* MOBILE */

@media(max-width:768px){

  .premium-content-box{
    padding:34px 24px;
    border-radius:22px;
  }

  .premium-content-box h2{
    font-size:30px;
    line-height:1.2;
  }

  .premium-content-box p{
    font-size:14px;
    line-height:1.9;
  }

}
/* =========================
FANTASY SECTION
========================= */

.fantasy-section{
  padding:80px 20px;
  background:#0b0b0b;
}

.fantasy-heading{
  text-align:center;
  margin-bottom:50px;
}

.fantasy-heading h2{

  font-size:54px;
  line-height:1.15;
  margin:18px 0 20px;

  background:
  linear-gradient(
    135deg,
    #f6e6b4,
    #d4a64f,
    #fff6dc
  );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  font-family:
  "Playfair Display",
  serif;
}

.fantasy-heading p{
  max-width:760px;
  margin:auto;
  color:#bdbdbd;
  line-height:1.9;
}

.fantasy-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

.fantasy-card{

  background:
  linear-gradient(
    145deg,
    #151515,
    #1d1d1d
  );

  border:
  1px solid rgba(255,255,255,0.06);

  border-radius:24px;

  padding:34px;

  transition:.35s ease;
}

.fantasy-card:hover{
  transform:translateY(-6px);

  border-color:
  rgba(212,166,79,0.25);
}

.fantasy-card h3{
  color:#fff;
  font-size:24px;
  margin-bottom:16px;
}

.fantasy-card p{
  color:#bdbdbd;
  line-height:1.9;
  font-size:15px;
}

/* MOBILE */

@media(max-width:768px){

  .fantasy-grid{
    grid-template-columns:1fr;
  }

  .fantasy-heading h2{
    font-size:34px;
  }

}
/*step process*/
.process-section{
  padding:100px 20px;

  background:
    radial-gradient(circle at top left, rgba(255,0,0,0.12), transparent 40%),
    radial-gradient(circle at bottom right, rgba(180,0,0,0.12), transparent 40%),
    #0a0a0a;
}

.process-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  gap:40px;
  align-items:center;
}

/* LEFT */
.process-steps{
  flex:0 0 40%;
  background:rgba(255,255,255,0.03);
  backdrop-filter:blur(12px);
  padding:30px;
  border-radius:20px;
  border:1px solid rgba(255,0,0,0.1);
}

.process-steps h3{
  margin-bottom:5px;
}

.process-steps .sub{
  color:#aaa;
  font-size:14px;
  margin-bottom:20px;
}

/* STEP */
.step{
  display:flex;
  gap:15px;
  margin-bottom:20px;
}

.dot{
  width:10px;
  height:10px;
  background:#ff3b3b;
  border-radius:50%;
  margin-top:6px;
  box-shadow:0 0 10px #ff3b3b;
}

.step small{
  color:#ff3b3b;
  font-size:11px;
}

.step h4{
  margin:4px 0;
}

.step p{
  font-size:13px;
  color:#bbb;
}

/* STATS */
.process-stats{
  display:flex;
  justify-content:space-between;
  margin-top:20px;
  padding:15px;
  background:#111;
  border-radius:12px;
}

.process-stats div{
  text-align:center;
  font-size:14px;
}

.process-stats span{
  color:#888;
  font-size:12px;
}

/* RIGHT */
.process-content{
  flex:0 0 60%;
}

.process-content h2{
  font-size:42px;
  font-family:'Playfair Display', serif;
  background:linear-gradient(45deg,#ff3b3b,#fff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.process-content p{
  color:#bbb;
  margin-top:15px;
  line-height:1.7;
}

/* MOBILE */
@media(max-width:768px){

  .process-container{
    flex-direction:column;
  }

  .process-steps,
  .process-content{
    flex:100%;
  }

  .process-content h2{
    font-size:28px;
  }

}
/*packages*/
/* SECTION */
.packages-section{
  padding:100px 20px;

  background:
    radial-gradient(circle at top right, rgba(255,0,0,0.12), transparent 40%),
    radial-gradient(circle at bottom left, rgba(212,175,55,0.08), transparent 40%),
    #0a0a0a;
}

/* CONTAINER */
.packages-container{
  max-width:1200px;
  margin:auto;
}

/* HEADER */
.packages-header{
  text-align:center;
  margin-bottom:60px;
}

.packages-header h2{
  font-size:40px;
  font-family:'Playfair Display', serif;

  background:linear-gradient(45deg,#d4af37,#fff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.packages-header p{
  color:#bbb;
  margin-top:10px;
}

/* GRID */
.packages-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* CARD */
.package-card{
  background:rgba(255,255,255,0.03);
  backdrop-filter:blur(12px);

  padding:30px;
  border-radius:20px;

  border:1px solid rgba(255,255,255,0.05);
  text-align:center;

  transition:0.3s;
}

/* HOVER */
.package-card:hover{
  transform:translateY(-10px);
  box-shadow:
    0 15px 40px rgba(0,0,0,0.6),
    0 0 25px rgba(212,175,55,0.2);
}

/* HIGHLIGHT */
.package-card.highlight{
  border:1px solid rgba(212,175,55,0.3);
  box-shadow:0 0 25px rgba(212,175,55,0.15);
}

/* TITLE */
.package-card h3{
  margin-bottom:10px;
}

/* PRICE */
.price{
  color:#d4af37;
  margin-bottom:15px;
}

/* LIST */
.package-card ul{
  list-style:none;
  padding:0;
  margin-bottom:20px;
}

.package-card li{
  margin-bottom:8px;
  color:#bbb;
}

/* BUTTON */
.pkg-btn{
  display:inline-block;
  padding:10px 25px;
  border-radius:25px;

  background:linear-gradient(45deg,#d4af37,#c58b6d);
  color:#000;

  text-decoration:none;
  transition:0.3s;
}

.pkg-btn:hover{
  box-shadow:0 5px 15px rgba(212,175,55,0.4);
}

/* CTA */
.packages-cta{
  text-align:center;
  margin-top:40px;
}

.packages-cta a{
  color:#d4af37;
  text-decoration:none;
}

/* MOBILE */
@media(max-width:768px){
  .packages-grid{
    grid-template-columns:1fr;
  }

  .packages-header h2{
    font-size:28px;
  }
}
/*category*/
.category-section{
  padding:90px 20px;
  background:#0a0a0a;
}

.category-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

/* HEADER */
.category-header h2{
  font-size:36px;
  font-family:'Playfair Display', serif;
  margin-bottom:10px;

  background:linear-gradient(45deg,#d4af37,#fff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.category-header p{
  color:#bbb;
  margin-bottom:40px;
}

/* GRID */
.category-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:15px;
}

/* ITEM */
.category-item{
  padding:14px;
  border-radius:30px;

  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.05);

  text-decoration:none;
  color:#ddd;

  transition:0.3s;
}

/* HOVER */
.category-item:hover{
  background:linear-gradient(45deg,#d4af37,#c58b6d);
  color:#000;
  transform:translateY(-3px);
}

/* MOBILE */
@media(max-width:768px){
  .category-grid{
    grid-template-columns:1fr 1fr;
  }
}
/*insight section*/
.insight-section{
  padding:100px 20px;

  background:
    radial-gradient(circle at top left, rgba(255,0,0,0.12), transparent 40%),
    radial-gradient(circle at bottom right, rgba(212,175,55,0.08), transparent 40%),
    #0a0a0a;
}

.insight-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  gap:50px;
  align-items:center;
}

/* LEFT */
.insight-text{
  flex:0 0 55%;
}

.insight-text h2{
  font-size:38px;
  font-family:'Playfair Display', serif;
  margin-bottom:20px;

  background:linear-gradient(45deg,#ff4d4d,#fff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.insight-text p{
  color:#bbb;
  line-height:1.7;
  margin-bottom:14px;
}

/* RIGHT */
.insight-features{
  flex:0 0 45%;
  background:rgba(255,255,255,0.03);
  backdrop-filter:blur(12px);
  padding:30px;
  border-radius:20px;
  border:1px solid rgba(255,0,0,0.1);
}

/* FEATURE */
.feature{
  display:flex;
  gap:15px;
  margin-bottom:20px;
}

.dot{
  width:10px;
  height:10px;
  background:#ff3b3b;
  border-radius:50%;
  margin-top:6px;
  box-shadow:0 0 10px #ff3b3b;
}

.feature small{
  color:#ff3b3b;
  font-size:11px;
}

.feature h4{
  margin:4px 0;
}

.feature p{
  font-size:13px;
  color:#bbb;
}

/* STATS */
.insight-stats{
  display:flex;
  justify-content:space-between;
  margin-top:25px;
  padding:15px;
  background:#111;
  border-radius:12px;
}

.insight-stats div{
  text-align:center;
}

.insight-stats strong{
  display:block;
  color:#d4af37;
}

.insight-stats span{
  font-size:12px;
  color:#888;
}

/* MOBILE */
@media(max-width:768px){

  .insight-container{
    flex-direction:column;
  }

  .insight-text,
  .insight-features{
    flex:100%;
  }

  .insight-text h2{
    font-size:28px;
  }

}
/*hotel*/
.hotels-section{
  padding:80px 20px;

  background:
    radial-gradient(circle at top left, rgba(212,175,55,0.08), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255,0,0,0.08), transparent 40%),
    #0a0a0a;
}

.hotels-container{
  max-width:900px;
  margin:auto;
  text-align:center;
}

/* HEADING */
.hotels-container h2{
  font-size:34px;
  font-family:'Playfair Display', serif;
  margin-bottom:20px;

  background:linear-gradient(45deg,#d4af37,#fff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* TEXT */
.hotel-text{
  color:#bbb;
  line-height:1.7;
  margin-bottom:15px;
}

/* LOCATION LIST */
.hotel-list{
  margin:20px 0;
  color:#d4af37;
  font-size:15px;
  letter-spacing:0.5px;
}
/* =========================
HOME AREAS
========================= */

.home-areas{
  padding:110px 20px;

  background:
    radial-gradient(circle at top left,
    rgba(212,175,55,0.06),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(255,255,255,0.03),
    transparent 35%),

    #0a0a0a;
}

/* WRAP */
.home-areas-wrap{
  max-width:1200px;

  margin:auto;

  padding:70px 55px;

  border-radius:38px;

  position:relative;

  overflow:hidden;

  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.02)
  );

  border:
  1px solid rgba(255,255,255,0.06);

  backdrop-filter:blur(14px);

  box-shadow:
  0 25px 70px rgba(0,0,0,0.45);
}

/* GOLD GLOW */
.home-areas-wrap::before{
  content:"";

  position:absolute;

  top:-120px;
  right:-120px;

  width:280px;
  height:280px;

  border-radius:50%;

  background:
  rgba(212,175,55,0.08);

  filter:blur(90px);
}

/* =========================
HEADING
========================= */

.home-areas-head{
  text-align:center;

  margin-bottom:50px;

  position:relative;
  z-index:2;
}

/* TAG */
.home-area-tag{
  display:inline-block;

  padding:10px 22px;

  border-radius:40px;

  margin-bottom:22px;

  background:
  rgba(212,175,55,0.08);

  border:
  1px solid rgba(212,175,55,0.15);

  color:#d4af37;

  font-size:13px;
  letter-spacing:1px;
}

/* TITLE */
.home-areas-head h2{
  font-size:42px;

  line-height:1.25;

  margin-bottom:20px;

  font-family:'Playfair Display', serif;

  font-weight:600;

  letter-spacing:0.3px;

  background:
  linear-gradient(
    45deg,
    #d4af37,
    #f5f5f5
  );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* TEXT */
.home-areas-head p{
  max-width:680px;

  margin:auto;

  color:#a9a9a9;

  line-height:1.8;

  font-size:16px;
}

/* =========================
GRID
========================= */

.home-areas-grid{
  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  gap:24px;

  position:relative;
  z-index:2;
}

/* CARD */
.home-area-card{
  display:flex;

  align-items:center;

  min-height:78px;

  padding:0 28px;

  border-radius:22px;

  text-decoration:none;

  color:#d7d7d7;

  font-size:19px;

  font-weight:500;

  letter-spacing:0.3px;

  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.02)
  );

  border:
  1px solid rgba(255,255,255,0.06);

  transition:0.35s ease;

  backdrop-filter:blur(10px);
}

/* HOVER */
.home-area-card:hover{
  transform:
  translateY(-4px);

  color:#d4af37;

  border-color:
  rgba(212,175,55,0.22);

  background:
  rgba(255,255,255,0.05);

  box-shadow:
  0 12px 30px rgba(0,0,0,0.28);
}

/* =========================
BUTTON
========================= */

.home-areas-btn-wrap{
  text-align:center;

  margin-top:55px;

  position:relative;
  z-index:2;
}

.home-areas-btn{
  display:inline-flex;

  align-items:center;
  justify-content:center;

  padding:18px 40px;

  border-radius:60px;

  text-decoration:none;

  background:
  linear-gradient(
    45deg,
    #d4af37,
    #c58b6d
  );

  color:#000;

  font-size:17px;
  font-weight:600;

  transition:0.35s ease;
}

/* HOVER */
.home-areas-btn:hover{
  transform:
  translateY(-4px);

  box-shadow:
  0 15px 35px rgba(212,175,55,0.25);
}

/* =========================
TABLET
========================= */

@media(max-width:992px){

  .home-areas-grid{
    grid-template-columns:
    repeat(2,1fr);
  }

  .home-areas-head h2{
    font-size:42px;
  }

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

  .home-areas{
    padding:80px 15px;
  }

  .home-areas-wrap{
    padding:45px 22px;

    border-radius:28px;
  }

  .home-areas-head{
    margin-bottom:35px;
  }

  .home-areas-head h2{
    font-size:32px;
  }

  .home-areas-head p{
    font-size:15px;
  }

  .home-areas-grid{
    grid-template-columns:1fr;

    gap:18px;
  }

  .home-area-card{
    min-height:72px;

    font-size:19px;

    border-radius:18px;

    padding:0 22px;
  }

  .home-areas-btn{
    width:100%;

    font-size:15px;

    padding:16px 20px;
  }

}

/*testomonial*/
/* SECTION */
.testimonial-section{
  padding:100px 20px;

  background:
    radial-gradient(circle at top left, rgba(255,0,0,0.08), transparent 40%),
    radial-gradient(circle at bottom right, rgba(212,175,55,0.08), transparent 40%),
    #0a0a0a;
}

.testimonial-container{
  max-width:1200px;
  margin:auto;
}

/* HEADER */
.testimonial-header{
  text-align:center;
  margin-bottom:50px;
}

.testimonial-header h2{
  font-size:36px;
  font-family:'Playfair Display', serif;

  background:linear-gradient(45deg,#d4af37,#fff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.testimonial-header p{
  color:#bbb;
  margin-top:10px;
}

/* GRID */
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* CARD */
.testimonial-card{
  background:rgba(255,255,255,0.03);
  backdrop-filter:blur(12px);

  padding:25px;
  border-radius:18px;

  border:1px solid rgba(255,255,255,0.05);

  transition:0.3s;
}

/* HOVER */
.testimonial-card:hover{
  transform:translateY(-8px);
  box-shadow:
    0 15px 40px rgba(0,0,0,0.6),
    0 0 20px rgba(212,175,55,0.2);
}

/* STARS */
.stars{
  color:#d4af37;
  margin-bottom:10px;
}

/* TEXT */
.testimonial-card p{
  color:#ccc;
  font-size:14px;
  line-height:1.6;
  margin-bottom:10px;
}

/* NAME */
.testimonial-card span{
  font-size:13px;
  color:#888;
}

/* MOBILE */
@media(max-width:768px){
  .testimonial-grid{
    grid-template-columns:1fr;
  }

  .testimonial-header h2{
    font-size:28px;
  }
}
/*faq*/
/* SECTION */
.faq-section{
  padding:100px 20px;

  background:
    radial-gradient(circle at top left, rgba(255,0,0,0.08), transparent 40%),
    radial-gradient(circle at bottom right, rgba(212,175,55,0.08), transparent 40%),
    #0a0a0a;
}

.faq-container{
  max-width:900px;
  margin:auto;
}

/* HEADER */
.faq-header{
  text-align:center;
  margin-bottom:40px;
}

.faq-header h2{
  font-size:36px;
  font-family:'Playfair Display', serif;

  background:linear-gradient(45deg,#d4af37,#fff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.faq-header p{
  color:#bbb;
  margin-top:10px;
}

/* ITEM */
.faq-item{
  margin-bottom:12px;
  border-radius:12px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.05);
  background:rgba(255,255,255,0.03);
  backdrop-filter:blur(10px);
}

/* QUESTION */
.faq-question{
  width:100%;
  padding:15px 20px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  background:none;
  border:none;
  color:#fff;
  font-size:15px;
  cursor:pointer;
}

/* ICON */
.faq-question span{
  transition:0.3s;
}

/* ANSWER */
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s ease;
}

.faq-answer p{
  padding:0 20px 15px;
  color:#bbb;
  font-size:14px;
  line-height:1.6;
}

/* ACTIVE */
.faq-item.active .faq-answer{
  max-height:200px;
}

.faq-item.active .faq-question span{
  transform:rotate(45deg);
  color:#d4af37;
}
/*footer*/
.footer-premium{
  padding:90px 20px 30px;

  background:
    radial-gradient(circle at top left, rgba(255,0,0,0.1), transparent 40%),
    radial-gradient(circle at bottom right, rgba(212,175,55,0.08), transparent 40%),
    #050505;

  border-top:1px solid rgba(255,255,255,0.05);
}

/* GRID */
.footer-container{
  max-width:1200px;
  margin:auto;

  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

/* HEADINGS */
.footer-col h3{
  font-size:24px;
  margin-bottom:12px;
  color:#d4af37;
}

.footer-col h4{
  font-size:16px;
  margin-bottom:14px;

  background:linear-gradient(45deg,#d4af37,#fff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  position:relative;
}


/* TEXT */
.footer-col p{
  color:#aaa;
  font-size:14px;
  line-height:1.6;
}

/* LINKS */
.footer-col ul{
  list-style:none;
}

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

.footer-col ul li a{
  text-decoration:none;
  color:#bbb;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:0.3s;
}

/* HOVER EFFECT */
.footer-col ul li a:hover{
  color:#d4af37;
  transform:translateX(4px);
}

/* ICON */
.footer-col i{
  font-size:13px;
  color:#d4af37;
}

/* DIVIDER */
.footer-divider{
  max-width:1200px;
  margin:40px auto 20px;
  height:1px;
  background:linear-gradient(to right, transparent, rgba(212,175,55,0.4), transparent);
}

/* BOTTOM */
.footer-bottom{
  text-align:center;
}

.footer-bottom p{
  color:#777;
  font-size:13px;
}

/* MOBILE */
@media(max-width:768px){

  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-col ul li a{
    justify-content:center;
  }

}

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

  background:#0a0a0a;
}

.cta-btn{
  flex:1;
  padding:14px 0;
  text-align:center;
  font-size:18px;
}

.call-btn{
  background:linear-gradient(45deg,#2a1a00,#3a2a00);
  color:#d4af37;
}

.whatsapp-btn{
  background:linear-gradient(45deg,#d4af37,#c58b6d);
  color:#000;
}

/* desktop me hide */
@media(min-width:768px){
  .mobile-cta{display:none;}
}
.floating-cta{
  position:fixed;
  right:20px;
  bottom:80px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:999;
}

.float-btn{
  width:50px;
  height:50px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;

  font-size:18px;
  text-decoration:none;

  box-shadow:0 10px 25px rgba(0,0,0,0.5);
  transition:0.3s;
}

/* call */
.float-btn.call-btn{
  background:#111;
  color:#fff;
}

/* whatsapp */
.float-btn.whatsapp-btn{
  background:linear-gradient(45deg,#d4af37,#c58b6d);
  color:#000;
}

/* hover */
.float-btn:hover{
  transform:scale(1.1);
}

/* mobile me hide */
@media(max-width:768px){
  .floating-cta{display:none;}
}
/*--------------contact page------------*/
.contact-header{
  padding:120px 20px 80px;
  text-align:center;
  position:relative;
  overflow:hidden;

  background:
    radial-gradient(circle at top left, rgba(255,0,0,0.15), transparent 40%),
    radial-gradient(circle at bottom right, rgba(212,175,55,0.08), transparent 40%),
    #050505;
}

.contact-header h1{
  font-size:42px;
  font-family:'Playfair Display', serif;
 letter-spacing:0.5px;
  background:linear-gradient(45deg,#d4af37,#fff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.contact-header p{
  margin-top:14px;
  font-size:15px;
  color:#aaa;
}
.contact-header::after{
  content:"";
  display:block;
  width:80px;
  height:2px;
  margin:25px auto 0;

  background:linear-gradient(45deg,#d4af37,#c58b6d);
}
@media(max-width:768px){

  /* SECTION */
  .contact-header{
    padding:90px 15px 60px;   /* ⭐ spacing adjust */
  }

  /* HEADING */
  .contact-header h1{
    font-size:26px;           /* ⭐ bada kam kiya */
    line-height:1.3;
  }

  /* SUBTEXT */
  .contact-header p{
    font-size:13px;
    margin-top:10px;
  }

  /* BACKGROUND GLOW CONTROL */
  .contact-header::before{
    opacity:0.4;              /* ⭐ glow kam */
  }

  .contact-header::after{
    opacity:0.3;
  }

}

/* =========================
18+ AGE POPUP
========================= */

.age-popup{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 20px;
}

/* BOX */

.age-box{
  width: 100%;
  max-width: 520px;

  background:
  linear-gradient(
    145deg,
    #111111,
    #1b1b1b
  );

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 26px;

  padding: 45px 38px;

  text-align: center;

  box-shadow:
  0 20px 60px rgba(0,0,0,0.65);

  position: relative;
  overflow: hidden;
}

/* GLOSS EFFECT */

.age-box::before{
  content:'';

  position:absolute;

  top:-120px;
  left:-120px;

  width:260px;
  height:260px;

  background:
  radial-gradient(
    circle,
    rgba(255,0,85,0.22),
    transparent 70%
  );

  pointer-events:none;
}

.age-box::after{
  content:'';

  position:absolute;

  bottom:-120px;
  right:-120px;

  width:260px;
  height:260px;

  background:
  radial-gradient(
    circle,
    rgba(255,120,160,0.14),
    transparent 70%
  );

  pointer-events:none;
}

/* TAG */

.age-tag{
  display:inline-block;

  padding:8px 18px;

  border-radius:40px;

  background:
  rgba(255,0,85,0.12);

  color:#ff4d88;

  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;

  margin-bottom:22px;

  border:
  1px solid rgba(255,255,255,0.06);
}

/* HEADING */

.age-box h2{
  color:#ffffff;

  font-size:38px;
  font-weight:700;
  line-height:1.2;

  margin-bottom:18px;
}

/* TEXT */

.age-box p{
  color:#bcbcbc;

  font-size:15px;
  line-height:1.9;

  margin-bottom:34px;
}

/* BUTTON WRAP */

.age-buttons{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

/* BUTTONS */

.age-buttons button,
.age-buttons a{

  min-width:150px;

  padding:15px 24px;

  border-radius:50px;

  text-decoration:none;

  font-size:15px;
  font-weight:600;

  transition:0.35s ease;

  display:flex;
  align-items:center;
  justify-content:center;
}

/* ENTER BUTTON */

.age-buttons button{

  background:
  linear-gradient(
    135deg,
    #ff2d75,
    #ff0055
  );

  color:#ffffff;

  border:none;

  cursor:pointer;

  box-shadow:
  0 10px 30px rgba(255,0,85,0.25);
}

/* EXIT BUTTON */

.age-buttons a{

  background:
  rgba(255,255,255,0.04);

  border:
  1px solid rgba(255,255,255,0.08);

  color:#d6d6d6;
}

/* HOVER */

.age-buttons button:hover{

  transform:translateY(-3px);

  box-shadow:
  0 14px 35px rgba(255,0,85,0.35);
}

.age-buttons a:hover{

  background:#ffffff;

  color:#111111;

  transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:600px){

  .age-popup{
    padding:18px;
  }

  .age-box{

    max-width:360px;

    padding:32px 22px;

    border-radius:24px;
  }

  .age-box h2{
    font-size:24px;
    line-height:1.3;
    margin-bottom:14px;
  }

  .age-box p{
    font-size:14px;
    line-height:1.7;
    margin-bottom:26px;
  }

  .age-tag{
    font-size:11px;
    padding:7px 16px;
    margin-bottom:18px;
  }

  .age-buttons{
    gap:14px;
  }

  .age-buttons button,
  .age-buttons a{

    width:100%;

    padding:14px 20px;

    font-size:15px;
  }

}