/*** Spinner Start ***/
/*** Spinner ***/
/*** Disclaimer Styles ***/
.disclaimer-bar {
    font-size: 12px;
}

@media (max-width: 768px) {
    .disclaimer-bar p {
        font-size: 10px;
        line-height: 1.4;
    }
    
    .disclaimer-bar i {
        font-size: 10px;
    }
}
#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: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** 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 {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn.btn-primary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    background: transparent;
    color: var(--bs-secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !important;
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -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;
}

.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 {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-primary) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@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-secondary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary) !important;
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 991.98px) {
    .sticky-top .navbar-light {
        background: var(--bs-light) !important;
    }

    /*** Top and Bottom borders go out ***/
    .navbar-light .navbar-nav .nav-link:after,
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        top: 30px;
        bottom: 30px;
        left: 0px;
        width: 100%;
        height: 2px;
        background: var(--bs-primary);
        opacity: 0;
        transition: all 0.5s;
    }

    .navbar-light .navbar-nav .nav-link:before {
        bottom: auto;
    }

    .navbar-light .navbar-nav .nav-link:after {
        top: auto;
    }

    .navbar-light .navbar-nav .nav-link:hover:before,
    .navbar-light .navbar-nav .nav-link.active:before {
        top: 20px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        bottom: 20px;
        opacity: 1;
    }
}

#searchModal .modal-content {
    background: rgba(240, 245, 251, 0.5);
}
/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8)), url(../img/breadcrumb.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}
/*** Single Page Hero Header End ***/


/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    margin-left: -60px;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-left: 0;
    margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 0;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-primary);
    border-radius: 50%;
    margin-right: 30px;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-secondary);
}

.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;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.6));
    background-size: cover;
}

/*** Inquiry Form Styles Start ***/
.carousel-header {
    position: relative;
    overflow: hidden;
}

.inquiry-form-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding-right: 15px;
    z-index: 100;
}

.inquiry-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
                0 10px 20px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.2);
    max-width: 420px;
    margin-top: 60px;
    animation: slideInRight 0.8s ease-out;
    transform: translateZ(0);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-header h3 {
    color: #1e3a8a !important;
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.form-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.form-header p {
    color: #6b7280 !important;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Form Elements */
.inquiry-form .form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.inquiry-form .form-control-lg {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    font-size: 1rem;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.inquiry-form .form-control-lg:focus {
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.inquiry-form .form-control-lg::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

/* Select Dropdown */
.inquiry-form .form-select.form-control-lg {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23374151' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 16px 12px;
    padding-right: 3rem;
}

/* Radio Button Group */
.visa-radio-group {
    display: flex;
    gap: 10px;
}

.visa-radio-group .btn {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-weight: 600;
    color: #6b7280;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.visa-radio-group .btn-check:checked + .btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.visa-radio-group .btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    background: white;
}

/* Submit Button */
.inquiry-form .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
    border-radius: 50px;
    padding: 1rem !important;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.inquiry-form .btn-primary:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

.inquiry-form .btn-primary:active {
    transform: translateY(-1px);
}

/* Privacy Policy */
.inquiry-form .text-muted.small a {
    color: #3b82f6 !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.inquiry-form .text-muted.small a:hover {
    color: #2563eb !important;
    text-decoration: underline;
}

/* Responsive Design for Inquiry Form */
@media (max-width: 1199px) {
    .inquiry-form-card {
        max-width: 380px;
        margin-top: 40px;
    }
}

@media (max-width: 992px) {
    .inquiry-form-wrapper {
        position: relative;
        height: auto;
        padding: 2rem 1rem;
        background: linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(255,255,255,0.98));
    }
    
    .inquiry-form-card {
        max-width: 100%;
        margin: 0 auto;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .row.justify-content-end {
        justify-content: center !important;
    }
    
    .inquiry-form-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-top: 500px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        margin-left: 0px;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-right: 0px;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .inquiry-form .form-control-lg {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .inquiry-form .btn-primary {
        padding: 0.875rem !important;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .inquiry-form-card {
        padding: 1.25rem;
        border-radius: 15px;
    }
    
    .form-header h3 {
        font-size: 1.35rem;
    }
    
    .visa-radio-group {
        flex-direction: column;
    }
    
    .visa-radio-group .btn {
        width: 100%;
        margin-bottom: 5px;
    }
}
/*** Carousel Hero Header End ***/


/*** service Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
}

.service .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -100%; 
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-primary);
    opacity: 0;
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
    bottom: 0;
    opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.service .service-item .service-inner .service-title .service-title-name {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
}

.service .service-item .service-inner .service-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
    height: 100%;
    opacity: 1;
}

.service .service-item .service-inner .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-img img {
    transform: scale(1.3);
}
/*** Service End ***/


/*** testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    bottom: -20px;
    left: 30px;
    transform: rotate(45deg);
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-secondary);
}
/*** testimonial end ***/


/*** Contact Start ***/
.contact .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: var(--bs-light);
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-primary);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-secondary);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-secondary) !important;
}
/*** copyright end ***/
/*** Floating Form Container - Fixed Version ***/

/* Remove any existing .floating-form-container styles and replace with: */

.floating-form-container {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 420px;
    max-width: 90%;
    z-index: 100;
}

.floating-form-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2),
                0 15px 30px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.3);
    max-height: 85vh;
    overflow-y: auto;
    animation: slideInRight 0.8s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Ensure carousel container doesn't clip the form */
.carousel-header {
    position: relative;
    overflow: visible !important; /* Important fix */
}

/* Carousel item adjustments */
.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 700px; /* Fixed height instead of 100vh */
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Form scrollbar styling */
.floating-form-card::-webkit-scrollbar {
    width: 6px;
}

.floating-form-card::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.floating-form-card::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

/* Form elements optimization */
.inquiry-form .form-group {
    margin-bottom: 1.25rem;
}

.inquiry-form .form-control-lg {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

/* Radio button compact design */
.visa-radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.visa-radio-group .btn {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
}

/* Compact form header */
.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .floating-form-container {
        width: 380px;
        right: 20px;
    }
    
    .floating-form-card {
        padding: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .floating-form-container {
        width: 350px;
    }
    
    .carousel-header .carousel-inner .carousel-item {
        min-height: 650px;
    }
}

@media (max-width: 992px) {
    .floating-form-container {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        max-width: 600px;
        margin: 2rem auto;
        padding: 0 1rem;
    }
    
    .floating-form-card {
        max-height: none;
        overflow-y: visible;
    }
    
    .carousel-header .carousel-inner .carousel-item {
        min-height: 550px;
    }
    
    .carousel-header {
        overflow: hidden; /* Re-enable overflow for mobile */
    }
}

@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item {
        min-height: 500px;
    }
    
    .floating-form-card {
        padding: 1.25rem;
    }
    
    .form-header h3 {
        font-size: 1.35rem;
    }
}

@media (max-width: 576px) {
    .floating-form-card {
        padding: 1rem;
    }
    
    .inquiry-form .form-control-lg {
        padding: 0.625rem 0.875rem;
        font-size: 0.9rem;
    }
    
    .visa-radio-group {
        grid-template-columns: 1fr;
    }
}
/*** Destination Start ***/
.destination {
    background: #f8f9fa;
}

.destination img {
    transition: .5s;
    border-radius: 10px;
}

.destination a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.destination a:hover img {
    transform: scale(1.1);
}

.destination .bg-white {
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 5px;
    font-weight: 600;
    z-index: 2;
}

.destination .bg-white.text-danger {
    background: rgba(220, 53, 69, 0.9) !important;
    color: white !important;
}

/* Hover overlay effect */
.destination a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.destination a:hover::after {
    opacity: 1;
}

/* Discount badge hover effect */
.destination .bg-white.text-danger {
    transition: all 0.3s ease;
}

.destination a:hover .bg-white.text-danger {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

/* Country name hover effect */
.destination a:hover .bg-white.text-primary {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}
/*** Destination End ***/

/*** Floating WhatsApp Button - Complete Override ***/
#whatsapp-float,
#whatsapp-float.floating-whatsapp,
a#whatsapp-float.floating-whatsapp,
a#whatsapp-float.btn,
a#whatsapp-float.btn-primary,
a#whatsapp-float.btn-secondary {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 99999 !important;
    background: #25D366 !important;
    background-color: #25D366 !important;
    background-image: none !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

#whatsapp-float:hover,
#whatsapp-float.floating-whatsapp:hover,
a#whatsapp-float.floating-whatsapp:hover {
    transform: scale(1.1) !important;
    background: #20b859 !important;
    background-color: #20b859 !important;
    background-image: none !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4) !important;
    border: none !important;
}

#whatsapp-float i,
#whatsapp-float.floating-whatsapp i,
a#whatsapp-float.floating-whatsapp i {
    font-size: 32px !important;
    color: white !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove any pseudo-elements that might be adding red background */
#whatsapp-float::before,
#whatsapp-float::after,
#whatsapp-float.floating-whatsapp::before,
#whatsapp-float.floating-whatsapp::after,
a#whatsapp-float.floating-whatsapp::before,
a#whatsapp-float.floating-whatsapp::after {
    display: none !important;
    content: none !important;
    background: none !important;
}

@media (max-width: 768px) {
    #whatsapp-float,
    #whatsapp-float.floating-whatsapp,
    a#whatsapp-float.floating-whatsapp {
        width: 50px !important;
        height: 50px !important;
        bottom: 20px !important;
        right: 20px !important;
    }
    #whatsapp-float i {
        font-size: 26px !important;
    }
}
/*** Hide Back to Top Button ***/
.back-to-top {
    display: none !important;
}

/*** Disclaimer Below Navbar - FIXED ***/
.disclaimer-section {
    background: linear-gradient(90deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 0;
    margin: 0;
}

.disclaimer-section p {
    font-size: 12px;
    letter-spacing: 0.3px;
    margin: 0;
    line-height: 1.4;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.disclaimer-section i {
    opacity: 0.7;
}

/* Desktop/Laptop specific */
@media (min-width: 992px) {
    .disclaimer-section p {
        font-size: 13px;
        white-space: nowrap;
        overflow: visible;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .disclaimer-section p {
        font-size: 11px;
        white-space: normal;
    }
}

/* Mobile - Fix white gap issue */
@media (max-width: 767px) {
    .disclaimer-section {
        padding: 6px 15px;
        margin: 0;
        width: 100%;
    }
    
    .disclaimer-section p {
        font-size: 9px;
        line-height: 1.3;
        white-space: normal;
        text-align: center;
        word-break: break-word;
    }
    
    .disclaimer-section i {
        font-size: 8px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .disclaimer-section {
        padding: 5px 10px;
    }
    
    .disclaimer-section p {
        font-size: 8px;
        line-height: 1.2;
    }
}
/*** Fix White Space on Mobile - Complete Fix ***/
@media (max-width: 768px) {
    /* Remove all extra spacing from navbar */
    .nav-bar,
    .navbar {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* Fix disclaimer section spacing */
    .disclaimer-section {
        margin-top: -1px !important;
        margin-bottom: 0 !important;
        padding-top: 5px !important;
        padding-bottom: 5px !important;
        line-height: 1 !important;
    }
    
    .disclaimer-section .container,
    .disclaimer-section .row,
    .disclaimer-section .col-12 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .disclaimer-section p {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        line-height: 1.2 !important;
    }
    
    /* Fix carousel top spacing */
    .carousel-header {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Remove any hidden gaps */
    .carousel-header .carousel-inner .carousel-item {
        margin-top: 0 !important;
    }
    
    /* Fix any body or container spacing */
    body,
    .container-fluid {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}

/*** COMPLETE MOBILE WHITE SPACE FIX ***/
@media (max-width: 768px) {
    /* Fix navbar spacing */
    .nav-bar {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .navbar {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
        margin: 0 !important;
    }
    
    .navbar-brand {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .navbar-brand h1 {
        margin: 0 !important;
        font-size: 1.5rem !important;
    }
    
    .navbar-toggler {
        margin: 0 !important;
        padding: 5px 10px !important;
    }
    
    /* Fix disclaimer section - remove all gaps */
    .disclaimer-section {
        margin: 0 !important;
        padding: 3px 0 !important;
        min-height: auto !important;
        max-height: 35px !important;
        line-height: 1 !important;
        position: relative !important;
        top: 0 !important;
    }
    
    .disclaimer-section .container {
        padding: 0 10px !important;
        margin: 0 auto !important;
    }
    
    .disclaimer-section .row {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .disclaimer-section .col-12 {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .disclaimer-section p {
        font-size: 9px !important;
        line-height: 1.2 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Fix carousel top spacing */
    .carousel-header {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Fix any hidden elements creating space */
    #spinner {
        display: none !important;
    }
    
    body {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
}
/*** FORCE REMOVE MOBILE WHITE SPACE - ULTIMATE FIX ***/
@media (max-width: 768px) {
    /* Force hide spinner on mobile */
    #spinner,
    .spinner {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        height: 0 !important;
        width: 0 !important;
        position: absolute !important;
    }
    
    /* Remove topbar spacing (even though hidden) */
    .topbar {
        display: none !important;
        height: 0 !important;
        max-height: 0 !important;
        min-height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Fix body and html spacing */
    html, body {
        margin-top: 0 !important;
        padding-top: 0 !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* Fix all container-fluid elements */
    .container-fluid {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Navbar complete reset */
    .nav-bar,
    .navbar,
    .navbar-collapse {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .navbar {
        padding: 5px 0 !important;
        min-height: auto !important;
    }
    
    /* Disclaimer section - compact */
    .disclaimer-section {
        margin-top: 0 !important;
        padding: 2px 0 !important;
        min-height: auto !important;
        height: auto !important;
        max-height: none !important;
        line-height: 1 !important;
    }
    
    /* Carousel header remove top space */
    .carousel-header {
        margin-top: 0 !important;
        padding-top: 0 !important;
        top: 0 !important;
    }
}
/* Mobile White Space Fix */
@media (max-width: 768px) {
    .topbar {
        display: none !important;
        height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .navbar {
        padding: 10px 0 !important;
        margin: 0 !important;
    }
    
    .disclaimer-section {
        padding: 3px 0 !important;
        margin: 0 !important;
    }
    
    .disclaimer-section p {
        font-size: 8px !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .carousel-header {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    body {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}

/* Features Section Styles */
.feature-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.feature-card:hover .feature-img img {
    transform: scale(1.1);
}

.feature-card:hover .feature-overlay {
    opacity: 1 !important;
}

.feature-overlay {
    transition: 0.5s;
}

.feature-text {
    border-top: 1px solid #f0f0f0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .feature-img img {
        height: 180px !important;
    }
    
    .feature-overlay p {
        font-size: 12px;
        overflow-y: auto;
    }
    
    .feature-overlay h4 {
        font-size: 16px;
    }
    
    .feature-text h5 {
        font-size: 14px;
    }
    
    .feature-icon img {
        width: 35px !important;
    }
}
