/* =========================================================
   RESET & GLOBAL
========================================================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

/* =========================================================
   ROOT COLORS & VARIABLES
========================================================= */
:root{
  --primary:#B89057;
  --primary-hover:#9f7843;
  --dark:#1f1f1f;
  --text:#666;
  --bg:#f8f5f1;
  --border:#e8dfd4;
  --radius:16px;
}

/* =========================================================
   BODY & GLOBAL ELEMENTS
========================================================= */
body{
  font-family:'Manrope',sans-serif;
  color:var(--dark);
  overflow-x:hidden;
  background:#fff;
}

img{
  width:100%;
  display:block;
}

/* =========================================================
   CONTAINER
========================================================= */
.container,
.nav-container{
  width:100%;
  max-width:1200px;
  margin:auto;
  padding:0 24px;
}

/* =========================================================
   SECTION TITLE & LABEL
========================================================= */
.section-label{
  display:inline-block;
  margin-bottom:14px;
  color:var(--primary);
  font-size:12px;
  font-weight:700;
  letter-spacing:2px;
}

.section-title{
  font-family:'Playfair Display',serif;
  font-size:42px;
  line-height:1.2;
  font-weight:600;
}

.center{
  text-align:center;
}

p{
  color:var(--text);
  line-height:1.8;
}

/* =========================================================
   BUTTONS
========================================================= */
.main-btn,
.outline-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 28px;
  border-radius:12px;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  transition:.3s ease;
}

.main-btn{
  background:var(--primary);
  color:#fff;
}

.outline-btn{
  border:1px solid rgba(255,255,255,.4);
  color:#fff;
}

/* =========================================================
   NAVBAR
========================================================= */
.navbar{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  z-index:999;
  padding:14px 0;
}

.navbar.scrolled{
  background:#fff;
  box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.nav-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* =========================================================
   LOGO
========================================================= */
.logo img{
  height:52px;
  width:auto;
}

/* =========================================================
   NAVIGATION MENU
========================================================= */
.menu{
  display:flex;
  align-items:center;
  gap:28px;
}

.nav-link{
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
}

.navbar.scrolled .nav-link{
  color:#111;
}

/* =========================================================
   NAVBAR RIGHT SIDE
========================================================= */
.nav-right{
  display:flex;
  align-items:center;
  gap:20px;
}

/* =========================================================
   HAMBURGER MENU
========================================================= */
.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
}

.hamburger span{
  width:28px;
  height:3px;
  background:#fff;
}
/* =========================================
   HAMBURGER DEFAULT
========================================= */
.hamburger span{
  width: 28px;
  height: 2px;
  background: #fff; /* warna awal */
  border-radius: 20px;
  transition: .3s ease;
}

/* =========================================
   HAMBURGER SAAT SCROLL
========================================= */
.navbar.scrolled .hamburger span{
  background: #111; /* jadi hitam */
}
/* =========================================================
   ACTIVE MENU HIGHLIGHT
========================================================= */
.nav-link{
  position: relative;
}

/* UNDERLINE */
.nav-link::after{
  content: "";

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

  width: 0;
  height: 2px;

  background: #c89b63;

  transition: .3s ease;
}

/* ACTIVE & HOVER */
.nav-link:hover::after,
.nav-link.active::after{
  width: 100%;
}

/* ACTIVE TEXT */
.nav-link.active{
  color: #c89b63 !important;
}

/* =========================================================
   MOBILE MENU FIX
========================================================= */
/* =========================================================
   MOBILE MENU FULL WIDTH
========================================================= */
@media (max-width: 991px){

  .menu{
    position: fixed;

    top: 72px;
    left: 0;

    width: 100%;
    height: auto;

    background: #f5f5f5;

    /* HILANGKAN SPACE KANAN KIRI */
    padding: 28px 24px;

    margin: 0;

    box-sizing: border-box;

    /* FULL LAYOUT */
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 24px;

    z-index: 999;

    /* HAPUS RADIUS */
    border-radius: 0;

    /* OPTIONAL SHADOW */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    /* ANIMATION */
    opacity: 0;
    visibility: hidden;

    transform: translateY(-20px);

    transition: .35s ease;
  }

  /* ACTIVE */
  .menu.active{
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }

  /* MENU LINK */
  .nav-link{
    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;

    color: #111 !important;

    text-decoration: none;

    transition: .3s ease;
  }

  /* ACTIVE MENU */
  .nav-link.active{
    color: #d7a15d !important;
  }

}
/* =========================================================
   HERO SECTION
========================================================= */
.hero-bg{
  position:relative;
  min-height:88vh;
  background:url('img/hero.png') center/cover no-repeat;
  display:flex;
  align-items:center;
}

/* HERO OVERLAY */
.overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.45));
}

/* HERO CONTENT */
.hero-content{
  position:relative;
  z-index:2;
  max-width:650px;
  padding-top:120px;
  padding-bottom:60px;
}
.sub-title{
 color: #9f7843;
}
.hero-content h1{
  font-family:'Playfair Display',serif;
  font-size:52px;
  line-height:1.08;
  color:#fff;
  margin-bottom:18px;
}

.hero-content h4{
  font-size:28px;
  color:#fff;
  margin-bottom:18px;
}

.hero-content p{
  color:rgba(255,255,255,.8);
  margin-bottom:32px;
}

/* HERO BUTTONS */
.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

/* =========================================================
   SECTION SPACING
========================================================= */
#about-section,
.rooms-section,
.luxury-gallery,
#contact-section{
  padding:72px 0;
}

/* #about-section,
.luxury-gallery{
  background:var(--bg);
} */
/* =========================================================
   ALTERNATING SECTION BACKGROUND
========================================================= */

#about-section{
  background: #fff;
}

#rooms-section{
  background: #f8f6f3;
}

#stay-packages{
  background: #fff;
}

#facilities-section{
  background: #f8f6f3;
}

#luxury-gallery{
  background: #fff;
}

#contact-section{
  background: #f8f6f3;
}
/* =========================================================
   ABOUT SECTION
========================================================= */

#about-section{
  padding:90px 0;
  background:#fff;
}

/* ABOUT LAYOUT */
.about-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

/* ABOUT CONTENT */
.about-content{
  max-width:520px;
}

/* LABEL */
.about-content .section-label{
  margin-bottom:18px;
  display:inline-block;
}

/* TITLE */
.about-content h2{
  font-size:56px;
  line-height:1.1;
  font-family:'Playfair Display',serif;
  margin-bottom:24px;
  color:var(--dark);
}

/* DESCRIPTION */
.about-content p{
  font-size:18px;
  line-height:1.9;
  margin-bottom:34px;
  color:var(--text);
}

/* BUTTON */
.about-content .main-btn{
  min-width:170px;
}

/* =========================================================
   ABOUT IMAGES
========================================================= */

.about-images{
  display:flex;
  flex-direction:column;
  gap:18px;
}

/* TOP IMAGE */
.img-top{
  height:360px;
  border-radius:24px;
  overflow:hidden;
}

/* BOTTOM GRID */
.img-bottom{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

/* SMALL IMAGE */
.img-small{
  height:180px;
  border-radius:20px;
  overflow:hidden;
}

/* IMAGE STYLE */
.about-images img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}

/* HOVER EFFECT */
.about-images div:hover img{
  transform:scale(1.05);
}

/* =========================================================
   TABLET RESPONSIVE
========================================================= */
@media(max-width:991px){

  .about-container{
    grid-template-columns:1fr;
    gap:50px;
  }

  .about-content{
    max-width:100%;
    text-align:center;
  }

  .about-content h2{
    font-size:44px;
  }

}

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

  #about-section{
    padding:60px 0;
  }

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

  .about-content p{
    font-size:16px;
    line-height:1.8;
  }

  .img-top{
    height:240px;
  }

  .img-small{
    height:120px;
  }

  .img-bottom{
    gap:12px;
  }

}

/* =========================================================
   ROOMS SECTION
========================================================= */

.rooms-section{
  padding:80px 0;
  background:#fff;
}

/* ROOMS HEADER */
.rooms-section .section-label{
  display:block;
  text-align:center;
  margin-bottom:14px;
}

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

/* ROOM NAVIGATION */
.rooms-nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:50px;
}

/* ROOM BUTTON */
.room-tab{
  border:none;
  background:transparent;
  padding:10px 18px;
  border-radius:999px;
  font-size:15px;
  font-weight:600;
  color:#777;
  cursor:pointer;
  transition:.3s ease;
}

/* ACTIVE ROOM */
.room-tab.active{
  background:var(--primary);
  color:#fff;
}

/* HOVER */
.room-tab:hover{
  background:#f3ece3;
  color:var(--primary);
}

/* ROOM CONTENT */
.rooms-content{
  display:grid;
  grid-template-columns:420px 1fr;
  gap:50px;
  align-items:center;
}

/* ROOM TEXT */
.room-text h3{
  font-size:42px;
  margin-bottom:18px;
  font-family:'Playfair Display',serif;
}

.room-text p{
    font-size: 16px;
    line-height: 1.9;
    color: #666;

    max-width: 500px;

    margin-top: 0;
    margin-bottom: 38px;
}

/* ROOM IMAGE */
.rooms-image{
  width:100%;
}

.rooms-image img{
  width:100%;
  height:500px;
  object-fit:cover;
  border-radius:24px;
}

/* RESPONSIVE */
/* =========================================================
   MOBILE ROOM TAB FIX
========================================================= */
@media(max-width:768px){

  .rooms-nav{
    display: flex;
    flex-wrap: nowrap;

    overflow-x: auto;
    overflow-y: hidden;

    gap: 8px;

    justify-content: flex-start;

    padding-bottom: 6px;
    margin-bottom: 34px;

    scrollbar-width: none;
  }

  .rooms-nav::-webkit-scrollbar{
    display: none;
  }

  .room-tab{
    flex: 0 0 auto;

    padding: 10px 14px;

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

    border-radius: 999px;

    background: #fff;

    border: 1px solid #e7ddd1;

    color: #555;

    white-space: nowrap;

    transition: .3s ease;
  }

  .room-tab.active{
    background: #c59b5f;
    color: #fff;
    border-color: #c59b5f;
  }

}

/* =========================================================
   PRICING SECTION
========================================================= */

/* =========================================================
   STAY PACKAGES
========================================================= */

.stay-packages{
  padding: 60px 0 70px;
}

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

.packages-heading{
  text-align: center;
  margin-bottom: 34px;
}

/* LABEL */
.packages-heading .section-label{
  font-size: 12px;
  letter-spacing: 5px;
  color: #c59b5f;
  margin-bottom: 10px;
}

/* TITLE */
.packages-title{
  font-family: 'Playfair Display', serif;

  font-size: 52px;
  line-height: .95;
  font-weight: 600;

  color: #1f140f;

  margin-bottom: 14px;
}

/* DIVIDER */
.title-divider{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  margin-bottom: 18px;
}

.title-divider span{
  width: 38px;
  height: 1px;
  background: #c59b5f;
}

.title-divider i{
  font-size: 8px;
  color: #c59b5f;
}

/* DESCRIPTION */
.packages-heading p{
  font-size: 15px;
  line-height: 1.8;
  color: #5f5a57;
}

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

.packages-grid{
  display: grid;
  grid-template-columns: repeat(6,1fr);

  gap: 16px;
}

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

.package-card{
  background: rgba(255,255,255,0.7);

  border: 1px solid #eee2d6;

  border-radius: 18px;

  padding: 28px 18px;

  text-align: center;

  transition: .3s ease;
}

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

  border-color: #d6b17b;

  box-shadow:
  0 10px 25px rgba(0,0,0,0.04);
}

/* TITLE */
.package-card h4{
  font-size: 13px;
  font-weight: 700;

  color: #1e1713;

  margin-bottom: 20px;
}

/* LINE */
.package-card .line{
  width: 42px;
  height: 1px;

  background: #c59b5f;

  margin: auto;
}

/* CURRENCY */
.package-card .currency{
  display: block;

  font-size: 14px;
  color: #666;

  margin-top: 18px;
  margin-bottom: 16px;
}

/* PRICE */
.package-card h3{
  font-family: 'Playfair Display', serif;

  font-size: 28px;
  line-height: 1.1;

  color: #c39143;
  font-weight: 600;

  margin-bottom: 18px;
}

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

@media(max-width:991px){

  .packages-grid{
    grid-template-columns: repeat(3,1fr);
  }

  .packages-title{
    font-size: 58px;
  }

}

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

@media(max-width:768px){

  .stay-packages{
    padding: 45px 0 60px;
    overflow: hidden;
  }

  /* CONTAINER */
  .stay-packages .container{
    padding: 0 14px;
  }

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

  .packages-heading{
    margin-bottom: 28px;
    text-align: center;
  }

  .packages-heading .section-label{
    font-size: 10px;
    letter-spacing: 4px;
    margin-bottom: 8px;
  }

  .packages-title{
    font-size: 34px;
    line-height: 1.05;

    margin-bottom: 10px;
  }

  /* DIVIDER */
  .title-divider{
    gap: 8px;
    margin-bottom: 14px;
  }

  .title-divider span{
    width: 26px;
  }

  .title-divider i{
    font-size: 6px;
  }

  /* DESCRIPTION */
  .packages-heading p{
    font-size: 12px;
    line-height: 1.8;

    max-width: 260px;
    margin: auto;
  }

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

  .packages-grid{
    display: grid;

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

    gap: 10px;
  }

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

  .package-card{
    padding: 20px 12px;

    border-radius: 18px;

    min-height: 160px;

    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* TITLE */
  .package-card h4{
    font-size: 10px;
    line-height: 1.4;

    margin-bottom: 14px;
  }

  /* LINE */
  .package-card .line{
    width: 26px;
  }

  /* CURRENCY */
  .package-card .currency{
    font-size: 11px;

    margin-top: 14px;
    margin-bottom: 12px;
  }

  /* PRICE */
  .package-card h3{
    font-size: 22px;
    line-height: 1.1;

    margin-bottom: 14px;
  }

}
/* =========================================================
   FACILITIES SECTION
========================================================= */

.facilities-section{
  padding: 55px 0 70px;
  background: #f8f6f3;
}

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

.facilities-heading{
  text-align: center;
  margin-bottom: 32px;
}

.facilities-heading .section-label{
  font-size: 11px;
  letter-spacing: 4px;

  margin-bottom: 10px;
}

.facilities-heading .section-title{
  font-size: 52px;
  line-height: 1;

  margin-bottom: 14px;
}

.facilities-heading p{
  font-size: 15px;
  line-height: 1.8;

  color: #666;
}

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

.facilities-grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);

  border: 1px solid #eadfd3;
  border-radius: 24px;

  overflow: hidden;

  background: rgba(255,255,255,0.7);
}

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

.facility-item{
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 24px 22px;

  border-right: 1px solid #eadfd3;
  border-bottom: 1px solid #eadfd3;

  transition: .3s ease;
}

/* REMOVE RIGHT BORDER */
.facility-item:nth-child(4n){
  border-right: none;
}

/* LAST ROW FIX */
.facility-item:nth-last-child(-n+2){
  border-bottom: none;
}

/* ICON */
.facility-item i{
  font-size: 20px;
  color: #c39143;

  flex-shrink: 0;
}

/* TEXT */
.facility-item span{
  font-size: 14px;
  line-height: 1.7;

  color: #2a211d;
  font-weight: 500;
}

/* HOVER */
.facility-item:hover{
  background: #faf7f2;
}

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

@media(max-width:991px){

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

  .facility-item:nth-child(2n){
    border-right: none;
  }

}

/* =========================================================
   MOBILE FACILITIES FIX
========================================================= */

@media(max-width:768px){

  /* GRID */
  .facilities-grid{
    display: grid;

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

    gap: 10px;

    border: none;
    background: transparent;
  }

  /* CARD ITEM */
  .facility-item{
    display: flex;
    flex-direction: column;

    align-items: flex-start;
    justify-content: flex-start;

    gap: 12px;

    padding: 16px 14px;

    min-height: 105px;

    background: #fff;

    border: 1px solid #eadfd3 !important;
    border-radius: 16px;

    box-shadow:
    0 5px 14px rgba(0,0,0,0.03);
  }

  /* ICON */
  .facility-item i{
    font-size: 16px;
    color: #c39143;
  }

  /* TEXT */
  .facility-item span{
    font-size: 11px;
    line-height: 1.6;

    color: #2a211d;
  }

}

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

@media(max-width:480px){

  .facility-item{
    min-height: 95px;

    padding: 14px 12px;
  }

  .facility-item span{
    font-size: 10px;
  }

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

.luxury-gallery{
  padding:80px 0;
}

/* GALLERY HEADER */
.gallery-header{
  margin-bottom:40px;
}

.gallery-header .section-label{
  margin-bottom:12px;
  display:inline-block;
}

.gallery-header .section-title{
  font-size:52px;
  line-height:1.1;
  max-width:500px;
}

/* GALLERY GRID */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:18px;
}

/* GALLERY ITEM */
.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:22px;
}

/* IMAGE */
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}

/* HOVER EFFECT */
.gallery-item:hover img{
  transform:scale(1.05);
}

/* SIZE */
.gallery-item.small{
  grid-column:span 3;
  height:240px;
}

.gallery-item.medium{
  grid-column:span 4;
  height:240px;
}

.gallery-item.large{
  grid-column:span 5;
  height:240px;
}

.gallery-item.wide{
  grid-column:span 5;
  height:240px;
}

/* =========================================================
   TABLET RESPONSIVE
========================================================= */
@media(max-width:991px){

  .gallery-header{
    text-align:center;
  }

  .gallery-header .section-title{
    margin:auto;
    font-size:42px;
  }

  .gallery-item.small,
  .gallery-item.medium,
  .gallery-item.large,
  .gallery-item.wide{
    grid-column:span 6;
    height:220px;
  }

}

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

  .luxury-gallery{
    padding:60px 0;
  }

  .gallery-header{
    text-align:center;
    margin-bottom:30px;
  }

  .gallery-header .section-title{
    font-size:32px;
    max-width:100%;
  }

  .gallery-grid{
    gap:14px;
  }

  .gallery-item.small,
  .gallery-item.medium,
  .gallery-item.large,
  .gallery-item.wide{
    grid-column:span 12;
    height:240px;
  }

}
/* =========================================
   CONTACT SECTION
========================================= */
.contact-section{
  padding: 100px 0;
  background: #f8f7f4;
}

/* CONTAINER */
#contact-section .container{
  width: 90%;
  max-width: 1250px;
  margin: auto;
}

/* =========================================
   HEADING
========================================= */
.contact-heading{
  text-align: center;
  margin-bottom: 60px;
}

.section-label{
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  color: #c59b5f;
  margin-bottom: 12px;
  font-weight: 600;
}

.contact-heading h2{
  font-size: 52px;
  color: #111;
  margin-bottom: 18px;
  font-family: serif;
  line-height: 1.1;
}

.contact-heading p{
  max-width: 650px;
  margin: auto;
  color: #777;
  line-height: 1.8;
  font-size: 15px;
}

/* =========================================
   WRAPPER
========================================= */
.contact-wrapper{
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 35px;
  align-items: stretch;
  min-width: 0;
}

/* =========================================
   LEFT SIDE
========================================= */
.contact-info{
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* CARD */
.contact-card{
  background: #fff;
  border-radius: 26px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: 0.3s;
  border: 1px solid #eee;
}

.contact-card:hover{
  transform: translateY(-4px);
}

/* ICON */
.contact-icon{
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: #f5efe6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #c59b5f;
  flex-shrink: 0;
}

/* TEXT */
.contact-text{
  min-width: 0;
}

.contact-text h3{
  font-size: 24px;
  margin-bottom: 8px;
  color: #111;
}

.contact-text p{
  color: #777;
  font-size: 15px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

/* =========================================
   MAP
========================================= */
.contact-map{
  border-radius: 30px;
  overflow: hidden;
  min-height: 100%;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

.contact-map iframe{
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
  display: block;
}

/* =========================================
   RESPONSIVE
========================================= */
@media(max-width:991px){

  .contact-wrapper{
    grid-template-columns: 1fr;
  }

  .contact-heading h2{
    font-size: 42px;
  }

  .contact-map iframe{
    min-height: 420px;
  }

}

@media(max-width:768px){

  #contact-section{
    padding: 64px 0;
  }

  #contact-section .container{
    width: 100%;
    padding: 0 18px;
  }

  .contact-heading{
    margin-bottom: 34px;
  }

  .contact-heading h2{
    font-size: 34px;
    line-height: 1.18;
  }

  .contact-heading p{
    font-size: 14px;
    line-height: 1.7;
  }

  .contact-wrapper{
    gap: 24px;
  }

  .contact-info{
    gap: 14px;
  }

  .contact-card{
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
  }

  .contact-icon{
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 21px;
  }

  .contact-text h3{
    font-size: 18px;
    margin-bottom: 4px;
  }

  .contact-text p{
    font-size: 14px;
    line-height: 1.55;
  }

  .contact-map{
    border-radius: 20px;
    min-height: auto;
  }

  .contact-map iframe{
    min-height: 300px;
  }

}

@media(max-width:480px){

  #contact-section .container{
    padding: 0 16px;
  }

  .contact-heading h2{
    font-size: 30px;
  }

  .contact-card{
    align-items: flex-start;
  }

  .contact-map iframe{
    min-height: 260px;
  }

}

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

.footer{
    background: #111;
    padding-top: 80px;
    color: white;
}

.footer-grid{
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 70px;
    padding-bottom: 60px;
}

.footer-logo{
    width: 70px;
    margin-bottom: 24px;
}

.footer-about p{
    color: #bbb;
    line-height: 1.9;
    font-size: 15px;
    max-width: 360px;
}

.footer h4{
    font-size: 20px;
    margin-bottom: 24px;
    color: white;
}

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

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

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

.footer ul li a:hover{
    color: #c59d5f;
    padding-left: 4px;
}

.footer-info ul li{
    color: #bbb;
}

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p{
    color: #888;
    font-size: 14px;
    margin: 0;
}

/* RESPONSIVE */
@media(max-width: 991px){

    .footer-grid{
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer{
        padding-top: 60px;
    }

}

/* =========================================================
   TABLET RESPONSIVE
========================================================= */
@media(max-width:991px){

  /* MOBILE MENU */
  .menu{
    /* position:absolute;
    top:100%;
    left:24px;
    right:24px; */
    background:#fff;
    padding:24px;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    flex-direction:column;
    align-items:flex-start;
    opacity:0;
    visibility:hidden;
  }

  .menu.active{
    opacity:1;
    visibility:visible;
  }

  .menu .nav-link{
    color:#111;
  }

  /* SHOW HAMBURGER */
  .hamburger{
    display:flex;
  }

  /* HIDE NAV BUTTON */
  .nav-right .main-btn{
    display:none;
  }

  /* RESPONSIVE GRID */
  .about-container,
  .rooms-content,
  .contact-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  /* RESPONSIVE GALLERY */
  .gallery-item.small,
  .gallery-item.medium,
  .gallery-item.large,
  .gallery-item.wide{
    grid-column:span 6;
  }

}

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

  /* MOBILE SECTION SPACING */
  #about-section,
  .rooms-section,
  .luxury-gallery,
  #contact-section{
    padding:56px 0;
  }

  /* MOBILE TITLES */
  .section-title{
    font-size:30px;
  }

  /* HERO MOBILE */
  .hero-content{
    text-align:center;
    margin:auto;
  }

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

  .hero-content h4{
    font-size:20px;
  }

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

  /* FULL WIDTH BUTTON */
  .main-btn,
  .outline-btn{
    width:100%;
  }

  /* ABOUT IMAGES MOBILE */
  .img-top{
    height:220px;
  }

  .img-small{
    height:110px;
  }

  /* MOBILE GALLERY */
  .gallery-item.small,
  .gallery-item.medium,
  .gallery-item.large,
  .gallery-item.wide{
    grid-column:span 12;
  }

}
/* =========================================================
   GLOBAL SCROLL ANIMATION
========================================================= */

.fade-up{
  opacity: 0;
  transform: translateY(60px);
  transition: all .8s ease;
}

.fade-up.show{
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   HERO ANIMATION
========================================================= */

.hero-content > *{
  opacity: 0;
  transform: translateY(30px);
  animation: heroFade .8s forwards;
}

.hero-content h1{
  animation-delay: .2s;
}

.hero-content h4{
  animation-delay: .4s;
}

.hero-content p{
  animation-delay: .6s;
}

.hero-buttons{
  animation-delay: .8s;
}

@keyframes heroFade{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   IMAGE HOVER EFFECT
========================================================= */

.rooms-image img,
.gallery-item img,
.about-images img{
  transition:
    transform .6s ease,
    filter .6s ease;
}

.rooms-image:hover img,
.gallery-item:hover img,
.about-images div:hover img{
  transform: scale(1.06);
  filter: brightness(1.05);
}

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

.main-btn,
.outline-btn{
  position: relative;
  overflow: hidden;
}

.main-btn::before,
.outline-btn::before{
  content: "";

  position: absolute;
  top: 0;
  left: -100%;

  width: 100%;
  height: 100%;

  background: rgba(255,255,255,.2);

  transition: .5s;
}

.main-btn:hover::before,
.outline-btn:hover::before{
  left: 100%;
}

.main-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,.12);
}

/* =========================================================
   FLOATING WHATSAPP
========================================================= */
.floating-whatsapp{
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;

  width: 58px;
  height: 58px;
  border-radius: 50%;

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

  color: #fff;
  background: #25D366;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .35);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.floating-whatsapp i{
  font-size: 30px;
  line-height: 1;
}

.floating-whatsapp:hover{
  transform: translateY(-4px);
  background: #1ebe5d;
  box-shadow: 0 16px 34px rgba(37, 211, 102, .45);
}

@media (max-width: 768px){
  .floating-whatsapp{
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }

  .floating-whatsapp i{
    font-size: 28px;
  }
}

/* =========================================================
   CARD FLOAT EFFECT
========================================================= */

.contact-card,
.room-tab{
  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.contact-card:hover,
.room-tab:hover{
  transform: translateY(-5px);
}

/* =========================================================
   ROOM IMAGE SWITCH ANIMATION
========================================================= */

.rooms-image img.animate{
  animation: roomSwitch .5s ease;
}

@keyframes roomSwitch{
  0%{
    opacity: 0;
    transform: scale(.96);
  }

  100%{
    opacity: 1;
    transform: scale(1);
  }
}
