/* =========================
   ESCORT BANNER
========================= */

.escort-banner{
  position:relative;

  overflow:hidden;

  padding:140px 0 90px;

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

  radial-gradient(
    circle at bottom right,
    rgba(212,175,55,0.07),
    transparent 28%
  ),

  linear-gradient(
    145deg,
    #090909,
    #17120d
  );
}


/* =========================
   GOLD GLOW
========================= */

.escort-banner::before{
  content:'';

  position:absolute;

  top:-160px;
  right:-160px;

  width:360px;
  height:360px;

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

  border-radius:50%;

  filter:blur(40px);
}
.gold-text{
  background:
  linear-gradient(
    180deg,
    #f7e7b8 0%,
    #d4af37 100%
  );

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

/* =========================
   WRAP
========================= */

.escort-banner-wrap{
  position:relative;

  z-index:2;

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

  gap:70px;
}


/* =========================
   CONTENT
========================= */

.escort-banner-content{
  width:52%;
}

.escort-banner-image{
  width:48%;
}


/* SUBTITLE */

.escort-subtitle{
  display:inline-block;

  margin-bottom:20px;

  color:#d4af37;

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

  letter-spacing:3px;
  text-transform:uppercase;
}


/* HEADING */

.escort-banner-content h1{
  margin-bottom:28px;

  max-width:700px;
}


/* TEXT */

.escort-banner-content p{
  max-width:620px;

  margin-bottom:36px;

  color:#d0d0d0;
}


/* =========================
   BUTTONS
========================= */

.escort-banner-btns{
  display:flex;
  align-items:center;

  gap:18px;

  flex-wrap:wrap;
}


/* PRIMARY BUTTON */

.escort-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-width:210px;
  height:58px;

  padding:0 30px;

  border-radius:60px;

  background:#d4af37;
  color:#000000;

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

  transition:0.35s ease;
}


/* BUTTON HOVER */

.escort-btn:hover{
  background:#f1c93b;

  color:#000000;

  transform:translateY(-3px);

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


/* OUTLINE BUTTON */

.escort-btn-outline{
  background:transparent;

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

  color:#ffffff;
}


/* OUTLINE HOVER */

.escort-btn-outline:hover{
  background:rgba(212,175,55,0.08);

  color:#d4af37;
}


/* =========================
   IMAGE
========================= */

.escort-banner-image{
  width:45%;

  overflow:hidden;

  border-radius:30px;

  position:relative;
}


/* IMAGE */

.escort-banner-image img{
  width:100%;
  height:100%;

  display:block;

  object-fit:cover;

  border-radius:30px;

  transition:0.5s ease;
}


/* IMAGE HOVER */

.escort-banner-image:hover img{
  transform:scale(1.04);
}


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

@media(max-width:991px){

  .escort-banner{
    padding:120px 0 70px;
  }


  /* WRAP */

  .escort-banner-wrap{
    flex-direction:column;

    gap:45px;
  }


  /* WIDTH */

  .escort-banner-content,
  .escort-banner-image{
    width:100%;
  }


  /* CONTENT */

  .escort-banner-content{
    text-align:center;
  }


  .escort-banner-content p{
    margin-left:auto;
    margin-right:auto;
  }


  /* BUTTONS */

  .escort-banner-btns{
    justify-content:center;
  }


  /* IMAGE */

  .escort-banner-image{
    max-width:520px;

    margin:0 auto;
  }

}


@media(max-width:576px){

  .escort-banner{
    padding:110px 0 60px;
  }


  /* BUTTONS */

  .escort-banner-btns{
    gap:14px;
  }


  /* BUTTON */

  .escort-btn{
    min-width:180px;

    height:54px;

    font-size:14px;
  }

}

/* =========================
   PREMIUM INTRO
========================= */

.premium-intro{
  padding:100px 0;

  overflow:hidden;

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

  radial-gradient(
    circle at bottom right,
    rgba(212,175,55,0.05),
    transparent 25%
  ),

  linear-gradient(
    145deg,
    #090909,
    #17120d
  );
}


/* WRAP */

.premium-intro-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:70px;
}


/* CONTENT */

.premium-intro-content{
  width:60%;
}


/* HEADING */

.premium-intro-content h2{
  margin-bottom:28px;

  max-width:720px;
}


/* TEXT */

.premium-intro-content p{
  margin-bottom:24px;

  color:#d0d0d0;
}


/* FEATURES */

.premium-intro-features{
  display:flex;
  flex-wrap:wrap;

  gap:14px;

  margin-top:36px;
}


/* ITEM */

.premium-intro-item{
  display:flex;
  align-items:center;
  justify-content:center;

  height:48px;

  padding:0 22px;

  border-radius:50px;

  background:
  linear-gradient(
    145deg,
    rgba(212,175,55,0.10),
    rgba(212,175,55,0.03)
  );

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

  color:#d4af37;

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


/* BUTTONS */

.premium-intro-btns{
  display:flex;
  align-items:center;

  gap:18px;

  margin-top:40px;

  flex-wrap:wrap;
}


/* IMAGE */

.premium-intro-image{
  width:40%;

  overflow:hidden;

  border-radius:30px;

  position:relative;

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


/* IMAGE */

.premium-intro-image img{
  width:100%;
  height:100%;

  display:block;

  object-fit:cover;

  border-radius:30px;

  transition:0.5s ease;
}


/* HOVER */

.premium-intro-image:hover img{
  transform:scale(1.04);
}


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

@media(max-width:991px){

  .premium-intro{
    padding:70px 0;
  }


  /* WRAP */

  .premium-intro-wrap{
    flex-direction:column;

    gap:45px;
  }


  /* WIDTH */

  .premium-intro-content,
  .premium-intro-image{
    width:100%;
  }


  /* CONTENT */

  .premium-intro-content{
    text-align:center;
  }


  /* FEATURES */

  .premium-intro-features{
    justify-content:center;
  }


  /* BUTTONS */

  .premium-intro-btns{
    justify-content:center;
  }


  /* IMAGE */

  .premium-intro-image{
    max-width:520px;

    margin:0 auto;
  }

}


@media(max-width:576px){

  .premium-intro-item{
    width:100%;
  }

}
/* =========================
   FEATURED PROFILE
========================= */

.featured-profile{
  padding:100px 0;

  overflow:hidden;

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

  radial-gradient(
    circle at bottom right,
    rgba(212,175,55,0.05),
    transparent 25%
  ),

  linear-gradient(
    145deg,
    #090909,
    #17120d
  );
}


/* WRAP */

.featured-profile-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:70px;
}


/* IMAGE */

.featured-profile-image{
  width:40%;

  overflow:hidden;

  border-radius:30px;

  position:relative;

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


/* IMAGE */

.featured-profile-image img{
  width:100%;
  height:100%;

  display:block;

  object-fit:cover;

  border-radius:30px;

  transition:0.5s ease;
}


/* HOVER */

.featured-profile-image:hover img{
  transform:scale(1.04);
}


/* CONTENT */

.featured-profile-content{
  width:60%;
}


/* HEADING */

.featured-profile-content h2{
  margin-bottom:24px;
}


/* META */

.featured-profile-meta{
  display:flex;
  flex-wrap:wrap;

  gap:14px;

  margin-bottom:30px;
}


/* META ITEM */

.featured-profile-meta span{
  display:flex;
  align-items:center;
  justify-content:center;

  height:46px;

  padding:0 20px;

  border-radius:50px;

  background:
  linear-gradient(
    145deg,
    rgba(212,175,55,0.10),
    rgba(212,175,55,0.03)
  );

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

  color:#d4af37;

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


/* TEXT */

.featured-profile-content p{
  margin-bottom:24px;

  color:#d0d0d0;
}


/* LOCATIONS */

.featured-profile-locations{
  margin-top:30px;
  margin-bottom:40px;

  color:#d0d0d0;

  line-height:1.8;
}


/* LABEL */

.featured-profile-locations span{
  color:#d4af37;

  font-weight:600;
}


/* BUTTONS */

.featured-profile-btns{
  display:flex;
  align-items:center;

  gap:18px;

  flex-wrap:wrap;
}


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

@media(max-width:991px){

  .featured-profile{
    padding:70px 0;
  }


  /* WRAP */

  .featured-profile-wrap{
    flex-direction:column;

    gap:45px;
  }


  /* WIDTH */

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


  /* CONTENT */

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


  /* META */

  .featured-profile-meta{
    justify-content:center;
  }


  /* BUTTONS */

  .featured-profile-btns{
    justify-content:center;
  }


  /* LOCATIONS */

  .featured-profile-locations{
    text-align:center;
  }


  /* IMAGE */

  .featured-profile-image{
    max-width:520px;

    margin:0 auto;
  }

}
/* =========================
   WHY CHOOSE
========================= */

.why-choose{
  padding:100px 0;

  overflow:hidden;

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

  radial-gradient(
    circle at bottom left,
    rgba(212,175,55,0.05),
    transparent 25%
  ),

  linear-gradient(
    145deg,
    #0a0a0a,
    #17120d
  );
}


/* TITLE */

.why-choose .section-title{
  text-align:center;

  margin-bottom:60px;
}


/* GRID */

.why-choose-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);

  gap:28px;
}


/* CARD */

.why-choose-card{
  padding:42px 36px;

  border-radius:30px;

  background:
  linear-gradient(
    180deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.01)
  );

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

  transition:0.35s ease;
}


/* HOVER */

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

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

  box-shadow:
  0 18px 40px rgba(212,175,55,0.08);
}


/* ICON */

.why-choose-icon{
  display:flex;
  align-items:center;
  justify-content:center;

  width:72px;
  height:72px;

  margin-bottom:28px;

  border-radius:50%;

  background:
  linear-gradient(
    145deg,
    rgba(212,175,55,0.10),
    rgba(212,175,55,0.03)
  );

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

  color:#d4af37;

  font-size:30px;
}


/* HEADING */

.why-choose-card h3{
  margin-bottom:18px;
}


/* TEXT */

.why-choose-card p{
  color:#d0d0d0;
}


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

@media(max-width:991px){

  .why-choose{
    padding:70px 0;
  }


  /* GRID */

  .why-choose-grid{
    grid-template-columns:1fr;

    gap:22px;
  }

}


@media(max-width:576px){

  .why-choose-card{
    padding:34px 26px;
  }

}

/* =========================
   LUXURY EXPERIENCE
========================= */

.luxury-experience{
  padding:100px 0;

  overflow:hidden;

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

  radial-gradient(
    circle at bottom right,
    rgba(212,175,55,0.05),
    transparent 25%
  ),

  linear-gradient(
    145deg,
    #090909,
    #17120d
  );
}


/* WRAP */

.luxury-experience-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:70px;
}


/* CONTENT */

.luxury-experience-content{
  width:60%;
}


/* HEADING */

.luxury-experience-content h2{
  margin-bottom:28px;

  max-width:720px;
}


/* TEXT */

.luxury-experience-content p{
  margin-bottom:24px;

  color:#d0d0d0;
}
/* FILLED BUTTON */

.escort-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-width:220px;
  height:58px;

  padding:0 30px;

  border-radius:60px;

  background:#d4af37;

  color:#000000 !important;

  font-weight:600;

  transition:0.3s ease;
}


/* HOVER */

.escort-btn:hover{
  background:#ffffff;

  color:#000000 !important;
}

/* LINKS */

.luxury-experience-content a{
  color:#d4af37;

  font-weight:600;

  transition:0.3s ease;
}


/* HOVER */

.luxury-experience-content a:hover{
  color:#ffffff;
}


/* BUTTONS */

.luxury-experience-btns{
  display:flex;
  align-items:center;

  gap:18px;

  margin-top:40px;

  flex-wrap:wrap;
}


/* RIGHT SIDE */

.luxury-experience-cards{
  width:40%;

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

  gap:22px;
}


/* CARD */

.luxury-experience-card{
  padding:34px 26px;

  border-radius:28px;

  text-align:center;

  background:
  linear-gradient(
    180deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.01)
  );

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

  transition:0.35s ease;
}


/* HOVER */

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

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

  box-shadow:
  0 18px 40px rgba(212,175,55,0.08);
}


/* ICON */

.luxury-experience-icon{
  display:flex;
  align-items:center;
  justify-content:center;

  width:68px;
  height:68px;

  margin:0 auto 24px;

  border-radius:50%;

  background:
  linear-gradient(
    145deg,
    rgba(212,175,55,0.10),
    rgba(212,175,55,0.03)
  );

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

  color:#d4af37;

  font-size:28px;
}


/* HEADING */

.luxury-experience-card h3{
  font-size:1.5rem;
}


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

@media(max-width:991px){

  .luxury-experience{
    padding:70px 0;
  }


  /* WRAP */

  .luxury-experience-wrap{
    flex-direction:column;

    gap:45px;
  }


  /* WIDTH */

  .luxury-experience-content,
  .luxury-experience-cards{
    width:100%;
  }


  /* CONTENT */

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


  /* BUTTONS */

  .luxury-experience-btns{
    justify-content:center;
  }

}


@media(max-width:576px){

  .luxury-experience-cards{
    grid-template-columns:1fr;
  }

}
