:root {
    --theme-primary-bg-light: hsl(var(--theme-primary-color-h), var(--theme-primary-color-s), var(--theme-primary-color-l), 0.1)
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

img {
    image-rendering: -webkit-optimize-contrast;
}

/* Top Header */
.top-header {
    padding: 10px 0;
    background-color: var(--theme-primary-color);
    color: #ffffff;
}

.top-header ul {
    list-style: none;
    display: flex;
    justify-content: end;
    margin: 0;
    padding: 0;
}

.top-header li {
    padding: 0 5px;
}

.top-header a {
    color: #ffffff;
}

/* Bottom Header */
.bottom-header {
    padding: 10px 0;
	display: flex;
	justify-content: end;
}

.bottom-header .menu-list {
    list-style: none;
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: bold;
}

.bottom-header li {
    padding: 10px 20px;
}

.bottom-header a {
    color: #222222;
}

.bottom-header a:hover {
    color: var(--theme-secondary-color);
    text-decoration: none;
}

.bottom-header .logo {
    background: #fff;
    padding: 5px 30px;
    position: absolute;
    top: -38px;
    left: 37px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-header .logo img {
    width: auto;
    height: auto;
    max-width: 200px;
    max-height: 80px;
}

.bottom-header .dropdown:hover .dropdown-menu {
    display: block;
}

.bottom-header .dropdown-menu {
    position: absolute !important;
    top: 90% !important;
    transform: none !important;
    z-index: 1100;
    border: 1px solid var(--theme-primary-color);
    border-radius: 5px;
}

.bottom-header .dropdown-menu>li {
    padding: 5px 10px;
    margin: 0;
    transition: all 0.3s;
}

.bottom-header .dropdown-menu>li:hover {
    transform: translateX(10px);
}

.bottom-header .dropdown-menu>li>a {
    font-size: 14px;
    text-transform: capitalize;
}

.bottom-header .dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
    color: var(--theme-primary-color);
    text-decoration: underline;
}

#agent-login-btn {
    background-color: var(--theme-primary-color);
    border-color: var(--theme-primary-color);
}

/* Title Section */
.section-title span {
    color: var(--theme-primary-color);
    font-weight: bold;
}

/* Slider Section */
.slider-section {
    padding: 50px 0;
    background: url(../images/default/slider-bg.png) no-repeat right bottom;
}

.slider-title span {
    color: var(--theme-primary-color);
    font-weight: bold;
}

.slider-subtext {
    background-color: #f3f3f3;
    padding: 5px 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

/* Booking Section */
#track-lr {
    padding: 50px 0;
}

.booking-panel {
    position: relative;
}

.book-height {
    padding: 15px 20px;
    background: transparent;
    border-radius: 10px;
}

/* booking-panel */
.book-form {
    padding: 10px 0;
    border-radius: 20px;
    position: relative;
}

.book-form .book-group {
    margin-bottom: .8rem;
}

.book-form .book-control {
    background-color: #fff !important;
    width: 100%;
    min-height: 48px !important;
    font-size: 15px;
    border: 2px solid #d3d3d5 !important;
    border-radius: 8px;
}

.book-form .book-button {
    background: var(--theme-primary-color);
    ;
    border-color: var(--theme-primary-color);
    ;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.8px;
    min-height: 48px !important;
    text-transform: uppercase;
    border-radius: 8px;
    font-weight: bold;
}

.book-form .book-control::-webkit-input-placeholder {
    color: #acacac;
}

.book-form .book-control::-moz-placeholder {
    color: #acacac;
}

.book-form .book-control:-ms-input-placeholder {
    color: #acacac;
}

.book-form .book-control::-ms-input-placeholder {
    color: #acacac;
}

.book-form .book-control::placeholder {
    color: #acacac;
}


/* Feature Section */
.feature-section {
    padding: 50px 0;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 32%, var(--theme-primary-bg-light) 32%);
}

.feature-cards {
    margin-top: 50px;
}

.feature-card {
    position: relative;
    padding: 20px 10px;
    text-align: center;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .075);
    height: 100%;
    overflow: hidden;
}

.feature-card:hover {
    border-color: var(--theme-primary-color);
}

.feature-title {
    position: relative;
    font-weight: 500;
    font-size: 0.938rem;
    margin-bottom: 0;
    transition: color 600ms ease;
    z-index: 1;
}

.feature-card:hover .feature-title {
    color: #ffffff;
}

.feature-card::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    border-radius: 6px;
    background-color: var(--theme-secondary-color);
    transform: translateY(64px);
    transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.feature-card:hover::after {
    transform: translateY(0);
}

.feature-icon {
    margin: 0 auto 20px;
}

.feature-icon img {
    transition: transform 2s ease;
}

.feature-card:hover .feature-icon img {
    transform: scaleX(-1);
}

/* Facility Section */
.facility-section {
    padding: 50px 0;
    background: linear-gradient(0deg, var(--theme-primary-bg-light) 32%, rgba(255, 255, 255, 1) 32%);
}

.facility-cards {
    margin-top: 50px;
}

.facility-card {
    text-align: center;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .15);
    box-shadow: 0 0 0.25rem rgba(0, 0, 0, .1);
    background-color: #ffffff;
    height: 100%;
    width: 85%;
    margin: auto;
    overflow: hidden;
}

.facility-inner {
    background-color: var(--theme-primary-bg-light);
    padding: 10px;
}

.facility-card:hover .facility-inner {
    background-color: var(--theme-primary-color);
}

.facility-icon {
    height: 120px;
    width: 120px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.facility-icon img {
    transition: transform 1s ease;
}

.facility-card:hover .facility-icon img {
    transform: scale(1.3);
}

.facility-title {
    margin: 30px 0;
}

.facility-card:hover .facility-title {
    color: var(--theme-secondary-color);
}

/* Service Section */
.service-section {
    padding: 50px 0 100px;
    background-color: var(--theme-primary-bg-light);
}

.service-cards {
    margin-top: 30px;
}

.service-card {
    padding: 10px 10px 5px;
    border-radius: 6px;
    background-color: #ffffff;
    height: 100%;
    overflow: hidden;
}

.service-card:hover {
    background-color: var(--theme-secondary-color);
}

.service-icon img {
    position: relative;
    margin-left: 10px;
}

.service-icon::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 120px;
    background: var(--theme-primary-bg-light);
    top: 0;
    left: 0;
    border-radius: 100%;
}

.service-card:hover .service-icon::before {
    background: #ffffff;
}

.service-title {
    font-weight: bold;
    text-align: center;
}

.service-card:hover .service-title {
    color: #ffffff;
}

/* Top Footer */
.top-footer {
    padding: 20px 0;
    background-color: var(--theme-primary-bg-light);
    border-top: 2px solid var(--theme-primary-color);
    color: #222222;
}

.top-footer .footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.top-footer .footer-links li {
    padding: 0 20px;
}

.top-footer .footer-links li:not(:last-child) {
    border-right: 1px solid #222222;
}

.top-footer .footer-links a {
    color: #222222;
}

/* Bottom Footer */
.bottom-footer {
    padding: 10px 0;
    background-color: var(--theme-primary-color);
    color: #ffffff;
}

.bottom-footer p,
.bottom-footer a {
    margin: 0;
    color: #ffffff;
}

@media (max-width: 992px) {
    .bottom-header li {
        padding: 5px 10px;
    }

    .book-form .book-group {
        margin-bottom: 10px;
    }

    .book-form .book-button {
        width: 100%;
    }

    .feature-card,
    .facility-card,
    .service-card {
        height: auto;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {

    .bottom-header .logo {
        position: relative;
        top: 0;
        left: 0;
        padding: 0;
        height: 70px;
        display: inline-flex;
    }

    .bottom-header .menu-list {
        justify-content: space-between;
    }

    .bottom-header li {
        padding: 5px 10px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .book-height {
        padding: 0;
    }

    .book-form .book-group {
        margin-bottom: 5px;
    }

    .book-form .book-button {
        font-size: 14px;
        padding: 10px 15px;
        width: 100%;
    }

    .slider-section,
    .feature-section,
    .facility-section,
    .service-section {
        padding: 20px 0;
    }

    .feature-cards {
        margin-top: 30px;
    }

    .top-footer {
        padding: 15px 0;
    }

    .top-footer .footer-links {
        display: block;
        text-align: center;
    }

    .top-footer .footer-links li {
        border-right: none !important;
        display: inline-block;
    }
}