:root {
    --pr-color :#71B4F3;
}

body{
    font-family: "Poppins", sans-serif;
    background-color: #EBF5FF;
}

/* Navbar Style */

.navbar {
    z-index: 3;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

/* Navbar Color */

.nav-color {
    background-color: #71B4F3;
    transition: all ease-in-out 0.3s;
}

.bg-transparent {
    transition: all ease-in 0.3s;
}

* {
    z-index: 2;
}

.accsent-img {
    z-index: 1;
}

.navbar-brand {
    font-weight: 700;
    font-size: 20px;
}

.navbar-nav {
    margin-left: 50px;
}

.nav-link {
    font-size: 16px;
}

.nav-link.active {
    font-weight: 700;
}

.button-secundary {
    width: 133px;
    height: 40px;
    background-color: #fff;
    color: var(--pr-color);
    border: none;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    line-height: 40px;
}

.button-primary {
    width: 133px;
    height: 40px;
    background-color: transparent;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    line-height: 40px;
}

/* Hero Section */

#hero {
    background: linear-gradient(160deg, var(--pr-color), #000);
    height: 100vh;
    width: 100%;
}

.img-hero {
    height: 100%;
    z-index: 1;
}

.hero-tagline h1 {
    color: #fff;
    font-weight: 700;
    font-size: 50px;
    list-style: 72px;
}

.hero-tagline p {
    font-size: 16px;
    color: #fff;
    margin-bottom:60px;
    margin-top: 20px;
    line-height: 30px;
    width: 85%;
}

.button-lg-primary {
    width: 273px;
    height: 70px;
    background-color: #fff;
    color: var(--pr-color);
    border: none;
    font-size: 20px;
    font-weight: 700;
}

/* Layanan Section */

#layanan {
    padding: 100px 50px;
}

#layanan .container {
    max-width: 100%;
    padding: 0;
}

h2{
    font-size: 48px;
    font-weight: 500;
    color: var(--pr-color);
}

.sub-tittle {
    font-size: 18px;
    color: #000;
}

.card-layanan {
    width: 100%;
    height: 313px;
    border-radius: 5px;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 0 7px 3px rgba(0, 0, 0, 0.05);
    transition: all .2s ease-in;
}

.circle-icon {
    width: 70px;
    height: 70px;
    background-color: var(--pr-color);
    border-radius: 50%;
    transition: all .1s ease-in;
}

.card-layanan h3{
    color: var(--pr-color);
    font-size: 24px;
    transition: all .2s ease-in;
}

.card-layanan p{
    color: #000;
    font-size: 14px;
    transition: all .3s ease-in;
}

/* Hover */
.card-layanan:hover {
    width: 100%;
    height: 313px;
    border-radius: 5px;
    background: linear-gradient(160deg, var(--pr-color), #000);
    padding: 40px;
    box-shadow: 0 0 7px 3px rgba(0, 0, 0, 0.05);
    transition: all .2s ease-in;
}

.card-layanan:hover .circle-icon{
    background-color: #fff;
    transition: all .2s ease-in;
}

.card-layanan:hover h3{
    color: #fff;
    font-size: 24px;
    transition: all .2s ease-in;
}

.card-layanan:hover p{
    color: #fff;
    font-size: 14px;
    transition: all .2s ease-in;
}

/* Search Section */
#Search {
    background-image: url(../asset/img/bg2.png);
    height: 100vh; 
    background-repeat: no-repeat;
    background-size: cover;
}

#Search .container {
    max-width: 100%;
    padding: 0;
}

#Search h2{
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 72px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;

}

#Search p{
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
}

/* Section Rekomendasi */
#rekomendasi {
    padding: 100px 0;
}

#rekomendasi .container {
    max-width: 100%;
    padding: 0;
}

.card {
    height: 460px;
    border: none;
    width: 95%;
    position: relative;
    overflow: hidden;
}

.card img {
    position: relative;
    z-index: 3;
    transition: all .2s ease-in;
}

.card-body {
    position: relative;
    z-index: 2;
}

.card-body h4{
    color: #000000;
    font-weight: 600;
    font-size: 24px;
    line-height: .8rem;
    transition: all ease-in-out .3s;
    transform: translateY(0);
}
.card-body p{
    color: #141414;
    font-weight: 400;
    font-size: 14px;
    transition: all ease-in-out .3s;
    transform: translateY(0);
}
.card:hover {
    background: linear-gradient(170deg, var(--pr-color), #71B4F3, #71B4F3, #000);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .25);
    transition: all ease-in-out .3s;
}

.card:hover img {
    transform: scale(1.1);
    transition: all .2s ease-in;
}

.card:hover .card-body h4 {
    color: #fff;
    transform: translateY(10px);
    transition: all ease-in-out .3s;
}

.card:hover .card-body p{
    color: #fff;
    transform: translateY(10px);
    transition: all ease-in-out .3s;
}

/* Kontak Section */
#kontak {
    background-image: url('../img/Bg-Kontak.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    margin-top: 0;
}

#kontak .overlay {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    min-height: 100vh;
}

#kontak h3 {
    font-weight: 600;
    font-size: 48px;
    line-height: 1.4;
    color: #FFFFFF;
    margin-bottom: 30px;
    text-align: center;
}

#kontak h6 {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.5;
    color: #FFFFFF;
    margin: 19px 0 14px 0;
    text-align: left;
}

.kontak a {
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 1.5;
    color: #FFFFFF;
    text-decoration: none;
    margin-left: 18px;
    width: 323px;
    display: inline-block;
    text-align: left;
}

.linkrumahimpian {
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 1.5;
    color: #FFFFFF;   
    text-decoration: none;
    text-align: left;
}

.card-contact {
    width: 100%;
    height: auto;
    min-height: 445px;
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 52px 48px;
    margin: 0 auto;
    max-width: 800px;
}

.card-contact h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.4;
    color: #71B4F3;
    text-align: center;
    margin-bottom: 40px;
}
.form-control {
    background: #C4C4C4;
    height: 88px !important;
    border-radius: 0;
}

.form-floating label {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    color: #717171;
}

.button-kontak {
    width: 100%;
    height: 75px;
    background: #71B4F3;
    border: none;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: #FFFFFF;
}

footer {
    width: 100%;
    height: 270px;
    background: #71B4F3;
}

footer a {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #FFFFFF;
    text-decoration: none;
}

footer a:hover {
    color: #FFFFFF;
    text-decoration: none;
}

.copyright {
    bottom: 1%;
    color: #FFFFFF;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 21px;
}

.container {
    max-width: 100% !important;
    padding: 0 50px;
}

/* Search Page Styles */
.search-page .search-header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/Bg-Kontak.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0 0;
    position: relative;
    margin-bottom: -80px;
}

.search-page .filter-section {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    position: relative;
    z-index: 2;
    margin-top: 150px;
    margin-bottom: 50px;
}

.search-page .form-select {
    border: 1px solid #e0e0e0;
    height: 45px;
}

.search-page .btn-primary {
    background-color: var(--pr-color);
    border: none;
    height: 45px;
}

.kost-card {
    height: 460px;
    border: none;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.kost-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

.kost-card .card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    height: calc(460px - 250px);
}

.kost-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.kost-card .card-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pr-color);
}

.kost-card .rating {
    font-size: 0.9rem;
}

.kost-card .btn-primary {
    margin-top: auto;
    background-color: var(--pr-color);
    border: 1px solid var(--pr-color);
    transition: all 0.3s ease;
}

.kost-card .btn-primary:hover {
    background-color: #fff;
    color: var(--pr-color);
    border: 1px solid var(--pr-color);
}

.search-results {
    background-color: #f8f9fa;
    padding-top: 100px;
    position: relative;
    z-index: 1;
}

.search-page h2.text-white {
    margin-bottom: 80px;
    padding-top: 40px;
}

.search-icon {
    font-size: 2rem;
    margin-top: 5px;
}

.detail-page {
    min-height: 100vh;
    position: relative;
    padding-top: 20px;
}

.detail-page .container {
    position: relative;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.selectpicker {
    height: 45px !important;
    padding: 6px 12px !important;
    line-height: 1.5 !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 0.375rem !important; /* sesuai Bootstrap border-radius */
    background-color: #fff !important;
}
.bootstrap-select .dropdown-toggle {
    height: 45px !important;
    padding: 6px 12px !important;
    line-height: 1.5 !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 0.375rem !important;
}
