@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

/* ============================================
   SCROLL FADE-IN-UP ANIMATION
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grouped elements */
.fade-up.delay-1 {
    transition-delay: 0.1s;
}

.fade-up.delay-2 {
    transition-delay: 0.2s;
}

.fade-up.delay-3 {
    transition-delay: 0.3s;
}

.fade-up.delay-4 {
    transition-delay: 0.4s;
}

.fade-up.delay-5 {
    transition-delay: 0.5s;
}

/* ============================================
   BUTTON HOVER ANIMATIONS
   (all buttons except .experts-btn)
   ============================================ */
.about-btn {
    position: relative;
    overflow: hidden;
}

.about-btn::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
    border-radius: 50%;
}

.about-btn:hover::before {
    transform: scale(1);
}

.about-btn:hover {
    background: #b08b49;
    box-shadow: 0 8px 30px rgba(203, 170, 106, 0.5), inset 0 2px 20px rgba(255, 255, 255, 0.2);
}

.customization-btn {
    position: relative;
    overflow: hidden;
}

.tent-back a {
    position: relative;
    overflow: hidden;
}

.tent-back a::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
    border-radius: 50%;
}

.tent-back a:hover::before {
    transform: scale(1);
}

.tent-back a:hover {
    background: #b08b49;
    box-shadow: 0 8px 30px rgba(203, 170, 106, 0.5), inset 0 2px 20px rgba(255, 255, 255, 0.2);
}

/* Contact Form Button (future use) */
.contact-form button {
    width: 211px;
    height: 56px;
    background: #CBAA6A;
    color: #fff;
    border: none;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 30px;
}

.contact-form button::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
    border-radius: 50%;
}

.contact-form button:hover::before {
    transform: scale(1);
}

.contact-form button:hover {
    background: #b08b49;
    box-shadow: 0 8px 30px rgba(203, 170, 106, 0.5), inset 0 2px 20px rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
}

section {
    margin-bottom: 60px;
}

section:last-child {
    margin-bottom: 0;
}



.hero-gallery {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background: #fff;
}

.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Image / Video full width cover */
.hero-banner img,
.hero-banner video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-banner video.hero-banner-video {
    width: 100%;
    max-height: 85vh;
    min-height: 380px;
    object-fit: cover;
    display: block;
    background: #000;
}



.about-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 20px 60px 0;
}

.about-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 70px;
}

.about-left {
    flex: 0 1 756px;
    max-width: 756px;
}

.about-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.about-right {
    flex: 1;
    align-self: flex-start;
}

.about-right span {
    display: block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #404093;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: 'Bricolage Grotesque', sans-serif;
}

.about-right h2 {
    color: #18171C;
    max-width: 530px;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 40px;
    font-family: 'Lora', serif;
}

.about-right p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.9;
    color: #000000;
    margin-bottom: 20px;
    font-family: 'Bricolage Grotesque', sans-serif;
}

.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 18px 30px;
    background: #CBAA6A;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease;
    max-width: 146px;
    height: 56px;
    font-family: 'Bricolage Grotesque', sans-serif;
    border-radius: 30px;
}

/* about-btn hover handled in animation section above */

@media(max-width:1024px) {


    .hero-gallery {
        flex-direction: row;
        gap: 2px;
    }

    .hero-left {
        flex: 0 0 56%;
        height: 500px;
    }

    .hero-right {
        flex: 1;
        height: 500px;
        flex-direction: row;
    }

    .hero-right .box {
        height: 100%;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 13px;
        line-height: 19px;
    }
}

/* === CHANGE KIA GAYA: 1024px se 1200px kar diya (1200px par bhi Left-Right rahega) === */
@media(max-width:1200px) {
    .about-container {
        display: flex;
        align-items: flex-start;
        gap: 40px;
    }

    .about-left {
        flex: 0 1 50%;
        max-width: 50%;
    }

    .about-left img {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }

    .about-right {
        flex: 0 1 50%;
        max-width: 50%;
    }

    .about-right h2 {
        font-size: 32px;
        max-width: 100%;
    }

    .about-right p {
        font-size: 13px;
        line-height: 1.8;
    }
}

/* ============================================================================ */

@media(max-width:991px) {
    .hero-left {
        height: 450px;
    }

    .hero-right {
        height: 450px;
    }

    .about-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .about-left {
        max-width: 100%;
        flex: 0 0 100%;
        width: 100%;
    }

    .about-left img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .about-right {
        max-width: 100%;
        flex: 0 0 100%;
        width: 100%;
        padding-top: 0;
        text-align: center;
    }

    .about-right h2 {
        margin: 0 auto 25px;
        font-size: 34px;
        max-width: 100%;
    }

    .about-btn {
        margin: 20px auto;
    }
}

@media(max-width:768px) {


    .hero-gallery {
        flex-direction: row;
        gap: 2px;
    }

    .about-section {
        margin: 60px auto;
        padding: 0px 15px;
    }
}

@media(max-width:576px) {


    .hero-gallery {
        flex-direction: row;
        gap: 2px;
    }


    .about-section {

        margin: 40px auto;
        padding: 0px 12px;
    }

    .about-container {
        gap: 25px;
    }

    .about-right span {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .about-right h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .about-right p {
        font-size: 13px;
        line-height: 1.7;
    }

    .about-btn {
        padding: 14px 25px;
        font-size: 13px;
        max-width: 130px;
        height: 48px;
    }
}

@media(max-width:400px) {


    .about-right h2 {
        font-size: 22px;
    }

    .about-right p {
        font-size: 12px;
    }

    .about-btn {
        padding: 12px 20px;
        font-size: 12px;
        max-width: 110px;
        height: 42px;
    }
}

.features-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 25px 30px;
    background: #fff;
}

.features-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 50px;
}

.features-left {
    width: 360px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-tab {
    position: relative;
    cursor: pointer;
    padding: 0 0 35px;
    margin-bottom: 35px;
    transition: .4s;
}

.feature-tab:last-child {
    margin-bottom: 0;
}

.feature-tab h3 {
    font-size: 32px;
    font-weight: 400;
    font-family: 'Lora', serif;
    color: #18171C;
    transition: .4s;
}

.feature-tab:hover h3 {
    color: #CBAA6A;
}

.feature-tab::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #D8D8D8;
    transition: .4s;
}

/* Active tab pointer/arrow (desktop only) */
.feature-tab::before {
    rotate: 180deg;
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(40%);
    width: 0px;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease;
    z-index: 2;
}

.feature-tab.active::before {
    border-left-color: #F5F5F5;
    /* features-right ka background color */
    opacity: 1;
    visibility: visible;
}

.feature-tab.active h3 {
    color: #CBAA6A;
}

.feature-tab.active::after {
    background: #CBAA6A;
    height: 2px;
}

.features-right {
    border-radius: 8px;
    flex: 1;
    background: #F5F5F5;
    padding: 20px 60px;
    position: relative;
    overflow: hidden;
    height: 437px;
    min-height: 437px;
}

/* .features-right::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -220px;
    top: -180px;
    border-radius: 50%;
    background: #CBAA6A;
    opacity: .05;
} */

.feature-content {
    position: absolute;
    top: 35px;
    left: 60px;
    right: 60px;
    bottom: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .4s ease, visibility .4s ease;
}

.feature-content.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.feature-content::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.feature-content {
    scrollbar-width: none;
}

.feature-column {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #E4DED5;
    transition: .35s;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item span {
    color: #1E1E1E;
    font-size: 18px;
    line-height: 28px;
    flex-shrink: 0;
}

.feature-item p {
    color: #18171C;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    font-family: 'Bricolage Grotesque', sans-serif;
}

.feature-item:hover {
    padding-left: 8px;
}

.feature-item:hover span {
    color: #CBAA6A;
}

.feature-item:hover p {
    color: #CBAA6A;
}

@media (max-width:1400px) {
    .features-container {
        gap: 60px;
    }

    .features-left {
        width: 320px;
    }

    .feature-tab h3 {
        font-size: 38px;
    }

    .features-right {
        padding: 60px 50px;
        height: 480px;
        min-height: 480px;
    }

    .feature-content {
        top: 60px;
        left: 50px;
        right: 50px;
        bottom: 60px;
        gap: 50px;
    }

    .feature-tab::before {
        right: -60px;
        /* is breakpoint ka gap: 60px hai */
    }

    .feature-item p {
        font-size: 15px;
    }
}

@media (max-width:1200px) {
    .features-container {
        gap: 40px;
    }

    .features-left {
        width: 280px;
    }

    .feature-tab::before {
        right: -40px;
        /* is breakpoint ka gap: 40px hai */
    }

    .feature-tab h3 {
        font-size: 34px;
    }

    .features-right {
        padding: 45px;
        height: 450px;
        min-height: 450px;
    }

    .feature-content {
        top: 45px;
        left: 45px;
        right: 45px;
        bottom: 45px;
        gap: 35px;
    }

    .feature-item {
        padding: 14px 0;
    }

    .feature-item p {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width:1024px) {
    .features-section {
        padding: 0px 20px;
    }

    .feature-tab::before {
        right: -35px;
        /* is breakpoint ka gap: 35px hai */
    }

    .features-container {
        gap: 35px;
        align-items: flex-start;
    }

    .features-left {
        width: 240px;
        flex-shrink: 0;
    }

    .feature-tab {
        margin-bottom: 28px;
        padding-bottom: 28px;
    }

    .feature-tab h3 {
        font-size: 30px;
    }

    .features-right {
        flex: 1;
        padding: 35px;
        height: 380px;
        min-height: 380px;
    }

    .feature-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        top: 35px;
        left: 35px;
        right: 35px;
        bottom: 35px;
    }

    .feature-item {
        padding: 12px 0;
    }

    .feature-item span {
        font-size: 16px;
    }

    .feature-item p {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width:991px) {
    .features-section {
        padding: 0px 20px;
    }

    .features-container {
        flex-direction: column;
        gap: 25px;
    }

    .feature-tab::before {
        display: none;
    }

    .features-left {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 45px;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .feature-tab {
        margin: 0;
        padding: 0 0 12px;
    }

    .feature-tab h3 {
        font-size: 26px;
        white-space: nowrap;
    }

    .feature-tab::after {
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
    }

    .feature-tab.active::after {
        width: 100%;
    }

    .features-right {
        width: 100%;
        padding: 40px;
        height: auto;
        min-height: 400px;
    }

    .feature-content {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        display: grid;
        height: 0;
        overflow: hidden;
        padding: 0;
    }

    .feature-content.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        height: auto;
        overflow: visible;
        padding: 0;
    }
}

@media (max-width:767px) {
    .features-section {
        padding: 60px 15px;
    }

    .features-left {
        gap: 30px;
    }

    .feature-tab h3 {
        font-size: 22px;
    }

    .features-right {
        padding: 30px;
        min-height: auto;
        height: auto;
    }

    .feature-content {
        position: static;
        top: unset;
        left: unset;
        right: unset;
        bottom: unset;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: none;
        grid-template-columns: 1fr;
        gap: 0;
        height: auto;
        overflow: visible;
        padding: 0;
    }

    .feature-content.active {
        display: grid;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        height: auto;
        overflow: visible;
        padding: 0;
    }

    .feature-item {
        padding: 14px 0;
    }
}

@media (max-width:576px) {
    .features-section {
        padding: 0px 15px;
    }

    .features-left {
        flex-direction: row;
        gap: 22px;
    }

    .feature-tab {
        width: max-content;
    }

    .feature-tab h3 {
        font-size: 20px;
        text-align: center;
    }

    .features-right {
        padding: 25px 20px;
        min-height: auto;
        height: auto;
    }

    .feature-content {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .feature-item {
        gap: 10px;
        padding: 12px 0;
    }

    .feature-item span {
        font-size: 15px;
    }

    .feature-item p {
        font-size: 13px;
        line-height: 1.6;
    }
}



.ct-section {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 60px auto 0;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.ct-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.ct-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 70%) 30%, rgba(0, 0, 0, 0.30) 38%, rgba(0, 0, 0, 0.10) 44%, rgba(0, 0, 0, 0) 58%);
    z-index: 2;
}


.ct-content {
    bottom: -120px;
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 980px;
    padding: 40px 20px 1px;
    text-align: center;

}

.ct-title {
    font-family: "Lora", serif;
    font-size: 47px;
    font-weight: 400;
    line-height: 1.3;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ct-desc {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 24px;
    margin-bottom: 24px;
}

.ct-btn {
    width: 296px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #CBAA6A;
    color: #fff;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.ct-btn::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
    border-radius: 50%;
}

.ct-btn:hover::before {
    transform: scale(1);
}

.ct-btn:hover {
    background: #b08b49;
    box-shadow: 0 8px 30px rgba(203, 170, 106, 0.5), inset 0 2px 20px rgba(255, 255, 255, 0.2);
}

@media(max-width:1440px) {
    .ct-section {
        min-height: 520px;
    }

    .ct-title {
        font-size: 38px;
    }
}

@media(max-width:1024px) {
    .ct-section {
        min-height: 470px;
    }

    .ct-content {
        max-width: 700px;
    }

    .ct-title {
        font-size: 26px;
    }

    .ct-desc {
        font-family: "Bricolage Grotesque", sans-serif;
        font-size: 16px;
        margin-bottom: 8px;
    }
}

@media(max-width:768px) {
    .ct-section {
        min-height: 400px;
    }

    .ct-title {
        font-size: 25px;
        margin-bottom: 8px;
    }

    .ct-content {
        padding-bottom: 10px;
        bottom: -70px;
    }

    .ct-desc {
        font-family: "Bricolage Grotesque", sans-serif;
        font-size: 15px;
    }

    .ct-btn {
        width: 265px;
        height: 50px;
        font-size: 15px;
    }

}

@media(max-width:576px) {
    .ct-section {
        min-height: 340px;
    }

    .ct-content {
        padding-bottom: 10px;
        bottom: -60px;
    }

    .ct-title {
        font-size: 22px;
        line-height: 1.45;
    }

    .ct-btn {
        width: 200px;
        height: 52px;
    }
}

@media(max-width:425px) {
    .ct-section {
        min-height: 340px;
        margin: 40px auto 0;

    }


    .ct-title {
        font-size: 15px;
        line-height: 1;
    }

    .ct-desc {
        font-size: 12px;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .ct-btn {
        width: 185px;
        height: 40px;
        font-size: 13px;
    }
}


@media(max-width:380px) {
    .ct-section {
        min-height: 340px;
    }


    .ct-title {
        font-size: 15px;
        line-height: 1;
    }

    .ct-desc {
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 10px;
    }

    .ct-content {
        bottom: -74px;
    }

    .ct-btn {
        width: 185px;
        height: 40px;
        font-size: 13px;
    }
}



.gallery-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 20px;
    background: #fff;
}

.gallery-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.gallery-desktop {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gallery-img {
    overflow: hidden;
    border-radius: 18px;
    position: relative;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: .5s;
}

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

.gallery-top {
    display: grid;
    grid-template-columns: 1.2fr .9fr 1.4fr .7fr;
    gap: 12px;
}

.gallery-top .gallery-img {
    height: 185px;
}

.gallery-top .img-1 img {
    object-position: center 30%;
}

.gallery-top .img-2 img {
    object-position: center 40%;
}

.gallery-top .img-3 img {
    object-position: center 35%;
}

.gallery-top .img-4 img {
    object-position: center 25%;
}

.gallery-middle {
    display: grid;
    grid-template-columns: .72fr 2.15fr 1.48fr;
    gap: 12px;
    align-items: stretch;
}

.gallery-middle .img-5 {
    height: 370px;
}

.gallery-middle .img-5 img {
    object-position: center 30%;
}

.gallery-middle .img-6 {
    height: 370px;
}

.gallery-middle .img-6 img {
    object-position: center 35%;
}

.gallery-content {
    background: #4640A5;
    border-radius: 18px;
    padding: 42px 42px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-content span {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 16px;
    font-family: 'Bricolage Grotesque', sans-serif;
}

.gallery-title {
    font-size: 52px;
    line-height: 1.08;
    margin-bottom: 28px;
    font-weight: 400;
    font-family: 'Lora', serif;
}

.gallery-desc {
    font-size: 15px;
    line-height: 2;
    max-width: 470px;
    color: #F2F2F2;
    font-family: 'Bricolage Grotesque', sans-serif;
}

.gallery-bottom {
    display: grid;
    grid-template-columns: .7fr .7fr 1.1fr 1.5fr;
    gap: 12px;
}

.gallery-bottom .gallery-img {
    height: 195px;
}

.gallery-bottom .img-7 img {
    object-position: center 100%;
}

.gallery-bottom .img-8 img {
    object-position: center 100%;
}

.gallery-bottom .img-9 img {
    object-position: center 100%;
}

.gallery-bottom .img-10 img {
    object-position: center 100%;
}

.gallery-mobile {
    display: none;
}

@media (max-width:1024px) {
    .gallery-section {
        padding: 60px 20px;
    }

    .gallery-top {
        grid-template-columns: 1.1fr .9fr 1.3fr .7fr;
        gap: 12px;
    }

    .gallery-middle {
        grid-template-columns: .75fr 2fr 1.35fr;
        gap: 12px;
    }

    .gallery-bottom {
        grid-template-columns: .7fr .7fr 1.15fr 1.45fr;
        gap: 12px;
    }

    .gallery-top .gallery-img {
        height: 110px;
    }

    .gallery-middle .img-5,
    .gallery-middle .img-6 {
        height: 275px;
    }

    .gallery-bottom .gallery-img {
        height: 100px;
    }

    .gallery-content {
        padding: 30px;
    }

    .gallery-title {
        font-size: 38px;
        margin-bottom: 18px;
    }

    .gallery-desc {
        font-size: 13px;
        line-height: 1.7;
        max-width: 100%;
    }
}

@media (max-width:991px) {
    .gallery-desktop {
        display: none;
    }

    .gallery-mobile {
        display: block;
    }

    .gallery-mobile-content {
        background: #4640A5;
        color: #fff;
        border-radius: 18px;
        padding: 35px 30px;
        text-align: center;
        margin-bottom: 25px;
    }

    .gallery-mobile-content span {
        display: block;
        font-size: 11px;
        letter-spacing: 3px;
        margin-bottom: 12px;
        font-family: 'Bricolage Grotesque', sans-serif;
    }

    .gallery-mobile-content .gallery-title {
        font-size: 36px;
        line-height: 1.15;
        margin-bottom: 16px;
        font-family: 'Lora', serif;
    }

    .gallery-mobile-content .gallery-desc {
        max-width: 650px;
        margin: auto;
        font-size: 14px;
        line-height: 1.8;
        font-family: 'Lora', serif;
    }

    .gallerySwiper {
        width: 100%;
        overflow: hidden;
        position: relative;
        padding-bottom: 50px;
    }

    .gallerySwiper .swiper-slide {
        border-radius: 16px;
        overflow: hidden;
        cursor: grab;
    }

    .gallerySwiper .swiper-slide img {
        width: 100%;
        height: 260px;
        display: block;
        object-fit: cover;
        object-position: center;
    }

    .gallerySwiper .swiper-button-next,
    .gallerySwiper .swiper-button-prev {
        color: #CBAA6A;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        top: auto;
        bottom: 5px;
        transform: none;
        margin-top: 0;
    }

    /* === 991px ke andar tablet ke liye fix (Left/Right sahi direction) === */
    .gallerySwiper .swiper-button-next {
        left: auto;
        right: 40px;
    }

    .gallerySwiper .swiper-button-prev {
        right: auto;
        left: 40px;
    }

    /* ================================================================ */

    .gallerySwiper .swiper-button-next:after,
    .gallerySwiper .swiper-button-prev:after {
        font-size: 16px;
        font-weight: 700;
    }

    .gallerySwiper .swiper-pagination {
        position: relative;
        bottom: 0;
        margin-top: 12px;
    }

    .gallerySwiper .swiper-pagination-bullet {
        background: #CBAA6A;
        opacity: 0.4;
    }

    .gallerySwiper .swiper-pagination-bullet-active {
        opacity: 1;
    }
}

@media (max-width:767px) {
    .gallery-section {
        padding: 60px 15px;
    }

    .gallery-mobile-content {
        padding: 28px 20px;
        border-radius: 14px;
        margin-bottom: 20px;
    }

    .gallery-mobile-content .gallery-title {
        font-size: 30px;
    }

    .gallery-mobile-content .gallery-desc {
        font-size: 13px;
        line-height: 1.7;
    }

    .gallerySwiper .swiper-slide img {
        height: 220px;
        border-radius: 14px;
    }

    .gallerySwiper {
        padding-bottom: 45px;
    }

    .gallerySwiper .swiper-button-next,
    .gallerySwiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .gallerySwiper .swiper-button-next:after,
    .gallerySwiper .swiper-button-prev:after {
        font-size: 14px;
    }
}

@media (max-width:576px) {
    .gallery-section {
        padding: 40px 12px;
    }

    .gallery-mobile-content {
        padding: 22px 16px;
        border-radius: 12px;
        margin-bottom: 18px;
    }

    .gallery-mobile-content span {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .gallery-mobile-content .gallery-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .gallery-mobile-content .gallery-desc {
        font-size: 12px;
        line-height: 1.7;
    }

    .gallerySwiper {
        padding-bottom: 40px;
    }

    .gallerySwiper .swiper-slide img {
        height: 180px;
        border-radius: 12px;
    }

    .gallerySwiper .swiper-button-next,
    .gallerySwiper .swiper-button-prev {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gallerySwiper .swiper-button-next:after,
    .gallerySwiper .swiper-button-prev:after {
        font-size: 12px;
    }
}

@media (max-width:400px) {
    .gallery-section {
        padding: 60px 10px;
    }

    .gallery-mobile-content {
        padding: 18px 12px;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .gallery-mobile-content .gallery-title {
        font-size: 20px;
    }

    .gallery-mobile-content .gallery-desc {
        font-size: 11px;
        line-height: 1.6;
    }

    .gallerySwiper .swiper-slide img {
        height: 150px;
        border-radius: 10px;
    }

    .gallerySwiper {
        padding-bottom: 35px;
    }

    .gallerySwiper .swiper-button-next,
    .gallerySwiper .swiper-button-prev {
        width: 28px;
        height: 28px;
    }

    .gallerySwiper .swiper-button-next:after,
    .gallerySwiper .swiper-button-prev:after {
        font-size: 10px;
    }
}

/* =========================================================
   CUSTOMIZE YOUR TENT BANNER SECTION
   ========================================================= */
.customize-tent-banner-section {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    background-color: #18171C;
}

.customize-tent-banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.customize-tent-banner-bg {
    width: 100%;
    height: auto;
    min-height: 420px;
    max-height: 888px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.customize-tent-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(0deg, #18171C 3.04%, rgba(24, 23, 28, 0.880743) 52.19%, rgba(24, 23, 28, 0) 89.24%);
    padding: 70px 20px 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.customize-tent-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.customize-tent-banner-heading {
    font-family: "Lora", serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.25;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.customize-tent-arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
    background: transparent;
    border: none;
    padding: 0;
}

.customize-tent-arrow-btn:hover {
    transform: scale(1.12) translateX(4px);
}

.customize-tent-arrow-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .customize-tent-banner-heading {
        font-size: 36px;
    }

    .customize-tent-arrow-btn {
        width: 46px;
        height: 46px;
    }

    .customize-tent-banner-overlay {
        padding: 55px 20px 35px;
    }
}

/* =========================================================
   ABOUT SECTION STICKY
   ========================================================= */
@media (min-width: 992px) {
    .single-tents .about-section .about-left {
        position: sticky;
        top: 80px;
    }
}

@media (max-width: 992px) {
    .customize-tent-banner-bg {
        min-height: 360px;
    }

    .customize-tent-banner-heading {
        font-size: 30px;
    }

    .customize-tent-arrow-btn {
        width: 42px;
        height: 42px;
    }

    .customize-tent-banner-content {
        gap: 16px;
    }

    .customize-tent-banner-overlay {
        padding: 45px 20px 30px;
    }
}

@media (max-width: 768px) {
    .customize-tent-banner-bg {
        min-height: 300px;
    }

    .customize-tent-banner-heading {
        font-size: 24px;
        letter-spacing: 0.3px;
    }

    .customize-tent-arrow-btn {
        width: 36px;
        height: 36px;
    }

    .customize-tent-banner-content {
        gap: 14px;
    }

    .customize-tent-banner-overlay {
        padding: 40px 15px 25px;
    }
}

@media (max-width: 480px) {
    .customize-tent-banner-bg {
        min-height: 240px;
    }

    .customize-tent-banner-heading {
        font-size: 19px;
    }

    .customize-tent-arrow-btn {
        width: 30px;
        height: 30px;
    }

    .customize-tent-banner-content {
        gap: 10px;
    }

    .customize-tent-banner-overlay {
        padding: 30px 12px 20px;
    }
}

.tent-collection-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 45px 20px;
    background: #F9F9F9;
    overflow: hidden;
}

.tent-collection-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.tent-heading {
    text-align: center;
    margin-bottom: 45px;
}

.tent-heading span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 10%;
    color: #404093;
    margin-bottom: 15px;
    font-family: 'Bricolage Grotesque', sans-serif;
}

.tent-title {
    font-size: 42px;
    line-height: 100%;
    color: #18171C;
    margin-bottom: 18px;
    font-weight: 400;
    font-family: 'Lora', serif;
}

.tent-subtitle {
    max-width: 740px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 24px;
    color: #18171C;
    font-family: 'Bricolage Grotesque', sans-serif;
}

.tentSwiper {
    width: 100%;
    overflow: hidden;
    padding-bottom: 80px;
}

.tentSwiper .swiper-wrapper {
    align-items: stretch;
}

.tentSwiper .swiper-slide {
    display: flex;
    justify-content: center;
}

.tent-card {
    width: 100%;
    max-width: 447px;
    height: 628px;
    position: relative;
    perspective: 1500px;
}

.tent-front,
.tent-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 0;
    overflow: hidden;
    transition: transform .8s ease;
}

.tent-front img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

.tent-front p {
    font-size: 26px;
    color: #222;
    margin-top: 22px;
    text-align: left;
    font-family: 'Bricolage Grotesque', sans-serif;
}

.tent-back {
    background: #F7F2EA;
    transform: rotateY(180deg);
    padding: 46px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tent-back-content {
    display: flex;
    flex-direction: column;
}

.tent-back-text {
    font-size: 18px;
    line-height: 2;
    color: #333;
    margin-bottom: 60px;
    font-family: 'Lora', serif;
}

.tent-back a {
    width: max-content;
    padding: 18px 36px;
    background: #CBAA6A;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: .35s;
    font-family: 'Bricolage Grotesque', sans-serif;
}

.tent-name {
    font-size: 30px;
    color: #222;
    font-family: 'Lora', serif;
}

.tent-card:hover .tent-front,
.tent-card.flipped .tent-front {
    transform: rotateY(-180deg);
}

.tent-card:hover .tent-back,
.tent-card.flipped .tent-back {
    transform: rotateY(0deg);
}

.tent-front img {
    transition: transform .7s ease, filter .5s ease;
}

.tent-card:hover .tent-front img,
.tent-card.flipped .tent-front img {
    transform: scale(1.05);
    filter: brightness(.9);
}

.tent-back a {
    transition: all 0.4s ease;
}

/* tent-back a:hover handled in animation section above */

.tentSwiper .swiper-button-next,
.tentSwiper .swiper-button-prev {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #CBAA6A;
    transition: .35s;
}

.tentSwiper .swiper-button-next:after,
.tentSwiper .swiper-button-prev:after {
    font-size: 25px;
    font-weight: 700;
}

.tentSwiper .swiper-button-prev {
    left: calc(50% - 65px);
    top: auto;
    bottom: 0;
}

.tentSwiper .swiper-button-next {
    right: calc(50% - 65px);
    top: auto;
    bottom: 0;
}

@media(max-width:1024px) {
    .tent-collection-section {
        padding: 60px 20px 0;
    }

    .tent-heading {
        margin-bottom: 50px;
    }

    .tent-title {
        font-size: 44px;
    }

    .tent-subtitle {
        max-width: 650px;
        font-size: 14px;
    }

    .tent-card {
        max-width: 340px;
        height: 520px;
    }

    .tent-front img {
        height: 455px;
    }

    .tent-front p {
        font-size: 24px;
        margin-top: 18px;
    }

    .tent-back {
        padding: 32px;
    }

    .tent-back-text {
        font-size: 16px;
        line-height: 1.9;
        margin-bottom: 40px;
    }

    .tent-back a {
        padding: 16px 30px;
        font-size: 15px;
    }

    .tent-name {
        font-size: 24px;
    }
}

@media (max-width:991px) {
    .tent-collection-section {
        padding: 60px 20px;
    }

    .tent-heading {
        margin-bottom: 40px;
    }

    .tent-title {
        font-size: 38px;
    }

    .tent-subtitle {
        font-size: 14px;
        max-width: 600px;
    }

    .tentSwiper {
        padding-bottom: 55px;
    }

    .tent-card {
        max-width: 100%;
        height: 500px;
    }

    .tent-front img {
        height: 430px;
    }

    .tent-front p {
        font-size: 22px;
        margin-top: 16px;
    }

    .tent-back {
        padding: 28px;
    }

    .tent-back-text {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 35px;
    }

    .tent-back a {
        padding: 15px 28px;
        font-size: 14px;
    }

    .tent-name {
        font-size: 22px;
    }
}

@media (max-width:767px) {
    .tent-collection-section {
        padding: 60px 15px;
    }

    .tent-heading {
        margin-bottom: 35px;
    }

    .tent-title {
        font-size: 32px;
    }

    .tent-subtitle {
        font-size: 13px;
        line-height: 1.7;
    }

    .tent-card {
        height: 430px;
    }

    .tent-front img {
        height: 360px;
    }

    .tent-front p {
        font-size: 20px;
    }

    .tent-back {
        padding: 22px;
    }

    .tent-back-text {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .tent-back a {
        padding: 14px 24px;
        font-size: 13px;
    }

    .tent-name {
        font-size: 20px;
    }
}

@media (max-width:576px) {
    .tent-collection-section {
        padding: 25px 15px;
    }

    .tent-title {
        font-size: 28px;
    }

    .tent-subtitle {
        font-size: 12px;
    }

    .tent-card {
        height: 360px;
    }

    .tent-front img {
        height: 295px;
    }

    .tent-front p {
        font-size: 18px;
    }

    .tent-back {
        padding: 18px;
    }

    .tent-back-text {
        font-size: 12px;
        line-height: 1.6;
    }

    .tent-back a {
        padding: 12px 20px;
        font-size: 12px;
    }

    .tent-name {
        font-size: 18px;
    }

    .tentSwiper .swiper-button-next,
    .tentSwiper .swiper-button-prev {
        display: flex;
    }
}