
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 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 START ************/

/*** Navbar base ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: black !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

/*** Sticky navbar link spacing ***/
.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: black !important;
}

/*** Hover & active color ***/
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color:#b45309 !important;
}

/*** Navbar brand (logo + text) ***/
.navbar-brand {
    display: flex;
    align-items: center;
    /* gap: 6px; */
}

/*** Logo size ***/
.navbar-light .navbar-brand img {
    height:70px;
    transition: .5s;
}

/*** Logo on scroll ***/
.sticky-top .navbar-light .navbar-brand img {
    height: 50px;
}

/*** Brand text style ***/
.brand-text {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 600;
    /* letter-spacing: 1.2px; */
    text-transform: uppercase;
    color: #b45309; /* kesari-brown */
    vertical-align: middle;
}

/*** Brand text on scroll ***/
.sticky-top .brand-text {
    color: #9a3412;
}

/*** Dropdown arrow ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

/*** Desktop dropdown animation ***/
@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 hover ***/
.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;
}

/*** MENU LEFT SHIFT (IMPORTANT FIX) ***/
@media (min-width: 992px) {
    .navbar-nav {
        margin-left: auto;
        margin-right: 300px; /* adjust if needed */
    }
}

/*** Mobile view ***/
@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 #000000 !important;

        color: black;
    }

    .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: black !important;
    }

    .brand-text {
        font-size: 18px;
    }
}

/*** Desktop hover border animation ***/
@media (min-width: 991.98px) {

    .sticky-top .navbar-light {
        background: var(--bs-light) !important;
    }

    .navbar-light .navbar-nav .nav-link::before,
    .navbar-light .navbar-nav .nav-link::after {
        position: absolute;
        content: "";
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--bs-primary);
        opacity: 0;
        transition: all 0.5s;
    }

    .navbar-light .navbar-nav .nav-link::before {
        top: 30px;
    }

    .navbar-light .navbar-nav .nav-link::after {
        bottom: 30px;
    }

    .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;
    }
}

/*** Search modal ***/
#searchModal .modal-content {
    background: rgba(240, 245, 251, 0.5);
}

/* Call Now Button Styling */
.call-now-btn {
    background: #b45309 !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 50px;
    margin-left: 15px;
    margin-top: 28px;
    margin-bottom: 28px;
    transition: all 0.3s ease !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500 !important;
    text-decoration: none !important;   /* underline remove */
}

.call-now-btn i {
    font-size: 16px;
}

.call-now-btn:hover {
    background: #9a3412 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(180, 83, 9, 0.3);
}

/* Sticky navbar call button */
.sticky-top .call-now-btn {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 6px 18px !important;
}

/* Mobile view */
@media (max-width: 991.98px) {
    .call-now-btn {
        margin: 10px 0 !important;
        justify-content: center;
        width: fit-content;
    }
}

/************ NAVBAR END ************/

/***********************************
    Single Page Hero Header
************************************/
.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-size: cover;
    padding: 100px 0 60px 0;
}

/***********************************
    Carousel Hero Header
************************************/
.carousel-header {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/*** Controls ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    margin-left: -60px;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-right: -60px;
}

/*** Indicators ***/
.carousel-header .carousel .carousel-indicators {
    padding-bottom: 15px;
}

.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-primary);
    border-radius: 50%;
    margin-right: 20px;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    border-color: var(--bs-secondary);
}

/*** Carousel structure ***/
.carousel-header .carousel-inner,
.carousel-header .carousel-item {
    width: 100%;
}

/*** Desktop height ***/
.carousel-header .carousel-item {
    position: relative;
    min-height: 90vh;
}

/*** Image ***/
.carousel-header .carousel-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*** Caption overlay ***/
.carousel-header .carousel-caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.6)
    );
}

/***********************************
    MOBILE FIX (IMPORTANT)
************************************/
@media (max-width: 768px) {

    /* Fix height overlap */
    .carousel-header {
        height: auto !important;
    }

    .carousel-header .carousel-item {
        min-height: 70vh;
    }

    /* Image safe */
    .carousel-header .carousel-item img {
        height: 100%;
        object-position: center;
    }

    /* Caption spacing */
    .carousel-header .carousel-caption {
        padding: 20px;
    }

    /* Text scaling */
    .carousel-header .carousel-caption h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .carousel-header .carousel-caption p {
        font-size: 14px;
    }

    /* Controls position */
    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
    }

    /* Indicators */
    .carousel-header .carousel .carousel-indicators {
        padding-bottom: 10px;
    }
}

/***********************************
    SAFETY FIX FOR NEXT SECTION
************************************/
.about,
.about-section,
#about {
    position: relative;
    z-index: 1;
}

/************************************************
   ABOUT SECTION – FORCE OVERRIDE (BOOTSTRAP SAFE)
*************************************************/

/* About section wrapper */
.container-fluid.py-5 {
    background-color: #F7FAFC;
}

/* Subtitle (ABOUT ASHTAVINAYAK…) */
.container-fluid.py-5 .sub-title {
    font-family: 'Poppins', sans-serif;
    color: #E63946 !important;      /* Kesari Red */
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Main Heading */
.container-fluid.py-5 h1 {
    font-family: 'Poppins', sans-serif;
    color: #0B3C5D !important;      /* Navy Blue */
    font-weight: 700;
}

/* Paragraph text */
.container-fluid.py-5 p {
    font-family: 'Inter', sans-serif;
    color: #4B5563 !important;      /* Dark Gray */
    font-size: 16px;
    line-height: 1.7;
}

/* h5 feature titles */
.container-fluid.py-5 h5 {
    font-family: 'Poppins', sans-serif;
    color: #0B3C5D !important;
    font-weight: 600;
}

/* ===== BOOTSTRAP COLOR OVERRIDES ===== */

/* text-secondary override */
.container-fluid.py-5 .text-secondary {
    color: #0B3C5D !important;
}

/* text-primary override */
.container-fluid.py-5 .text-primary {
    color: #0B3C5D !important;
}

/* Icons (Om, Car, Route, Phone, Check) */
.container-fluid.py-5 i,
.container-fluid.py-5 .fa,
.container-fluid.py-5 .fas {
    color: #E63946 !important;      /* Kesari */
}

/* Experience / info box */
.container-fluid.py-5 .bg-light {
    background-color: #FFFFFF !important;
    border: 1px solid #E5E7EB;
}

/* Number "8" */
.container-fluid.py-5 .display-5 {
    font-family: 'Poppins', sans-serif;
    color: #0B3C5D !important;
    font-weight: 700;
}

/* Button */
.container-fluid.py-5 .btn-primary {
    background-color: #E63946 !important;
    border-color: #E63946 !important;
    color: #FFFFFF !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.container-fluid.py-5 .btn-primary:hover {
    background-color: #C53030 !important;
    border-color: #C53030 !important;
}

/* Call number */
.container-fluid.py-5 .text-secondary.fw-bold {
    color: #0B3C5D !important;
}

/************************************************
   MOBILE OPTIMIZATION
*************************************************/
@media (max-width: 768px) {

    .container-fluid.py-5 h1 {
        font-size: 28px;
    }

    .container-fluid.py-5 p {
        font-size: 15px;
    }
}


/*** 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 Styles */
.ashta-footer {
    background: linear-gradient(135deg, #0a2e38 0%, #1a3d4a 100%);
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
}

.ashta-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #ffd700, #d4af37);
    z-index: 1;
}

.footer-top {
    padding: 60px 0 40px;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* Logo Column */
.footer-col-logo {
    grid-column: span 1;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo-wrapper {
    position: relative;
    margin-right: 15px;
}

.footer-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: contain;
    border: 3px solid #d4af37;
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 5px;
}

.logo-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.footer-logo-text h5 {
    font-size: 1.5rem;
    margin: 0 0 5px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-subtitle {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
}

.footer-about {
    color: #b0bec5;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
    border-left: 3px solid #d4af37;
    padding-left: 15px;
}

/* Social Icons */
.footer-social h6 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
       text-decoration: none !important; 
}

.social-icon:hover {
    background: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* General Footer Columns */
.footer-col h6 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    font-weight: 600;
}

.footer-col h6 .icon-decor {
    color: #d4af37;
    margin-right: 8px;
}

/* Packages Section with 2 columns */
.footer-col-packages {
    grid-column: span 1;
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.package-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-column ul li {
    margin-bottom: 12px;
}

.package-column ul li a {
    color: #b0bec5;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    padding: 5px 0;
    line-height: 1.4;
}

.package-column ul li a i {
    margin-right: 8px;
    color: #d4af37;
    width: 16px;
    text-align: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.package-column ul li a:hover {
    color: #fff;
    transform: translateX(3px);
}

/* Contact Column */
.footer-col-contact {
    grid-column: span 1;
}

.footer-col-contact .contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    margin-bottom: 18px;
    align-items: flex-start;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #d4af37;
    font-size: 0.9rem;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-details {
    flex: 1;
}

.contact-label {
    color: #90a4ae;
    font-size: 0.8rem;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: #fff;
    margin: 0;
    font-size: 0.95rem;
}

/* Book Yatra Button */
.btn-book-yatra {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #0a2e38;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-book-yatra i {
    margin-right: 10px;
    font-size: 1rem;
}

.btn-book-yatra:hover {
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
    color: #0a2e38;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright p {
    color: #90a4ae;
    margin: 0;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.design-credit {
    color: #d4af37 !important;
    font-weight: 500;
}

/* Back to Top Button */
.back-to-top {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #d4af37;
    color: #0a2e38;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
    background: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .package-column:first-child {
        margin-bottom: 10px;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-col-logo {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col-logo {
        grid-column: span 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .back-to-top {
        position: relative;
        bottom: 0;
        right: 0;
        margin: 15px auto 0;
    }
}

@media (max-width: 576px) {
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-wrapper {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

  .visitor-counter{
    color:#ffd700;
    font-weight:600;
    font-size:14px;
    background:rgba(255,255,255,0.08);
    padding:6px 14px;
    border-radius:20px;
    box-shadow:0 0 8px rgba(255,215,0,0.4);
    animation: glow 2s infinite alternate;
}
/* ===============================
   COMMON SIDE BUTTON
================================ */
.side-btn{
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0,0,0,0.35);
    z-index: 9999;
    transition: 0.35s ease;
}

/* ICON */
.side-btn i{
    font-size: 25px;
    color: #fff;
}

/* ===============================
   POPUP MESSAGE
================================ */
.side-msg{
    position: absolute;
    background: #111;
    color: #fff;
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transition: 0.3s ease;
}

/* ===============================
   LEFT - WHATSAPP
================================ */
.left{
    left: 18px;
}

.whatsapp-btn{
    background: linear-gradient(135deg,#25D366,#1ebe5d);
}

.left .side-msg{
    left: 70px;
}

.left:hover .side-msg{
    opacity: 1;
    transform: translateX(6px);
}

.whatsapp-btn:hover{
    box-shadow: 0 0 20px rgba(37,211,102,0.9);
    transform: translateY(-50%) scale(1.08);
}

/* ===============================
   RIGHT - CALL
================================ */
.right{
    right: 18px;
}

.call-btn{
    background: linear-gradient(135deg,#0d6efd,#084298);
}

.right .side-msg{
    right: 70px;
}

.right:hover .side-msg{
    opacity: 1;
    transform: translateX(-6px);
}

.call-btn:hover{
    box-shadow: 0 0 20px rgba(13,110,253,0.9);
    transform: translateY(-50%) scale(1.08);
}

/* ===============================
   MOBILE VIEW
================================ */
@media(max-width:768px){
    .side-btn{
        top: auto;
        bottom: 20px;
        transform: none;
    }

    .left{
        left: 15px;
    }

    .right{
        right: 15px;
    }

    .side-msg{
        display: none; /* mobile clean */
    }
}
