
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 96px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

.floating-whatsapp {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    line-height: 1;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    z-index: 99;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    color: #fff !important;
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

@media (max-width: 575.98px) {
    .back-to-top {
        right: 20px;
        bottom: 86px;
        width: 42px;
        height: 42px;
    }

    .floating-whatsapp {
        right: 20px;
        bottom: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.7rem;
    }
}

/*** Button Start ***/
.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;
}

/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
    height: 38px;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link .nav-icon {
    width: 16px;
    margin-right: 5px;
    text-align: center;
    font-size: 0.82em;
    opacity: 0.9;
}

.navbar-light .navbar-nav .nav-link:hover .nav-icon,
.navbar-light .navbar-nav .nav-link.active .nav-icon {
    opacity: 1;
}

.navbar-light .dropdown-menu .dropdown-item i {
    width: 18px;
    color: var(--bs-primary);
    opacity: 0.85;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding: 18px 12px;
    color: var(--bs-white) !important;
    font-size: 15px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.site-navbar.navbar-scrolled .navbar-nav .nav-link {
    padding: 16px 12px;
    color: var(--bs-dark) !important;
}

.btn-nav-cta {
    padding: 0.45rem 1.1rem !important;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .site-navbar .mobile-menu-btn {
        width: 44px;
        height: 44px;
        padding: 0 !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px !important;
        border: 2px solid #fff !important;
        background: #fff !important;
        color: #13357B !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
    }

    .site-navbar .mobile-menu-btn i,
    .site-navbar .mobile-menu-btn .fas {
        color: #13357B !important;
        font-size: 1.3rem;
        line-height: 1;
    }

    .site-navbar.navbar-scrolled .mobile-menu-btn {
        border-color: #13357B !important;
    }
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.site-navbar.navbar-scrolled .navbar-nav .nav-link:hover,
.site-navbar.navbar-scrolled .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.site-navbar.navbar-scrolled .navbar-nav .nav-link:not(.active):not(.dropdown-toggle):hover {
    color: var(--bs-dark) !important;
}

.site-navbar.navbar-scrolled .navbar-nav .nav-link.dropdown-toggle {
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.site-navbar.navbar-scrolled .navbar-brand h1 {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.site-navbar.navbar-scrolled .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

/*** Site header (sticky on all devices) ***/
.site-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
}

.site-header.is-scrolled {
    box-shadow: 0 2px 16px rgba(19, 53, 123, 0.12);
}

/*** Navbar base ***/
.site-navbar {
    position: relative;
    width: 100%;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-navbar.navbar-scrolled {
    background: #fff !important;
    box-shadow: 0 2px 16px rgba(19, 53, 123, 0.12);
}

.site-navbar.navbar-scrolled .brand-text {
    color: var(--bs-primary) !important;
    text-shadow: none;
}

.site-navbar.navbar-scrolled .navbar-nav .nav-link,
.site-navbar.navbar-scrolled .navbar-nav .nav-link.dropdown-toggle {
    color: var(--bs-dark) !important;
    text-shadow: none;
}

.site-navbar.navbar-scrolled .navbar-nav .nav-link.active,
.site-navbar.navbar-scrolled .navbar-nav .nav-link:hover {
    color: var(--bs-primary) !important;
}

.site-navbar.navbar-scrolled .btn-primary {
    background: var(--bs-primary);
    color: #fff !important;
    border-color: var(--bs-primary);
}

.site-navbar.navbar-scrolled .navbar-toggler {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
    background: #fff;
}

@media (max-width: 991.98px) {
    .site-navbar {
        background: #fff;
    }

    body.page-hero .site-navbar:not(.navbar-scrolled),
    body.page-inner .site-navbar:not(.navbar-scrolled) {
        background: linear-gradient(180deg, rgba(19, 53, 123, 0.98) 0%, rgba(19, 53, 123, 0.94) 100%);
    }

    body.page-hero .site-navbar:not(.navbar-scrolled) .brand-text,
    body.page-inner .site-navbar:not(.navbar-scrolled) .brand-text {
        color: #fff !important;
    }

    .navbar.navbar-expand-lg .navbar-collapse {
        margin-top: 0.75rem;
    }

    .navbar.navbar-expand-lg .navbar-collapse.show,
    .navbar.navbar-expand-lg .navbar-collapse.collapsing {
        background: #fff;
        border-radius: 12px;
        padding: 0.75rem 1rem 1rem;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
        border: 1px solid rgba(19, 53, 123, 0.08);
    }

    .navbar.navbar-expand-lg .navbar-collapse.show .navbar-nav .nav-link,
    .navbar.navbar-expand-lg .navbar-collapse.collapsing .navbar-nav .nav-link {
        color: var(--bs-dark) !important;
        text-shadow: none;
        padding: 0.65rem 0.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        display: flex;
        align-items: center;
    }

    .navbar.navbar-expand-lg .navbar-collapse.show .navbar-nav .nav-link:last-child,
    .navbar.navbar-expand-lg .navbar-collapse.collapsing .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    .navbar.navbar-expand-lg .navbar-collapse.show .navbar-nav .nav-link.active,
    .navbar.navbar-expand-lg .navbar-collapse.collapsing .navbar-nav .nav-link.active,
    .navbar.navbar-expand-lg .navbar-collapse.show .navbar-nav .nav-link:hover,
    .navbar.navbar-expand-lg .navbar-collapse.collapsing .navbar-nav .nav-link:hover {
        color: var(--bs-primary) !important;
    }

    .navbar.navbar-expand-lg .navbar-collapse.show .dropdown-menu,
    .navbar.navbar-expand-lg .navbar-collapse.collapsing .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 0.5rem;
        margin-top: 0;
    }

    .navbar.navbar-expand-lg .navbar-collapse.show .btn-nav-cta,
    .navbar.navbar-expand-lg .navbar-collapse.collapsing .btn-nav-cta {
        display: flex;
        width: 100%;
        justify-content: center;
        margin: 0.75rem 0 0;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--bs-primary);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 12px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
        font-size: 1.35rem;
        line-height: 1;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 8px;
    }

    .navbar.navbar-expand-lg .navbar-toggler .fa,
    .navbar.navbar-expand-lg .navbar-toggler .fas {
        color: inherit;
        display: block;
    }

    /* Clear menu icon on dark headers */
    body.page-hero .site-navbar:not(.navbar-scrolled) .navbar-toggler,
    body.page-inner .site-navbar:not(.navbar-scrolled) .navbar-toggler {
        border: 2px solid #fff;
        background: #fff !important;
        color: var(--bs-primary) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    }

    body.page-hero .site-navbar:not(.navbar-scrolled) .navbar-toggler .fas,
    body.page-inner .site-navbar:not(.navbar-scrolled) .navbar-toggler .fas {
        color: var(--bs-primary) !important;
    }

    body.page-hero .site-navbar:not(.navbar-scrolled) .navbar-toggler:hover,
    body.page-hero .site-navbar:not(.navbar-scrolled) .navbar-toggler:focus,
    body.page-inner .site-navbar:not(.navbar-scrolled) .navbar-toggler:hover,
    body.page-inner .site-navbar:not(.navbar-scrolled) .navbar-toggler:focus {
        background: #fff !important;
        color: var(--bs-primary) !important;
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.35);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .site-navbar:not(.navbar-scrolled) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-navbar.navbar-scrolled .navbar-nav .nav-link::after {
        background: var(--bs-primary);
    }

    .navbar-light .navbar-nav .nav-link::before {
        display: none !important;
    }

    .navbar-light .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        left: 15px;
        right: 15px;
        bottom: 18px;
        height: 2px;
        background: #fff;
        transform: scaleX(0);
        transition: transform 0.3s ease;
        z-index: 1;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        transform: scaleX(1);
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;

}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: auto;
        min-height: 75vh;
        margin-top: 0;
    }

    .carousel-header {
        height: auto !important;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/breadcrumb-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 110px 0 40px 0;
}

.bg-breadcrumb-about {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/about-us-header.jpg);
}

.bg-breadcrumb-sale {
    background: linear-gradient(rgba(19, 53, 123, 0.55), rgba(19, 53, 123, 0.55)), url(../img/property-sale.png);
}

.bg-breadcrumb-rental {
    background: linear-gradient(rgba(19, 53, 123, 0.55), rgba(19, 53, 123, 0.55)), url(../img/property-rentals.jpg);
}

.bg-breadcrumb-management {
    background: linear-gradient(rgba(19, 53, 123, 0.55), rgba(19, 53, 123, 0.55)), url(../img/property-maintenance1.jpg);
}

.bg-breadcrumb-cleaning {
    background: linear-gradient(rgba(19, 53, 123, 0.55), rgba(19, 53, 123, 0.55)), url(../img/cleaning-fumigation.jpg);
}

.bg-breadcrumb-investment {
    background: linear-gradient(rgba(19, 53, 123, 0.55), rgba(19, 53, 123, 0.55)), url(../img/investment-consultancy.jpg);
}

.bg-breadcrumb-land {
    background: linear-gradient(rgba(19, 53, 123, 0.55), rgba(19, 53, 123, 0.55)), url(../img/land-acquisition-leasing.jpg);
}

.bg-breadcrumb-development {
    background: linear-gradient(rgba(19, 53, 123, 0.55), rgba(19, 53, 123, 0.55)), url(../img/development.jpg);
}

.bg-breadcrumb-govt {
    background: linear-gradient(rgba(19, 53, 123, 0.55), rgba(19, 53, 123, 0.55)), url(../img/government-project.jpg);
}

.bg-breadcrumb-furnishings {
    background: linear-gradient(rgba(19, 53, 123, 0.55), rgba(19, 53, 123, 0.55)), url(../img/property-furnishings.jpg);
}

.bg-breadcrumb-maintenance {
    background: linear-gradient(rgba(19, 53, 123, 0.55), rgba(19, 53, 123, 0.55)), url(../img/property-maintenance.jpg);
}

.bg-breadcrumb-airbnb {
    background: linear-gradient(rgba(19, 53, 123, 0.55), rgba(19, 53, 123, 0.55)), url(../img/4-5-bedroom-semi-furnished.jpg);
}

.bg-breadcrumb-hostel {
    background: linear-gradient(rgba(19, 53, 123, 0.55), rgba(19, 53, 123, 0.55)), url(../img/HOSTEL.jpg);
}

.bg-breadcrumb-contact {
    background: linear-gradient(rgba(19, 53, 123, 0.55), rgba(19, 53, 123, 0.55)), url(../img/about-us-header.jpg);
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}
/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}
/*** About End ***/


/*** Services Start ***/
.service .service-content-inner {
    transition: 0.5s;
}
.service .service-content-inner:hover {
    position: relative;
    background: var(--bs-primary) !important;
}

.service .service-content-inner .service-content h5,
.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
    transition: 0.5s;
}

.service .service-content-inner:hover .service-content h5,
.service .service-content-inner:hover .service-content p,
.service .service-content-inner:hover .service-icon i {
    color: var(--bs-white) !important;
}
/*** Service End ***/


/*** Destination Start ***/
.destination .tab-class .tab-content .tab-pane .destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.destination .tab-class .tab-content .tab-pane .destination-img .destination-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: 3;
    transition: 0.5s;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    padding: 20px 20px 0 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.5s;

}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon a i {
    opacity: 0;
    transition: 0.5s;
}

.destination .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.destination .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.destination .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon {
    background: rgba(19, 53, 123, 0.4);
}

.destination .tab-class .tab-content .destination-img:hover .destination-overlay {
    bottom: 0;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon a i {
    opacity: 1;
}

.destination .tab-class .tab-content .destination-img img {
    transition: 0.5s;
}

.destination .tab-class .tab-content .destination-img:hover img {
    transform: scale(1.2);
}
/*** Destination End ***/


/*** Packages Start ***/
.packages .packages-item .packages-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    z-index: 1;
}

.packages .packages-item .packages-img .packages-info {
    background: rgba(0, 0, 0, .3);
}

.packages .packages-item .packages-img .packages-info small,
.packages .packages-item .packages-img .packages-info small i {
    color: var(--bs-white);
    transition: 0.5s;
}

.packages .packages-item .packages-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0px solid;
    border-radius: 10px !important;
    visibility: hidden;
    transition: 0.7s;
    z-index: 3;
}

.packages .packages-item .packages-img:hover.packages-img::after {
    width: 100%;
    height: 100%;
    border: 300px solid;
    border-color: rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6);
    visibility: visible;
}

.packages .packages-item .packages-img small,
.packages .packages-item .packages-img small i {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover small,
.packages .packages-item .packages-img:hover small i {
    color: var(--bs-white) !important;

}

.packages .packages-item .packages-img img {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover img {
    transform: scale(1.3);
}

.packages .packages-item .packages-img .packages-price {
    position: absolute;
    width: 100px; 
    top: 0; 
    left: 50%; 
    transform: translateX(-50%);
    display: inline-block;
    background: var(--bs-primary);
    color: var(--bs-white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px; 
    z-index: 5;
}

.packages .packages-carousel {
    position: relative;
}

.packages .packages-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -50px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-next {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}
/*** Packages End ***/


/*** Explore Tour Start ***/
.ExploreTour .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.ExploreTour .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.ExploreTour .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}


/* National Tour Start */
.ExploreTour #NationalTab-1 .national-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #NationalTab-1 .national-item img {
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #NationalTab-1 .national-item .national-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #NationalTab-1 .national-item .national-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-plus-icon {
    opacity: 1;
}

.ExploreTour #NationalTab-1 .national-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 40px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

/* International Tour Start */
.ExploreTour #InternationalTab-2 .international-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .international-item img {
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #InternationalTab-2 .international-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 30px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

.ExploreTour #InternationalTab-2 .international-item .international-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .3);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #InternationalTab-2 .international-item .international-content .international-info a {
    font-size: 14px;
}

.ExploreTour #InternationalTab-2 .international-item .international-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-plus-icon {
    opacity: 1;
}

/* carousel Start */
.ExploreTour #InternationalTab-2 .InternationalTour-carousel .international-item {
    position: relative;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}
/*** Explore Tour End ***/


/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-item img {
    min-height: 300px;
    object-fit: cover;
}

.gallery .gallery-item .gallery-content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-content .gallery-info {
    position: relative;
    margin-bottom: -100%;
    opacity: 0;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.gallery .gallery-item:hover .gallery-content .gallery-info,
.gallery .gallery-item:hover .gallery-plus-icon {
   opacity: 1;
   margin: 0;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item:hover .gallery-content {
    background: rgba(19, 53, 123, 0.8);
}

.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

/*** Gallery End ***/

/*** Tour Booking Start ***/
.booking {
    background: linear-gradient(rgba(19, 53, 123, .8), rgba(19, 53, 123, .8)), url(../img/tour-booking-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
}


.booking .container .section-booking-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.booking .container .section-booking-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.booking .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.booking .container form .btn.btn-primary:hover {
    box-shadow: inset 800px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}



/*** Tour Booking end ***/

/*** Travel Guide Start ***/
.guide .guide-item .guide-img {
    position: relative;
}

.guide .guide-item .guide-img .guide-icon {
    position: absolute;
    bottom: 0; 
    left: 50%; 
    transform: translate(-50%, -50%);
    margin-bottom: -50px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
    z-index: 9;
}

.guide .guide-item .guide-img .guide-img-efects {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.guide .guide-item .guide-img .guide-img-efects::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects::after {
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: rgba(19, 53, 123, .5);
}

.guide .guide-item .guide-img-efects img {
    transition: 0.5s;
}
.guide .guide-item:hover .guide-img-efects img {
    transform: scale(1.1);
}

.guide .guide-item .guide-title {
    position: relative;
    background: var(--bs-light);
    transition: 0.5s;
}

.guide .guide-item .guide-title::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title::after {
    height: 100%;
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

.guide .guide-item .guide-title .guide-title-inner,
.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title .guide-title-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 2;
}

.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    color: var(--bs-white);
}
/*** Travel Guide End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgba(255, 255, 255, .2);
    color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
    opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(19, 53, 123, .6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}
/*** Blog End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
    position: relative;
    width: 100px; 
    height: 100px; 
    top: 0; left: 50%; 
    transform: translate(-50%, -50%);
    border: 3px solid var(--bs-primary); 
    border-style: dotted;
    border-radius: 50%;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -55px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -55px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-img {
    border: 3px solid var(--bs-white); 
    border-style: dotted;
    transition: 0.5s;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
    background: linear-gradient(rgba(19, 53, 123, .6), rgba(19, 53, 123, .6)), url(../img/subscribe-img.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Subscribe End ***/

/*** Footer Start ***/
.footer {
    background: linear-gradient(180deg, #0c2558 0%, var(--bs-dark) 100%);
    border-top: 4px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    align-items: flex-start;
}

.footer-brand {
    padding-right: 1rem;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 52px;
    width: auto;
    background: #fff;
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.footer-logo-link span {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
    max-width: 340px;
}

.footer-heading {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-heading > i {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.footer-contact-list,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.footer-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.85rem;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    line-height: 1.55;
    font-size: 0.92rem;
    transition: color 0.25s ease;
    padding-top: 0.35rem;
}

.footer-contact-list a:hover {
    color: #fff;
}

.footer-links li {
    margin-bottom: 0.55rem;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.93rem;
    line-height: 1.5;
    padding: 0.35rem 0;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a i {
    width: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-links a:hover i {
    color: #fff;
}

.footer-social {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-label {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff !important;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.footer-social-links a:hover {
    background: #fff;
    color: var(--bs-primary) !important;
    border-color: #fff;
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #081a3d !important;
}

.copyright-text,
.copyright-link {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    text-decoration: none;
}

.copyright-text a,
.copyright-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.25s ease;
}

.copyright-text a:hover,
.copyright-link:hover {
    color: #fff;
}

.copyright-divider {
    color: rgba(255, 255, 255, 0.25);
    margin: 0 0.65rem;
}

@media (max-width: 991.98px) {
    .footer-brand {
        text-align: left;
        padding-right: 0;
    }

    .footer-logo-link {
        justify-content: flex-start;
    }

    .footer-tagline {
        max-width: none;
        margin: 0;
    }

    .footer-heading {
        margin-top: 0;
    }
}

@media (max-width: 575.98px) {
    .copyright-divider {
        display: none;
    }

    .copyright-link {
        display: inline-block;
        margin: 0 0.5rem;
    }
}

/*** Footer End ***/

/*** Leonards Homes Theme ***/
.bg-light {
    background-color: #FFFFFF !important;
}

/*** Inner pages navbar (solid bar + dark links on desktop) ***/
@media (min-width: 992px) {
    body.page-inner .site-navbar:not(.navbar-scrolled) {
        background: #fff !important;
        box-shadow: 0 2px 16px rgba(19, 53, 123, 0.12);
        border-bottom-color: rgba(19, 53, 123, 0.08);
    }

    body.page-inner .site-navbar:not(.navbar-scrolled) .navbar-brand .brand-text,
    body.page-inner .site-navbar:not(.navbar-scrolled) .navbar-brand .text-primary {
        color: var(--bs-primary) !important;
        text-shadow: none;
    }

    body.page-inner .site-navbar:not(.navbar-scrolled) .navbar-nav .nav-link,
    body.page-inner .site-navbar:not(.navbar-scrolled) .navbar-nav .nav-link.dropdown-toggle {
        color: var(--bs-dark) !important;
        text-shadow: none;
    }

    body.page-inner .site-navbar:not(.navbar-scrolled) .navbar-nav .nav-link:hover,
    body.page-inner .site-navbar:not(.navbar-scrolled) .navbar-nav .nav-link.active,
    body.page-inner .site-navbar:not(.navbar-scrolled) .navbar-nav .nav-link.active.dropdown-toggle {
        color: var(--bs-primary) !important;
    }

    body.page-inner .site-navbar:not(.navbar-scrolled) .navbar-nav .nav-link::after {
        background: var(--bs-primary);
    }

    body.page-inner .site-navbar:not(.navbar-scrolled) .btn-primary {
        background: var(--bs-primary);
        color: #fff !important;
        border-color: var(--bs-primary);
    }

    body.page-inner .site-navbar:not(.navbar-scrolled) .btn-primary:hover {
        background: #fff;
        color: var(--bs-primary) !important;
        border-color: var(--bs-primary);
    }
}

.navbar-brand .brand-text {
    color: var(--bs-primary);
    font-size: 1.35rem;
    letter-spacing: 0.5px;
}

.service-card-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.property-card-img {
    height: 250px;
    object-fit: cover;
}

.team-card {
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(19, 53, 123, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(19, 53, 123, 0.15);
}

/* Disable template hover overlay on team card images and text */
.guide .team-card .guide-img-efects::after {
    display: none !important;
}

.guide .team-card:hover .guide-img-efects::after {
    height: 0 !important;
    background: transparent !important;
}

.guide .team-card:hover .guide-img-efects img {
    transform: none;
}

.guide .team-card:hover .guide-title::after {
    height: 0 !important;
    background: transparent !important;
}

.guide .team-card .guide-title {
    position: relative;
    z-index: 1;
}

.guide .team-card .guide-title h4,
.guide .team-card .guide-title p,
.guide .team-card .guide-title .team-bio-excerpt {
    position: relative;
    z-index: 2;
}

.guide .team-card:hover .guide-title h4 {
    color: #1a1a2e !important;
}

.guide .team-card:hover .guide-title .text-primary {
    color: var(--bs-primary) !important;
}

.guide .team-card:hover .guide-title .team-bio-excerpt {
    color: #555 !important;
}

.guide .team-card:hover .guide-title {
    background: #fff !important;
}

.team-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.team-card-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
}

.team-bio-excerpt {
    color: #555;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

.team-read-more {
    margin-top: auto;
    align-self: center;
}

.team-modal-content {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(19, 53, 123, 0.25);
}

.team-modal-header {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #0A4DA3 100%);
    padding: 1.5rem;
}

.team-modal-photo {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.team-modal-body {
    padding: 1.75rem;
    max-height: 60vh;
    overflow-y: auto;
}

.team-modal-body p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.team-modal-body p:last-child {
    margin-bottom: 0;
}

.team-modal-footer {
    background: #f0f4fa;
    padding: 1rem 1.5rem;
}

/*** Hero Header Redesign ***/
body.page-hero .site-navbar:not(.navbar-scrolled) {
    background: linear-gradient(180deg, rgba(19, 53, 123, 0.97) 0%, rgba(19, 53, 123, 0.88) 100%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

body.page-hero .site-navbar:not(.navbar-scrolled) .navbar-toggler,
body.page-inner .site-navbar:not(.navbar-scrolled) .navbar-toggler {
    border: 2px solid #fff;
    background: #fff !important;
    color: var(--bs-primary) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

body.page-hero .site-navbar:not(.navbar-scrolled) .navbar-toggler .fas,
body.page-inner .site-navbar:not(.navbar-scrolled) .navbar-toggler .fas {
    color: var(--bs-primary) !important;
}

body.page-hero .site-navbar:not(.navbar-scrolled) .navbar-toggler:hover,
body.page-hero .site-navbar:not(.navbar-scrolled) .navbar-toggler:focus,
body.page-inner .site-navbar:not(.navbar-scrolled) .navbar-toggler:hover,
body.page-inner .site-navbar:not(.navbar-scrolled) .navbar-toggler:focus {
    background: #fff !important;
    color: var(--bs-primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.35);
}

body.page-hero .brand-text {
    color: #fff !important;
    font-size: 1.15rem;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

body.page-hero .site-navbar:not(.navbar-scrolled) .navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    font-size: 14.5px;
    padding: 14px 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

body.page-hero .site-navbar.navbar-scrolled .brand-text {
    color: var(--bs-primary) !important;
    text-shadow: none;
}

body.page-hero .site-navbar.navbar-scrolled .navbar-nav .nav-link,
body.page-hero .site-navbar.navbar-scrolled .navbar-nav .nav-link.dropdown-toggle {
    color: var(--bs-dark) !important;
    text-shadow: none;
}

body.page-hero .site-navbar.navbar-scrolled .navbar-nav .nav-link.active,
body.page-hero .site-navbar.navbar-scrolled .navbar-nav .nav-link.active:hover {
    color: var(--bs-primary) !important;
    font-weight: 600;
}

body.page-hero .site-navbar.navbar-scrolled .navbar-nav .nav-link:not(.active):hover {
    color: var(--bs-primary) !important;
}

body.page-hero .site-navbar:not(.navbar-scrolled) .btn-primary {
    background: #fff;
    color: var(--bs-primary) !important;
    border: 2px solid #fff;
    font-weight: 600;
}

body.page-hero .site-navbar:not(.navbar-scrolled) .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--bs-primary) !important;
    box-shadow: none !important;
}

body.page-hero .site-navbar.navbar-scrolled .btn-primary {
    background: var(--bs-primary);
    color: #fff !important;
    border-color: var(--bs-primary);
}

body.page-hero .site-navbar.navbar-scrolled .btn-primary:hover {
    background: #fff;
    color: var(--bs-primary) !important;
}

.carousel-header .carousel-inner .carousel-item {
    min-height: 72vh;
}

.carousel-header .carousel-inner .carousel-item img {
    filter: brightness(0.55) saturate(0.9);
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
    background: linear-gradient(180deg, rgba(10, 28, 66, 0.35) 0%, rgba(10, 28, 66, 0.65) 100%);
    padding: 80px 20px 100px;
}

.hero-content-panel {
    max-width: 780px;
    margin: 0 auto;
    padding: 1.75rem 2rem;
    background: rgba(19, 53, 123, 0.72);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
}

.hero-content {
    margin: 0 auto;
    animation: heroFadeUp 0.8s ease both;
}

.hero-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    margin-bottom: 0.85rem;
    border-radius: 50px;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-title {
    color: #fff;
    font-size: clamp(1.65rem, 3.2vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.85rem;
    text-shadow: none;
}

.hero-lead {
    color: #fff;
    font-size: clamp(0.92rem, 1.6vw, 1.05rem);
    line-height: 1.65;
    margin-bottom: 1.35rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.92;
    font-weight: 400;
}

.btn-hero-primary {
    background: #fff;
    color: var(--bs-primary) !important;
    font-weight: 600;
    font-size: 0.92rem;
    min-width: 160px;
    border: 2px solid #fff;
}

.btn-hero-primary:hover {
    background: #e8eef8;
    color: var(--bs-primary) !important;
    border-color: #e8eef8;
}

.btn-hero-secondary {
    background: transparent;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.92rem;
    min-width: 160px;
    border: 2px solid rgba(255, 255, 255, 0.75);
}

.btn-hero-secondary:hover {
    background: #fff;
    color: var(--bs-primary) !important;
    border-color: #fff;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.hero-actions .btn {
    margin-bottom: 0 !important;
    margin-right: 0 !important;
    font-weight: 600;
}

.hero-actions .btn-outline-light {
    font-weight: 600;
    border-width: 2px;
}

.hero-actions .btn-outline-light:hover {
    background: #fff;
    color: var(--bs-primary);
}

.hero-indicators {
    opacity: 1 !important;
    margin-bottom: 4.5rem;
    z-index: 5;
}

.hero-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.hero-indicators .active {
    background: #fff;
    transform: scale(1.15);
}

.hero-control {
    width: 8%;
    opacity: 1;
    z-index: 4;
}

.hero-control-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 0.9rem;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.hero-control:hover .hero-control-icon {
    background: #fff;
    color: var(--bs-primary);
}

.hero-search-wrap {
    position: relative;
    margin-top: -44px;
    z-index: 6;
    padding-bottom: 1.5rem;
}

.hero-search-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    background: var(--bs-primary);
    border-radius: 14px;
    padding: 0.85rem 1.15rem;
    box-shadow: 0 12px 32px rgba(19, 53, 123, 0.28);
}

.hero-search-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
    margin-right: 0.25rem;
}

.hero-search-label i {
    opacity: 0.9;
    font-size: 0.95rem;
}

.hero-search-form .form-select,
.hero-search-form .form-control,
.hero-search-form .btn {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
    font-size: 0.92rem;
}

.hero-search-card .form-select,
.hero-search-card .form-control {
    color: #333;
    font-weight: 500;
}

.hero-search-card .form-select option,
.hero-search-card .form-control::placeholder {
    color: #555;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .carousel-header .carousel-inner .carousel-item {
        min-height: 68vh;
    }

    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        padding: 70px 12px 90px;
    }

    .hero-content-panel {
        padding: 1.35rem 1rem;
        border-radius: 14px;
    }

    .hero-search-wrap {
        margin-top: -28px;
        padding: 0 12px 1.25rem;
    }

    .hero-search-card {
        border-radius: 12px;
        padding: 0.85rem;
    }

    .hero-search-label {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.15rem;
    }

    .hero-control {
        display: none;
    }

    .hero-indicators {
        margin-bottom: 3.5rem;
    }

    .hero-actions .btn {
        width: 100%;
        margin-right: 0 !important;
    }
}

/*** Homepage Sections ***/
.section-label {
    display: inline-block;
    color: var(--bs-primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-heading {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.25;
}

.section-subtext {
    color: #666;
    max-width: 560px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-text {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.home-about {
    background: #fff;
}

.about-image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(19, 53, 123, 0.15);
}

.about-image-frame::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    border: 3px solid var(--bs-primary);
    border-radius: 16px;
    z-index: -1;
}

.about-image-frame img {
    border-radius: 16px;
    display: block;
    min-height: 320px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--bs-primary);
    color: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.about-badge-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.feature-chip {
    background: #f0f4fa;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

.home-services {
    background: #f0f4fa;
}

.service-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(19, 53, 123, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(19, 53, 123, 0.18);
    color: inherit;
}

.service-card-img-wrap {
    height: 180px;
    overflow: hidden;
}

.service-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-img-wrap img {
    transform: scale(1.06);
}

.service-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.service-card-body h5 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.service-card-link {
    font-size: 0.875rem;
    color: var(--bs-primary);
    font-weight: 600;
}

.home-properties {
    background: #fff;
}

.property-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(19, 53, 123, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(19, 53, 123, 0.16);
}

.property-card-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.property-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.property-card:hover .property-card-img img {
    transform: scale(1.04);
}

.property-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--bs-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
}

.property-price {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: #fff;
    color: var(--bs-primary);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.property-card-body {
    padding: 1.5rem;
}

.property-card-body h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.property-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1rem;
}

.property-meta span {
    font-size: 0.875rem;
    color: #666;
}

.property-meta i {
    color: var(--bs-primary);
    margin-right: 4px;
}

.property-card-body p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.home-cta {
    padding: 0 0 5rem;
    background: #fff;
}

.home-cta-inner {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #0A4DA3 100%);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    color: #fff;
    box-shadow: 0 20px 50px rgba(19, 53, 123, 0.25);
}

.home-cta-inner h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff !important;
}

.home-cta-inner p {
    opacity: 0.92;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #fff !important;
}

.home-cta-inner .btn-outline-light:hover {
    background: #fff;
    color: var(--bs-primary) !important;
}

@media (max-width: 767.98px) {
    .about-badge {
        bottom: 16px;
        right: 16px;
        padding: 12px 16px;
    }

    .home-cta-inner {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .home-cta-inner .btn {
        width: 100%;
        margin-right: 0 !important;
    }
}

/*** Property For Sale Page ***/
.sale-intro {
    background: #fff;
}

.sale-stat-card {
    background: #f4f7fc;
    border: 1px solid rgba(19, 53, 123, 0.12);
    border-radius: 14px;
    padding: 1.25rem 0.75rem;
}

.sale-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bs-primary);
    line-height: 1.2;
}

.sale-stat-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sale-search-panel {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #0A4DA3 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 16px 40px rgba(19, 53, 123, 0.2);
}

.sale-search-input {
    border: none;
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
}

.sale-no-results {
    text-align: center;
    padding: 3rem 1.5rem;
    background: #f8f9fc;
    border-radius: 16px;
    border: 1px dashed rgba(19, 53, 123, 0.2);
}

.property-card-rating {
    flex-shrink: 0;
    background: #fff8e6;
    color: #b8860b;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
}

.property-card-rating i {
    color: #f5a623;
}

.sale-forms-section {
    background: #f4f7fc;
}

.sale-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(19, 53, 123, 0.08);
    border: 1px solid rgba(19, 53, 123, 0.06);
}

.sale-form-input {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
}

.sale-form-input:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(19, 53, 123, 0.12);
}

.sale-form-success {
    text-align: center;
    padding: 2rem 1rem;
}

.sale-rating-summary {
    background: #f8f9fc;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    text-align: center;
}

.sale-rating-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bs-primary);
    line-height: 1;
}

.star-display i,
.review-card-stars i {
    color: #f5a623;
    font-size: 0.95rem;
    margin-right: 2px;
}

.star-rating-input {
    display: flex;
    gap: 6px;
}

.star-rating-input .star-btn {
    background: none;
    border: none;
    padding: 4px;
    font-size: 1.75rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
    line-height: 1;
}

.star-rating-input .star-btn:hover,
.star-rating-input .star-btn.active {
    color: #f5a623;
    transform: scale(1.1);
}

.star-rating-input.shake {
    animation: starShake 0.4s ease;
}

@keyframes starShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 6px 24px rgba(19, 53, 123, 0.08);
    border: 1px solid rgba(19, 53, 123, 0.06);
    display: flex;
    flex-direction: column;
}

.review-card-text {
    color: #555;
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.review-card-footer {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.review-card-footer strong {
    color: #1a1a2e;
}

.sale-tenant-banner {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #0A4DA3 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 12px 36px rgba(19, 53, 123, 0.2);
}

/*** Property Rental Page ***/
.rental-hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(19, 53, 123, 0.15);
    border: 4px solid rgba(19, 53, 123, 0.08);
}

.rental-hero-image img {
    display: block;
    min-height: 320px;
    object-fit: cover;
}

.rental-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rental-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #f4f7fc;
    border-radius: 12px;
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.2s ease;
    border: 1px solid rgba(19, 53, 123, 0.08);
}

.rental-contact-item:hover {
    background: #fff;
    transform: translateX(4px);
    color: var(--bs-primary);
    box-shadow: 0 4px 16px rgba(19, 53, 123, 0.1);
}

.rental-contact-icon {
    width: 42px;
    height: 42px;
    background: var(--bs-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rental-features {
    background: #f4f7fc;
}

.rental-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 6px 24px rgba(19, 53, 123, 0.07);
    border: 1px solid rgba(19, 53, 123, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rental-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(19, 53, 123, 0.12);
}

.rental-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--bs-primary), #0A4DA3);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.rental-feature-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.rental-feature-card p {
    color: #666;
    line-height: 1.65;
    font-size: 0.92rem;
}

.property-tag-rent {
    background: #0A4DA3;
}

/*** Property Management & Service Pages ***/
.mgmt-services {
    background: #f4f7fc;
}

.mgmt-service-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(19, 53, 123, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    height: 100%;
}

.mgmt-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(19, 53, 123, 0.16);
}

.mgmt-service-card-img {
    height: 200px;
    overflow: hidden;
}

.mgmt-service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mgmt-service-card:hover .mgmt-service-card-img img {
    transform: scale(1.05);
}

.mgmt-service-card-body {
    padding: 1.25rem 1.5rem;
}

.mgmt-service-card-body h5,
.mgmt-service-card-body h6 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.mgmt-related {
    background: #fff;
}

.service-detail-section {
    background: #f4f7fc;
}

.service-detail-block {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 6px 24px rgba(19, 53, 123, 0.07);
    border: 1px solid rgba(19, 53, 123, 0.06);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.service-detail-header i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--bs-primary), #0A4DA3);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-detail-header h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.service-detail-block > p {
    color: #666;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.service-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-detail-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    background: var(--bs-primary);
    border-radius: 50%;
}

.service-why-choose {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(19, 53, 123, 0.07);
}

.service-why-choose .sale-stat-number {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.mgmt-subsection {
    scroll-margin-top: 100px;
    background: #fff;
}

.mgmt-subsection-title {
    font-weight: 700;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: #1a1a2e;
    margin-bottom: 0;
}

.mgmt-subsection-alt {
    background: #f4f7fc;
}

.dev-section-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 1rem;
}

.dev-nav-pill {
    display: inline-flex;
    align-items: center;
    padding: 12px 22px;
    background: #f4f7fc;
    border: 1px solid rgba(19, 53, 123, 0.12);
    border-radius: 50px;
    color: var(--bs-primary);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.dev-nav-pill:hover {
    background: var(--bs-primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(19, 53, 123, 0.2);
}

/*** Investment & Consultancy Page ***/
.invest-service-item {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 6px 24px rgba(19, 53, 123, 0.07);
    border: 1px solid rgba(19, 53, 123, 0.06);
    position: relative;
}

.invest-service-num {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(19, 53, 123, 0.12);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.invest-service-item h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.invest-service-item p {
    color: #666;
    line-height: 1.65;
    font-size: 0.92rem;
}

.invest-why-choose {
    background: #fff;
}

.invest-why-card {
    padding: 0.5rem;
}

.invest-why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--bs-primary), #0A4DA3);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.invest-why-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

/*** Cleaning & Fumigation Page ***/
.clean-fumigation-banner {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #0A4DA3 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 16px 48px rgba(19, 53, 123, 0.2);
}

.clean-fumigation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clean-fumigation-list li {
    color: #fff;
    opacity: 0.92;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.clean-fumigation-list li i {
    color: #7dd3fc;
    margin-top: 4px;
    flex-shrink: 0;
}

.clean-fumigation-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
}

/*** Airbnb Page ***/
.airbnb-accordion .accordion-item {
    border: 1px solid rgba(19, 53, 123, 0.1);
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgba(19, 53, 123, 0.06);
}

.airbnb-accordion .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a2e;
    background: #fff;
    padding: 1.25rem 1.5rem;
    box-shadow: none;
}

.airbnb-accordion .accordion-button:not(.collapsed) {
    background: var(--bs-primary);
    color: #fff;
    box-shadow: none;
}

.airbnb-accordion .accordion-button:not(.collapsed) i {
    color: #fff;
}

.airbnb-accordion .accordion-button i {
    color: var(--bs-primary);
    width: 20px;
    text-align: center;
}

.airbnb-accordion .accordion-button::after {
    filter: none;
}

.airbnb-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.airbnb-accordion .accordion-body {
    padding: 1.5rem;
    color: #555;
    line-height: 1.75;
    background: #fff;
}

/*** Hostel Page ***/
.hostel-contact-card {
    background: #fff;
    border: 1px solid rgba(19, 53, 123, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(19, 53, 123, 0.06);
}

.hostel-contact-card a {
    color: inherit;
    text-decoration: none;
}

.hostel-contact-card a:hover {
    color: var(--bs-primary);
}

.hostel-list-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.hostel-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hostel-feature-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.6;
}

.hostel-feature-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--bs-primary);
    font-size: 0.75rem;
    top: 0.35rem;
}

.hostel-price-card {
    background: #fff;
    border: 2px solid rgba(19, 53, 123, 0.12);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
}

.hostel-price-card:hover {
    border-color: var(--bs-primary);
    box-shadow: 0 12px 32px rgba(19, 53, 123, 0.1);
    transform: translateY(-4px);
}

.hostel-price-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bs-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.hostel-price-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.hostel-price-note {
    display: block;
    font-size: 0.85rem;
    color: #888;
}

.hostel-gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 4px 16px rgba(19, 53, 123, 0.08);
}

.hostel-gallery a:hover .hostel-gallery-img {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(19, 53, 123, 0.15);
}

.hostel-form-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(19, 53, 123, 0.1);
}

/*** Contact Page ***/
.contact-info-card {
    background: #fff;
    border: 1px solid rgba(19, 53, 123, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(19, 53, 123, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(19, 53, 123, 0.1);
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--bs-primary), #0A4DA3);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.contact-info-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.contact-info-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-info-card a {
    color: #555;
    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--bs-primary);
}

.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.contact-social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.contact-social-links a:hover {
    background: #0A4DA3;
    color: #fff;
    transform: translateY(-2px);
}

.contact-locate-card {
    background: #fff;
    border: 1px solid rgba(19, 53, 123, 0.1);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 12px 40px rgba(19, 53, 123, 0.08);
}

.contact-map-section {
    background: #f8f9fc;
}

.contact-map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(19, 53, 123, 0.12);
    border: 4px solid #fff;
}

.contact-map-iframe {
    display: block;
    width: 100%;
    height: 480px;
    border: 0;
}