
/*** Spinner Start ***/
/* Overlay fullscreen */
#spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease-out, visibility 0s linear .4s;
  z-index: 99999;
}

/* Saat ditampilkan */
#spinner.show {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s ease-out, visibility 0s linear 0s;
}

/* Icon spinner */
#spinner .spinner-inner i {
  font-size: 2rem;
  color: #d9534f; /* merah (bs-danger) */
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Dropdown language Start ***/
.dropdown-menu {
    position: absolute;
    z-index: 2000;
    border-radius: 12px;
    min-width: 120px;
}

.dropdown-item.active {
  background-color: #ee472e;
  color: #fff;
}

.dropdown-item:hover {
  background-color: #fcd2a5;
  color: #000;
}

#langDropdown {
  font-weight: 500;
  font-size: 0.9rem;
  border: none;
}
/*** Dropdown language End ***/

/*** Button Start ***/
.btn-invert {
    background-color: #ee472e;
    color: #faf9fb;
    border: none;
    transition: all 0.3s ease-in-out;
}

.btn-invert:hover {
    background-color: #ffffff;
    color: #ee472e;
    border: 1px solid #ee472e;
}

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}
/*** Button End ***/

/*** Section Promo Start ***/
.promo-img {
    transition: transform 0.4s cubic-bezier(.4,2,.3,1);
    width: 100%;
    display: block;
}

.promo-img-wrapper:hover .promo-img {
    transform: scale(1.2);
}

.promo-equal {
    aspect-ratio: 1/1; 
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-img {
    transition: transform 0.4s cubic-bezier(.4,2,.3,1);
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-img-wrapper:hover .promo-img {
    transform: scale(1.2);
}
/*** Section Promo End ***/

/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #54595f;
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 41%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -100px;
    border: 1px solid #ff8800 !important;
}

/* .section-title .sub-style::after {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
} */

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #54595f;
}

.sub-title-section {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #54595f;
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-right: -100px;
    border: 1px solid #ff8800 !important;
}
/*** Section Title End ***/

/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 576px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel {
    position: relative; 
}

.header-carousel .owl-dots {
    display: flex !important;
    justify-content: flex-end;
    position: absolute;
    bottom: 20px;
    right: 10px;
    width: 100%;
    z-index: 10;
    gap: 10px;
}
.header-carousel .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    transition: background 0.3s, border 0.3s;
}
.header-carousel .owl-dot.active {
    background: #ff8800;
    border-color: var(--bs-primary);
}

.header-carousel .owl-nav .owl-prev {
    display: none !important;
    position: absolute;
    width: 70px;
    height: 70px;
    bottom: 30px;     
    right: 150px;       
    top: auto;        
    transform: none;  
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
    display: none !important;
    position: absolute;
    width: 70px;
    height: 70px;
    bottom: 30px;      
    right: 30px;       
    top: auto;        
    transform: none;   
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 150px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

@media (max-width: 576px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        top: 630px;
        transition: 0.5s;
    }

    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
        width: 95% !important;
    }
 
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    position: relative;
    width: 100%;
    height: 70%;
    margin-top: 100px;
    display: block;
    object-fit: contain;
    transition: 0.5s;
}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        margin-top: 0;
        transition: 0.5s;
    }

}

@media (min-width: 992px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin-top: 50px;
    }
}

.header-carousel .header-carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
}

.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    position: relative;
    width: 75%;
    
}
/*** Carousel Hero Header End ***/

/*** About Us Simple Start ***/
.about-bg {
    background: url('../img/bg-about.webp') center center/cover no-repeat fixed;
    position: relative;
}
.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}
.about-bg .container {
    position: relative;
    z-index: 2;
}
/*** About Us Simple End ***/

/*** Category Card Start ***/
.icon-shape {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50% 35% 55% 40%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.category-card:hover .icon-shape {
    transform: scale(1.05);
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0,0,0,0.3), rgba(0,0,0,0.4));
    z-index: 0;
}

.icon-shape i {
    z-index: 1;
    font-size: 1.4rem;
}
/*** Category Card End ***/

/*** News and Event Section Start ***/
.whatson-section {
  position: relative;
  width: 100%;
  height: 500px;
  background: url(../img/footer.webp) no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.whatson-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2); 
  z-index: 1;
}

.whatson-overlay {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.9);
  max-width: 400px;
  padding: 30px;
}

.news-event-image {
    object-fit: fill;
    border-top-left-radius: 0.375rem; 
    border-top-right-radius: 0.375rem;
    aspect-ratio: 5/6;
}

/*** News and Event Section Start ***/

/*** Navbar transparent default ***/
.custom-navbar {
    position: fixed;
    background-color: transparent;
    transition: all 0.4s ease;
    z-index: 1000;
    width: 100%;
}

.custom-navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.custom-navbar .nav-link {
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s;
}

.custom-navbar .nav-link:hover {
  color: #ffffff;
}

.custom-navbar.scrolled .nav-link {
  color: #214b85; 
}

.custom-navbar.scrolled .nav-link:hover {
  color: #ee472e; 
}

#openMobileMenu {
    transition: color 0.3s ease;
}

#mainNavbar.scrolled #openMobileMenu {
    color: #214b85 !important;
}

.logo-img {
  height: 70px;
  transition: opacity 0.3s ease;
}

/* Overlay dasar */

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; 
    height: auto;
    background: rgba(33,75,133,1);
    z-index: 9999;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    display: flex !important;
}

.close-icon {
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease;
}

/*** Navbar transparent default ***/

/*** Navbar Other Page Start ***/
.other-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1050;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.other-navbar.hide {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
}
/*** Navbar Other Page End ***/

/*** Shuttle Bus Section Start ***/
.orange-shape {
    position: absolute;
    top: 10%;
    right: 0;
    width: 80%;
    height: 80%;
    background: #ee472e;
    border-radius: 50% 0 50% 50%;
    z-index: 0;
    filter: blur(10px);
    opacity: 0.2;
}

/* Sembunyikan checkbox default */
.form-check-input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s, border-color 0.2s;
}

/* Checkbox saat diceklis */
.form-check-input[type="checkbox"]:checked {
    background-color: #ee472e;
    border-color: #ee472e;
}

/* Tanda centang */
.form-check-input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 10px;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


@media (max-width: 768px) {
    .orange-shape {
      width: 100%;
      height: 70%;
      top: 20%;
    }

    .sub-title-section {
      font-size: 1.25rem;
    }
}

/* Jam */
.search-container {
    margin-bottom: 20px;
}

.search-box {
    position: relative;
}

.search-input {
    padding-left: 40px;
    border-radius: 25px;
    border: 2px solid #ee472e;
}

.search-input {
    padding-left: 2rem;
    padding-right: 2rem;
}

.search-icon {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    pointer-events: none
}

.clear-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-80%);
    cursor: pointer;
}

.search-input:focus {
    border-color: #ee472e;
    box-shadow: 0 0 0 0.2rem rgba(247, 148, 30, 0.25);
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #ee472e;
}

.gate-badge {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    border-radius: 8px;
    padding: 8px 12px;
}

.gate-a2 { background-color: #4dfb9e !important; }
.gate-south { background-color: #75c8ff !important; }
.gate-north { background-color: #ffac75 !important; }

.highlight {
    background-color: yellow !important;
    font-weight: bold;
}

.no-results {
    text-align: center;
    padding: 40px;
    color: #666;
}

.filter-info {
    margin-top: 10px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
    font-size: 14px;
}

.gate-filter .form-check {
    display: inline-block;
    margin-right: 20px;
}

.table td {
    vertical-align: middle;
}

.table td:nth-child(2) {
    text-align: center;
    box-shadow: none !important;
}

.hotel-row {
    border-bottom: 1px solid #dee2e6;
}

.hotel-row:hover {
    background-color: #f8f9fa;
}
/*** Shuttle Bus Section End ***/

/*** Mini Story BNV Start ***/
.hero-section {
    background: white;
    position: relative;
    overflow: visible;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #214b85;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    color: #ee472e;
    font-weight: 600;
}

.hero-description {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-explore {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    color: #ee472e;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
}

/* Panah tersembunyi dulu */
.btn-explore::after {
    content: "↗";
    position: absolute;
    right: -20px;
    top: 0;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    font-size: 16px;
    color: #91bb4f;
}

.btn-explore:hover {
    color: #91bb4f;
    text-decoration-color: #91bb4f; 
}

.btn-explore:hover::after {
    opacity: 1;
    transform: translateX(0);
}


.image-gallery {
    position: relative;
}

.travel-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.travel-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.travel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-large {
    width: auto;
    height: auto;
    top: 50px;
    left: 0;
    right: 0;
}

.card-medium {
    width: 180px;
    height: 220px;
    top: 0;
    right: 80px;
    z-index: 2;
}

.card-small {
    width: 180px;
    height: 220px;
    bottom: 30px;
    right: 80px;
    z-index: 1;
}


.icon-shape-home-about {
    position: relative;
    width: 100%;
    max-width: 450px; 
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    border-radius: 50% 35% 55% 40%;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.icon-shape-home-about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 0;
}

.category-card:hover .icon-shape-home-about {
    transform: scale(1.05);
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0,0,0,0.3), rgba(0,0,0,0.4));
    z-index: 0;
}

.icon-shape-home-about i {
    z-index: 1;
    font-size: 1.4rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 40px 0;
    }

    .image-gallery {
        height: 400px;
        margin-top: 40px;
    }

    .card-large {
        width: auto;
        height: auto;
        top: 0px;
    }

    .card-medium {
        width: 140px;
        height: 170px;
        top: 0;
        right: 20px;
    }

    .card-small {
        width: 120px;
        height: 140px;
        bottom: 20px;
        right: 0;
    }

    .airplane-icon {
        top: 25%;
        right: 10%;
        font-size: 1.5rem;
    }

    .icon-shape-home-about {
        border-radius: 0; 
        max-width: 100%; 
        aspect-ratio: auto; 
        height: auto;
    }

    .icon-shape-home-about img {
        position: relative;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .image-gallery {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }

    .travel-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        border-radius: 15px;
    }

    .card-large {
        width: 100% !important;
        height: 200px !important;
        order: 1;
    }

    .mobile-bottom-row {
        display: flex;
        gap: 15px;
        order: 2;
    }

    .card-medium {
        width: calc(50% - 7.5px) !important;
        height: 150px !important;
        flex: 1;
    }

    .card-small {
        width: calc(50% - 7.5px) !important;
        height: 150px !important;
        flex: 1;
    }

    /* Hide original cards on mobile and show mobile version */
    .image-gallery > .card-medium,
    .image-gallery > .card-small {
        display: none;
    }

    .mobile-bottom-row {
        display: flex !important;
    }

    .airplane-icon {
        display: none;
    }

    .hero-section {
        padding: 20px 0;
    }

    .row.align-items-center.min-vh-100 {
        min-height: auto;
    }
}


/* Animation for cards */
.travel-card {
    animation: slideIn 0.8s ease-out forwards;
    opacity: 0;
}

.card-large {
    animation-delay: 0.2s;
}

.card-medium {
    animation-delay: 0.4s;
}

.card-small {
    animation-delay: 0.6s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*** Mini Story BNV Start ***/

/*** Single Jargon Header Start ***/
.jargon-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  transition: opacity 1.2s ease-in-out;
}

.jargon-shadow-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
    z-index: 2;
}

.jargon-shadow-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    z-index: 2;
}

.jargon-section .container {
    z-index: 3;
    position: relative;
}

.video-bg {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.video-bg.show {
  opacity: 1;
}

video {
    width: 100%;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 991px) {
    .jargon-section {
        background-attachment: scroll;
    }
}

/* Class reusable untuk fade-in background */
.bg-fade-section {
    min-height: 100vh;
    background-color: #1e1f33; /* placeholder warna */
    opacity: 0;
    animation: fadeInBg 1.5s ease forwards;
}

/* Animasi fade-in */
@keyframes fadeInBg {
    to {
        opacity: 1;
    }
}

/* Overlay gelap */
.overlay-dark {
    background: rgba(32, 33, 53, 0.3);
}

/* Efek blur bawah */
.blur-bottom {
    height: 100px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.2) 100%
    );
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    filter: blur(2px);
}

/* Text style */
.bg-fade-section h1 {
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
    padding-top: 60px;
}
.bg-fade-section p {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    font-size: 1.25rem;
}

/*** Single Jargon Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 160px 0 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}
/*** Single Page Hero Header End ***/


/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2) ;
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item .service-img::before {
    width: 100%;
    height: 0;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
    z-index: 5;
    
}

.service .service-item:hover .service-img::before {
    height: 100%;
    background: rgba(21, 185, 217, .3);
}

.service .service-item .service-img:hover img {
    transform: scale(1.3);
}

.service .service-item .service-content {
    position: relative;
    z-index: 2;

}

.service .service-item .service-content::before {
    width: 100%;
    height: 8px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: rgba(21, 185, 217, .5);
    transition: 0.5s;
    z-index: 3;
}

.service .service-item:hover .service-content::before {
    background: rgba(21, 185, 217, .5);
    height: 100%;
}

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}


.service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 9;
}
.service .service-item:hover .service-content .service-content-inner h5 {
    color: var(--bs-secondary);
}

/*** Service End ***/

/*** About Start ***/
.about .about-img {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 0px;
}

.about .about-img .about-img-inner {
    position: absolute;
    left: 0; 
    bottom: 0; 
    border: 10px solid; 
    border-color: var(--bs-white) var(--bs-white) var(--bs-white) var(--bs-white);
    border-radius: 50%;

}

.about .about-img .about-experience {
    position: absolute;
    top: 125px; 
    left: -125px; 
    transform: rotate(-90deg);
    background: transparent;
    color: var(--bs-primary);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
}

/*** About End ***/

/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    display: flex;
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;

}

.feature .feature-item::before {
    width: 0;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover::before {
    width: 100%;
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    display: inline-flex;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    position: relative;
    z-index: 2;
}

.feature .feature-item:hover .feature-content {
    position: relative;
    color: var(--bs-white);
    z-index: 2;
}

.feature .feature-item:hover .feature-content h5 {
    color: var(--bs-dark);
}
/*** Feature End ***/


/*** Appointment Start ***/
.appointment {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.appointment .appointment-form {
    background: rgba(239, 162, 134, 0.3);
}

.appointment .appointment-form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.appointment .appointment-form .btn.btn-primary:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Youtube Video start ***/
.video {
    position: relative;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    display: block;
    width: 33px;
    height: 44px;
    border-radius: 50%;
    transition: 0.5s;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 115px;
    height: 115px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    transition: 0.5s;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    transition: all 300ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 33px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    margin-left: 5px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/
/*** Appointment End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: -125px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.team .team-item .team-img:hover .team-icon {
    margin-bottom: 145px;
}

.team .team-item:hover .team-img::before {
    background: rgba(21, 185, 217, .3);
}

.team .team-item .team-content {
    color: var(--bs-primary);
    transition: 0.5s;
}

.team .team-item .team-content h5 {
    color: var(--bs-secondary);
    transition: 0.5s;
}

.team .team-item:hover .team-content h5 {
    color: var(--bs-dark);
}

.team .team-item:hover .team-content {
    background: var(--bs-primary);
    color: var(--bs-white);
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial {
    background: linear-gradient(rgba(21, 185, 217, 0.9), rgba(21, 185, 217, 0.9)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    background: transparent;
}

.testimonial .testimonial-item .testimonial-inner .testimonial-inner-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--bs-white);
}

.testimonial .testimonial-carousel.owl-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}


.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}


@media (max-width: 900px) {
    .testimonial .testimonial-carousel .owl-nav .owl-prev {
        margin-top: -190px;
        margin-left: 40px;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-next {
        margin-top: -190px;
        margin-right: 40px;
    }
    
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid var(--bs-white);
    background: transparent;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    background: var(--bs-secondary) !important;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
    transition: 0.5s;
}

@media (min-width: 900px) {
    .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
        font-size: 20px;
    }
}


/* Testimonial Section Title Start */
.testimonial .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.testimonial .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Testimonial End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover img {
    transform: scale(1.3);
}

/* .blog .blog-item:hover .blog-img::after {
    background: rgba(21, 185, 217, .5);
} */

.blog .blog-item .blog-centent {
    background: var(--bs-light);
    border-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
/*** Blog End ***/


/*** Contact Start ***/
.contact {
    background: linear-gradient(rgba(21, 185, 217, 0.9), rgba(21, 185, 217, 0.9)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}


.contact .contact-form .btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .contact-form .btn.btn-light:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.contact .contact-form .form-floating input,
.contact .contact-form .form-floating textarea,
.contact .contact-form .form-floating label {
    color: var(--bs-light);
}

/* Testimonial Section Title Start */
.contact .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.contact .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Contact End ***/

/*** Whats On Start ***/
.whats-on-banner {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.whats-on-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/img/what-new-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  z-index: 0;
}

.whats-on-banner .container {
  position: relative;
  z-index: 1;
}

/* Gambar Stack Kanan */
.image-stack {
  position: relative;
  width: 100%;
  height: 400px;
}

.stack-img {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.stack-img.img1 { top: 0; left: 30%; z-index: 3; }
.stack-img.img2 { top: 60px; left: 0; z-index: 2; }
.stack-img.img3 { top: 140px; left: 50%; z-index: 4; }
.stack-img.img4 { top: 200px; left: 20%; z-index: 1; }

.stack-img:hover {
  transform: scale(1.05);
  z-index: 5;
}

.card-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3em;
}

.event-detail-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 3;
    object-fit: fill;
    object-position: center;
}

.promo-img {
  height: 100%;
  width: 100%;
  object-fit: fill;
  aspect-ratio: 4 / 4;
}

.promo-text {
    max-width: 500px;
}

.promo-text-bottom .swiper-button-prev,
.promo-text-bottom .swiper-button-next {
    position: static !important;   
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;                  
    height: 40px;
    border-radius: 50%;           
    background-color: #ee472e;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.promo-text-bottom .swiper-button-prev::after,
.promo-text-bottom .swiper-button-next::after {
    font-size: 16px;  
    font-weight: bold;
    color: #fff;
}

.promoSwiper .swiper-slide {
    justify-content: center;
}

.event-navigation .swiper-button-next,
.event-navigation .swiper-button-prev {
    position: static;
    width: 35px;
    height: 35px;
    background-color: #ee472e;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.event-navigation .swiper-button-next::after,
.event-navigation .swiper-button-prev::after {
    font-size: 16px;
    color: #fff;
}

.new-tenant-navigation .swiper-button-next,
.new-tenant-navigation .swiper-button-prev {
    position: static;
    width: 35px;
    height: 35px;
    background-color: #ee472e;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.new-tenant-navigation .swiper-button-next::after,
.new-tenant-navigation .swiper-button-prev::after {
    font-size: 16px;
    color: #fff;
}

.new-tenant-img {
  width: 100%;
  object-fit: fill;
  aspect-ratio: 9/9;
}

.new-tenant-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  padding: 12px 16px;
  color: #fff;
}

@media (max-width: 576px) {
  .d-flex.flex-wrap {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .d-flex.flex-wrap h1 {
    margin-bottom: 1rem;
  }

  .new-tenant-navigation {
    order: 2;
    margin-top: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    position: static !important;
  }

  .new-tenant-navigation .swiper-button-next,
  .new-tenant-navigation .swiper-button-prev {
    position: static;
    width: 35px;
    height: 35px;
    background-color: #ee472e;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .new-tenant-navigation .swiper-button-next::after,
  .new-tenant-navigation .swiper-button-prev::after {
    font-size: 16px;
    color: #fff;
  }

  .promo-img {
    height: 400px;
    width: 100%;
    object-fit: cover;
  }

  .promo-text-top {
    padding: 20px 10px;
  }

  .promo-text-bottom {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .promo-text-bottom .swiper-button-next,
  .promo-text-bottom .swiper-button-prev {
    position: static;
    width: 35px;
    height: 35px;
    background-color: #ee472e;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .promo-text-bottom .swiper-button-next::after,
  .promo-text-bottom .swiper-button-prev::after {
    font-size: 16px;
    color: #fff;
  }
}

/*** Whats On End ***/

/*** Footer Start ***/
.footer {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 0.5px;
    color: var(--bs-primary);
}

.social-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #214b85; 
  color: #fff;
  font-size: 18px;
  transition: 0.3s ease;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: var(--bs-dark) !important;
}
/*** copyright end ***/

/*** Tenant Section Start ***/
.search-filter-bar {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #f5f5f6;
  gap: 1rem;
  flex-wrap: wrap;
  border-radius: 4px;
  font-family: sans-serif;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 200px;
  gap: 0.5rem;
}

.search-input-wrapper input {
  border: none;
  background: transparent;
  font-size: 1rem;
  width: 100%;
  outline: none;
  color: #333;
}

.search-icon {
  font-size: 1.1rem;
  color: #2c3e50;
}

.vertical-divider {
  width: 1px;
  height: 30px;
  background-color: #ee472e;
}

.dropdown-wrapper {
  position: relative;
  width: 280px;
  font-family: 'Arial', sans-serif;
}

.dropdown-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px 14px;
  cursor: pointer;
  background-color: #fff;
  width: 100%;
}

.selected-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  font-weight: 500;
}

.dropdown-options {
  display: none;
  position: absolute;
  top: 105%;
  left: 0;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  z-index: 10;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.dropdown-option {
  padding: 10px 14px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-option:hover {
  background-color: #f5f5f5;
}

.dropdown-option.active {
  background-color: #efefef;
  font-weight: bold;
}

.dropdown-wrapper.open .dropdown-options {
  display: block;
}

.search-icon-tenant {
    position: absolute;
    left: 4.5rem;
    top: 46%;
    transform: translateY(-50%);
    color: #e90404;
    font-size: 1.2rem;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(100px);
}

.category-btn:hover,
.category-btn.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.tenant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tenant-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tenant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}



/* Tenant Image Wrapper */
.tenant-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #fff;
}

.tenant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.tenant-info {
    padding: 15px;
}


.tenant-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.tenant-category {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
}

.tenant-meta .tenant-location {
    font-size: 0.85rem;
}

.tenant-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tenant-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tenant-meta a {
    color: #888;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.tenant-meta a:hover {
    color: #888;
}

.tenant-empty {
    grid-column: 1 / -1; 
    text-align: center;
    margin: 50px 0;
    color: #777;
}

.tenant-empty i {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tenant-empty p {
    font-size: 1.5rem;
    margin: 0;
}


.tenant-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
    color: #555555; 
    text-decoration: underline;
}

.tenant-location span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tenant-socials {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tenant-detail-img {
    width: 100%;
    height: 80%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.nav-btn {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    width: 60px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    transform: scale(1.1);
}

.nav-btn i {
    pointer-events: none;
}

@media (max-width: 768px) {
    .search-hero h1 {
        font-size: 2rem;
    }

    .tenant-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 1.5rem;
    }
    
    .tenant-card {
        border-radius: 10px;
        margin: 0 0.5rem;
    }
    
    .tenant-image {
        height: auto;
    }
    
    .tenant-info {
        padding: 10px 15px 15px;
    }
    
    .tenant-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .tenant-location {
        width: 100%;
    }
    
    .tenant-socials {
        align-self: flex-end;
    }
    
    .category-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 100%;
        max-width: 300px;
    }

    .search-filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .dropdown-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .selected-text {
        max-width: 100%;
    }

    .search-input-wrapper {
        width: 100%;
        flex: none;
    }

    .dropdown-select {
        padding: 10px 12px;
    }

    .dropdown-option {
        padding: 10px 12px;
    }

    .vertical-divider {
        display: none;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .tenant-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 1rem;
    }
    
    .tenant-card {
        margin: 0;
        border-radius: 10px;
    }
    
    .tenant-image {
        height: auto;
    }
    
    .tenant-name {
        text-align: center;
        font-size: 1rem;
    }
    
    .tenant-category {
        text-align: center;
        font-size: 0.75rem;
    }
    
    .tenant-meta {
        font-size: 0.85rem;
    }
    
    .tenant-card:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
}

.accordion-container {
  display: flex;
  width: 100%;
  height: 400px;
  overflow: hidden;
  gap: 5px;
}

.accordion-item {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: flex 0.5s ease;
  cursor: pointer;
  overflow: hidden;
}

.accordion-item:first-of-type {
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
}

.accordion-item:last-of-type {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.accordion-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 50%,
    rgba(0,0,0,1) 100%
  );
  transition: opacity 0.5s ease;
  z-index: 1;
  opacity: 1;
}

.accordion-item span {
  position: absolute;
  bottom: 20px;
  left: 10px;
  right: 10px;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  z-index: 2;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.accordion-item:hover {
  flex: 4;
}


@media (max-width: 768px) {
  .accordion-item span {
    font-size: 0.5rem;
    left: 5px;
    right: 5px;
  }
}













































































/*** Tenant Section End ***/

/*** About Us Section Start ***/
/* body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Playfair Display', sans-serif;
    color: #2c3e50;
} */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    color: #2c3e50;
    line-height: 1.3;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><path d="M0,50 Q250,0 500,50 T1000,50 L1000,100 L0,100 Z"/></svg>');
    background-size: cover;
    animation: wave 6s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* About Section */
.about {
    position: relative;
    padding: 60px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 600px;
    height: 3px;
    background: linear-gradient(45deg, #ea9066, #ffffff);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.5;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: visible;
}

.about-image img {
    width: 100%;
    height: 500px;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .about-svg-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-svg-text h2 {
    font-size: 2rem;
  }

  .svg-blob {
    max-width: 100%;
  }
}
 */

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Location Section */
.location {
    padding: 80px 0;
    background: #ffffff;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.location-highlights {
    list-style: none;
    margin: 10px 0;
}

.location-highlights li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
    color: #555;
}

.location-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ee472e;
    font-weight: bold;
}

.map-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%; 
    height: auto;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading animation for stats */
.counter {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/*** About Us Section End ***/

/*** News Section Start ***/
.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.latest-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    border-left: 4px solid #ee472e;
    padding-left: 15px;
}

.news-item {
    display: flex;
    margin-bottom: 30px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.news-item img {
    width: 150px;
    object-fit: cover;
    flex-shrink: 0;
}

.news-content {
    padding: 20px;
    flex: 1;
}

.news-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.news-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-tag {
    background-color: #fdf4ea;
    color: #ee472e;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.time-info {
    font-size: 12px;
    color: #999;
}

.trending-section {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.trending-section h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ee472e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trending-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trending-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.trending-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.trending-number {
    font-size: 24px;
    font-weight: 700;
    color: #ddd;
    margin-right: 15px;
    min-width: 30px;
}

.trending-content h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.4;
}

.trending-meta {
    font-size: 12px;
    color: #999;
}

@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
    }
    
    .news-item img {
        width: 100%;
        height: 200px;
    }
}
/*** News Section End

/*** Event Schedule ***/
/* Badge schedule */
.schedule-badge {
  background-color: #f8f9fa;
  border: 1px solid #0a2a66;
  color: #0a2a66;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap; /* biar pecah rapi kalau panjang */
  gap: 6px;
  margin-right: 8px;  /* kasih jarak antar badge */
  margin-bottom: 5px;
}

.schedule-badge .separator {
  margin: 0 6px;
  color: #0a2a66;
  font-weight: bold;
}

.event-item {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch; 
  margin-bottom: 100px;
}

/* Gambar */
.event-img {
  width: 100%;
  height: 100%;           
  max-height: 400px;      
  object-fit: cover;      
  border-radius: 8px;
}

@media (min-width: 768px) {
  .event-img {
    height: 350px; /* desktop lebih tinggi */
  }
}

/* Judul */
.event-title {
  font-weight: bold;
  margin-bottom: 8px;
}

.event-by {
  color: #ee472e;  
  font-style: italic;
  font-weight: bold;
  margin-top: -5px;
  margin-bottom: 15px;
  font-size: small;
}

.event-description p {
    font-size: 16px;
    color: #5a6c7d;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
}

.partner-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.partner-logos img {
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-logos img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .event-meta {
    flex-direction: column; 
    align-items: flex-start; 
  }

  .schedule-badge {
    width: 100%; 
    justify-content: flex-start;
    margin-right: 0;
  }
  .event-img {
    height: 350px;
  }
  .partner-logos {
    justify-content: center;
  }
}

/*** Cultural Event Home ***/
.event-image-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Lingkaran */
.circle-img {
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    flex-shrink: 0;
    position: relative;
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-big {
    width: 300px;
    height: 300px;
    margin-left: 80px; 
    z-index: 1;
}

.circle-small {
    width: 200px;
    height: 200px;
    margin-top: 180px;
    margin-left: -80px; 
    z-index: 2;
}

@media (max-width: 768px) {
    .event-image-group {
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .circle-big {
        width: 250px;
        height: 250px;
        margin-left: 0px; 
    }

    .circle-small {
        width: 150px;
        height: 150px;
        margin-top: 100px;   
        margin-left: -50px;  
    }
}
/*** Cultural Event Home End ***/


/*** Slider Event ***/
.hotel-slider-container {
    margin: 2rem auto;
    padding: 0 2rem;
    max-width: 1250px;
}

.slider-controls {
    display: flex;
    gap: 8px;
}

.slider-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #ee472e;
    background: #ee472e;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slider-nav-btn:hover {
    background: #ee472e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 95, 95, 0.4);
}

.hotel-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hotel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: stretch;
}

.hotel-slide.active {
    opacity: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    z-index: 1;
}

.hotel-slide:hover .slide-background {
    transform: scale(1.02);
}

.slide-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.4) 100%);
}

.slide-content-overlay {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    overflow: visible;
    background: transparent;
}

.slide-content-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(40, 40, 40, 0.75) 0%, rgba(0, 0, 0, 0.75) 100%);
    clip-path: polygon(4% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: -1;
}


.text-content-wrapper {
    position: relative;
    z-index: 3;
    transform: none;
    overflow: visible;
}

.hotel-category {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    transform: translateX(20px);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.hotel-slide:hover .hotel-category {
    transform: translateX(0);
    opacity: 1;
}

.hotel-title {
    font-size: 3.2rem;
    font-weight: 300;
    color: white;
    margin-bottom: 25px;
    line-height: 1.1;
    transform: translateX(30px);
    opacity: 0.9;
    transition: all 0.4s ease 0.1s;
}

.hotel-slide:hover .hotel-title {
    transform: translateX(0);
    opacity: 1;
}

.hotel-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    transform: translateX(25px);
    opacity: 0.8;
    transition: all 0.4s ease 0.2s;
}

.hotel-slide:hover .hotel-description {
    transform: translateX(0);
    opacity: 1;
}

.hotel-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    transform: translateX(20px);
    opacity: 0.8;
    transition: all 0.4s ease 0.3s;
}

.hotel-slide:hover .hotel-btn {
    transform: translateX(0);
    opacity: 1;
}

.hotel-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.slider-controls-absolute {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    gap: 10px;
}


.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.indicator-dot.active {
    background: white;
    transform: scale(1.3);
}

.slide-number {
    position: absolute;
    top: 30px;
    left: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hotel-slider {
        height: 600px;
    }
    
    .slide-content-overlay {
        width: 100%;
        clip-path: none;
        padding: 30px 30px;
        position: absolute;
        bottom: 0;
        top: auto;
        height: 40%;
        background: linear-gradient(120deg, rgba(40, 40, 40, 0.75) 0%, rgba(0, 0, 0, 0.75) 100%);
    }

    .slide-content-overlay::before {
        display: none;
    }

    .text-content-wrapper {
        transform: none;
        max-width: 100%;
        padding-bottom: 250px;
        padding-right: 10px;
    }

    .hotel-title {
        font-size: 1.8rem;
        text-align: left;
    }

    .hotel-description {
        font-size: 0.95rem;
        text-align: left;
    }

    .hotel-btn {
        align-self: flex-start;
    }

    .slider-indicators {
        left: 20px;
        bottom: 20px;
    }

    .slide-number {
        left: 20px;
        top: 20px;
    }
}

@media (max-width: 576px) {
    .hotel-title {
        font-size: 2rem;
    }
    
    .slide-content-overlay {
        padding: 30px 25px;
        padding-top: 60px;
    }
}

/*** Slider Event End ***/

/*** Facilities Start ***/
.service-content {
  display: flex;
  align-items: stretch; /* Biar kanan & kiri punya tinggi sama */
}

.container {
  max-width: auto;
  margin: 0 auto;
}

.text-column {
  flex: 1;
  background-color: #fff;
}

.image-stack {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 50px auto;
  padding-bottom: 100px;
}

.photo-frame {
  position: absolute;
  border: 8px solid white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.photo-frame img {
  width: 100%;
  display: block;
}

/* Ukuran dan posisi masing-masing gambar */
.photo-frame.large {
  width: 500px;
  top: 0;
  left: 10%;
  transform: rotate(-2deg);
  z-index: 1;
}

.photo-frame.medium {
  width: 350px;
  top: 180px;
  left: 10%;
  transform: rotate(5deg);
  z-index: 2;
}

.photo-frame.small {
  width: 250px;
  top: 350px;
  left: 50%;
  transform: rotate(-6deg);
  z-index: 3;
}

/* Optional: efek saat hover */
.photo-frame:hover {
  transform: scale(1.05) rotate(0deg);
  z-index: 10;
}

.subtitle {
  color: #d49138;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.description {
  color: #666;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  text-align: center;
}

.feature-item {
  /* display: flex; */
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
}

.feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 0.5rem;
}

.cta-button {
  padding: 0.8rem 2rem;
  background-color: #f4a340;
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .service-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .text-column {
    padding: 1.5rem;
    width: 100%;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    text-align: center;
    padding: 1rem 0;
  }

  .feature-item {
    align-items: center;
    text-align: center;
  }

  .photo-frame.large {
    width: 90%;
    top: 0;
    left: 5%;
    transform: rotate(-1deg);
  }

  .photo-frame.medium {
    width: 70%;
    top: 160px;
    left: 15%;
    transform: rotate(3deg);
  }

  .photo-frame.small {
    width: 50%;
    top: 300px;
    left: 30%;
    transform: rotate(-4deg);
  }

  .title {
    font-size: 2rem;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-stack {
    padding-bottom: 300px;
  }

  .photo-frame.large {
    width: 90%;
    top: 0;
    left: 5%;
    transform: rotate(0deg);
  }

  .photo-frame.medium {
    width: 80%;
    top: 160px;
    left: 10%;
    transform: rotate(0deg);
  }

  .photo-frame.small {
    width: 70%;
    top: 300px;
    left: 15%;
    transform: rotate(0deg);
  }

  .title {
    font-size: 1.6rem;
  }
}

.facilities-dark-section {
    background-color: #ffffff;
}

.facility-card {
    text-align: center;
}

.facility-icon {
    font-size: 2.5rem;
    color: #fff;
    display: inline-block;
    padding: 15px;
    transition: all 0.3s ease;
}

.facility-icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 0.5rem;
}

.special-icon {
    border-color: #ee472e;
    color: #ee472e;
}

.shuttle-highlight .btn {
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 0.85rem;
}
/*** Facilities End ***/
