html,
body{
    overflow-x:hidden;
}
/* =========================
   HEADER
========================= */

.header{
  position:sticky;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  background:rgba(13,13,13,0.95);
  backdrop-filter:blur(10px);
  border-bottom:1px solid #2a2a2a;
}


/* =========================
   CONTAINER
========================= */

.container{
  width:90%;
  max-width:1280px;
  margin:auto;
}


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

.header-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:85px;
}


/* =========================
   LOGO
========================= */

.logo{
  font-size:28px;
  font-weight:700;
  letter-spacing:2px;
  color:#ffffff;
  font-family:'Playfair Display', serif;
}

.logo span{
  color:#d4af37;
}


/* =========================
   NAVIGATION
========================= */

.nav{
  display:flex;
  align-items:center;
  gap:35px;
}


/* NAV LINK */

.nav-link{
  position:relative;
  color:#ffffff;
  font-size:15px;
  font-weight:500;
  transition:0.3s ease;
}

.nav-link:hover{
  color:#d4af37;
}


/* =========================
   HEADER ACTION
========================= */

.header-action{
  display:flex;
  align-items:center;
  gap:15px;
}


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

.icon-btn{
  width:46px;
  height:46px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#161616;
  border:1px solid #2a2a2a;
  transition:0.3s ease;
}

.icon-btn:hover{
  border-color:#d4af37;
  transform:translateY(-3px);
}


/* ICON */

.icon-btn svg{
  width:20px;
  height:20px;
  stroke:#d4af37;
  fill:none;
  stroke-width:2;
}


/* =========================
   MENU TOGGLE
========================= */

.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:none;
  background:#161616;
  border-radius:10px;
  cursor:pointer;
  padding:0;
}


/* TOGGLE LINE */

.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:#ffffff;
  margin:5px auto;
  transition:0.3s ease;
}



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

@media(max-width:991px){

  /* MENU TOGGLE SHOW */

  .menu-toggle{
    display:block;
  }


  /* HIDE CALL & WHATSAPP */

  .icon-btn{
    display:none;
  }


  /* MOBILE MENU */

  .nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#111111;
    border-top:1px solid #2a2a2a;

    flex-direction:column;
    align-items:flex-start;
    gap:15px;

    padding:20px;

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:0.3s ease;
  }
.nav-link{
  font-size:18px;
  padding:10px 0;
}

  /* ACTIVE MENU */

  .nav.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

}

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

.banner{
  position:relative;
  overflow:hidden;
}


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

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


/* DESKTOP */

.desktop-banner{
  height:100vh;
}


/* MOBILE */

.mobile-banner{
  display:none;
}


/* =========================
   OVERLAY
========================= */

.banner-overlay{
  position:absolute;
  inset:0;

  background:linear-gradient(
    to right,
    rgba(0,0,0,0.82),
    rgba(0,0,0,0.45)
  );

  z-index:1;
}


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

.banner-content{
  position:absolute;

  top:50%;
  left:10;

  transform:translateY(-50%);

  max-width:700px;

  z-index:2;
}


/* SUBTITLE */

.banner-subtitle{
  display:inline-block;

  margin-bottom:22px;

  color:#d4af37;

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

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


/* HEADING */

.banner-content h1{
  margin-bottom:22px;
}


/* TEXT */

.banner-content p{
  max-width:560px;
  margin-bottom:35px;
}


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

.banner-btn-wrap{
  display:flex;
  align-items:center;
  gap:18px;
}


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

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

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

  padding:0 28px;

  border-radius:60px;

  background:#d4af37;
  color:#000000;

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

  transition:0.3s ease;
}


/* BUTTON HOVER */

.banner-btn:hover{
  background:#f1c93b;
  color:#000000;
  transform:translateY(-3px);
}


/* OUTLINE BUTTON */

.banner-btn-outline{
  background:transparent;
  color:#ffffff;

  border:1px solid #d4af37;
}


/* OUTLINE HOVER */

.banner-btn-outline:hover{
  background:#d4af37;
  color:#000000;
}


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

@media(max-width:991px){

  /* DESKTOP HIDE */

  .desktop-banner{
    display:none;
  }


  /* MOBILE SHOW */

  .mobile-banner{
    display:block;
    height:100vh;
  }


  /* CONTENT */

  .banner-content{
    width:100%;
    max-width:100%;
	left:20px;
    right:20px;
    padding-right:20px;
  }


  /* BUTTON WRAP */

   .banner-btn-wrap{
    display:flex;
    align-items:center;

    gap:12px;

    width:100%;
  }
.banner-content p{
    max-width:100%;

    padding-right:10px;   /* right spacing */

    margin-bottom:30px;
  }


  /* BUTTON */

  .banner-btn{
    flex:1;

    min-width:0;

    max-width:170px;

    height:52px;

    padding:0 18px;

    font-size:15px;

    border-radius:50px;
  }
  /* BOOK NOW */

  .banner-btn:not(.banner-btn-outline){
    background:#d4af37;
    color:#000000;
  }


  /* BOOK NOW HOVER */

  .banner-btn:not(.banner-btn-outline):hover{
    background:#f1c93b;
    color:#000000;
  }


  /* OUTLINE BUTTON */

  .banner-btn-outline{
    background:transparent;
    color:#ffffff;

    border:1px solid #d4af37;
  }


  /* OUTLINE HOVER */

  .banner-btn-outline:hover{
    background:#d4af37;
    color:#000000;
  }

}
/* =========================
   ABOUT
========================= */

.about{
  padding:100px 0;

  background:#0d0d0d;
}


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

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

  gap:60px;
}


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

.about-content{
  width:60%;
}


/* SUBTITLE */

.about-subtitle{
  display:inline-block;

  margin-bottom:20px;

  color:#d4af37;

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

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


/* HEADING */

.about-content h2{
  margin-bottom:24px;

  max-width:700px;
}


/* TEXT */

.about-content p{
  margin-bottom:22px;

  max-width:650px;
}


/* BUTTON */

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

  min-width:190px;
  height:56px;

  padding:0 28px;

  border-radius:60px;

  background:#d4af37;
  color:#000000;

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

  transition:0.3s ease;
}


/* BUTTON HOVER */

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

  color:#000000;

  transform:translateY(-3px);
}


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

.about-image{
  position:relative;

  width:40%;

  overflow:hidden;

  border-radius:24px;
}


/* IMAGE */

.about-image img{
  width:100%;
  display:block;

  border-radius:24px;

  transition:0.5s ease;
}


/* IMAGE HOVER */

.about-image:hover img{
  transform:scale(1.05);
}


/* =========================
   COUNTER
========================= */

.about-counter{
  position:absolute;

  bottom:20px;
  left:20px;

  min-width:170px;

  padding:22px;

  background:rgba(0,0,0,0.75);

  backdrop-filter:blur(10px);

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

  border-radius:20px;
}


/* COUNTER NUMBER */

.about-counter h3{
  margin-bottom:6px;

  color:#d4af37;
}


/* COUNTER TEXT */

.about-counter span{
  color:#ffffff;

  font-size:14px;
}


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

@media(max-width:991px){

  .about{
    padding:70px 0;
  }


  .about-wrap{
    flex-direction:column;

    gap:40px;
  }


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

}
/* =========================
   PROFILES
========================= */

.profiles{
  padding:100px 0;

  background:#111111;
}


/* =========================
   SECTION TITLE
========================= */

.section-title{
  text-align:center;

  margin-bottom:60px;
}


/* SUBTITLE */

.section-subtitle{
  display:inline-block;

  margin-bottom:18px;

  color:#d4af37;

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

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

/* =========================
   PROFILES
========================= */

.profiles{
  padding:100px 0;

  background:#111111;
}


/* =========================
   SECTION TITLE
========================= */

.section-title{
  text-align:center;

  margin-bottom:60px;
}


/* SUBTITLE */

.section-subtitle{
  display:inline-block;

  margin-bottom:18px;

  color:#d4af37;

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

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


/* =========================
   PROFILE LIST
========================= */

.profile-list{
  display:flex;
  flex-direction:column;

  gap:35px;
}


/* =========================
   PROFILE ITEM
========================= */

.profile-item{
  display:flex;
  align-items:center;

  gap:35px;

  padding:30px;

  background:#161616;

  border:1px solid #242424;

  border-radius:28px;

  transition:0.3s ease;
}


/* HOVER */

.profile-item:hover{
  border-color:rgba(212,175,55,0.45);

  transform:translateY(-4px);
}


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

.profile-image{
  width:25%;

  overflow:hidden;

  border-radius:22px;
}


/* IMAGE */

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

  display:block;

  object-fit:cover;

  transition:0.5s ease;
}


/* IMAGE HOVER */

.profile-item:hover img{
  transform:scale(1.05);
}


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

.profile-content{
  width:75%;
}


/* TAG */

.profile-tag{
  display:inline-block;

  margin-bottom:14px;

  color:#d4af37;

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

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


/* HEADING */

.profile-content h3{
  margin-bottom:18px;
}


/* TEXT */

.profile-content p{
  margin-bottom:28px;

  color:#d0d0d0;
}


/* =========================
   META
========================= */

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

  gap:20px;

  flex-wrap:wrap;
}


/* LOCATION */

.profile-location{
  color:#bdbdbd;

  font-size:14px;
}


/* ACTION */

.profile-action{
  display:flex;
  align-items:center;

  gap:20px;
}
/* =========================
   LOCATION
========================= */

.profile-location{
  display:inline-flex;
  align-items:center;

  gap:14px;

  padding:12px 18px;

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

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

  border-radius:50px;

  backdrop-filter:blur(10px);
}


/* LABEL */

.location-label{
  color:#d4af37;

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

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


/* LIST */

.location-list{
  color:#e0e0e0;

  font-size:14px;
}

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

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

  min-width:170px;
  height:52px;

  padding:0 26px;

  border-radius:50px;

  background:#d4af37;
  color:#000000;

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

  transition:0.3s ease;
}


/* BUTTON HOVER */

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

  color:#000000;

  transform:translateY(-2px);
}


/* =========================
   PROFILE LINK
========================= */

.profile-link{
  color:#d4af37;

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

  transition:0.3s ease;
}


/* LINK HOVER */

.profile-link:hover{
  color:#ffffff;
}


/* =========================
   MORE PROFILE
========================= */

.more-profile{
  margin-top:55px;

  text-align:center;
}


/* LINK */

.more-profile a{
  color:#d4af37;

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

  transition:0.3s ease;
}


/* HOVER */

.more-profile a:hover{
  color:#ffffff;
}


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

@media(max-width:991px){

  .profiles{
    padding:70px 0;
  }


  /* ITEM */

  .profile-item{
    flex-direction:column;

    padding:20px;
  }


  /* IMAGE */

  .profile-image{
    width:100%;
  }


  /* CONTENT */

  .profile-content{
    width:100%;
  }


  /* META */

  .profile-meta{
    flex-direction:column;
    align-items:flex-start;
  }


  /* ACTION */

  .profile-action{
    width:100%;
  }


  /* BUTTON */

  .profile-btn{
    flex:1;

    min-width:0;
  }

}
/* =========================
   GALLERY
========================= */

.gallery{
  padding:100px 0;

  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,
    #0c0c0c,
    #15110c
  );
}


/* =========================
   SECTION TITLE
========================= */

.gallery .section-title{
  text-align:center;

  margin-bottom:60px;
}


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

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:28px;
}


/* =========================
   ITEM
========================= */

.gallery-item{
  position:relative;

  overflow:hidden;

  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);

  border-radius:28px;

  transition:0.35s ease;
}


/* HOVER */

.gallery-item:hover{
  transform:translateY(-6px);

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

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


/* =========================
   BADGE
========================= */

.gallery-badge{
  position:absolute;

  bottom:170px;
  right:18px;

  z-index:2;

  padding:10px 16px;

  border-radius:50px;

  background:rgba(0,0,0,0.7);

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

  backdrop-filter:blur(10px);

  color:#d4af37;

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

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


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

.gallery-image{
  height:620px;

  background:#0b0b0b;

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

  overflow:hidden;
}


/* IMAGE */

.gallery-image img{
  width:100%;
  height:100%;

  display:block;

  object-fit:cover;

  transition:0.5s ease;
}


/* IMAGE HOVER */

.gallery-item:hover img{
  transform:scale(1.06);
}


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

.gallery-content{
  padding:24px;
}


/* TOP ROW */

.gallery-content{
  display:flex;
  flex-direction:column;
}


/* NAME + META */

.gallery-content h3,
.gallery-content .gallery-meta{
  margin:0;
}


/* FLEX ROW */

.gallery-content-top{
  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:12px;

  margin-bottom:20px;
}


/* META */

.gallery-meta{
  color:#d4af37;

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

  white-space:nowrap;
}


/* LINK */

.gallery-link{
  display:flex;
  align-items:center;
  justify-content:center;

  width:100%;

  padding-top:18px;

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

  color:#d4af37;

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

  transition:0.3s ease;
}


/* HOVER */

.gallery-item:hover .gallery-link{
  color:#ffffff;
}


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

@media(max-width:991px){

  .gallery{
    padding:70px 0;
  }


  /* GRID */

  .gallery-grid{
    grid-template-columns:repeat(2,1fr);

    gap:18px;
  }


  /* IMAGE */

  .gallery-image{
    height:280px;
  }


  /* CONTENT */

  .gallery-content{
    padding:18px;
  }

}


@media(max-width:576px){

  .gallery-image{
    height:240px;
  }

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

.why-choose{
  padding:100px 0;

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

  overflow:hidden;
}


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

.why-choose-wrap{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;

  gap:60px;
}


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

.why-content{
  width:55%;
}


/* SUBTITLE */

.why-subtitle{
  display:inline-block;

  margin-bottom:20px;

  color:#d4af37;

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

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


/* HEADING */

.why-content h2{
  margin-bottom:28px;

  max-width:700px;
}


/* TEXT */

.why-content p{
  margin-bottom:22px;

  color:#d0d0d0;
}


/* =========================
   RIGHT STEPS
========================= */

.why-steps{
  width:45%;

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

  gap:22px;
}


/* =========================
   STEP CARD
========================= */

.why-step{
  position:relative;

  padding:28px;

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

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

  border-radius:24px;

  backdrop-filter:blur(14px);

  transition:0.3s ease;
}


/* HOVER */

.why-step:hover{
  transform:translateY(-5px);

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

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


/* NUMBER */

.step-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  width:58px;
  height:58px;

  margin-bottom:20px;

  border-radius:50%;

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

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

  color:#d4af37;

  font-size:18px;
  font-weight:700;
}


/* STEP HEADING */

.why-step h3{
  margin-bottom:14px;
}


/* STEP TEXT */

.why-step p{
  color:#cfcfcf;

  font-size:15px;
  line-height:1.8;
}


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

@media(max-width:991px){

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


  .why-choose-wrap{
    flex-direction:column;

    gap:45px;
  }


  .why-content,
  .why-steps{
    width:100%;
  }


  .why-steps{
    grid-template-columns:1fr;
  }

}
/* =========================
   CATEGORIES
========================= */

.categories{
  padding:100px 0;

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

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

  linear-gradient(
    145deg,
    #0b0b0b,
    #15120d
  );
}


/* =========================
   SECTION TITLE
========================= */

.categories .section-title{
  text-align:center;

  margin-bottom:60px;
}


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

.category-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:28px;
}


/* =========================
   CATEGORY ITEM
========================= */

.category-item{
  position:relative;

  padding:38px 34px;

  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);

  border-radius:28px;

  overflow:hidden;

  backdrop-filter:blur(12px);

  transition:0.35s ease;
}


/* HOVER */

.category-item:hover{
  transform:translateY(-6px);

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

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


/* GOLD GLOW */

.category-item::before{
  content:'';

  position:absolute;

  top:-80px;
  right:-80px;

  width:180px;
  height:180px;

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

  border-radius:50%;

  filter:blur(20px);
}


/* =========================
   NUMBER
========================= */

.category-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  width:56px;
  height:56px;

  margin-bottom:24px;

  border-radius:50%;

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

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

  color:#d4af37;

  font-size:17px;
  font-weight:700;
}


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

.category-item h3{
  margin-bottom:18px;
}


/* TEXT */

.category-item p{
  margin-bottom:28px;

  color:#d0d0d0;
}


/* =========================
   LINK
========================= */

.category-link{
  color:#d4af37;

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

  transition:0.3s ease;
}


/* LINK HOVER */

.category-item:hover .category-link{
  color:#ffffff;
}


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

@media(max-width:991px){

  .categories{
    padding:70px 0;
  }


  /* GRID */

  .category-grid{
    grid-template-columns:repeat(2,1fr);

    gap:18px;
  }


  /* ITEM */

  .category-item{
    padding:24px 20px;
  }

}


@media(max-width:576px){

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

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

.luxury-experience{
  padding:100px 0;

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

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

  linear-gradient(
    145deg,
    #0d0d0d,
    #15120c
  );
}


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

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

  gap:70px;
}


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

.luxury-image{
  width:40%;

  overflow:hidden;

  border-radius:28px;
}


/* IMAGE */

.luxury-image img{
  width:100%;
  height:100%;

  display:block;

  object-fit:cover;

  border-radius:28px;

  transition:0.5s ease;
}


/* IMAGE HOVER */

.luxury-image:hover img{
  transform:scale(1.05);
}


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

.luxury-content{
  width:60%;
}


/* SUBTITLE */

.luxury-subtitle{
  display:inline-block;

  margin-bottom:20px;

  color:#d4af37;

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

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


/* HEADING */

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

  max-width:800px;
}


/* TEXT */

.luxury-content p{
  margin-bottom:22px;

  color:#d0d0d0;
}


/* =========================
   FEATURES
========================= */

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

  gap:16px;

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


/* FEATURE */

.luxury-feature{
  position:relative;

  padding:18px 20px;

  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);

  border-radius:18px;

  color:#f0f0f0;

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

  transition:0.3s ease;
}


/* FEATURE HOVER */

.luxury-feature:hover{
  border-color:rgba(212,175,55,0.35);

  transform:translateY(-3px);
}


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

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

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

  padding:0 30px;

  border-radius:60px;

  background:#d4af37;
  color:#000000;

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

  transition:0.3s ease;
}


/* BUTTON HOVER */

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

  color:#000000;

  transform:translateY(-3px);
}


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

@media(max-width:991px){

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


  /* WRAP */

  .luxury-wrap{
    flex-direction:column;

    gap:45px;
  }


  /* WIDTH */

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


  /* FEATURES */

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


  /* BUTTON */

  .luxury-btn{
    width:auto;

    min-width:220px;
    max-width:260px;

    margin:0 auto;

    padding:0 26px;
  }

}

/* =========================
   LOCATIONS
========================= */

.locations{
  padding:100px 0;

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

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

  linear-gradient(
    145deg,
    #0a0a0a,
    #15110c
  );
}


/* =========================
   SECTION TITLE
========================= */

.locations .section-title{
  text-align:center;

  margin-bottom:60px;
}


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

.location-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:28px;
}


/* =========================
   LOCATION ITEM
========================= */

.location-item{
  display:block;

  overflow:hidden;

  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);

  border-radius:26px;

  transition:0.35s ease;
}


/* HOVER */

.location-item:hover{
  transform:translateY(-6px);

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

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


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

.location-image{
  height:220px;

  overflow:hidden;
}


/* IMAGE */

.location-image img{
  width:100%;
  height:100%;

  display:block;

  object-fit:cover;

  transition:0.5s ease;
}


/* IMAGE HOVER */

.location-item:hover img{
  transform:scale(1.06);
}


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

.location-content{
  padding:28px;
}


/* HEADING */

.location-content h3{
  margin-bottom:16px;
}


/* TEXT */

.location-content p{
  margin-bottom:24px;

  color:#d0d0d0;
}


/* =========================
   LINK
========================= */

.location-link{
  color:#d4af37;

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

  transition:0.3s ease;
}


/* LINK HOVER */

.location-item:hover .location-link{
  color:#ffffff;
}


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

@media(max-width:991px){

  .locations{
    padding:70px 0;
  }


  /* GRID */

  .location-grid{
    grid-template-columns:1fr;

    gap:20px;
  }


  /* IMAGE */

  .location-image{
    height:210px;
  }

}
/* =========================
   SEO CONTENT
========================= */

.seo-content{
  padding:100px 0;

  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,
    #0d0d0d,
    #16120d
  );
}


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

.seo-content-wrap{
  max-width:900px;

  margin:0 auto;

  text-align:center;
}


/* =========================
   SUBTITLE
========================= */

.seo-subtitle{
  display:inline-block;

  margin-bottom:20px;

  color:#d4af37;

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

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


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

.seo-content-wrap h2{
  margin-bottom:35px;
}


/* =========================
   PARAGRAPH
========================= */

.seo-content-wrap p{
  margin-bottom:24px;

  color:#d0d0d0;
}


/* LAST PARA */

.seo-content-wrap p:last-child{
  margin-bottom:0;
}


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

@media(max-width:991px){

  .seo-content{
    padding:70px 0;
  }


  .seo-content-wrap{
    text-align:left;
  }

}
/* =========================
   TESTIMONIALS
========================= */

.testimonials{
  padding:100px 0;

  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,
    #15110c
  );
}


/* =========================
   SECTION TITLE
========================= */

.testimonials .section-title{
  text-align:center;

  margin-bottom:60px;
}


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

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:28px;
}


/* =========================
   ITEM
========================= */

.testimonial-item{
  position:relative;

  padding:40px 35px;

  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);

  border-radius:30px;

  overflow:hidden;

  backdrop-filter:blur(12px);

  transition:0.35s ease;
}


/* HOVER */

.testimonial-item:hover{
  transform:translateY(-6px);

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

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


/* GOLD GLOW */

.testimonial-item::before{
  content:'';

  position:absolute;

  top:-90px;
  right:-90px;

  width:180px;
  height:180px;

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

  border-radius:50%;

  filter:blur(25px);
}


/* =========================
   QUOTE ICON
========================= */

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

  width:65px;
  height:65px;

  margin-bottom:28px;

  border-radius:50%;

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

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

  color:#d4af37;

  font-size:42px;
  font-weight:700;
}


/* =========================
   TEXT
========================= */

.testimonial-item p{
  margin-bottom:35px;

  color:#d0d0d0;
}


/* =========================
   USER
========================= */

.testimonial-user h3{
  margin-bottom:8px;

  font-size:1.5rem;
}


/* LOCATION */

.testimonial-user span{
  color:#d4af37;

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

  letter-spacing:1px;
}


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

@media(max-width:991px){

  .testimonials{
    padding:70px 0;
  }


  /* GRID */

  .testimonial-grid{
    grid-template-columns:1fr;

    gap:20px;
  }


  /* ITEM */

  .testimonial-item{
    padding:32px 24px;
  }

}
/* =========================
   FAQ
========================= */

.faq{
  padding:100px 0;

  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,
    #0b0b0b,
    #15110c
  );
}


/* =========================
   SECTION TITLE
========================= */

.faq .section-title{
  text-align:center;

  margin-bottom:60px;
}


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

.faq-wrap{
  max-width:900px;

  margin:0 auto;
}


/* =========================
   ITEM
========================= */

.faq-item{
  margin-bottom:20px;

  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);

  border-radius:24px;

  overflow:hidden;

  transition:0.3s ease;
}


/* ACTIVE */

.faq-item.active{
  border-color:rgba(212,175,55,0.35);

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


/* =========================
   QUESTION
========================= */

.faq-question{
  width:100%;

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

  gap:20px;

  padding:28px 30px;

  background:none;

  border:none;

  cursor:pointer;

  color:#ffffff;

  text-align:left;

  font-size:18px;
  font-weight:600;
}


/* =========================
   ICON
========================= */

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

  min-width:42px;
  height:42px;

  border-radius:50%;

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

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

  color:#d4af37;

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

  transition:0.3s ease;
}


/* ACTIVE ICON */

.faq-item.active .faq-icon{
  transform:rotate(45deg);
}


/* =========================
   ANSWER
========================= */

.faq-answer{
  max-height:0;

  overflow:hidden;

  transition:0.4s ease;
}


/* ACTIVE ANSWER */

.faq-item.active .faq-answer{
  max-height:300px;
}


/* TEXT */

.faq-answer p{
  padding:
  0 30px 30px;

  color:#d0d0d0;
}


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

@media(max-width:991px){

  .faq{
    padding:70px 0;
  }


  .faq-question{
    padding:24px 22px;

    font-size:16px;
  }


  .faq-answer p{
    padding:
    0 22px 24px;
  }

}
/* =========================
   FINAL CTA
========================= */

.final-cta{
  position:relative;

  padding:110px 0;

  overflow:hidden;

  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.08),
    transparent 28%
  ),

  linear-gradient(
    145deg,
    #0b0b0b,
    #18120c
  );
}


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

.final-cta::before{
  content:'';

  position:absolute;

  top:-140px;
  left:-140px;

  width:320px;
  height:320px;

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

  border-radius:50%;

  filter:blur(40px);
}


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

.final-cta-wrap{
  position:relative;

  z-index:2;

  max-width:900px;

  margin:0 auto;

  text-align:center;
}


/* =========================
   SUBTITLE
========================= */

.cta-subtitle{
  display:inline-block;

  margin-bottom:22px;

  color:#d4af37;

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

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


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

.final-cta-wrap h2{
  margin-bottom:30px;
}


/* =========================
   TEXT
========================= */

.final-cta-wrap p{
  max-width:760px;

  margin:
  0 auto 40px;

  color:#d0d0d0;
}


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

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

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

  padding:0 34px;

  border-radius:60px;

  background:#d4af37;
  color:#000000;

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

  transition:0.35s ease;
}


/* BUTTON HOVER */

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

  color:#000000;

  transform:translateY(-3px);

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


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

@media(max-width:991px){

  .final-cta{
    padding:80px 0;
  }


  .final-cta-wrap{
    text-align:center;
  }


  .cta-btn{
    min-width:220px;

    height:54px;

    font-size:15px;
  }

}
/* =========================
   FOOTER
========================= */

.footer{
  padding:90px 0 30px;

  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,
    #15110c
  );

  border-top:1px solid rgba(212,175,55,0.10);
}


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

.footer-wrap{
  display:grid;
  grid-template-columns:
  1.4fr
  1fr
  1fr
  1fr;

  gap:50px;

  padding-bottom:60px;
}


/* =========================
   LOGO
========================= */

.footer-logo{
  display:inline-block;

  margin-bottom:24px;

  color:#ffffff;

  font-size:34px;
  font-weight:700;

  font-family:'Playfair Display', serif;

  background:linear-gradient(
    180deg,
    #ffffff 0%,
    #f3e3b0 45%,
    #d4af37 100%
  );

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


/* BRAND TEXT */

.footer-brand p{
  max-width:320px;

  margin-bottom:28px;

  color:#d0d0d0;
}


/* =========================
   SOCIAL
========================= */

.footer-social{
  display:flex;
  align-items:center;

  gap:14px;
}


/* ICON */

.footer-social a{
  display:flex;
  align-items:center;
  justify-content:center;

  width:46px;
  height:46px;

  border-radius:50%;

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

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

  color:#d4af37;

  font-size:18px;

  transition:0.3s ease;
}


/* HOVER */

.footer-social a:hover{
  transform:translateY(-3px);

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

  color:#ffffff;
}


/* =========================
   COLUMN TITLE
========================= */

.footer-col h3{
  margin-bottom:26px;

  font-size:1.5rem;
}


/* =========================
   LIST
========================= */

.footer-col ul{
  display:flex;
  flex-direction:column;

  gap:16px;
}


/* LINK */

.footer-col ul a,
.footer-col ul span{
  color:#cfcfcf;

  font-size:15px;

  transition:0.3s ease;
}


/* HOVER */

.footer-col ul a:hover{
  color:#d4af37;

  padding-left:4px;
}


/* =========================
   CONTACT
========================= */

.footer-contact i{
  margin-right:10px;

  color:#d4af37;
}


/* =========================
   BOTTOM
========================= */

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:20px;

  padding-top:30px;

  border-top:1px solid rgba(212,175,55,0.10);
}


/* TEXT */

.footer-bottom p{
  color:#bdbdbd;

  margin:0;
}


/* LINKS */

.footer-bottom-links{
  display:flex;
  align-items:center;

  gap:22px;
}


/* LINK */

.footer-bottom-links a{
  color:#bdbdbd;

  font-size:14px;

  transition:0.3s ease;
}


/* HOVER */

.footer-bottom-links a:hover{
  color:#d4af37;
}


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

@media(max-width:991px){

  .footer{
    padding:70px 0 25px;
  }


  /* WRAP */

  .footer-wrap{
    grid-template-columns:1fr 1fr;

    gap:40px;
  }


  /* BOTTOM */

  .footer-bottom{
    flex-direction:column;

    text-align:center;
  }

}


@media(max-width:576px){

  .footer-wrap{
    grid-template-columns:1fr;
  }


  .footer-bottom-links{
    flex-wrap:wrap;
    justify-content:center;

    gap:14px;
  }

}
/* =========================
   DESKTOP FLOATING BUTTONS
========================= */

.floating-contact{
  position:fixed;

  right:24px;
  bottom:30px;

  display:flex;
  flex-direction:column;

  gap:18px;

  z-index:999;
}


/* BUTTON */

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

  width:60px;
  height:60px;

  border-radius:50%;

  color:#ffffff;

  font-size:26px;

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

  transition:0.35s ease;
}


/* CALL */

.float-btn.call-link{
  background:
  linear-gradient(
    145deg,
    #c70039,
    #8f0028
  );
}


/* WHATSAPP */

.float-btn.whatsapp-link{
  background:
  linear-gradient(
    145deg,
    #25d366,
    #17a851
  );
}


/* HOVER */

.float-btn:hover{
  transform:translateY(-4px) scale(1.05);

  box-shadow:
  0 14px 35px rgba(0,0,0,0.45);
}


/* =========================
   MOBILE BOTTOM BAR
========================= */

/* =========================
   MOBILE BOTTOM BAR FIX
========================= */

.mobile-contact{
  position:fixed;

  left:0;
  bottom:0;

  width:100%;

  display:none;

  grid-template-columns:1fr 1fr;

  gap:12px;

  padding:12px;

  z-index:1000;

  background:#050505;

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

  box-sizing:border-box;
}


/* BUTTON */

.mobile-contact-btn{
  width:100%;

  min-width:0;

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

  gap:8px;

  height:58px;

  padding:0 10px;

  border-radius:18px;

  color:#ffffff;

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

  white-space:nowrap;

  box-sizing:border-box;
}


/* CALL BUTTON */

.mobile-contact-btn.call-link{
  background:
  linear-gradient(
    145deg,
    #c70039,
    #8f0028
  );
}


/* WHATSAPP BUTTON */

.mobile-contact-btn.whatsapp-link{
  background:
  linear-gradient(
    145deg,
    #25d366,
    #17a851
  );
}


/* ICON */

.mobile-contact-btn i{
  font-size:22px;

  color:#ffffff;
}


/* HOVER */

.mobile-contact-btn:hover{
  transform:translateY(-2px);
}


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

@media(max-width:991px){

  /* HIDE DESKTOP FLOAT */

  .floating-contact{
    display:none;
  }


  /* SHOW MOBILE BAR */

  .mobile-contact{
    display:grid;
  }

}

/*======================================
LEGAL BANNER
======================================*/

.legal-banner{

    padding:90px 0 70px;

    text-align:center;

    background:linear-gradient(180deg,#131313,#090909);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.legal-banner h1{

    margin:18px 0;

}
.legal-content h2{

    font-size:42px;

    line-height:1.2;

    margin:48px 0 16px;

}

.legal-content p{

    font-size:16px;

    line-height:1.9;

    color:#d4d4d4;

    margin-bottom:18px;

}
.legal-banner p{

    max-width:700px;

    margin:auto;

}
/*======================================
LEGAL CTA
======================================*/

.legal-cta{

    padding:0 0 80px;

}

.legal-cta-box{

    max-width:900px;

    margin:auto;

    padding:60px 40px;

    text-align:center;

    background:linear-gradient(180deg,#141414,#0b0b0b);

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

    border-radius:20px;

}

.legal-cta-box h2{

    margin:18px 0;

}

.legal-cta-box p{

    max-width:650px;

    margin:0 auto 30px;

}

.legal-cta-btns{

    display:flex;

    justify-content:center;

}
@media (max-width:768px){

    .legal-content h2{

        font-size:30px;

    }

    .legal-content p{

        font-size:16px;

    }

}