/* ===================================================
   DYORE EXPERIENCES (LOUNGE) - MULTI EXPERIENCES SECTION
   =================================================== */

.multi-experiences-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 150px 0 100px;
    box-sizing: border-box;
}

.experiences-container {
    width: 100%;
    max-width: var(--site-max-width, 1440px);
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

/* 2-Column Experience Row (Alternating Layout) */
.experience-row {
    display: grid;
    grid-template-columns: 1fr 1.18fr;
    gap: 75px;
    align-items: center;
    width: 100%;
}

/* Reverse Column Order (Image Left, Text Right) */
.experience-row.row-reverse {
    grid-template-columns: 1.18fr 1fr;
}

.experience-row.row-reverse .exp-text-col {
    order: 2;
}

.experience-row.row-reverse .exp-slider-col {
    order: 1;
}

/* ==========================================
   TEXT COLUMN STYLING
   ========================================== */
.exp-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 540px;
}

.exp-emblem {
    width: 37px;
    height: auto;
    display: block;
    margin-bottom: 24px;
    object-fit: contain;
}

.exp-title {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 38px;
    font-weight: 400;
    line-height: 1.22;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--color-dark, #151312);
    margin: 0 0 24px 0;
}

.exp-desc {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: #4a4a4a;
    margin: 0 0 34px 0;
    max-width: 490px;
}

/* Action Buttons Group */
.exp-btn-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.exp-btn-group .btn {
    padding: 14px 38px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    border-radius: 0;
}

/* Dark Button */
.btn-exp-dark {
    background-color: var(--color-dark, #151312);
    color: #ffffff;
    border: 1px solid var(--color-dark, #151312);
}

.btn-exp-dark:hover {
    background-color: transparent;
    color: var(--color-dark, #151312);
}

/* Burgundy Button */
.btn-exp-burgundy {
    background-color: #97033C;
    color: #ffffff;
    border: 1px solid #97033C;
}

.btn-exp-burgundy:hover {
    background-color: #7b0230;
    border-color: #7b0230;
    color: #ffffff;
}

/* ==========================================
   IMAGE SLIDER COLUMN STYLING
   ========================================== */
.exp-slider-col {
    position: relative;
    width: 100%;
}

.experience-slider {
    position: relative;
    width: 100%;
    height: 440px;
    overflow: hidden;
    background-color: #f6f6f6;
}

.exp-slider-viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.exp-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.exp-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

.exp-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ==========================================
   DASHED CIRCULAR SLIDE NAVIGATION ARROWS
   (Exact Match to Home Page Rooms Slider)
   ========================================== */
.exp-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 1.5px dashed var(--color-dark, #151312);
    border-radius: 50%;
    background: var(--color-white, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 25;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    outline: none;
    padding: 0;
}

.exp-slider-btn:hover {
    background: var(--color-dark, #151312);
    border-style: solid;
    border-color: var(--color-dark, #151312);
}

.exp-slider-btn svg path {
    transition: fill 0.35s ease;
    fill: var(--color-dark, #151312);
}

.exp-slider-btn:hover svg path {
    fill: var(--color-white, #ffffff);
}

.exp-slider-btn.prev-btn {
    left: 20px;
}

.exp-slider-btn.next-btn {
    right: 20px;
}

.exp-slider-btn.next-btn svg {
    transform: rotate(180deg);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1200px) {

    .experience-row,
    .experience-row.row-reverse {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .exp-title {
        font-size: 32px;
    }

    .experience-slider {
        height: 390px;
    }
}

@media (max-width: 992px) {
    .multi-experiences-section {
        padding: 70px 0 90px;
    }

    .experiences-container {
        padding: 0 24px;
        gap: 80px;
    }

    .experience-row,
    .experience-row.row-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Keep natural stack on mobile: Text first, then Slider */
    .experience-row.row-reverse .exp-text-col {
        order: 1;
    }

    .experience-row.row-reverse .exp-slider-col {
        order: 2;
    }

    .exp-text-col {
        max-width: 100%;
    }

    .exp-title {
        font-size: 30px;
    }

    .experience-slider {
        height: 360px;
    }
}

@media (max-width: 576px) {
    .multi-experiences-section {
        padding: 50px 0 70px;
    }

    .experiences-container {
        padding: 0 18px;
        gap: 65px;
    }

    .exp-emblem {
        width: 28px;
        margin-bottom: 18px;
    }

    .exp-title {
        font-size: 24px;
        line-height: 1.28;
        margin-bottom: 18px;
    }

    .exp-desc {
        font-size: 13.5px;
        line-height: 1.7;
        margin-bottom: 26px;
    }

    .exp-btn-group {
        width: 100%;
        gap: 12px;
    }

    .exp-btn-group .btn {
        flex: 1 1 calc(50% - 6px);
        padding: 13px 18px;
        font-size: 12px;
    }

    .experience-slider {
        height: 280px;
    }

    .exp-slider-btn {
        width: 38px;
        height: 38px;
    }

    .exp-slider-btn.prev-btn {
        left: 12px;
    }

    .exp-slider-btn.next-btn {
        right: 10px;
    }
}

/* ===================================================
   WHY CHOOSE US - 5 CARDS SECTION
   =================================================== */
.why-choose-us-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 50px 0 150px;
    box-sizing: border-box;
}

.why-choose-container {
    width: 100%;
    max-width: var(--site-max-width, 1440px);
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Header Stack */
.why-choose-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-emblem {
    width: 37px;
    height: auto;
    display: block;
    margin-bottom: 18px;
    object-fit: contain;
}

.why-choose-header .sub-title {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-dark, #151312);
    margin-bottom: 14px;
}

.why-choose-title {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-dark, #151312);
    margin: 0 0 18px 0;
}

.why-choose-desc {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 14.5px;
    font-weight: 300;
    line-height: 1.8;
    color: #555555;
    max-width: 860px;
    margin: 0 auto;
}

/* 5 Cards Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 75px;
    align-items: flex-start;
}

.why-choose-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.35s ease;
}

.why-choose-card:hover {
    transform: translateY(-6px);
}

.why-choose-icon-box {
    width: 95px;
    height: 95px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease;
}

.why-choose-card:hover .why-choose-icon-box {
    transform: scale(1.05);
}

.why-choose-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.why-card-title {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-dark, #151312);
    margin: 0 0 14px 0;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.why-card-desc {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.7;
    color: #555555;
    margin: 0;
    text-align: center;
    max-width: 240px;
}

/* Bottom Highlight Tagline Quote */
.why-choose-bottom-quote {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    padding-top: 10px;
}

.why-bottom-text {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 17px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.75;
    color: #666666;
    margin: 0;
}

.why-highlight-link {
    font-weight: 700;
    font-style: italic;
    color: #97033C;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Responsive Styles for Why Choose Us */
@media (max-width: 1200px) {
    .why-choose-grid {
        gap: 20px;
    }

    .why-choose-icon-box {
        width: 85px;
        height: 85px;
    }

    .why-card-title {
        font-size: 14px;
    }

    .why-card-desc {
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .why-choose-us-section {
        padding: 60px 0 80px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 36px 20px;
    }

    .why-choose-title {
        font-size: 32px;
    }

    .why-bottom-text {
        font-size: 15.5px;
    }
}

@media (max-width: 768px) {
    .why-choose-container {
        padding: 0 24px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 18px;
    }

    .why-choose-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-card-title {
        min-height: auto;
    }

    .why-choose-title {
        font-size: 24px;
    }

    .why-bottom-text {
        font-size: 14.5px;
    }
}

/* ===================================================
   LOUNGE DETAIL / ELEGANT EVENINGS OVERLAY SECTION
   =================================================== */
.lounge-detail-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding-bottom: 90px;
    box-sizing: border-box;
}

/* Full Width Canopy Top Banner */
.lounge-detail-banner-wrap {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.lounge-detail-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Overlapping White Container */
.lounge-detail-container {
    width: 100% !important;
    max-width: var(--site-max-width, 1440px) !important;
    margin: -210px auto 0 !important;
    padding: 0 40px;
    position: relative;
    z-index: 5;
    box-sizing: border-box;
}

.lounge-detail-card {
    background-color: #ffffff;
    width: 100%;
    padding: 60px 80px 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.lounge-detail-emblem {
    width: 37px;
    height: auto;
    display: block;
    margin-bottom: 24px;
    object-fit: contain;
}

.lounge-detail-title {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 38px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--color-dark, #151312);
    margin: 0 0 28px 0;
    max-width: 980px;
}

.lounge-detail-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1040px;
    margin-bottom: 45px;
}

.lounge-detail-paragraphs p {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: #4a4a4a;
    margin: 0;
    text-align: center;
}

/* 5 Feature Tag Boxes */
.lounge-feature-tags-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 1040px;
    margin-bottom: 40px;
}

.lounge-tags-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.lounge-tag-box {
    border: 1px solid #ECC0CB;
    background-color: #ffffff;
    padding: 14px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1 1 0;
    min-width: 0;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.lounge-tag-box:hover {
    transform: translateY(-3px);
    border-color: #97033C;
}

.lounge-tags-row-bottom .lounge-tag-box {
    flex: 0 1 340px;
}

.lounge-tag-title {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #97033C;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.lounge-tag-sub {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.5;
    color: #555555;
    margin: 0;
}

/* Bottom Tagline Quote */
.lounge-detail-quote {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 17px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.75;
    color: #2c2a29;
    margin: 0;
    max-width: 920px;
    text-align: center;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .lounge-detail-card {
        padding: 50px 40px;
    }

    .lounge-detail-title {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .lounge-detail-banner-wrap {
        height: 320px;
    }

    .lounge-detail-container {
        margin-top: -120px;
        padding: 0 20px;
    }

    .lounge-detail-card {
        padding: 40px 24px;
    }

    .lounge-detail-title {
        font-size: 26px;
    }

    .lounge-tags-row {
        flex-direction: column;
        gap: 12px;
    }

    .lounge-tags-row-bottom .lounge-tag-box {
        flex: 1 1 auto;
        width: 100%;
    }

    .lounge-detail-quote {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .lounge-detail-banner-wrap {
        height: 240px;
    }

    .lounge-detail-container {
        margin-top: -80px;
        padding: 0 16px;
    }

    .lounge-detail-card {
        padding: 32px 18px;
    }

    .lounge-detail-title {
        font-size: 21px;
    }

    .lounge-detail-paragraphs p {
        font-size: 13px;
        line-height: 1.7;
    }

    .lounge-tag-box {
        padding: 12px 14px;
    }

    .lounge-tag-title {
        font-size: 12.5px;
    }

    .lounge-tag-sub {
        font-size: 12px;
    }

    .lounge-detail-quote {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* ===================================================
   LOUNGE C-SCHEME JAIPUR (2-COLUMN ABOUT SECTION)
   =================================================== */
.lounge-cscheme-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 0px 0 50px;
    box-sizing: border-box;
}

.lounge-cscheme-container {
    width: 100%;
    max-width: var(--site-max-width, 1440px);
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.lounge-cscheme-grid {
    display: grid;
    grid-template-columns: 1fr 1.18fr;
    gap: 75px;
    align-items: center;
    width: 100%;
}

/* Left Image Column */
.lounge-cscheme-img-col {
    position: relative;
    width: 100%;
}

.lounge-cscheme-img-wrap {
    width: 100%;
    height: 880px;
    overflow: hidden;
    position: relative;
}

.lounge-cscheme-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.lounge-cscheme-img-wrap:hover img {
    transform: scale(1.03);
}

/* Right Content Column */
.lounge-cscheme-content-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 620px;
}

.cscheme-emblem {
    width: 37px;
    height: auto;
    display: block;
    margin-bottom: 24px;
    object-fit: contain;
}

.cscheme-title {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 38px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--color-dark, #151312);
    margin: 0 0 28px 0;
}

.cscheme-desc-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cscheme-desc-stack p {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: #4a4a4a;
    margin: 0;
}

/* Responsive Styles for Lounge C-Scheme Section */
@media (max-width: 1200px) {
    .lounge-cscheme-grid {
        gap: 50px;
    }

    .lounge-cscheme-img-wrap {
        height: 560px;
    }

    .cscheme-title {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .lounge-cscheme-section {
        padding: 40px 0 80px;
    }

    .lounge-cscheme-container {
        padding: 0 24px;
    }

    .lounge-cscheme-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lounge-cscheme-img-wrap {
        height: 440px;
    }

    .cscheme-title {
        font-size: 28px;
    }

    .lounge-cscheme-content-col {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .lounge-cscheme-section {
        padding: 30px 0 60px;
    }

    .lounge-cscheme-container {
        padding: 0 18px;
    }

    .lounge-cscheme-img-wrap {
        height: 350px;
    }

    .cscheme-emblem {
        width: 28px;
        margin-bottom: 18px;
    }

    .cscheme-title {
        font-size: 23px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .cscheme-desc-stack p {
        font-size: 13.5px;
        line-height: 1.75;
    }
}