:root {
    /* color */
    --ocean-blue: #1B3A4B;
    --sky-blue: #4A90E2;
    --golden-sunset: #F4A261;
    --sand-beige: #EBD9B4;
    --pearl-white: #FAF9F6;
    --black: #000;
    --white: #fff;
	--grey: #C1BAA1;

    /* font */
    --poppins: 'Poppins', sans-serif;
    --nunito: 'Nunito', sans-serif;

    /* padding */
    --section-padding: 50px;
    --button-padding: 5px 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    max-width: 100%;
    overflow-x: hidden;

}

a {
	text-decoration-line: none;
}

li {
	list-style: none;
	text-decoration: none;
}

header {
    font-family: var(--poppins);
    background-color: var(--ocean-blue);
    color: var(--white);
}

.nunito {
    font-family: var(--nunito);
}

.golden {
	color: var(--golden-sunset);
}

h1 {
	font-size: 70px !important;
}

h2 {
	font-size: 50px !important;
}

h3 {
	font-size: 40px !important;
}

h4 {
	font-size: 30px !important;
}

h5 {
	font-size: 20px !important;
}

p {
	font-size: 16px !important;
}

/* Navbar */
.navbar {
    font-family: var(--poppins);
}

.sticky-topp {
    top: 0;
    z-index: 1020;
    background-color: transparent;
    transition: 0.3s ease;
    padding: 10px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.sticky-topp.scrolled {
    background-color: var(--ocean-blue);
}

.nav-item .nav-link {
    color: var(--white);
	font-size: 16px;
	position: relative;
	transition: color 0.3s ease;
}

  /* Garis bawah tersembunyi secara default */
  .navbar-nav .nav-link::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -5px; /* Jarak dari teks, sesuaikan dengan desain */
	width: 0;
	height: 2px; /* Tebal garis */
	background-color: var(--white);
	transition: width 0.3s ease, left 0.3s ease;
  }

  /* Saat hover, garis bawah melebar */
  .navbar-nav .nav-link:hover::after {
	width: 100%;
	left: 0;
  }

  .navbar-nav .nav-link.active {
	color: var(--white);
  }

  /* Saat nav-link aktif, garis bawah tampil */
  .navbar-nav .nav-link.active::after {
	color: var(--white);
	width: 100%;
	left: 0;
  }


.logo {
    width: 10%;
}

.nav-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: var(--button-padding);
    transition: .3s;
}

.nav-btn:hover {
	background-color: var(--sky-blue);
	color: var(--white);
	border: 2px solid var(--sky-blue);
}

.btn-user-icon {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 1.6rem;
    color: var(--white);
    cursor: pointer;
	transition: .3s;
}

.user-menu .dropdown-menu {
    min-width: 160px;
}

.user-menu .dropdown-item {
	font-family: var(--nunito);
	transition: .3s;
}


#offcanvasNavbar {
	font-family: var(--poppins);
	background-color: var(--ocean-blue);
	color: var(--white);
	padding: 1rem;
}

.navbar-toggler i {
	color: var(--white);
}

/* hero */
.home {
	position: relative;
	min-height: 750px;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 12rem 0 5rem 0;
	/* border-bottom-left-radius: 10%;
	border-bottom-right-radius: 10%; */
}

.home img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: -100;
}

.home::after {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: -1;
}

.home__content {
	width: 75%;
	color: #fff;
	font-family: var(--poppins);
	text-align: center;
	margin: 0 auto;
}

.home__content h1 {
	font-size: 3.8rem !important;
}

.home__content h5.title {
	font-family: var(--nunito);
}

.home__content p {
	font-size: 1.1rem !important;
	font-family: var(--nunito);
	color: var(--grey);
}

.home__content button {
	font-family: var(--nunito);
	background-color: var(--sky-blue);
	color: #fff;
	transition: 0.3s;
}

.home__content button:hover {
	background-color: var(--ocean-blue);
	color: #fff;
}

.home__content .button__group {
	display: flex;
	justify-content: start;
	align-items: center;
}

.home .card {
	/* position: absolute; */
	font-family: var(--nunito);
	overflow: visible;
	z-index: 1;
	margin: 0 auto;
	width: 85% !important;
	box-shadow: 0 4px 8px rgba(255, 255, 255, 0.5);}

.home .card-body h5 {
	color: var(--ocean-blue);
}

.home .card-body button {
	background-color: var(--sky-blue);
	color: var(--white);
	transition: 0.3s;
}

.home .card-body button:hover {
	color: var(--white);
	background-color: var(--ocean-blue);
}

/* arrow down */
.arrow__down button{
	background-color: var(--sky-blue);
	color: #fff;
	width: 60px;
	height: 60px;
	margin-top: -2rem;
	stroke-width: 2;
	transition: 0.3s;
}

.arrow__down button:hover{
	background-color: #fff;
	color: var(--sky-blue);
	width: 60px;
	height: 60px;
}

/* villa */
.destination {
	font-family: var(--poppins);
}

.destination .carousel-item {
	overflow: hidden;
}

.destination__content h2 {
	color: var(--green-pea);
}

.destination__content h2 span {
	color: var(--sushi);
}

.destination__content p {
	color: var(--grey);
}

.tour {
	padding-block: var(--section-padding);
	font-family: var(--poppins);
}

.tour__content h2 {
	color: var(--green-pea);
}

.tour__content p {
	color: var(--grey);
}

.btn-explore {
	font-family: var(--poppins);
	background: none;
	border: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0;
	cursor: pointer;
	transition: color 0.3s ease;
}

.btn-explore:hover {
	color: #0056b3;
}

.btn-explore i {
	transform: translateX(0);
	transition: transform 0.3s ease;
}

.btn-explore:hover i {
	transform: translateX(5px);
}

.destination .card {
	overflow: hidden;
}

.tour .card {
	overflow: hidden;
	border-radius: 1rem;
	box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  	transition: all 0.3s ease;
}

.tour .card:hover {
	/* transform: translateY(-3px); */
	box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.card-wrapper {
	height: 250px;
	overflow: hidden;
}

.card-wrapper img {
	object-fit: cover;
	transition: transform 0.4s ease;
	height: 100%;
}

.card-wrapper:hover img {
	transform: scale(1.1);
}

.like-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 35px;
	height: 35px;
	background-color: rgba(255, 255, 255, 0.8);
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.like-btn i {
	font-size: 16px;
	color: #999;
	transition: color 0.3s ease;
}

.like-btn.liked {
	background-color: #ff4d4d;
}

.like-btn.liked i {
	color: white;
}

.like-btn:hover {
	transform: scale(1.1);
	transition: transform 0.2s ease 0.1s;
}

.tour .card-body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 50%;
}

.tour .card-body .d-flex {
	display: flex;
	justify-content: left;
	/* width: 100%; */
	align-items: center;
}

.tour .card-body .pricing h5 {
	color: var(--sky-blue);

}

.tour .card-body .price-explore  {
	width: 100%;
	align-items: center;
	justify-content: center;
}

.tour .card-body .price-explore .row {
	margin: 0 auto;
	width: 100%;
	background-color: rgba(74, 144, 226, .1);
	color: var(--sky-blue);
	font-size: .9rem;
}

.tour .card-body h5 {
	margin-bottom: 0;
}

.tour .card-body .text-left {
	text-align: left;
}

.tour .card-body .text-left .card-title,
.tour .card-body .text-left .rating {
	text-align: left;
}

.tour .card-body .text-left .location i {
	color: var(--sky-blue);
	font-size: .8rem;
}

.tour .card-body .text-left h4.card-title {
	font-size: 1.3rem !important;
}

.tour .card-body .text-left span {
	font-size: .8rem !important;
}

.tour .card-body .text-left p {
	font-size: .8rem !important;
}

.rating i {
	font-size: .8rem;
	margin: auto 0;
}

.tour .card-body .btn-explore {
	margin-left: 10px;
}

.tour .card-body button {
	background-color: transparent;
	color: var(--grey);
	transition: 0.3s;
}

.tour .card-body button:hover {
	color: var(--green-pea);
}

.btn-explore:hover {
	transition: color 0.3s ease 0.1s;
}

.btn-explore:hover i {
	transform: translateX(5px);
	transition: transform 0.3s ease 0.1s;
}

.destination-section {
	margin-top: 50px;
	text-align: center;
}

.destination-title {
	font-size: 2rem;
	margin-bottom: 20px;
}

.destination-card {
	overflow: hidden;
	position: relative;
	border: none;
	border-radius: 10px;
	height: 300px;
}

.destination-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.destination-card:hover img {
	transform: scale(1.1);
	transition: transform 0.3s ease 0.1s;
}

.card-img-overlay {
	background: rgba(0, 0, 0, 0.4);
	border-radius: 10px;
	padding: 10px;
}

.tour h5.card-title {
	font-size: 1rem;
	color: var(--grey);
	margin: 0;
}

.tour h4.card-title {
	color: var(--green-pea);
	margin: 0;
}

/* testimonial */
.testimoni {
	font-family: var(--poppins);
	background-color: rgba(74, 144, 226, .1);
	padding-block: var(--section-padding) ;
	margin-top: 5rem;
}

.testi-rating i{
	color: var(--white);
	background-color: var(--sky-blue);
	padding: .3rem .5rem;
}
.testimonials {
	max-width: 1000px;
	width: 100%;
	margin: auto;
  }

  .testimonials .wrapper {
	width: 100%;
	padding: 0 15px;
  }

  .wrapper .section-header {
	text-align: center;
	margin-bottom: 50px;
  }

  .wrapper .section-header .title {
	font-size: 35px;
	font-weight: 600;
	color: #fff;
	text-transform: capitalize;
	line-height: 1.2;
  }

  .wrapper .testimonial-item {
	background: #fff;
	padding: 30px;
	border-radius: 1rem;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }

  .testimonial-item .info {
	display: flex;
	align-items: center;
  }

  .info img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 50%;
	margin-right: 20px;
  }

  .info .name {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: capitalize;
  }

  .info .job {
	text-transform: capitalize;
  }

  .testimonial-item p {
	margin-top: 15px;
	font-size: 15px;
  }

  .testimonial-item .rating {
	margin-top: 15px;
	font-size: 14px;
	color: goldenrod;
  }

  .testimonials .swiper-pagination {
	position: relative;
	margin-top: 40px;
	bottom: auto;
  }

  .testimonials .swiper-pagination-bullet {
	height: 12px;
	width: 12px;
	background: #fff;
  }


  .slider {
	position: relative;
  }

  /* Gaya dasar untuk bullet pagination */
.custom-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: #ccc;
	opacity: 1;
	margin: 0 4px;
	border-radius: 50%;
	transition: background-color 0.3s ease;
  }

  /* Gaya untuk bullet yang aktif */
  .custom-pagination .swiper-pagination-bullet-active {
	background-color: #007bff;
  }

.cta {
	background-image: url("../img/cta-1.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-color: hsla(0, 0%, 0%, 0.7);
	background-blend-mode: overlay;
	display: grid;
	place-items: center;
	min-height: 400px;
	text-align: center;
	font-family: var(--poppins);
	color: #fff;
	display: flex;
	align-items: center;
	margin-block: var(--section-padding);
}

.cta button {
	background-color: transparent;
	border: 2px solid #fff;
	color: #fff;
	transition: .3s;
}

.cta button:hover {
	background-color: rgba(255, 255, 255, 0.2);
	border: 2px solid #fff;
	color: #fff;
}

/* menu */
.menu {
	font-family: var(--poppins);
	padding-block: var(--section-padding);
}

.container2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
  }

  .container2 {
    display: flex;
    gap: 20px;
}

.menu .card {
    position: relative;
    width: 200px;
    height: 270px;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
	box-shadow: 0 4px 15px rgba(0,0,0,0.06);
	transition: all 0.3s ease;

}

.menu .card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.1);
}

.card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card:hover .overlay {
    opacity: 1;
}

/* faq */
.featured {
	padding-block: var(--section-padding);
	font-family: var(--nunito);
	margin: var(--section-padding);
}

.featured h2 {
	font-family: var(--poppins);
	margin-bottom: 20px;
}

.modern-accordion .accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.modern-accordion .accordion-item:hover {
  /* transform: translateY(-3px); */
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.modern-accordion .accordion-button {
  background: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 18px 20px;
  box-shadow: none !important;
  transition: all 0.3s ease;
}

.modern-accordion .accordion-button:not(.collapsed) {
  background: rgba(74, 144, 226, 0.1);
  color: var(--sky-blue);
}

.modern-accordion .accordion-button::after {
  content: "\f4fe";
  font-family: "Bootstrap-icons";
  font-size: 20px;
  background: none !important;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.modern-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.modern-accordion .accordion-body {
  padding: 15px 20px 20px;
  color: #999;
  font-size: 15px;
  line-height: 1.6;
}

  /* contact */
.contact {
  font-family: var(--poppins);
  padding-block: var(--section-padding);
}

/* Modern Card */
.contact-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.contact-card:hover {
  /* transform: translateY(-4px); */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Labels */
.form-label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #444;
}

/* Inputs */
.form-input {
  width: 100%;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  transition: 0.3s ease;
}

.form-input:focus {
  border-color: var(--sky-blue);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, .15);
  outline: none;
}

/* Textarea */
.textarea {
  height: 140px;
  resize: none;
}

/* Button */
.contact-btn {
  background: var(--sky-blue);
  color: #fff;
  border: none;
  padding: 8px 0;
  font-family: var(--nunito);
  transition: all 0.25s ease;
}

.contact-btn:hover {
  background: var(--ocean-blue);
  color: #fff;
  /* transform: translateY(-2px); */
}

  /* Labels */
  #contact-form label {
	font-weight: bold;
	display: block;
	margin-top: 10px;
  }

  /* footer */
  footer {
	padding-block: var(--section-padding);
	background-color: var(--ocean-blue);
	color: var(--white);
  }

  footer h4 {
	font-family: var(--poppins);
	margin-bottom: 20px;
  }

.social-icons a {
  color: #fff;
  width: 40px;
  font-size: 20px;
  margin-right: 5px;
}

.social-icons a:hover {
  box-shadow: rgba(255, 255, 255, 0.2) 0px 3px 8px;
}

  .footer-col ul {
	padding: 0 !important;
  }

  .footer-col ul li a{
	color: var(--white);
	font-size: 16px;
	position: relative;
	transition: color 0.3s ease;
  }

  /* Garis bawah tersembunyi secara default */
  .footer-col ul li a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -5px; /* Jarak dari teks, sesuaikan dengan desain */
	width: 0;
	height: 2px; /* Tebal garis */
	background-color: var(--white);
	transition: width 0.3s ease, left 0.3s ease;
  }

  /* Saat hover, garis bawah melebar */
  .footer-col ul li a:hover::after {
	width: 100%;
	left: 0;
  }

  .footer-col ul li a.active {
	color: var(--white);
  }

  /* Saat nav-link aktif, garis bawah tampil */
  .footer-col ul li a.active::after {
	color: var(--white);
	width: 100%;
	left: 0;
  }


  /* copyright */
  .copyright {
	background-color: var(--ocean-blue);
	color: var(--white);
	font-family: var(--nunito);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .copyright p {
	font-size: 15px !important;
	margin: 0;
	padding: 15px 0;
  }


  /* go to top */
.go-top {
	position: fixed;
	bottom: 15px;
	right: 15px;
	width: 35px;
	height: 35px;
	background-color: var(--sky-blue);
	display: grid;
	place-items: center;
	opacity: 0;
	box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.5);
	transform: translateY(10px);
	visibility: hidden;
	transition: .5s;
	z-index: 10;
}

.go-top.active {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

.go-top:is(:hover, :focus) {
	opacity: 1;
}

/* ====== ICON FORM DI SEBELAH KIRI ====== */
.form-toggle-btn {
	display: none;
	position: fixed;
	bottom: 20px;
	left: 20px;
	background-color: #007bff;
	color: white;
	border: none;
	padding: 10px 15px;
	border-radius: 50%;
	font-size: 20px;
	cursor: pointer;
	z-index: 1000;
  }

  /* ====== FORM POPUP TERTUTUP AWALNYA ====== */
  .form-popup {
	display: flex;
  }

  /* ====== FORM CONTAINER ====== */
  .form-container {
	background: white;
	padding: 20px;
	width: 300px;
	border-radius: 10px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
	position: relative;
  }

  /* Tombol close */
  .close-btn {
	position: absolute;
	top: 10px;
	right: 15px;
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
  }

  /* video */
  .video-section {
	margin-block: var(--section-padding);
	font-family: var(--poppins);
  }

  .video {
	background-image: url(../img/video.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 100px 0px 250px 0px;
	position: relative;
  }

  .video-content {
	margin-top: -240px;
  }

  .video .section-heading h2 {
	color: #fff;
  }

  .video-content .video-frame {
	position: relative;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
  }

  .video-content .video-frame img {
	border-radius: 10px;
  }

  .video-content .video-frame a {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-26px, -26px);
	width: 52px;
	height: 52px;
	background-color: #fff;
	border-radius: 50%;
	display: inline-block;
	text-align: center;
	line-height: 52px;
	color: var(--sky-blue);
	outline: 15px solid rgba(74, 144, 226, .2);
	font-size: 18px;
  }

  /* about */
  .about {
	margin-top: 50px;
	padding-block: var(--section-padding);
  }

  .about p {
	font-family: var(--nunito);
  }

  .about h2 {
	font-family: var(--poppins);
  }

  .about h4 {
	font-family: var(--poppins);
	color: var(--sky-blue);
}

  .about-btn {
    background: var(--sky-blue);
    color: var(--white);
    border: 2px solid var(--sky-blue);
    padding: var(--button-padding);
    transition: .3s;
	width: 25%;
}

.about-btn:hover {
	background-color: transparent;
	color: var(--sky-blue);
	border: 2px solid var(--sky-blue);
}

/* kost list */
.hero {
	position: relative;
	min-height: 450px;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 12rem 0 5rem 0;

}

.hero img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: -100;
}

.hero::after {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: -1;
}

.hero .hero-content {
	width: 75%;
	color: var(--white);
	margin: 0 auto;
}

.hero .hero-content h1 {
	font-family: var(--poppins);
	font-size: 3.8rem !important;
}

.hero .hero-content p {
	font-size: 1.1rem !important;
	font-family: var(--nunito);
	color: var(--grey);
}

.home__content h1 {
	font-size: 3.8rem !important;
}

.home__content h5.title {
	font-family: var(--nunito);
}

.home__content p {
	font-size: 1.1rem !important;
	font-family: var(--nunito);
	color: var(--grey);
}

/* SEARCH BAR */
.search-bar-wrapper {
  margin-top: -45px;
  position: relative;
  z-index: 1;
}

.search-bar {
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
  font-family: var(--poppins);
}

.search-bar .form-control,
.search-bar .form-select {
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
}

/* DROPDOWN MODERN */
.search-bar .form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px 40px 12px 14px;

  font-size: 14px;
  font-weight: 500;
  color: #111827;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239CA3AF' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;

  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Hover */
.search-bar .form-select:hover {
  border-color: #111827;
}

/* Focus */
.search-bar .form-select:focus {
  outline: none;
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.1);
}

/* Disabled */
.search-bar .form-select:disabled {
  background-color: #f9fafb;
  color: #9ca3af;
  cursor: not-allowed;
}

.search-bar .btn-search {
  background-color: var(--sky-blue);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-family: var(--nunito);
  transition: background-color 0.3s ease;
}

.search-bar .btn-search:hover {
  background-color: var(--ocean-blue);
  color: var(--white);
}

/* tipe kamar kost */
.kost-card {
    display: grid;
    grid-template-columns: 320px 1fr 280px;
    gap: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 24px;
    background: #fff;
}

/* IMAGE */
.kost-image {
    position: relative;
}

.kost-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.badge-available {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--ocean-blue);
    color: #fff;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 999px;
}

/* DETAIL */
.kost-detail h3 {
    margin: 0;
    font-size: 30px !important;
    font-weight: 600;
	font-family: var(--poppins);
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-link {
    color: var(--ocean-blue);
    font-size: 14px;
    text-decoration: none;
}

.badge-group {
    margin: 10px 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    border: 2px solid var(--sky-blue);
    border-radius: 999px;
    padding: 8px 10px;
    font-size: 13px;
    background: #f9fafb;
	font-family: var(--nunito);
	color: var(--sky-blue);
}

.badge i {
	color: var(--sky-blue) !important;
}

.note {
    font-size: 13px;
    color: #92400e;
    background: #fef3c7;
    display: inline-block;
    padding: 6px 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.facility {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    font-size: 14px;
}

.facility i {
    margin-right: 6px;
    color: var(--ocean-blue);
}

.visit {
    margin-top: 12px;
    font-size: 14px;
    color: var(--ocean-blue);
    cursor: pointer;
}

/* PRICE */
.kost-price {
    border-left: 1px solid #e5e7eb;
    padding-left: 20px;
}

.kost-price h4 {
    margin: 0 0 2rem;
    font-size: 1rem;
    font-weight: var(--font-bold);
	color: var(--black);
	font-family: var(--poppins);
}

.kost-price span {
    font-size: 14px;
    font-weight: 400;
}

.kost-price ul {
    padding: 0;
    list-style: none;
    font-size: 14px;
}

.kost-price li {
    margin-bottom: 6px;
}

.kost-price li i {
    color: var(--sky-blue);
    margin-right: 6px;
}

.kost-price li.danger i {
    color: #dc2626;
}

/* BUTTON */
.btn-wa {
    display: block;
    text-align: center;
    width: 100%;
    padding: var(--button-padding);
    border-radius: 60px;
    border: 1px solid var(--sky-blue);
    background: #fff;
    color: var(--sky-blue);
    margin-top: 10px;
    text-decoration: none;
	font-family: var(--nunito);
	transition: .3s;
	margin-top: 2rem;
}

.btn-wa i {
	color: var(--sky-blue) !important;
}

.btn-wa i:hover {
	color: #fff !important;
}

.btn-wa:hover {
	background: var(--sky-blue);
	color: #fff;
}

.btn-pilih {
    width: 100%;
    padding: var(--button-padding);
    border-radius: 60px;
    border: none;
    background: var(--ocean-blue);
    color: #fff;
    margin-top: 10px;
    font-weight: 600;
	transition: .3s;
	font-family: var(--nunito);
}

.btn-pilih:hover {
	background: var(--black);
	color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .kost-card {
        grid-template-columns: 1fr;
    }

    .kost-price {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #e5e7eb;
        padding-top: 16px;
    }
}



/* RESPONSIVE */
@media (max-width: 768px) {
  .search-bar-wrapper {
    margin-top: -30px;
  }
}



/* responsive */
@media (max-width: 991.98px) {
	h1 {
		font-size: 50px !important;
	}

	h2 {
		font-size: 40px !important;
	}

	h3 {
		font-size: 30px !important;
	}

	h4 {
		font-size: 20px !important;
	}

	h5 {
		font-size: 16px !important;
	}

	p {
		font-size: 14px !important;
	}

	/* form */
	.floating-label {
		font-size: 0.9rem;
	}

	.floating-input:focus + .floating-label,
	.floating-input:not(:placeholder-shown) + .floating-label {
		top: 0;
		font-size: 0.75rem;
		background-color: var(--white);
		color: #495057;
	}

}

@media (max-width: 767.98px) {
	:root {
		--section-padding: 10px;
	}

	h1 {
		font-size: 40px !important;
	}

	h2 {
		font-size: 30px !important;
	}

	h3 {
		font-size: 20px !important;
	}

	h4 {
		font-size: 20px !important;
	}

	h5 {
		font-size: 14px !important;
	}

	p {
		font-size: 12px !important;
	}

	.navbar-nav .nav-link.active::after {
		width: 25%;
		left: 0;
	  }

	/* carousel */
	.carousel-caption {
		top: -15%;
	}

	.carousel-caption h4 {
		margin-top: 0 !important;
	}

	/* form */
	.form-container {
		padding: .5rem 1rem !important;
		justify-content: center;
	}

	.floating-label {
		font-size: 0.75rem;
	}

	.floating-input:focus + .floating-label,
	.floating-input:not(:placeholder-shown) + .floating-label {
		top: 0;
		font-size: 0.75rem;
		background-color: var(--white);
		color: #495057;
	}

	  .form-container > .checkin,
	  .form-container > .guests,
	  .form-container > button.form-btn {
		flex: 0 0 38%;
		margin-bottom: 1rem;
	  }

	  .form-popup {
		display: none; /* Form disembunyikan di mobile */
		position: fixed;
		bottom: 60px;
		left: 50%;
		transform: translateX(-50%);
		background: white;
		box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
		padding: 20px;
		border-radius: 10px;
		z-index: 1000;
	  }

	  .form-toggle-btn {
		display: block; /* Tombol muncul di mobile */
	  }

	  .form-container > .divider {
		display: none;
	  }

	  .form-container .form-btn {
		flex: 0 0 8% !important;
		width: 20px;
		height: 40px;
		padding: 0;
		margin-left: auto;
		margin-right: 1rem;
	}
}

@media (max-width: 320px) {
	h1 {
		font-size: 30px !important;
	}

	h2 {
		font-size: 25px !important;
	}

	h3 {
		font-size: 22px !important;
	}

	h4 {
		font-size: 20px !important;
	}

	h5 {
		font-size: 16px !important;
	}

	p {
		font-size: 14px !important;
	}

	/* carousel */
	.carousel-caption {
		top: 0;
	}

	/* .carousel-caption h1 {
		margin-top: 0 !important;
		font-size: 16px !important;
	}

	.carousel-caption h4 {
		margin-top: 0 !important;
		font-size: 12px !important;
	} */

	.logo {
		width: 20%;
	}

	.carousel-inner .carousel-item img{
		aspect-ratio: 5/6;
		height: auto;
		object-fit: cover;
		object-position: center;
		background-position: center center;
		background-size: cover;
		background-repeat: no-repeat;
	}

	.form-container {
		font-family: var(--poppins);
		position: absolute;
		top: -100%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: 2;
		border-radius: 8px;
		display: flex;
		background-color: var(--white);
	}
}

.facility-card {
    background: #f8f9fa;
    transition: 0.3s;
}

.facility-card:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(-3px);
}

.facility-icon i {
    font-size: 1.3rem;
    color: #0d6efd;
}

.facility-card:hover .facility-icon i {
    color: #fff;
}

.facility-text {
    font-weight: 500;
}

.facilities-horizontal {
    color: #6c757d;
}

.facility-item {
    font-size: 14px;
    font-weight: 500;
}

.facility-item i {
    font-size: 18px;
    color: #6c757d;
}

.like-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000; /* pastikan lebih tinggi dari stretched-link */
}
