body {
    font-family: 'Poppins', sans-serif;
}

.navbar {
    transition: all 0.3s ease;
    background: transparent;
    box-shadow: none;
    font-weight: 500;
    position: fixed;
    width: 100%;
    top: 44px;
    z-index: 1040;
    padding: 15px 0;
}

.navbar.navbar-scrolled {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    top: 0;
    padding: 10px 0;
}

.navbar.navbar-scrolled .navbar-brand,
.navbar.navbar-scrolled .nav-link,
.navbar.navbar-scrolled .btn-search {
    color: #333;
}

.navbar.navbar-scrolled .navbar-brand i {
    color: #0d6efd;
}

.navbar.navbar-scrolled .nav-link i {
    color: #0d6efd;
}

.navbar.navbar-scrolled .btn-outline-primary {
    color: #0d6efd;
    border-color: #0d6efd;
}

.navbar.navbar-scrolled .btn-outline-primary:hover {
    background: #0d6efd;
    color: #fff;
}

.navbar.navbar-scrolled .btn-primary {
    background: #0d6efd;
    color: #fff;
}

.navbar-brand {
    font-weight: 700;
    color: #333;
    font-size: 1.5rem;
}

.navbar-brand i {
    color: #007bff;
    margin-right: 8px;
}

.navbar-dark .navbar-brand,
.navbar-dark .nav-link,
.navbar-dark .btn-search {
    color: #fff;
}

.navbar-dark .navbar-brand i,
.navbar-dark .nav-link i {
    color: #fff;
}

.navbar-dark .btn-outline-primary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .btn-primary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border: none;
}

.nav-link {
    position: relative;
    margin: 0 10px;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar-dark .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.nav-link i {
    font-size: 1.1rem;
    color: #007bff;
}

.navbar-dark .nav-link i {
    color: rgba(255, 255, 255, 0.9);
}

.navbar-toggler {
    border: none;
    padding: 8px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.2);
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.navbar-scrolled .navbar-toggler {
    background: rgba(0, 0, 0, 0.05);
}

.navbar.navbar-scrolled .navbar-toggler:hover,
.navbar.navbar-scrolled .navbar-toggler:focus {
    background: rgba(0, 0, 0, 0.1);
}

.navbar.navbar-scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(26, 28, 35, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 12px;
        margin-top: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar.navbar-scrolled .navbar-collapse {
        background: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .navbar-dark .nav-link {
        color: rgba(255, 255, 255, 0.9);
    }

    .navbar.navbar-scrolled .nav-link {
        color: #333;
    }

    .navbar-dark .navbar-toggler:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .navbar-dark .dropdown-item {
        color: rgba(255, 255, 255, 0.9);
    }

    .navbar-dark .dropdown-item i {
        color: rgba(255, 255, 255, 0.9);
    }

    .navbar.navbar-scrolled .dropdown-item {
        color: #333;
    }

    .navbar.navbar-scrolled .dropdown-item i {
        color: #0d6efd;
    }
}

/* Dropdown styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 10px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
    padding-left: 25px;
}

/* Button styles */
.btn {
    padding: 8px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-dark .btn {
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-primary {
    border-width: 2px;
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

.navbar-dark .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
}

.navbar-dark .btn-primary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
    background: linear-gradient(45deg, #0056b3, #004494);
}

.navbar-dark .btn-primary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Dropdown animation */
@keyframes slideIn {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
    100% {
        transform: translateY(0rem);
        opacity: 1;
    }
}

.animate.slideIn {
    animation: slideIn 0.4s ease;
}

@media (max-width: 991.98px) {
    .dropdown-menu {
        position: static !important;
        display: none;
        margin-top: 0;
        box-shadow: none;
        border: none;
        background: rgba(0, 0, 0, 0.03);
        padding: 10px 15px;
        border-radius: 5px;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
    }

    .dropdown-menu.show {
        display: block !important;
        margin-top: 10px;
    }

    .dropdown-item {
        padding: 8px 15px;
        color: #333;
        border-radius: 5px;
        white-space: normal;
    }

    .dropdown-item:hover {
        background-color: rgba(0, 123, 255, 0.1);
        padding-left: 20px;
    }

    .nav-item.dropdown {
        position: relative;
    }

    .nav-link.dropdown-toggle {
        display: flex;
        align-items: center;
        padding-right: 40px;
    }
}

/* Update Topbar styles for better responsiveness */
.topbar {
    background: linear-gradient(45deg, #007bff, #0056b3);
    padding: 8px 0;
    font-size: 0.9rem;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1041;
}

.topbar-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar-info-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.topbar a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.topbar a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.topbar .social-links {
    justify-content: flex-end;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    text-decoration: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .topbar {
        padding: 5px 0;
        font-size: 0.8rem;
    }

    .topbar-info {
        justify-content: center;
        gap: 10px;
    }

    .topbar-info-item {
        font-size: 0.75rem;
    }

    .topbar-info-item i {
        font-size: 0.9rem;
    }

    .topbar-info-item span {
        display: none;
    }

    .topbar-info-item i {
        margin-right: 0;
    }

    .topbar-info-item.office-hours,
    .social-links {
        display: none;
    }

    .topbar .row {
        flex-direction: row;
    }

    .topbar .col-md-8 {
        width: 100%;
        padding: 0 15px;
    }

    .topbar .col-md-4 {
        display: none;
    }

    .navbar {
        top: 35px; /* Sesuaikan dengan tinggi topbar mobile */
    }
}

@media (max-width: 576px) {
    .topbar-info {
        gap: 15px;
    }

    .topbar-info-item {
        font-size: 0.75rem;
    }

    .topbar-info-item i {
        font-size: 0.9rem;
    }

    .navbar {
        top: 36px;
    }

    .content-wrapper {
        padding-top: 100px;
    }
}

/* Update navbar and topbar transition */
.navbar, .topbar {
    transition: all 0.3s ease;
}

.topbar-hidden {
    transform: translateY(-100%);
}

/* Class untuk navbar saat scroll */
.navbar-scrolled {
    top: 0 !important;
    padding: 10px 0 !important;
}

.topbar-hidden {
    transform: translateY(-100%);
}

/* Update content wrapper */
.content-wrapper {
    padding-top: 120px;
    min-height: 2000px;
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 8px 0;
        background: rgba(26, 28, 35, 0.95);
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 28, 35, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }

    .navbar-nav {
        padding: 1rem 0;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-link {
        padding: 0.8rem 1rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
    }

    .navbar-dark .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu {
        background: rgba(255, 255, 255, 0.05);
        padding: 0.5rem;
        margin-top: 0.5rem;
        border-radius: 8px;
    }

    .dropdown-item {
        padding: 0.8rem 1rem;
        border-radius: 6px;
        color: #333;
    }

    .dropdown-item i {
        color: #0d6efd;
    }

    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    .navbar-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 0;
    }

    .navbar-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 24px; /* Sesuaikan dengan tinggi topbar mobile */
    }

    .navbar.navbar-scrolled {
        top: 0;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .navbar-brand i {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .btn i {
        font-size: 0.9rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(45deg, #1a1c23, #242730);
    color: #fff;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.05)" stroke-width="20" fill="none"/></svg>') repeat;
    opacity: 0.1;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #007bff;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: #a8b0bc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-widget ul li a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-widget p {
    color: #a8b0bc;
    line-height: 1.8;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-info div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a8b0bc;
}

.footer-contact-info i {
    color: #007bff;
}

.footer-newsletter input {
    background: rgba(255,255,255,0.1);
    border: none;
    padding: 12px 15px;
    border-radius: 5px;
    color: #fff;
    margin-bottom: 10px;
    width: 100%;
}

.footer-newsletter input:focus {
    outline: none;
    background: rgba(255,255,255,0.15);
}

.footer-newsletter button {
    width: 100%;
    padding: 12px;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
    color: #a8b0bc;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: #a8b0bc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-widget {
        text-align: center;
    }

    .footer-widget h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-contact-info div {
        justify-content: center;
    }
}

/* Search styles */
.btn-search {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar-dark .btn-search {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-search:hover {
    color: #007bff;
    transform: scale(1.1);
}

.navbar-dark .btn-search:hover {
    background: rgba(255, 255, 255, 0.2);
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 0;
    transform: translateY(-100%);
    transition: all 0.3s ease;
    z-index: 1042;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-overlay.show {
    transform: translateY(0);
}

.search-form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
}

.search-form input {
    width: 100%;
    padding: 15px 100px 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.search-form input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.search-buttons {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.search-form .search-submit,
.search-form .search-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 36px;
    height: 36px;
}

.search-form .search-submit {
    color: #007bff;
    background: rgba(0, 123, 255, 0.1);
}

.search-form .search-close {
    color: #6c757d;
    background: rgba(108, 117, 125, 0.1);
}

.search-form .search-submit:hover {
    background: rgba(0, 123, 255, 0.2);
    transform: scale(1.1);
}

.search-form .search-close:hover {
    background: rgba(108, 117, 125, 0.2);
    transform: scale(1.1);
}

.search-form .search-submit i,
.search-form .search-close i {
    font-size: 1rem;
}

@media (max-width: 991.98px) {
    .search-overlay {
        padding: 0.8rem 0;
    }

    .search-form input {
        padding: 12px 90px 12px 15px;
    }
}

@media (max-width: 768px) {
    .search-overlay {
        padding: 0.6rem 0;
    }
}

/* Update banner styles */
.hero-banner {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    overflow: hidden; /* Untuk animated shapes */
}

/* Update banner overlay dengan gradient yang lebih menarik */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

/* Animated Shapes */
.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: floatShape 8s infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.shape-3 {
    width: 70px;
    height: 70px;
    bottom: 1%;
    left: 20%;
    animation-delay: 0s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-delay: 0s;
}

.shape-5 {
    width: 100px;
    height: 100px;
    bottom: 2%;
    right: 20%;
    animation-delay: 0s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.float-item {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    animation: float 6s infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.float-item i {
    font-size: 1.5rem;
    color: #0d6efd;
}

.float-item span {
    font-weight: 500;
    font-size: 1rem;
}

.item-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.item-2 {
    top: 30%;
    right: 5%;
    animation-delay: 0s;
}

.item-3 {
    top: 32%;
    left: 10%;
    animation-delay: 0s;
}

.item-4 {
    bottom: 10%;
    left: 5%;
    animation-delay: 0s;
}

.item-5 {
    bottom: 8%;
    right: 10%;
    animation-delay: 0s;
}

.item-6 {
    bottom: 11%;
    right: 35%;
    animation-delay: 0s;
}

.item-7 {
    top: 36%;
    left: 45%;
    animation-delay: 0s;
}

.item-8 {
    bottom: 13%;
    left: 30%;
    animation-delay: 0s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Banner Title & Subtitle */
.banner-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
}

.banner-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
    opacity: 0.9;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: #fff;
    animation: fadeInUp 1s ease 1s both;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .banner-title {
        font-size: 3rem;
    }

    .banner-subtitle {
    font-size: 1.2rem;
    }

    .float-item {
        padding: 12px 20px;
    }

    .float-item i {
        font-size: 1.2rem;
    }

    .float-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2.5rem;
    }

    .banner-subtitle {
    font-size: 1rem;
}

    .float-item {
        display: none;
    }

    .scroll-indicator {
        bottom: 30px;
    }
}

/* Update booking tabs styles */
.booking-tabs {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 12;
    animation: fadeInUp 1s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 90px;
    margin-bottom: 100px;
}

.tab-buttons {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    scrollbar-width: none;
}

.tab-buttons::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.tab-btn:hover {
    color: #0d6efd;
    transform: translateY(-2px);
}

.tab-btn.active {
    color: #fff;
    background: #0d6efd;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.tab-btn i {
    font-size: 1.2rem;
}

/* Update accommodation types styles */
.accommodation-types {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.type-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 2px solid #e9ecef;
    border-radius: 30px;
    background: #fff;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.type-btn:hover {
    border-color: #0d6efd;
    color: #0d6efd;
    transform: translateY(-2px);
}

.type-btn.active {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

/* Update search form styles */
.search-form-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.search-input-group {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr auto;
    gap: 20px;
    align-items: center;
}

.search-input {
    position: relative;
}

.search-input input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
    outline: none;
}

.search-input i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #0d6efd;
    font-size: 1.1rem;
}

.search-submit {
    padding: 15px 30px;
    background: #ff5722;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-submit:hover {
    background: #f4511e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

/* Add animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Update responsive styles */
@media (max-width: 991.98px) {
    .banner-title {
        font-size: 2.5rem;
    }

    .search-input-group {
        grid-template-columns: 1fr;
    }

    .booking-tabs {
        margin: 0 15px 80px;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
        padding: 0 15px;
    }

    .accommodation-types {
        overflow-x: auto;
        padding-bottom: 10px;
        margin: 0 -10px;
        padding: 0 10px;
    }

    .type-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .search-input input {
        padding: 12px 15px 12px 45px;
    }

    .search-submit {
        padding: 12px 20px;
    }

    .booking-tabs {
        margin: 0 15px 60px;
    }
}

/* Date Range Picker Styles */
.daterangepicker {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
}

.daterangepicker .calendar-table {
    border: none;
    background: #fff;
}

.daterangepicker td.active, 
.daterangepicker td.active:hover {
    background: #0d6efd;
    border-radius: 6px;
}

.daterangepicker td.in-range {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.daterangepicker td.available:hover {
    background: rgba(13, 110, 253, 0.05);
    border-radius: 6px;
}

.daterangepicker .drp-buttons {
    border-top: 1px solid #eee;
    padding: 15px;
}

.daterangepicker .drp-selected {
    font-size: 0.9rem;
    color: #666;
}

.daterangepicker .btn {
    padding: 8px 16px;
    font-weight: 500;
}

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
    border-color: #0d6efd;
}

.daterangepicker .ranges li.active {
    background: #0d6efd;
}

/* Custom date input styles */
.search-input.dates input {
    cursor: pointer;
    background: #fff;
}

.search-input.dates:after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #0d6efd;
    pointer-events: none;
}

.search-input.dates.active input {
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

/* Update animation for menu toggle */
.navbar-toggler .navbar-toggler-icon {
    transition: transform 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    transform: rotate(90deg);
}

/* Update banner container */
.hero-banner .container {
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
}

/* Update scroll indicator position */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .booking-tabs {
        margin: 0 15px 80px;
    }

    .float-item {
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .booking-tabs {
        margin: 0 15px 60px;
    }

    .scroll-indicator {
        bottom: 30px;
    }
}

/* Product Section Styles */
.product-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

/* Category Navigation */
.category-nav {
    margin-bottom: 3rem;
}

.category-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: none;
    background: #fff;
    border-radius: 12px;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #0d6efd;
}

.category-item.active {
    background: #0d6efd;
    color: #fff;
}

.category-item i {
    font-size: 1.2rem;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 87, 34, 0.9);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-tag-2 {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-tag-3 {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    background: #ff5722;
    color: #fff;
}

.product-content {
    padding: 20px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 0.9rem;
}

.product-rating i {
    color: #ffc107;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 10px 0;
    color: #333;
}

.product-meta {
    display: flex;
    gap: 15px;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.product-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0d6efd;
}

.load-more {
    padding: 12px 30px;
    font-size: 1rem;
}

.load-more i {
    margin-right: 8px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .product-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .category-item {
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .product-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .category-wrapper {
        overflow-x: auto;
        padding-bottom: 15px;
        margin-bottom: -15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .category-wrapper::-webkit-scrollbar {
        display: none;
    }

    .category-item {
        white-space: nowrap;
    }

    .product-image {
        height: 200px;
    }
}

/* Add loading state styles */
.product-section.loading {
    position: relative;
}

.product-section.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.product-section.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0d6efd;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 2;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Update product card transition */
.product-card {
    transition: all 0.5s ease;
}

/* No results message */
.no-results {
    margin-top: 2rem;
}

.alert-info {
    background-color: rgba(13, 110, 253, 0.1);
    border: none;
    color: #0d6efd;
    padding: 1rem;
    border-radius: 10px;
}

/* Why Us Section Styles */
.why-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Feature Card Styles */
.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #0d6efd, #0dcaf0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-hover {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-hover {
    opacity: 1;
    transform: translateY(0);
}

/* Stats Counter Styles */
.stats-counter {
    background: rgba(13, 110, 253, 0.02);
    padding: 40px;
    border-radius: 20px;
    margin-top: 80px;
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.counter-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 15px;
}

.counter-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.counter-item p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .why-us-section {
        padding: 70px 0;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .stats-counter {
        padding: 30px;
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .why-us-section {
        padding: 50px 0;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .counter-item {
        margin-bottom: 30px;
    }

    .counter-item h3 {
        font-size: 2rem;
    }

    .stats-counter {
        margin-top: 40px;
    }
}

/* Testimonial Section Styles */
.testimonial-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    padding: 30px 0;
    margin-top: 30px;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Swiper Custom Styles */
.testimonialSwiper {
    padding: 30px 10px;
}

.swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #0d6efd;
    width: 20px;
    border-radius: 5px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #0d6efd;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.testimonial-slider:hover .swiper-button-next,
.testimonial-slider:hover .swiper-button-prev {
    opacity: 1;
    transform: scale(1);
}

.swiper-button-next {
    right: -10px;
}

.swiper-button-prev {
    left: -10px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #0d6efd;
    color: #fff;
    transform: scale(1.1);
}

.swiper-button-disabled {
    opacity: 0 !important;
    cursor: not-allowed;
}

/* Responsive Navigation */
@media (max-width: 991.98px) {
    .swiper-button-next {
        right: 0;
    }
    
    .swiper-button-prev {
        left: 0;
    }
}

@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1rem;
    }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .testimonial-section {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 50px 0;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }
}

/* Destinations Section Styles */
.destinations-section {
    padding: 100px 0;
    background: #fff;
}

.destination-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: all 0.5s ease;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
    transition: all 0.5s ease;
}

.destination-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    z-index: 1;
}

.destination-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.destination-content p {
    font-size: 1rem;
    margin: 0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.1s;
}

.destination-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Hover Effects */
.destination-card:hover img {
    transform: scale(1.1);
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
}

.destination-card:hover .destination-content h3,
.destination-card:hover .destination-content p {
    transform: translateY(0);
    opacity: 1;
}

/* Animation on Load */
.destination-card.aos-animate .destination-content h3,
.destination-card.aos-animate .destination-content p {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .destinations-section {
        padding: 70px 0;
    }

    .destination-card {
        height: 250px;
    }

    .destination-content {
        bottom: 20px;
        left: 20px;
    }

    .destination-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .destinations-section {
        padding: 50px 0;
    }

    .destination-card {
        height: 200px;
    }

    .destination-content h3 {
        font-size: 1.3rem;
    }

    .destination-content p {
        font-size: 0.9rem;
    }
}

/* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: -60px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    z-index: 99;
    opacity: 0;
}

.back-to-top.show {
    bottom: 100px;
    opacity: 1;
}

.back-to-top:hover {
    background: #0b5ed7;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        right: 20px;
        font-size: 1rem;
    }

    .back-to-top.show {
        bottom: 20px;
    }
}

/* Guide Popup Styles */
.guide-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.guide-popup.show {
    opacity: 1;
    visibility: visible;
}

.guide-content {
    background: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    padding: 30px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.guide-popup.show .guide-content {
    transform: translateY(0);
}

.guide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.guide-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.guide-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.guide-close:hover {
    color: #333;
    transform: rotate(90deg);
}

.guide-body {
    position: relative;
    min-height: 250px;
}

.guide-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
        text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.guide-step.active {
    opacity: 1;
    visibility: visible;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #0d6efd, #0dcaf0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 2rem;
}

.guide-step h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.guide-step p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.guide-footer {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.guide-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #0d6efd;
    width: 20px;
    border-radius: 5px;
}

.guide-buttons {
    display: flex;
    gap: 15px;
}

.guide-buttons button {
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-buttons button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .guide-content {
        padding: 20px;
    }

    .guide-header h3 {
        font-size: 1.3rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .guide-step h4 {
        font-size: 1.1rem;
    }

    .guide-step p {
        font-size: 0.9rem;
    }
}

/* Guest Dropdown Styles */
.guest-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
    margin-top: 10px;
}

.guest-select-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.guest-select-item span {
    color: #333;
    font-weight: 500;
}

.guest-counter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.counter-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
        justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.counter-btn:hover {
    background: #f8f9fa;
    border-color: #0d6efd;
    color: #0d6efd;
}

.counter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.count {
    font-weight: 600;
    color: #333;
    min-width: 20px;
    text-align: center;
}

/* Update booking tabs styles */
.booking-content {
    display: none;
}

.booking-content.active {
    display: block;
}

.search-input {
    position: relative;
}

.search-input input {
    padding-left: 40px;
}

.search-input i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .guest-dropdown {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        margin: 0;
        border-radius: 20px 20px 0 0;
        padding: 25px;
    }

    .guest-select-item {
        margin-bottom: 20px;
    }
}

/* Add to existing booking styles */
.booking-search-form select.form-control {
    padding-left: 40px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.booking-search-form input[type="number"] {
    padding-left: 40px;
}

.booking-search-form input[type="number"]::-webkit-inner-spin-button,
.booking-search-form input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.booking-search-form input[type="number"] {
    -moz-appearance: textfield;
}

/* Responsive styles */
@media (max-width: 991.98px) {
    .booking-search-form .row {
        row-gap: 1rem;
    }
}

@media (max-width: 768px) {
    .booking-search-form .btn {
        margin-top: 1rem;
    }
}

/* Select2 Custom Styles */
/* .select2-container {
    width: 100% !important;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
        font-size: 1rem;
    transition: all 0.3s ease;
}

.select2-container .select2-selection--single {
    height: 48px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    background-color: #fff;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #dee2e6;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #495057;
    line-height: 46px;
    padding-left: 40px;
    padding-right: 30px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #6c757d;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
    width: 30px;
    right: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #0d6efd transparent transparent transparent;
    border-width: 6px 6px 0 6px;
    margin-left: -6px;
    margin-top: -3px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #0d6efd transparent;
    border-width: 0 6px 6px 6px;
}

.select2-dropdown {
    border: none;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 5px;
    z-index: 9999;
}

.select2-container--default .select2-search--dropdown {
    padding: 10px;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 8px 12px;
    height: 38px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
}

.select2-container--default .select2-results__group {
    padding: 8px 15px;
    font-weight: 600;
    color: #0d6efd;
    background: rgba(13,110,253,.05);
}

.select2-container--default .select2-results__option {
    padding: 10px 15px;
    font-size: 0.95rem;
}

.select2-container--default .select2-results__option .select2-results__option {
    padding-left: 45px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #0d6efd;
    color: #fff;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] i {
    color: #fff;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: rgba(13,110,253,.1);
}

.select2-container--default .select2-results__option[aria-selected=true] i {
    color: #0d6efd;
} */

/* Custom scrollbar for dropdown */
/* .select2-results__options::-webkit-scrollbar {
    width: 8px;
}

.select2-results__options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.select2-results__options::-webkit-scrollbar-thumb {
    background: #0d6efd;
    border-radius: 4px;
}

.select2-results__options::-webkit-scrollbar-thumb:hover {
    background: #0b5ed7;
} */

/* Custom icon for select inputs */
.search-input.has-select2 {
    position: relative;
}

.search-input.has-select2 i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #666;
    pointer-events: none;
}

.search-input.has-select3 {
    position: relative;
}

.search-input.has-select3 i {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #666;
    pointer-events: none;
}

/* Responsive styles */
@media (max-width: 768px) {
    /* .select2-container .select2-selection--single {
        height: 42px;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 40px;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 40px;
    }

    .select2-container--default .select2-results__group {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .select2-container--default .select2-results__option .select2-results__option {
        padding-left: 35px;
    } */
}

/* Property Services Section */
.property-services {
    padding: 50px 0;
    background: #fff;
}

.services-wrapper {
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.service-card {
    display: flex;
        flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #0d6efd;
}

.card-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.card-icon i {
    font-size: 1.5rem;
    color: #0d6efd;
}

.badge-new {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff5722;
    color: #fff;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 500;
}

.service-card h4 {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    color: #333;
}

/* Responsive styles */
@media (max-width: 991.98px) {
    .property-services {
        padding: 30px 0;
    }

    .services-wrapper {
        padding: 20px;
    }

    .service-cards {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .service-title {
        font-size: 1.3rem;
    }

    .service-card {
        padding: 20px 15px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon i {
        font-size: 1.2rem;
    }

    .service-card h4 {
        font-size: 0.9rem;
    }
}

/* Property Listing Section */
.property-listing {
    padding: 50px 0;
    background: #f8f9fa;
}

.section-header .btn-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.property-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.property-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.property-image img {
        width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-actions {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.btn-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.btn-wishlist:hover {
    background: #fff;
    transform: scale(1.1);
}

.btn-wishlist i {
    color: #dc3545;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-wishlist[data-is-wishlisted="false"] i {
    color: #6c757d;
}

.btn-wishlist[data-is-wishlisted="true"] i {
    color: #dc3545;
} 

.property-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,255,255,0.9);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-badge.verified {
    color: #0d6efd;
}

.property-badge.ready {
    color: #198754;
}

.property-badge i {
    font-size: 0.8rem;
}

.favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
        justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.property-content {
    padding: 20px;
}

.property-label {
    color: #0d6efd;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.property-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.property-installment {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
}

.property-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.property-info .developer {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.property-info .location {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
}

.property-specs {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #666;
    flex-wrap: wrap;
    align-items: center;
}

.property-desc {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
    height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.property-meta {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 15px;
}

.property-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.property-buttons .btn {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Responsive styles */
@media (max-width: 991.98px) {
    .property-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .property-card {
        margin-bottom: 20px;
    }

    .property-content {
        padding: 15px;
    }

    .property-price {
        font-size: 1rem;
    }
}

/* Property Slider Styles */
.property-slider {
    padding: 20px 50px;
    margin: -20px -50px;
}

.property-slider .swiper-button-next,
.property-slider .swiper-button-prev {
    color: #0d6efd;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.property-slider .swiper-button-next:after,
.property-slider .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.property-slider .swiper-button-next:hover,
.property-slider .swiper-button-prev:hover {
    background: #0d6efd;
    color: #fff;
}

.property-slider .swiper-button-next.swiper-button-disabled,
.property-slider .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
}

/* Responsive styles */
@media (max-width: 991.98px) {
    .property-slider {
        padding: 20px 40px;
        margin: -20px -40px;
    }
}

@media (max-width: 768px) {
    .property-slider {
        padding: 20px 30px;
        margin: -20px -30px;
    }

    .property-slider .swiper-button-next,
    .property-slider .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .property-slider .swiper-button-next:after,
    .property-slider .swiper-button-prev:after {
        font-size: 1rem;
    }
}