
/*** Spinner Start ***/
/*** Spinner ***/
:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #da2126;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #EDEDED;
    --bs-dark: #021016;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}
#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;
    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-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-danger {
    color: var(--bs-white);
    border: none;
}

.btn.btn-danger:hover {
    background: var(--bs-dark);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}

/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
}

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 100px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    margin-top: 8px !important;
    transition: .5s;
    opacity: 0;
    }
}

@media (max-width: 991px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousels .header-carousel-item img {
    object-fit: cover;
}


@media (min-width: 1200px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 700px;
    }
    .header-carousels .header-carousel-item,
    .header-carousels .header-carousel-item img {
        height: 700px;
    }
}

@media (max-width: 1199px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 1200px;
    }
    .header-carousels .header-carousel-item,
    .header-carousels .header-carousel-item img {
        height: 1200px;
    }
}

.header-carousel .owl-nav .owl-prev {
    display: none;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: -60px;
    right: 50%;
    transform: translateY(-50%);
    margin-right: -60px;
    border-radius: 60px;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-light);
    color: var(--bs-primary);
}

.header-carousel .owl-nav .owl-next i {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation-name: carousel-next-btn;
    animation-duration: 4s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    transition: 1s;
}

@keyframes carousel-next-btn {
    0%  {margin-top: 35%;}
    50%  {margin-bottom: 70%;}
    100% {margin-top: 35%;}
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
}

.carousel-caption .ticket-form {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
}

/* .header-carousels .header-carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
} */

@keyframes image-zoom {
    0%  {width: 100%; height: 100%;}

    25% {width: 115%; height: 115%;}

    50% {width: 130%; height: 130%;}

    75% {width: 120%; height: 120%;}

    100% {width: 100%; height: 100%;}
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/back1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.feature-item .feature-content {
    position: absolute;
    width: 100%; 
    height: 100%; 
    bottom: 0; 
    left: 0;
    margin-top: 0;
    margin-right: 0; 
    background: rgba(0, 0, 0, 0.7); 
    border-radius: 10px;
    z-index: 2;
}

.feature-item .feature-content .feature-content-inner {
    position: relative;
    z-index: 5;
}
/*** Feature End ***/


/*** Service Start ***/
.service {
    position: relative;
    overflow: hidden;
    background-image: url(../img/back.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.service .service-section {
    position: relative;
    z-index: 5;
}

.service .service-days {
    border-radius: 10px;
    background: var(--bs-white);
}

.service .service-item {
    position: relative;
    height: 100%;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-white);
    z-index: 1;
}

.service .service-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover:after {
    height: 100%;
}

.service .service-item i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover i {
    color: var(--bs-white);
}

.service .service-item .service-content {
    position: relative;
    z-index: 3;
}

.service .service-item .service-content p {
    transition: 0.5s;
}

.service .service-item:hover .service-content p {
    color: var(--bs-white);
}

.service .service-item .service-content a.h4 {
    transition: 0.5s;
}

.service .service-item:hover .service-content a.h4:hover {
    color: var(--bs-white);
}
/*** Service End ***/


/*** Attractions Start ***/
.attractions {
    position: relative;
    overflow: hidden;
}

.attractions::after {
    content: "";
    width: 100%;
    height: 70%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/back1.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes attraction-image-zoom {
    0%  {width: 100%;}

    25% {width: 115%;}

    50% {width: 130%;}

    75% {width: 120%;}

    100% {width: 100%;}
}

.attractions .attractions-section {
    position: relative;
    z-index: 3;
}

.attractions .attractions-item {
    position: relative;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.attractions .attractions-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, .7);
    transition: 0.5s;
    z-index: 2;
}

.attractions .attractions-item:hover:after {
    height: 100%;
}

.attractions .attractions-item .attractions-name {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    color: var(--bs-white);
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
}

.attractions .attractions-item:hover .attractions-name {
    opacity: 1;
}

.attractions-carousel .owl-stage-outer {
    margin-top: 58px;
}

.attractions .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.attractions .owl-nav .owl-prev:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.attractions .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.attractions .owl-nav .owl-next:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}
/*** Attractions End ***/


/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    background: rgba(0, 0, 0, .4);
    transition: 0.5s;
    z-index: 1;
}

.gallery .gallery-item:hover::after {
    width: 100%;
    height: 100%;
}

.gallery .gallery-item .search-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    z-index: 5;
    opacity: 0;
}

.gallery .gallery-item:hover .search-icon {
    opacity: 1;
}
/*** Gallery End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.blog .blog-item .blog-img .blog-category {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 5;
}

.blog .blog-item .blog-img .blog-date {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: var(--bs-white);
    z-index: 5;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    background: var(--bs-primary);
    border-radius: 10px;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover:after {
    height: 100%;
}

.team .team-item .team-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.team .team-item .team-content .team-icon {
    background: var(--bs-light);
    border-radius: 10px;
    display: flex;
    display: inline-flex;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-primary);
}

.team .team-item .team-content p {
    color: var(--bs-white);
    transition: 0.5s;
}

.team .team-item:hover .team-content p {
    color: var(--bs-body);
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial {
    position: relative;
    overflow: hidden;
}

.testimonial::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/back.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

.testimonial::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    z-index: -1;
}

.testimonial .testimonial-carousel .testimonial-item {
    text-align: center;
    border-radius: 10px;
    background: rgba(256, 256, 256, 0.2);
}

.testimonial-carousel .testimonial-item .testimonial-inner {
    display: flex;
    justify-content: center;
}

.testimonial-item .testimonial-inner .testimonial-img {
    position: relative;
}

.testimonial-item .testimonial-inner .testimonial-img img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 2px solid var(--bs-white);
}

.testimonial-item .testimonial-inner .testimonial-img .testimonial-quote {
    position: absolute;
    top: 0;
    left: -25px;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-light);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    bottom: -22px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: -210px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev {
    font-size: 50px;
    margin-right: 80px;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-next {
    font-size: 50px;
    margin-left: 80px;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}
/*** Testimonial End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}

.footer .footer-item .opening-date {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer .footer-item .opening-date .opening-clock {
    display: flex;
    align-items: center;
    line-height: 35px;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/
.header-carousels{
    position: relative;
}
.header-carousels .overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: #000000c4;
}
@media (min-width: 1200px) {
    h4, .h4 {
        font-size: 1.2rem;
    }
}
.ellipse{
    display:inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.logo{
    height: 100px;
    padding-bottom: 20px;
}
li {
    list-style-type: none;
}
.g-4, .gy-4 {
    --bs-gutter-y: 0.5rem;
}
.pageform{
    background: #0000005e;
    padding: 10px;
}
.mr-1{
    margin-right: 10px;
}
.text-danger {
    color: #d42427 !important;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    top: 10%;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
}

/*** Enhanced Design Styles ***/

/* Trust Bar */
.trust-bar {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 15px 0;
}
.trust-bar .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}
.trust-bar .trust-item i {
    font-size: 20px;
}

/* Hero Typewriter */
.typewriter-text {
    overflow: hidden;
    border-right: 3px solid var(--bs-primary);
    white-space: nowrap;
    animation: typing 3.5s steps(50, end), blink-caret 0.75s step-end infinite;
}
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--bs-primary) }
}

/* Hero Crossfade Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 700px;
}
.hero-slider .hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
    z-index: 0;
}
.hero-slider .hero-slide.active {
    opacity: 1;
    animation: heroZoom 8s ease-in-out infinite alternate;
}
.hero-slider .overlay {
    z-index: 1;
}
.hero-slider .carousel-caption {
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 0;
}
@keyframes heroZoom {
    from { transform: scale(1) }
    to { transform: scale(1.08) }
}
@media (max-width: 1199px) {
    .hero-slider {
        min-height: auto;
    }
    .hero-slider .carousel-caption {
        position: relative;
        height: auto;
        background: rgba(0,0,0,0.8);
        padding: 30px 0;
    }
}

/* Enhanced Enquiry Form */
.hero-enquiry-form {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideInRight 1s ease-out;
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}
.hero-enquiry-form .form-control {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 10px 15px;
    transition: all 0.3s;
}
.hero-enquiry-form .form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(218, 33, 38, 0.1);
}

/* Icon Feature Cards */
.icon-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.icon-feature-card:hover {
    background: rgba(218, 33, 38, 0.04);
    transform: translateY(-2px);
}
.icon-feature-card .icon-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: rgba(218, 33, 38, 0.1);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
}
.icon-feature-card:hover .icon-circle {
    background: var(--bs-primary);
    color: #fff;
    transform: scale(1.1);
}

/* Service Cards Enhanced */
.service-card-enhanced {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}
.service-card-enhanced:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
.service-card-enhanced .service-icon {
    font-size: 40px;
    color: var(--bs-primary);
    margin-bottom: 15px;
    transition: all 0.3s;
}
.service-card-enhanced:hover .service-icon {
    transform: scale(1.15);
    animation: iconPulse 0.6s ease;
}
@keyframes iconPulse {
    0% { transform: scale(1) }
    50% { transform: scale(1.3) }
    100% { transform: scale(1.15) }
}

/* Package Cards Enhanced */
.package-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}
.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.package-card .package-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.package-card .package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.package-card:hover .package-img img {
    transform: scale(1.1);
}
.package-card .package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}
.package-card .package-badge.badge-bestseller {
    background: #198754;
    color: #fff;
}
.package-card .package-badge.badge-popular {
    background: var(--bs-primary);
    color: #fff;
}
.package-card .package-badge.badge-new {
    background: #0d6efd;
    color: #fff;
}
.package-card .package-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    z-index: 2;
}
.package-card .package-body {
    padding: 20px;
}
.package-card .package-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--bs-primary);
}
.package-card .package-price .original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 5px;
}
.package-card .package-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin: 12px 0;
    font-size: 13px;
    color: #666;
}
.package-card .package-features span::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #198754;
    margin-right: 5px;
    font-size: 11px;
}

/* Attractions Enhanced */
.attraction-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}
.attraction-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.attraction-card:hover img {
    transform: scale(1.15);
}
.attraction-card .attraction-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px 15px 15px;
    transition: all 0.3s;
}
.attraction-card:hover .attraction-overlay {
    padding-bottom: 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}
.attraction-card .attraction-name {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Testimonial Enhanced */
.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}
.testimonial-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}
.testimonial-card .stars {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 12px;
}
.testimonial-card .testimonial-text {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}
.testimonial-card .testimonial-author {
    font-weight: 600;
    color: #fff;
    font-size: 15px;
}
.testimonial-card .testimonial-location {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--bs-primary), #b71c1c);
    border-radius: 15px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}
.cta-banner::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 99;
    transition: all 0.3s;
    animation: whatsappPulse 2s infinite;
}
.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37,211,102,0.6);
    color: #fff;
}
@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 15px rgba(37,211,102,0.4) }
    50% { box-shadow: 0 4px 25px rgba(37,211,102,0.7) }
    100% { box-shadow: 0 4px 15px rgba(37,211,102,0.4) }
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 0;
}
.newsletter-form input {
    flex: 1;
    border: none;
    padding: 12px 18px;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    outline: none;
}
.newsletter-form button {
    border: none;
    padding: 12px 20px;
    border-radius: 0 8px 8px 0;
    background: var(--bs-primary);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s;
}
.newsletter-form button:hover {
    background: #b71c1c;
}

/* Packages Page */
.package-list-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.4s;
    margin-bottom: 25px;
}
.package-list-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}
.package-list-card .package-list-img {
    width: 350px;
    min-height: 280px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.package-list-card .package-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.package-list-card:hover .package-list-img img {
    transform: scale(1.08);
}
.package-list-card .package-list-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
@media (max-width: 768px) {
    .package-list-card {
        flex-direction: column;
    }
    .package-list-card .package-list-img {
        width: 100%;
        min-height: 200px;
    }
}

/* Filter Pills */
.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}
.filter-pills .pill {
    padding: 8px 20px;
    border-radius: 25px;
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}
.filter-pills .pill:hover,
.filter-pills .pill.active {
    background: var(--bs-primary);
    color: #fff;
    border-color: var(--bs-primary);
}

/* Pricing Tiers */
.pricing-tier {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.4s;
    height: 100%;
}
.pricing-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.pricing-tier.popular {
    border: 2px solid var(--bs-primary);
    position: relative;
    box-shadow: 0 10px 30px rgba(218,33,38,0.15);
}
.pricing-tier.popular .popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bs-primary);
    color: #fff;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}
.pricing-tier .tier-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--bs-dark);
    margin: 15px 0 5px;
}
.pricing-tier.popular .tier-price {
    color: var(--bs-primary);
}
.pricing-tier .tier-features {
    text-align: left;
    margin: 20px 0;
    font-size: 14px;
    color: #555;
}
.pricing-tier .tier-features p {
    padding: 6px 0;
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
}

/* Timeline / Itinerary */
.itinerary-timeline {
    position: relative;
    padding-left: 30px;
}
.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--bs-primary), rgba(218,33,38,0.2));
    border-radius: 3px;
}
.itinerary-day {
    position: relative;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s;
}
.itinerary-day:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.itinerary-day::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 20px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bs-primary);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--bs-primary);
}
.itinerary-day .day-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 3px;
}
.itinerary-day .day-title {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-bottom: 3px;
}
.itinerary-day .day-desc {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Blog Enhanced */
.blog-card-enhanced {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.4s;
    height: 100%;
}
.blog-card-enhanced:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}
.blog-card-enhanced .blog-card-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.blog-card-enhanced .blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.blog-card-enhanced:hover .blog-card-img img {
    transform: scale(1.1);
}
.blog-card-enhanced .blog-card-cat {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--bs-primary);
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}
.blog-card-enhanced .blog-card-body {
    padding: 20px;
}
.blog-card-enhanced .blog-card-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.blog-card-enhanced .blog-card-title {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s;
}
.blog-card-enhanced:hover .blog-card-title {
    color: var(--bs-primary);
}
.blog-card-enhanced .blog-card-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Blog Featured */
.blog-featured {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.4s;
}
.blog-featured:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.blog-featured .blog-featured-img {
    width: 45%;
    min-height: 300px;
    overflow: hidden;
    flex-shrink: 0;
}
.blog-featured .blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.blog-featured:hover .blog-featured-img img {
    transform: scale(1.05);
}
.blog-featured .blog-featured-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 768px) {
    .blog-featured {
        flex-direction: column;
    }
    .blog-featured .blog-featured-img {
        width: 100%;
        min-height: 200px;
    }
}

/* Blog Sidebar */
.blog-sidebar .sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.blog-sidebar .sidebar-title {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bs-primary);
    display: inline-block;
}
.blog-sidebar .sidebar-cat-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #555;
    transition: color 0.3s;
}
.blog-sidebar .sidebar-cat-item:hover {
    color: var(--bs-primary);
}
.blog-sidebar .sidebar-popular-item {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
    cursor: pointer;
}
.blog-sidebar .sidebar-popular-item:hover {
    color: var(--bs-primary);
}

/* Contact Enhanced */
.contact-info-card {
    text-align: center;
    padding: 25px 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.4s;
    height: 100%;
}
.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.contact-info-card .contact-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(218,33,38,0.1);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 12px;
    transition: all 0.3s;
}
.contact-info-card:hover .contact-icon-circle {
    background: var(--bs-primary);
    color: #fff;
    transform: scale(1.1);
}

/* Contact Form Enhanced */
.contact-form-wrapper {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
}
.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    transition: all 0.3s;
}
.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(218,33,38,0.1);
}

/* FAQ Accordion */
.faq-item {
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover {
    border-color: rgba(218,33,38,0.3);
}
.faq-item .faq-question {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    background: #fff;
    transition: all 0.3s;
}
.faq-item .faq-question:hover {
    background: #f9f9f9;
}
.faq-item .faq-question i {
    transition: transform 0.3s;
    color: var(--bs-primary);
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fafafa;
}
.faq-item.active .faq-answer {
    max-height: 300px;
}
.faq-item .faq-answer-inner {
    padding: 15px 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Breadcrumb Hero Enhanced */
.bg-breadcrumb-enhanced {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0;
    text-align: center;
}
.bg-breadcrumb-enhanced::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url(../img/back1.jpg) center center no-repeat;
    background-size: cover;
    opacity: 0.15;
}
.bg-breadcrumb-enhanced .breadcrumb-content {
    position: relative;
    z-index: 2;
}

/* Confetti animation for form success */
@keyframes confettiDrop {
    0% { transform: translateY(-100%) rotate(0); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* Footer Enhanced */
.footer-enhanced {
    background: #0f0f23;
}
.footer-enhanced .footer-brand-desc {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}
.footer-enhanced .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 8px;
}
.footer-enhanced .footer-contact-item i {
    color: var(--bs-primary);
    width: 16px;
}
.footer-enhanced .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.footer-enhanced .social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.footer-enhanced .social-icons a:hover {
    background: var(--bs-primary);
    transform: translateY(-3px);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Fade-in animation classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.5s; }

/* Mobile layout fixes - prevent content touching/overflowing screen edges */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}
@media (max-width: 767px) {
    .container, .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero-slider .carousel-caption {
        padding: 35px 0;
    }
    .hero-slider .carousel-caption .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    #heroTitle, .hero-slider h1.display-4 {
        font-size: 28px;
        line-height: 1.3;
    }
    .hero-slider h4.text-uppercase {
        font-size: 13px;
    }
    .hero-slider .fs-5 {
        font-size: 15px !important;
    }
    .hero-enquiry-form {
        padding: 20px;
        margin-top: 20px;
    }
    .trust-bar .row {
        row-gap: 12px;
    }
    .trust-bar .trust-item {
        font-size: 13px;
        justify-content: center;
        text-align: center;
    }
    .icon-feature-card {
        padding: 12px;
    }
    .service-card-enhanced,
    .package-card,
    .package-list-card,
    .contact-info-card,
    .blog-card-enhanced,
    .pricing-tier {
        margin-left: 0;
        margin-right: 0;
    }
    .footer-enhanced .footer-item {
        text-align: left;
        padding: 0 5px;
    }
}
@media (max-width: 480px) {
    #heroTitle, .hero-slider h1.display-4 {
        font-size: 24px;
    }
    .hero-slider .d-flex.flex-wrap.gap-3 .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .wow {
        animation: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
}
.stagger-children > *:nth-child(6) { transition-delay: 0.6s; }