/*--------------------- Responsive (Start) ---------------------*/
@media (max-width: 991px){

    html{
        font-size: 75%;
    } 
   
    /* Hide desktop navbar in mobile/tablet */
    .header .navbar{    
        display: none;
    } 
    
    .split-content-section{
        flex-direction: column;
    }
    .footer-logo img{
        height: 7rem;
    }
    
    /* Footer Logo Symbol - Separator */
    .footer-logo .logo-symbol {
        height: 6rem;
        width: auto;
        margin-right: 0.4rem;
        padding-right: 0.4rem;
        border-right: 2px solid rgba(255, 215, 0, 0.6);
    }

    /* Show mobile hamburger icon - always visible on mobile */
    .mobile-hamburger-icon{  
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 4.5rem;
        height: 4.5rem;
        font-size: 2.5rem;
        color: var(--white);
        cursor: pointer;
        z-index: 10003;
        visibility: visible !important;
        margin-left: auto;
    }

    .mobile-hamburger-icon:hover{
        color: var(--main-color);
    }

    .mobile-hamburger-icon i{
        pointer-events: none;
    }

    /* Hide book button in mobile */
    .header .icon-container .btn{
        display: none;
    }

    /* Header Layout for Tablet/Mobile */
    .header .header-2 .container{
        display: none;
    }

    .header .header-2{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        min-height: 7rem;
        padding: 0.5rem 1rem 0.5rem 1.5rem;
        /* Dark red gradient background like desktop header */
        background: linear-gradient(135deg, rgba(80, 0, 0, 0.95) 0%, rgba(139, 0, 0, 0.92) 50%, rgba(60, 0, 0, 0.95) 100%);
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .process-item .connector{
        display: none;
    }
    .venue-types-container{
        flex-direction: column;
    }
    .faq-wrapper{
        flex-direction: column;
    }
    .footer .box-container{
        flex-wrap: wrap;
    }

    .header .logo-container{
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: flex-start;
        position: static !important;
        transform: none !important;
    }

    .header .logo-container .logo{
        display: flex;
        align-items: center;
        justify-content: center;
        /* margin-top: 3rem;    */
        
    }

    .header .logo-container .logo img{
        width: auto;
        height: auto;
        max-width: 220px;
        max-height: 60px;
        position: static !important;
        transform: none !important;
    }

    .header .logo-container .logo .logo-symbol {
        width: auto;
        margin-right: 0.5rem;
        padding-right: 0.5rem;
        
    }

    .header .icon-container{
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        display: flex !important;
        visibility: visible !important;
        position: relative;
        z-index: 10002;
    }

    /* Hide desktop navbar in mobile/tablet */
    .header .nav-center,
    .header .navbar,
    .header .icon-container .btn-secondary{
        display: none !important;
    }

    /* Hide top bar in mobile */
    .header .header-1{
        display: none !important;
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        z-index: 10003;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
        -moz-transition: opacity 0.3s ease, visibility 0.3s ease;
        -o-transition: opacity 0.3s ease, visibility 0.3s ease;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-menu-overlay.active{
        opacity: 1;
        visibility: visible;
    }

    /* Sidebar Mobile Menu */
    .mobile-menu { 
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        z-index: 10004;
        overflow-y: auto; 
        overflow-x: hidden;
        /* Dark red gradient background like header */
        background: linear-gradient(135deg, rgba(80, 0, 0, 0.98) 0%, rgba(139, 0, 0, 0.95) 50%, rgba(60, 0, 0, 0.98) 100%);
        -webkit-transition: right 0.4s ease-in-out;
        -moz-transition: right 0.4s ease-in-out;
        -o-transition: right 0.4s ease-in-out;
        transition: right 0.4s ease-in-out;
        -webkit-box-shadow: -0.5rem 0 2rem rgba(0, 0, 0, 0.5);
                box-shadow: -0.5rem 0 2rem rgba(0, 0, 0, 0.5);
        padding: 2rem;
        padding-top: 7rem;
    } 

    .mobile-menu.active {
        right: 0;
        z-index: 100025;
    }

    /* Close Button for Mobile Menu */
    .mobile-menu .mobile-close-btn{
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 3rem;
        color: var(--white);
        cursor: pointer;
        z-index: 10001;
    }

    .mobile-menu .mobile-close-btn:hover{
        color: var(--main-color);
        -webkit-transform: rotate(90deg);
           -moz-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
             -o-transform: rotate(90deg);
                transform: rotate(90deg);
    }

    /* Mobile Menu Logo */
    .mobile-menu .mobile-logo{
        text-align: center;
        margin-bottom: 3rem;
        padding-bottom: 2rem;
        border-bottom: 0.2rem solid rgba(255, 153, 51, 0.3);
    }

    .mobile-menu .mobile-logo img{
        width: 100%;
        height: auto;
        max-width: 100%;
        filter: brightness(1.2)   /* increase brightness */
          drop-shadow(0 4px 10px rgba(0,0,0,0.4));
    }

    .mobile-menu .mobile-logo .logo-symbol {
        height: 3.5rem;
        width: auto;
        margin-right: 0.3rem;
        padding-right: 0.3rem;
        
    }
    
    .mobile-navbar{
        display: -webkit-box; 
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 1rem;
    }

    .mobile-navbar .nav-link{
        overflow: hidden;
    }

    .mobile-navbar .main-nav-link,
    .mobile-navbar .sub-nav-link a{
        display: inline-block;
        color: var(--white);
        font-size: 1.7rem;
        font-weight: 600;
        cursor: pointer; 
        width: 100%;
        padding: 1.3rem 1.2rem;
        border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .mobile-navbar .main-nav-link:hover,
    .mobile-navbar .sub-nav-link a:hover{
        background: rgba(255, 153, 51, 0.1);
        padding-left: 2rem;
    }

    .mobile-navbar .sub-nav-link a.active{
        color: var(--main-color);
        font-weight: 700;
    }

    .mobile-navbar .main-nav-link{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify; 
        justify-content: space-between; 
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .mobile-navbar .main-nav-link a{
        color: var(--white);
    }
    
    .mobile-navbar .sub-nav-link {
        padding: 0.8rem 0;
        padding-left: 3.5rem;
        display: none;
        -webkit-transition: all 0s;
        -moz-transition: all 0s;
        -o-transition: all 0s;
        transition: all 0s;
    }
    
    .mobile-navbar .sub-nav-link a:hover{
        color: var(--main-color);
    }
    
    .mobile-menu::-webkit-scrollbar{
        width: 0.8rem; 
    }
    
    .mobile-menu::-webkit-scrollbar-thumb{
        border-radius: 1rem;
        background-color: var(--main-color);
    }
    
    .mobile-menu::-webkit-scrollbar-track{
        background: transparent;
    }

    /* Mobile Menu Contact Info */
    .mobile-contact-info{
        margin-top: 2.5rem;
        padding-top: 1.5rem;
        border-top: 0.2rem solid rgba(255, 153, 51, 0.3);
    }

    .mobile-contact-info h3{
        color: var(--white);
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1.5rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 0.8rem;
    }

    .mobile-contact-info .contact-item{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 1.2rem;
        color: var(--white);
        font-size: 1.5rem;
        padding: 0.8rem 1.2rem;
        margin-bottom: 0.8rem;
        background: rgba(255, 153, 51, 0.05);
        -webkit-border-radius: 0.5rem;
           -moz-border-radius: 0.5rem;
                border-radius: 0.5rem;
    }

    .mobile-contact-info .contact-item i{
        color: var(--main-color);
        font-size: 1.6rem;
    }

    /* Mobile Book Now Button */
    .mobile-book-now{
        margin: 2rem 0;
        text-align: center;
    }

    .mobile-book-now .btn{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        padding: 1.3rem 2.5rem;
        font-size: 1.5rem;
        font-weight: 600;
        width: 100%;
        max-width: 250px;
    }

    .mobile-book-now .btn i{
        font-size: 1.6rem;
    }

    /* Mobile Social Links */
    .mobile-social{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 1.2rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 0.2rem solid rgba(255, 153, 51, 0.3);
    }

    .mobile-social a{
        width: 4.5rem;
        height: 4.5rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.8rem;
        background: rgba(255, 153, 51, 0.1);
        -webkit-border-radius: 50%;
           -moz-border-radius: 50%;
                border-radius: 50%;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .mobile-social a:hover{
        background: var(--main-color);
        -webkit-transform: translateY(-0.3rem);
           -moz-transform: translateY(-0.3rem);
            -ms-transform: translateY(-0.3rem);
             -o-transform: translateY(-0.3rem);
                transform: translateY(-0.3rem);
    }


    .blog.grid, .blog.list{
        -ms-flex-wrap: wrap-reverse;
            flex-wrap: wrap-reverse;
    }

    .shop{
        -ms-flex-wrap: wrap-reverse;
            flex-wrap: wrap-reverse;
    }

    .features .box-container{
        -ms-grid-columns: (minmax(28rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    }

    .team .box-container{
        -ms-grid-columns: (minmax(28rem, 1fr))[auto-fit];
            grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    }

    .partners .gallery-container{
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: repeat(2, 1fr);
    }

    .partners .gallery-slider{
        padding: 0 5rem;
    }

    .page-single{
        gap: 3rem;
    }

    .portfolio-item{
        width: 50%;
    }

    .team-item {
        height: 45rem;
    }

    .shop,
    .blog.grid,
    .blog.list{
        gap: 3rem;
    }

    .vendor-categories .box-container{
        -ms-grid-columns: 1fr 1fr;
            grid-template-columns: 1fr 1fr;
        grid-template-areas: 
        'category-1 category-1'
        'category-2 category-3'
        'category-4 category-5'
        'category-6 category-6'
    }

    /* Service Detail Pages - Tablet */
    .service-features-grid{
        -ms-grid-columns: 1fr 2rem 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .process-steps{
        -ms-grid-columns: 1fr 2rem 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .testimonials-grid{
        -ms-grid-columns: 1fr 2rem 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Wedding Management Page - Tablet */
    .service-cards-grid{
        -ms-grid-columns: 1fr 2rem 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    /* Image Collage - Tablet */
    .image-collage-grid{
        -ms-grid-columns: 1fr 2rem 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .collage-item{
        height: 28rem;
    }

    .split-content-section{
        gap: 4rem;
    }

    /* Udaipur Section - Tablet */
    .udaipur-split-layout{
        gap: 5rem;
    }

    .collage-layout{
        height: 60rem;
    }

    /* Book Your Date - Tablet */
    .book-date-container{
        gap: 5rem;
    }

    .booking-form-wrapper{
        padding: 4rem 3rem;
    }

    .booking-image-wrapper{
        min-height: 50rem;
    }

    /* Home Gallery - Tablet */
    .home-gallery-slider-wrapper{
        padding: 0 4rem;
    }

    .home-gallery-image{
        height: 35rem;
    }
    .heading .sub span{
        font-size: 1.5rem;
    }

}

@media (max-width: 768px){

    html{
        font-size: 65%;
    }

    section{
        padding: 3rem 2rem;
    }

    .header .header-1{
        padding-left: 1rem;
        display: none;
    }

    .header .header-2{
        padding: 0.8rem 1.2rem;
        min-height: 6rem;
        /* Dark red gradient background */
        background: linear-gradient(135deg, rgba(80, 0, 0, 0.95) 0%, rgba(139, 0, 0, 0.92) 50%, rgba(60, 0, 0, 0.95) 100%);
    }

    .header .logo-container{
        justify-content: flex-start;
    }

    .header .logo-container .logo img{
        max-width: 150px;
        max-height: 50px;
        position: static !important;
        transform: none !important;
    }

    /* Ensure navbar and nav-center are hidden */
    .header .nav-center,
    .header .navbar,
    .header .icon-container .btn-secondary,
    .header .header-2 .container{
        display: none !important;
    }

    .header .logo-container .logo .logo-symbol {
        width: auto;
        margin-right: 0.4rem;
        padding-right: 0.4rem;
    }

    .header .social-contacts{
        width: 50%;
        padding: 0.5rem 1rem;
    }
    .process-item .connector{
        display: none;
    }
    .royal-destination .background-video{
        min-height: 60vh;
        height: 100%;
        object-fit: cover;
    }
    .footer .box-container{
        padding: 2rem;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 3rem;
    }
    .footer-bottom-right .social{
        justify-content: center;
        align-items: center;
    }
    .footer-bottom{
        grid-template-columns: repeat(1, 1fr);
    }

    /* Destination Gallery Grid Tablet */
    .destination-gallery-grid{
        -ms-grid-columns: 1fr 2.5rem 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .destination-gallery-item{
        height: 30rem;
    }

    .cta-content h3{
        font-size: 2.8rem;
    }

    .cta-content p{
        font-size: 1.7rem;
    }

    /*----- Footer Responsive - Medium Devices (Tablet) -----*/
    .footer-item.footer-logo{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer-item.footer-services,
    .footer-item.footer-destinations,
    .footer-item.footer-links,
    .footer-item.footer-contact{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 1.5rem);
        flex: 0 0 calc(50% - 1.5rem);
        max-width: calc(50% - 1.5rem);
    }

    .search-container{
        right: 1rem;
    }

    .home-item{
        height: 75rem;
    }

    .home-item .content{ 
        padding: 10rem 2rem;
    }

    .project-item{
        width: 50%;
    }

    .team-item {
        height: 45rem;
    }

    .gallery .box-container{
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        grid-template-areas:
        'gallery-1 gallery-4'
        'gallery-2 gallery-4'
        'gallery-3 gallery-7'
        'gallery-3 gallery-8'
        'gallery-5 gallery-9'
        'gallery-6 gallery-9';
    }

    .collage-large,
    .about .collage-large{
        height: 35rem;
    }
    .about .content{
        padding: 2rem;
    }
    
    .collage-small,
    .about .collage-small{
        height: 11rem;
    }

    /* Venue Types Tablet */
    .venue-types-container{
        flex-direction: column;
    }

    .venue-row{
        flex-wrap: wrap;
        justify-content: center;
    }

    .venue-card{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.33% - 1.35rem);
        flex: 0 0 calc(33.33% - 1.35rem);
        max-height: 200px;
        max-width: 200px;
    }

    .venue-card h3{
        font-size: 1.5rem;
    }

    .venue-featured-image{
        width: 100%;
        flex: 0 0 100%;
    }

    .venue-featured-image .venue-types-featured-slider{
        min-height: 40rem;
    }

    /* Hide FAQ Image in Tablet */
    .faq-image{
        display: none;
    }

    .faq-wrapper{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .faq-content{
        width: 100%;
        max-width: 100%;
    }

    /* Remove process arrows in tablet */
    .process-item .icon-wrapper::after{
        display: none !important;
    }
     .booking-image-section{
        display: none !important; /* Hide image on mobile/tablet */
    }

}

@media (max-width: 450px){
    
    html{
      font-size: 50%;
    }
    .why-udaipur-section{
        margin: opx;
        padding: 0px;
    }
    .destination-gallery-section{
        padding: 0px;
    }

    section{
        padding: 3rem 1rem;
    }
    .page-title .title h2 {
        font-size: 3rem;
    }
    .blog-single {
        margin: 1rem 3rem;
    }
    .page-info .main-heading{
        font-size: 2.5rem;
    }

    .partners .gallery-container{
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partners .gallery-slider{
        padding: 0 4rem;
    }

    .partners .gallery-item{
        height: auto;
        min-height: 25rem;
    }

    .partners .gallery-item img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Venue Types Mobile */
    .venue-types-container{
        height: auto !important;
        min-height: auto !important;
        flex-direction: column;
    }

    .venue-cards-wrapper{
        width: 100%;
    }

    .venue-row{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 1.5rem;
    }

    .venue-card{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 0.75rem);
        flex: 0 0 calc(50% - 0.75rem);
        max-height: 150px;
        max-width: 150px;
        min-width: 140px;
    }

    .venue-card h3{
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        bottom: 1rem;
    }

    .venue-featured-image{
        width: 100%;
        flex: 0 0 100%;
    }

    .venue-featured-image .venue-types-featured-slider{
        min-height: 30rem;
    }

    .mobile-menu {
        padding: 1rem;
        padding-top: 6rem;
        width: 90%;
        max-width: 320px;
    }

    /* Who We Are & What Do We Do Mobile Responsive */
    .who-we-are,
    .what-we-do{
        padding: 3rem 0;
    }

    .who-we-are-wrapper,
    .what-we-do-wrapper{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 2rem;
    }

    .who-content .heading h2,
    .what-content .heading h2{
        font-size: 2.5rem;
    }

    .what-content .service-item{
        margin-bottom: 2rem;
    }

    .what-content .service-item h3{
        font-size: 1.8rem;
    }

    .what-content .service-item p,
    .who-content p{
        font-size: 1.5rem;
    }

    .royal-destination{
        padding: 0;
        min-height: 60vh;
    }

    .royal-destination .background-video{
        min-height: 60vh;
        height: 100%;
        object-fit: cover;
    }

    .royal-destination-content h2{
        font-size: 1.3rem;
    }

    .royal-destination-content h4{
        font-size: 1.4rem;
    }
    .royal-destination-content h5{
        font-size: 2rem;
    }

    .royal-destination-content .btn{
        padding: 1.2rem 3rem;
        font-size: 1.5rem;
    }

    /* Remove process arrows in mobile */
    .process-item .icon-wrapper::after{
        display: none !important;
    }

    .what-image::before{
        display: none;
    }

    .career .career-intro,
    .career-positions,
    .career-benefits,
    .contact .box-container{
        padding: 3rem 1rem;
    }

    .header .header-1{
        padding-left: 1rem;
        display: none;
    }

    .header .header-2{
        padding: 0.8rem 1rem;
        min-height: 5.5rem;
        /* Dark red gradient background */
        background: linear-gradient(135deg, rgba(80, 0, 0, 0.95) 0%, rgba(139, 0, 0, 0.92) 50%, rgba(60, 0, 0, 0.95) 100%);
    }

    .header .logo-container{
        justify-content: flex-start;
    }

    .header .logo-container .logo img{
        max-width: 100%;
        max-height: 45px;
        position: static !important;
        transform: none !important;
        margin-top: 0;
    }

    /* Ensure navbar and nav-center are hidden in small mobile */
    .header .nav-center,
    .header .navbar,
    .header .icon-container .btn-secondary,
    .header .header-2 .container{
        display: none !important;
    }

    .header .logo-container .logo .logo-symbol {
        width: auto;
        margin-right: 0.3rem;
        padding-right: 0.3rem;
        
    }
    .footer-logo img{
        height: 9rem;
    }

    /* Footer Logo Symbol - Separator */
    .footer-logo .logo-symbol {
        height: 8rem;
        width: auto;
        margin-right: 0.4rem;
        padding-right: 0.4rem;
        border-right: 2px solid rgba(255, 215, 0, 0.6);
    }

    .header .social-contacts{
        width: 50%;
        padding: 0.5rem 1rem;
    }

 

    /* Footer Mobile - 2 Sections Per Row */
    .footer .box-container{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        /* padding: 5rem; */
    }

    .footer-item.col-lg-3,
    .footer-item.col-md-6,
    .footer-item.col-sm-6{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 1.5rem);
        flex: 0 0 calc(50% - 1.5rem);
        max-width: calc(50% - 1.5rem);
    }

    /* Header Dropdown Icons */
    .header .dropdown-content a i{
        font-size: 1.2rem;
    }

    .footer .box-container{
        padding: 2rem 1rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 3rem;
    }

    /*----- Footer Responsive - Small Devices -----*/
    .footer .box-container{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 3rem;
    }

    .footer-item.footer-logo{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        order: 1;
        margin-bottom: 3rem;
        justify-content: center;
        align-items: center;
        z-index: 1;
    }

    .footer-item.footer-services,
    .footer-item.footer-destinations{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 1.5rem);
        flex: 0 0 calc(50% - 1.5rem);
        max-width: calc(50% - 1.5rem);
        order: 2;
    }

    .footer-item.footer-links,
    .footer-item.footer-contact{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 1.5rem);
        flex: 0 0 calc(50% - 1.5rem);
        max-width: calc(50% - 1.5rem);
        order: 3;
    }

    .footer-item h2{
        font-size: 2.2rem;
        text-align: left;
        padding-bottom: 1.5rem;
    }

    .footer-item .logo{
        margin: 0 0 2rem 0;
        display: block;
    }

    .footer-item > p{
        text-align: left;
        font-size: 1.6rem;
        line-height: 1.8;
    }

    .footer-item .info{
        text-align: left;
    }

    .footer-item .info p{
        justify-content: flex-start;
    }

    .footer-item .gmail{
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        display: inline-block;
    }

    .footer-item .info p span{
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .process-item .connector{
        display: none;
    }

    /*----- Loader Responsive - Mobile -----*/
    .mandala-container{
        width: 25rem;
        height: 25rem;
    }

    .logo-center{
        width: 10rem;
        height: 10rem;
    }

    .loader-text p{
        font-size: 1.6rem;
    }

    /*----- Footer Bottom Responsive -----*/
    .footer-bottom{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-bottom-left,
    .footer-bottom-center,
    .footer-bottom-right{
        text-align: center;
    }

    .footer-bottom-right .social{
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .footer-bottom-left p,
    .footer-bottom-center p{
        font-size: 1.4rem;
    }

    .footer-item > p{
        font-size: 1.8rem;
    }

    .footer-item .info a{
        font-size: 2.2rem;
    }

    .home-item{
        height: 100vh;
    }

    .home-item .content .text{
        margin-top: 6rem;
    }

    .home-slider .swiper-button-next,
    .home-slider .swiper-button-prev{
        display: none;
    }

    .features{
        padding-bottom: 1rem;
    }

    .about .experience{
        padding: 2rem;
    }

    .testi-item .intro{
        padding: 0;
    }

    .comment .comment-content{
        -webkit-box-flex: 1;
        -ms-flex: 1 1 25rem;
            flex: 1 1 25rem;
    }

    .comment.reply .comment-content{
        -webkit-box-flex: 1;
        -ms-flex: 1 1 15rem;
            flex: 1 1 15rem;
    }

    .form .input-box,
    .dark-form .input-box{
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .dark-form .input-box .input-field,
    .dark-form .select{
        -webkit-box-flex: 1;
            -ms-flex: 1 1 25rem;
                flex: 1 1 25rem;
    }

    .team-single .image{
        width: 100%;
    }

    .team-item .team-image{
        height: 40rem;
    }

    .gallery-item{
        height: 40rem !important;
    }

    .gallery .box-container{
        -ms-grid-columns: 1fr;
            grid-template-columns: 1fr;
        grid-template-areas: 
        'gallery-1'
        'gallery-2'
        'gallery-3'
        'gallery-4'
        'gallery-5'
        'gallery-6'
        'gallery-7'
        'gallery-8'
        'gallery-9';
    }

    .account-form{
        max-width: 100%;
    }

    .portfolio-item{
        width: 100%;
    }

    .shop .product-container.list .product-item {
        gap: 0rem;
    }

    .shop .product-container.list .product-item .image {
        width: 30rem;
    }

    .shop .product-container.list .product-item .content {
        padding: 1rem;
        width: 100%;
    }

    .shop .product-container.list .product-item .content p {
        line-height: 1.5;
    }

    .product-info .leave-reply{
        width: 100%;
    }

    .cart .cart-summary{
        width: 100%; 
    }
    
    .whyUs .content,
    .custom-form .content{
        padding: 4rem 5%;
        -webkit-clip-path: none;
                clip-path: none;
    }

    .contact .contact-info .info-item{
        -webkit-box-flex: 1;
        -ms-flex: 1 1 15rem;
            flex: 1 1 15rem;
    }

    .collage-large,
    .about .collage-large{
        height: 28rem;
    }

    .collage-small,
    .about .collage-small{
        height: 9rem;
    }

    .collage-grid,
    .about .collage-grid{
        gap: 1.5rem;
    }

    /* Who We Are Section Responsive */
    .who-we-are-wrapper,
    .what-we-do-wrapper{
        gap: 3rem;
    }

    .who-content .heading h2,
    .what-content .heading h2{
        font-size: 3rem;
    }

    .what-content .service-item h3{
        font-size: 2rem;
    }

    .royal-destination-content h2{
        font-size: 2.5rem;
    }

    .royal-destination-content h4{
        font-size: 1.6rem;
    }
    .royal-destination-content {
        margin-top: 8rem;
    }
    .royal-destination-content h5{
        font-size: 2rem;
        font-weight:800;
    }

    /* Video Section Mobile */
    .royal-destination{
        min-height: 50vh;
        padding: 0;
    }

   

    /* Remove process arrows in mobile */
    .process-item .icon-wrapper::after{
        display: none !important;
    }

    /* FAQ Section Responsive */
    .faq-wrapper{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 4rem;
    }

    .faq-image{
        -webkit-box-flex: 1;
        -webkit-flex: 1;
           -moz-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        width: 100%;
    }

    .faq-image img{
        height: 50rem;
    }

    .faq-content .heading h2{
        font-size: 3.5rem;
    }

    .faq-question h3{
        font-size: 1.6rem;
    }

    /* Testimonials Section Responsive */
    .testimonials-about{
        padding: 6rem 0;
    }

    .testimonials-about .heading h2{
        font-size: 3.5rem;
    }

    .testimonial-card{
        height: 40rem;
    }
    .booking-image-section{
        display: none !important; /* Hide image on mobile/tablet */
    }
    
}

/* Mobile Responsive (450px and below) */
@media (max-width: 450px){

    /* FAQ Section Mobile */
    .faq-section{
        padding: 5rem 0;
    }

    .faq-content .heading h2{
        font-size: 2.8rem;
    }

    .faq-image{
        display: none;
    }

    .faq-question{
        padding: 1.5rem 2rem;
    }

    .faq-question h3{
        font-size: 1.4rem;
    }

    .faq-answer p{
        font-size: 1.4rem;
    }

    .faq-item.active .faq-answer{
        padding: 0 2rem 1.5rem;
    }

    /* Testimonials Mobile */
    .testimonials-about{
        padding: 5rem 0;
    }

    .testimonials-about .heading h2{
        font-size: 2.8rem;
    }

    .testimonial-card{
        height: 35rem;
    }

    .testimonial-content h3{
        font-size: 2.2rem;
    }

    .testimonial-content .location{
        font-size: 1.4rem;
    }

    .testimonial-content .testimonial-text{
        font-size: 1.4rem;
    }

    .testimonials-next,
    .testimonials-prev{
        width: 4rem;
        height: 4rem;
        font-size: 1.6rem;
    }

    /* Service Detail Pages Responsive */
    .service-features-grid{
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-steps{
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-choose-us{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 3rem;
    }

    .testimonials-grid{
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Wedding Management Page Responsive */
    .service-cards-grid{
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .split-content-section{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 3rem;
    }

    /* .service-top-section .heading h2{
        font-size: 2.5rem;
    } */
     .service-top-section{
        padding: 2rem;
        margin: 0px;
        max-width: 100%;
     }
     .about .heading h2{
        text-align: center;
     }
    .heading h2{
        font-size: 2.5rem;
    }

    .second-content-section .heading h2{
        font-size: 2.8rem;
    }

    /* .split-content .heading h2{
        font-size: 2.5rem;
    } */

    /* Image Collage Responsive */
    .image-collage-grid{
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .collage-item{
        height: 25rem;
    }

    /* Udaipur Section Responsive */
    .udaipur-split-layout{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 4rem;
    }

    .collage-layout{
        height: 50rem;
    }

    .udaipur-content .heading h2{
        font-size: 2.5rem;
    }

    .udaipur-features .feature-icon{
        width: 3.5rem;
        height: 3.5rem;
    }

    .udaipur-features .feature-icon svg{
        width: 1.8rem;
        height: 1.8rem;
    }

    /* Book Your Date Page Responsive */
    .book-date-container{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 4rem;
    }

    .booking-form-wrapper{
        padding: 3rem 2rem;
    }

    .form-header .heading h2{
        font-size: 2.5rem;
    }

    .form-row{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 2.5rem;
    }

    .checkbox-group{
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .booking-image-wrapper{
        min-height: 40rem;
    }

    .image-overlay{
        padding: 2rem;
    }

    .overlay-content h3{
        font-size: 2.2rem;
    }

    /* Booking Modal Responsive */
    .modal-body{
        flex-direction: column;
    }

    .booking-image-section{
        display: none !important; /* Hide image on mobile/tablet */
    }

    .booking-form-section{
        padding: 2rem 1.5rem;
    }

    .modal-content{
        padding: 3rem 2rem;
        max-height: 95vh;
    }

    .modal-close{
        width: 3.5rem;
        height: 3.5rem;
        top: 1.5rem;
        right: 1.5rem;
    }

    .modal-close svg{
        width: 1.8rem;
        height: 1.8rem;
    }

    .modal-header .heading h2{
        font-size: 2.2rem;
        display: none;
    }
   .submit-btn{
    margin-top: 0px;
   }
  .about .heading{
    align-items: center;
  }

    .wedding-booking-form .form-row{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 2rem;
    }

    .checkbox-group{
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Destination Gallery Grid Responsive */
    .destination-gallery-grid{
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
        margin-left: 10px;
        margin-right: 10px;
    }

    .destination-gallery-item{
        height: 28rem;
    }

    .cta-content h3{
        font-size: 2.6rem;
    }

    .cta-content p{
        font-size: 1.6rem;
    }

    .cta-content .btn{
        padding: 1.3rem 3.5rem;
        font-size: 1.5rem;
    }

    /* Mobile Menu Styling */
    .mobile-logo{
        text-align: center;
        padding: 1.5rem 0;
        border-bottom: 0.2rem solid rgba(255, 153, 51, 0.3);
        margin-bottom: 1.5rem;
    }

    .mobile-logo img{
        max-width: 180px;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .mobile-logo .logo-symbol {
        height: 3rem;
        width: auto;
        margin-right: 0.3rem;
        padding-right: 0.3rem;
        
    }

    .mobile-contact-info{
        margin-top: 1.5rem;
        padding: 1.5rem;
        background: rgba(255, 153, 51, 0.08);
        border-radius: 0.8rem;
        border: 0.1rem solid rgba(255, 153, 51, 0.3);
    }

    .mobile-contact-info h3{
        color: var(--main-color);
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
    }

    .mobile-contact-info .contact-item{
        display: flex;
        align-items: center;
        gap: 0.8rem;
        padding: 0.8rem 0;
        color: var(--white);
        font-size: 1.4rem;
        border-bottom: 0.1rem solid rgba(255, 255, 255, 0.08);
    }

    .mobile-contact-info .contact-item:last-child{
        border-bottom: none;
    }

    .mobile-contact-info .contact-item i{
        color: var(--main-color);
        font-size: 1.4rem;
        width: 1.8rem;
        flex-shrink: 0;
    }

    /* Mobile Book Now Button - Small Screens */
    .mobile-book-now{
        margin: 1.5rem 0;
        text-align: center;
    }

    .mobile-book-now .btn{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        padding: 1.2rem 2rem;
        font-size: 1.4rem;
        font-weight: 600;
        width: 100%;
        max-width: 220px;
    }

    .mobile-book-now .btn i{
        font-size: 1.5rem;
    }

    .mobile-social{
        display: flex;
        justify-content: center;
        gap: 1.2rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 0.2rem solid rgba(255, 153, 51, 0.3);
    }

    .mobile-social a{
        height: 4.2rem;
        width: 4.2rem;
        font-size: 1.6rem;
        color: var(--white);
        background: var(--main-color);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s;
    }

    .mobile-social a:hover{
        background: var(--secondary-color);
        transform: translateY(-3px);
    }

    .mobile-navbar .nav-link .nav-btn i{
        margin-right: 1rem;
        color: var(--main-color);
    }

    .mobile-navbar .sub-nav-link a i{
        margin-right: 1rem;
        color: var(--main-color);
        font-size: 1.4rem;
    }
    .contact-info .contact-info-container{
        padding-left: 2rem;
    }

    /* Venue Types Responsive */
    .venue-types-container{
        flex-direction: column;
        gap: 3rem;
    }

    .venue-row{
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .venue-card{
        max-height: 180px;
        max-width: 180px;
        min-width: 150px;
    }

    .venue-card h3{
        font-size: 1.4rem;
        padding: 0.5rem 1.5rem;
        bottom: 1.5rem;
    }

    .venue-featured-image{
        flex: 1;
        min-height: 35rem;
    }

    .venue-featured-image .venue-types-featured-slider{
        min-height: 35rem;
    }

    /* Gallery Slider Fixes */
    .partners .gallery-slider{
        padding: 0 2rem;
    }

    .partners .gallery-item{
        height: auto;
        min-height: 25rem;
    }

    .partners .gallery-item img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Scroll to Top Button Responsive */
    .scroll-top{
        bottom: 1.5rem;
        right: 1.5rem;
        height: 4.5rem;
        width: 4.5rem;
        font-size: 1.8rem;
    }

    /* Home Gallery Section Mobile */
    .home-gallery-slider-wrapper{
        padding: 0 3rem;
    }

    .home-gallery-image{
        height: 30rem;
    }

    .home-gallery-next,
    .home-gallery-prev{
        width: 4rem;
        height: 4rem;
        font-size: 1.6rem;
    }

    .home-gallery-next::after,
    .home-gallery-prev::after{
        font-size: 1.6rem;
    }
  
    
}

@media (max-width:1200px){
 .logo img{
    max-width: 200px;
}
 .footer-logo img{
        height: 7rem;
    }

    /* Footer Logo Symbol - Separator */
    .footer-logo .logo-symbol {
        height: 6rem;
        width: auto;
        margin-right: 0.4rem;
        padding-right: 0.4rem;
        border-right: 2px solid rgba(255, 215, 0, 0.6);
    }
}
    



/*--------------------- Responsive (End) ---------------------*/