@import url("root.css");

.scroll-reveal {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 2.0s ease-out, transform 2.0s ease-out;
}
 
.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.carousel-item img {
    filter: brightness(80%);
}

/* Continuous Zoom Effect */
@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Apply zoom effect to all images */
.zoom-image {
    animation: zoomEffect 10s linear infinite;
}

/* Disable any transition effects (no fade, no slide) */
.carousel-item {
    transition: opacity 3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.carousel-item.active {
    opacity: 1;
}

.home-container {
    position: relative; 
    height: 100vh;
}



.custom-text-shadow {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.search-sections {
    /* font-family: 'Verdana', Arial, sans-serif !important; */
    font-weight: 400;
    font-size: 2px;
    letter-spacing: 1px; 
    text-transform: capitalize;
}

.search-container {
    position: absolute;
    top: 5%;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 5;
}

.tripss,
.routess,
.datess {
    font-size: 1rem;
}

/* preloader */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 1s ease-out; 
}

.hidden {
    opacity: 0;
    pointer-events: none; 
}

.spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    position: relative;
}

/* Outer Spinner - Rotates Clockwise */
.outer-spinner {
    width: 120px;
    height: 120px;
    border-left: 6px dashed #DC3545;
    border-right: 6px dashed gold;
    border-radius: 50%;
    position: absolute;
    animation: spin-clockwise 2s linear infinite;
}

/* Inner Spinner - Rotates Counterclockwise */
.inner-spinner {
    width: 80px; 
    height: 80px;
    border-top: 6px double gold;
    border-bottom: 6px double #DC3545;
    border-radius: 50%;
    position: absolute;
    animation: spin-counterclockwise 1.5s linear infinite;
}

/* circle Spinner - Rotates Counterclockwise */
/* @keyframes pulse-scale {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
} */

/* .circle-spinner {
    width: 230px; 
    height: 230px;
    border-top: 6px solid gold;
    border-bottom: 6px solid #DC3545;
    border-radius: 50%;
    position: absolute;
    animation: spin-counterclockwise 1.5s linear infinite, pulse-scale 2s ease-in-out infinite;
} */

@keyframes float-up-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Animation for Wave Movement */
/* @keyframes wave-move {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(5px) scale(1.1); }
    100% { transform: translateY(0) scale(1); }
} */

/* Apply Floating Effect to SVG */
.spinner-container svg {
    width: 45px;
    height: 45px;
    position: relative;
    animation: float-up-down 2s ease-in-out infinite;
    z-index: 10;
    fill: #DC3545;
}

@keyframes spin-clockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin-counterclockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

/* .form-container {
    background: rgba(255, 255, 255, 0.93);
    border-radius: 16px;
    padding: 10px;
    padding-bottom: 10%;
} */

/* Make the + and - buttons red */
.quantity-controls .plus, 
.quantity-controls .minus {
    background-color:#DC3545 !important;
    color: white !important;
    border: none !important;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.quantity-controls .plus:hover, 
.quantity-controls .minus:hover {
    transform: scale(1.1);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active {
    background-color: white !important;
    box-shadow: none !important;
    border-color: #ced4da !important;
}

.dropdown-menu .dropdown-item:focus, 
.dropdown-menu .dropdown-item:active {
    background-color: transparent !important;
    color: inherit !important;
}

.btn-outline-secondary:hover #passenger-type-display {
    color: inherit !important; 
    background-color: transparent !important;
}

/* Change active radio button color */
.form-check input:checked {
    background-color: #DC3545;
    border-color: #DC3545;
}

/* Ensure focus outline matches */
.form-check input:focus {
    box-shadow: 0 0 5px #DC3545;
}
 
/* ----- Why leopards ----------- */

.accordion-header span {
    font-size: 1.5rem; /* Default size */
}

.dropdown.fixed-bottom-right {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: auto;
    z-index: 1050;
}

.text-hover-danger {
    position: relative;
}

.text-hover-danger:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    text-decoration: underline;
}

#content-header {
    /* font-size: clamp(1rem, 3vw, 3rem) !important; */
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}

/* Location Card Styling */
.location-card {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
} 

.location-header {
    background: rgba(220, 53, 69);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.3) 0%, transparent 20%);
}

.map-cta {
    z-index: 2;
}

.office-info {
    transition: all 0.3s ease;
}

.office-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-danger {
    transition: all 0.3s ease;
    background: linear-gradient(to right, #dc3545, #c82333);
    border: none;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .map-container {
        height: 350px;
    }
    
    .office-info {
        margin-top: 2rem;
    }
}

toggle-container {
    padding: 10px 0;
}
 
.premium-toggle {
    position: relative;
    width: 200px;
    height: 42px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e9ecef 100%);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.premium-toggle .toggle-circle {
    width: 80px;
    height: 32px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 50px;
    position: absolute;
    left: 5px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 2;
}

.premium-toggle.on .toggle-circle {
    left: calc(100% - 85px);
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
}

.premium-toggle .toggle-text {
    font-size: 14px;
    font-weight: 500;
    width: 50%;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

.premium-toggle .toggle-text.left {
    color: transparent;
    left: 0;
}

.premium-toggle .toggle-text.right {
    color: transparent;
    right: 0;
}

.premium-toggle .toggle-text.active {
    color: black;
    font-weight: 600;
}

.premium-toggle .fa-solid {
    font-size: 14px;
    transition: all 0.3s ease;
    position: absolute;
}

.premium-toggle .fa-arrow-left {
    opacity: 1;
}

.premium-toggle .fa-arrow-right {
    opacity: 1;
}

.premium-toggle.on .fa-arrow-left {
    opacity: 1;
}

.premium-toggle.on .fa-arrow-right {
    opacity: 0;
}

.premium-toggle:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.premium-toggle:active .toggle-circle {
    transform: scale(0.95);
}

.form-select, .form-control {
    height: 45px;
}

.input-group-text {
    min-width: 100px;
}

#swapLocations {
    transition: all 0.3s ease;
    width: 42px;
    height: 42px;
}

#swapLocations:hover {
    transform: rotate(180deg);
    background-color: #f8f9fa !important;
}

.passenger-dropdown {
    position: absolute;
    width: 100%;
}

.form-container {
    transition: all 0.3s ease;
}

.form-container:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
}

#search-trip {
    height: 45px !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

#search-trip:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(220, 53, 69, 0.4);
}

#search-trip:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
}

.z-index-1 {
    z-index: 1;
}

/* .passenger-dropdown-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
} */

.passenger-item {
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    background-color: #ffffff;
}

.passenger-item:hover {
    background-color: #f8f9fa !important;
}

.passenger-info {
    line-height: 1.4;
}

.counter {
    display: flex;
    align-items: center;
}

.counterBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-width: 2px;
    transition: all 0.2s ease;
}

.counterBtn.minus {
    border-color: #dc3545;
    color: #dc3545;
}

.counterBtn.minus:hover {
    background-color: #dc3545 !important;
    color: white !important;
}

.counterBtn.plus {
    background-color: #dc3545;
    border-color: #dc3545;
}

.counterBtn.plus:hover {
    background-color: #c82333 !important;
    border-color: #c82333 !important;
}

.counter span {
    min-width: 30px;
    text-align: center;
}

.text-muted {
    color: #6c757d !important;
    font-size: 0.85rem;
}

/* Round Trip text (Initially Visible) */
#account-local-radio {
    left: 15px;
    opacity: 1;
}

/* One Way text (Initially Hidden) */
#account-foreign-radio {
    right: 15px;
    opacity: 1;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.home-inputs .form-control {
    height: 42px;
}

.home-inputs {
    border-radius: 8px; 
    overflow: hidden; 
}

.home-inputs-text {
    height: 45px;
    display: flex;
    align-items: center;
}

.home-inputs .home-inputs-text, 
.home-inputs .form-select {
    display: flex;
    align-items: center;
}

#contact-us {
    padding-top: 10%;
}

#news-updates {
    padding-top: 8%;
}

#policiess {
    padding-top: 5%;
}

#faqss {
    padding-top: 5%;
}

#more-content {
    padding-top: 10%;
    padding-bottom: 5%;
}


@media (max-width: 1400px) {
    .location {
        margin-top: 5rem; 
    }

    .search-container {
        top: 3%
    }
}

@media (max-width: 1200px) {
    .location {
        margin-top: 5rem; /* Adjust as needed */
    }

    #content-header {
        font-size: 5rem;
    }
    /* .search-container {
        top: 5%
    } */
    #contact-us {
        padding-top: 15%;
    }

    #contact-us {
        padding-top: 13%;
    }

}


@media (max-width: 992px) {
    .location {
        margin-top: 5rem; /* Adjust as needed */
    }

    /* #content-header {
        font-size: clamp(1.8rem, 3.5vw, 3rem);
    } */

    /* .home-container {
        height: 130vh;
    } */

    .search-container {
        padding-top: 10%;
    }

    #contact-us {
        padding-top: 24%;
    }

    #news-updates {
        padding-top: 22%;
    }

    #more-content {
        padding-top: 15%
    }

}

@media (max-width: 768px) {
    .location {
        margin-top: 5rem; /* Adjust as needed */
    }

    .accordion-header span {
        font-size: 1.3rem;
    }
    
    /* #content-header {
        font-size: clamp(1.5rem, 3vw, 2.5rem);
    } */

    .home-container {
        height: 123vh;
    }

    .search-container {
        padding-top: 25%;
    }

    #contact-us {
        padding-top: 28%;
    }

    #news-updates {
        padding-top: 26%;
    }

    #more-content {
        padding-top: 20%
    }

}

@media (max-width: 576px) {
    .accordion-header span {
        font-size: 1.0rem;
    }

    .search-container {
        padding-top: 35%
    }
    
    /* 
    #content-header {
        font-size: clamp(1.3rem, 2.5vw, 2rem);
    } */

    .home-container {
        height: 105vh;
    }

    #contact-us {
        padding-top: 30%;
    }

    #news-updates {
        padding-top: 28%;
    }

    #more-content {
        padding-top: 20%
    }

}

.text-gradient-primary {
    background: linear-gradient(90deg, #f59e0b 0%, #ef4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-primary {
    background: linear-gradient(90deg, #f59e0b 0%, #ef4444 100%);
}

.bg-gradient-dark {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
}

.text-gradient-teal-red {
    background: linear-gradient(90deg, #0d9488 0%, #ef4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-white {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 100%);
}

 /* Responsive adjustments */
 .route-card {
    height: 100% !important;
    aspect-ratio: 1/1.25;
}

.route-image-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.route-image {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center;
    transition: transform 0.3s ease;
}

.route-card:hover .route-image {
    transform: scale(1.05);
}

.owl-stage {
    display: flex;
    align-items: stretch;
}

.owl-item {
    display: flex;
    height: auto;
}

/* Responsive text and spacing */
/* @media (max-width: 768px) {
    .route-content {
        padding: 0.5rem !important;
    }
    
    .route-title {
        font-size: 0.9rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .fa-ship {
        font-size: 1rem !important;
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }
    
    .badge {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.75rem !important;
    }
}

@media (max-width: 576px) {
    .route-card {
        aspect-ratio: 1/1.1;
    }
    
    .route-title {
        font-size: 0.8rem !important;
    }
    
} */

.max-w-3xl {
    max-width: 48rem;
}

.shadow-primary {
    box-shadow: 0 10px 15px -3px rgba(13, 148, 136, 0.2), 0 4px 6px -4px rgba(13, 148, 136, 0.2);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    transform: scale(1.1);
    background-color: rgba(13, 148, 136, 0.1) !important;
}


.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.icon-wrapper {
    transition: all 0.3s ease;
}

.card-hover:hover .icon-wrapper {
    transform: rotate(10deg);
    background-color: rgba(15, 118, 110, 0.2) !important;
}

.max-w-3xl {
    max-width: 48rem;
}

.object-cover {
    object-fit: cover;
}

.shadow-primary {
    box-shadow: 0 10px 15px -3px rgba(15, 118, 110, 0.2), 0 4px 6px -4px rgba(15, 118, 110, 0.2);
}

.bg-gradient-light {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.text-gradient-primary {
    background: linear-gradient(90deg, #0d9488 0%, #ef4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-hover {
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(15, 118, 110, 0.2);
}

.icon-wrapper {
    transition: all 0.3s ease;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-hover:hover .icon-wrapper {
    transform: scale(1.1);
}


.bg-gradient-light {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.bg-gradient-dark {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.2) 100%);
}

.text-gradient-primary {
    background: linear-gradient(90deg, #0d9488 0%, #ef4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gradient-primary {
    background: linear-gradient(90deg, #0d9488 0%, #ef4444 100%);
    border: none;
    transition: all 0.3s ease;
}

.btn-gradient-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 148, 136, 0.3);
}

.card-hover {
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1) !important;
}

.feature-icon-wrapper {
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.card-hover:hover .feature-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
}

.object-cover {
    object-fit: cover;
}