/* --- SUB BANNER --- */
.sub-banner {
    position: relative;
    height: 60vh;
    min-height: 420px;
    background: url('../images/inspired-1.jpg') no-repeat center center/cover;
    overflow: hidden;
    background-attachment: fixed;
}

.sub-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.35));
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item.active {
    color: #fff;
}

/* contact page */
.cta {
    background: linear-gradient(rgba(123, 44, 59, 0.4), rgba(123, 44, 59, 0.8)), url("../images/inspired-1.jpg") fixed center center;
    background-size: cover;
    padding: 120px 0;
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: #fff;
}

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}







/* Form Container */
.luxury-form {
    background: linear-gradient(180deg, #fffaf6 0%, #f7ecef 48%, #ffffff 100%);
    border: 1px solid rgba(123, 44, 59, 0.14);
    border-radius: 1.25rem;
    /* box-shadow:
        0 28px 80px rgba(26, 20, 36, 0.18),
        0 10px 30px rgba(123, 44, 59, 0.10); */
}

.enquiry-form__header {
    text-align: left;
}

.enquiry-form__eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: #7b2c3b;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-panel h3 {
    color: #392f4a;
    line-height: 1.15;
}

/* Subtitle */
.form-subtitle {
    color: #6a6475;
    font-size: 0.95rem;
    opacity: 1;
    letter-spacing: 0.01em;
}

.contact-detail-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}


/* CARD */
.contact-detail-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: .4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-detail-card:hover {
    transform: translateY(-6px);
}

/* ICON */
.icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(123, 44, 59, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.icon-wrap i {
    color: #7b2c3b;
    font-size: 18px;
}

/* LABEL */
.contact-detail-card__label {
    display: block;
    margin-bottom: 8px;
    color: #7b2c3b;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* TEXT */
.contact-detail-card a,
.contact-detail-card p {
    margin: 0;
    color: #392f4a;
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
}

.contact-detail-card a:hover {
    color: #7b2c3b;
}

/* ADDRESS CARD WIDTH CONTROL */
.contact-detail-card--full {
    max-width: 600px;
    margin: auto;
}

.enquiry-form {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

/* Inputs */
.luxury-input {
    min-height: 54px;
    border: 1px solid rgba(57, 47, 74, 0.18);
    border-radius: 0.9rem;
    background: #fff;
    color: #211a2d;
    transition: all 0.3s ease;
    padding: 0.9rem 1rem;
}

.luxury-input::placeholder {
    color: #938ca0;
}

/* Remove Bootstrap default shadow */
.luxury-input:focus {
    background: #fff;
    border-color: #7b2c3b;
    box-shadow: 0 0 0 0.2rem rgba(123, 44, 59, 0.12);
    color: #211a2d;
}

.luxury-textarea {
    min-height: 140px;
    resize: vertical;
}

.luxury-label {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: #392f4a;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.luxury-choice-group {
    margin: 0;
    padding: 0;
}

.luxury-choice-group .luxury-label {
    margin-bottom: 0.75rem;
}

.choice-chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.choice-chip {
    position: relative;
    margin: 0;
}

.choice-chip input {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

.choice-chip span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.75rem 1.1rem;
    border: 1px solid rgba(57, 47, 74, 0.14);
    border-radius: 999px;
    background: #fff;
    color: #392f4a;
    font-size: 0.92rem;
    transition: all 0.25s ease;
}

.choice-chip input:checked+span,
.choice-chip:hover span {
    background: #392f4a;
    border-color: #392f4a;
    color: #fff;
}

/* Section Styling */
.enquiry-section {
    background:
        radial-gradient(circle at 78% 28%, rgba(123, 44, 59, 0.10), transparent 35%),
        linear-gradient(180deg, #f9f7f4 0%, #f4ede8 100%);
}

/* Image & Form Overlap Logic */
@media (min-width: 992px) {
    .form-container {
        margin-left: -150px;
        position: relative;
        z-index: 10;
    }

    .image-wrapper {
        position: relative;
        z-index: 1;
    }
}

/* Form Styling */
.luxury-form .form-control {
    border-radius: 0.9rem;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
}

.luxury-form .form-control:focus {
    background-color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(123, 44, 59, 0.12);
    border: 1px solid #7b2c3b;
}

.contact-panel .bespoke-modal__submit {
    min-width: 220px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .form-container {
        margin-top: -40px;
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 575px) {
    .luxury-form {
        border-radius: 1rem;
    }

    .contact-detail-grid {
        grid-template-columns: 1fr;
    }

    .choice-chip-wrap {
        gap: 0.6rem;
    }

    .choice-chip span,
    .contact-panel .bespoke-modal__submit {
        width: 100%;
    }
}

.faq-section {
    background: #F4EDE9;
}

/* Remove default background */
.accordion-flush .accordion-item {
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Question */
.accordion-button {
    background: transparent;
    box-shadow: none;
    font-size: 20px;
    font-weight: 500;
    padding: 25px 0;
    color: #111;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    box-shadow: none;
    color: #111;
}

/* Remove default arrow background */
.accordion-button::after {
    background-image: none !important;
    transform: rotate(45deg);
    border-right: 2px solid #111;
    border-bottom: 2px solid #111;
    width: 12px;
    height: 12px;
}

/* Rotate when open */
.accordion-button:not(.collapsed)::after {
    transform: rotate(-135deg);
}

/* Answer */
.accordion-body {
    padding: 0 0 25px 0;
    color: #666;
    line-height: 1.7;
}

/* Remove Bootstrap default blue */
.accordion-button:focus {
    outline: none;
    box-shadow: none;
}

/* Refined luxury focus */
.accordion-button:focus-visible {
    box-shadow:
        0 0 0 1px rgba(111, 92, 76, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
}









/* careers */
.careers-section {
    background:
        radial-gradient(circle at 78% 28%, rgba(123, 44, 59, 0.10), transparent 35%),
        linear-gradient(180deg, #f9f7f4 0%, #f4ede8 100%);
    /* Off-white background from image */
    position: relative;
    overflow: hidden;
    font-family: 'Vignette Sans', sans-serif;
}

/* The Blurred Gradient Orb */
.careers-section::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(123, 44, 59, 0.25) 0%, rgba(123, 44, 59, 0) 70%);
    filter: blur(90px);
    z-index: 0;
}

.job-item:hover {
    background: rgba(123, 44, 59, 0.05);
}

.job-item .btn-link:hover {
    transform: translateX(3px) translateY(-3px);
    transition: transform 0.2s ease;
}

/* Base style for all filter buttons */
#job-filters .btn {
    border-color: #7B2C3B;
    color: #7B2C3B;
    transition: all 0.2s ease-in-out;
}

/* Hover state */
#job-filters .btn:hover {
    border-color: #7B2C3B;
    background: #7B2C3B;
    color: #fff;
}

/* The "Active" state (using the class your JS toggles) */
#job-filters .btn-dark {
    background-color: #7B2C3B !important;
    border-color: #7B2C3B !important;
    color: #fff !important;
}

/* The "Inactive" state */
#job-filters .btn-outline-dark {
    background: transparent;
    border-color: #7B2C3B;
    color: #7B2C3B;
}

/* Styling badges to match image */
.badge.border {
    background: transparent;
    padding: 6px 16px;
    font-size: 0.85rem;
}

.job-item {
    transition: opacity 0.3s ease-out, transform 0.4s ease-out;
    transform: translateY(0);
    opacity: 1;
    padding: 20px;
}


.featured-services {
    background-color: #F4EDE9;
    /* Cream background from your image */
    overflow: hidden;
}


/* Image Stacking Logic */
.featured-services .image-stack {
    padding-bottom: 50px;
    /* Space for the overlapping image */
}

.featured-services .main-img {
    width: 85%;
    /* Leave room for the overlap */
    height: 500px;
    object-fit: cover;
    display: block;
}

.featured-services .overlap-img-wrapper {
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 45%;
    /* Relative size to the container */
    z-index: 2;
    border: 2px solid #f4efdf;
    /* Creates the gap effect seen in luxury designs */
}

.featured-services .overlap-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}



/* Responsive adjustments */
/* --- Desktop Styles (Keep as is) --- */
@media (min-width: 992px) {
    .featured-services .image-stack {
        position: relative;
        padding-bottom: 60px;
    }

    .featured-services .main-img {
        width: 85%;
        height: 500px;
        object-fit: cover;
    }

    .featured-services .overlap-img-wrapper {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50%;
        z-index: 2;
        border: 2px solid #f4efdf;
    }
}

/* --- Updated Mobile Styles (Layered & Full-Width) --- */
@media (max-width: 991px) {

    /* Ensure the container allows full-width bleed if desired */
    .featured-services .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .featured-services .image-stack {
        position: relative;
        /* Keep relative to allow absolute children */
        display: block;
        /* Standard block for stacking images */
        width: 100%;
        padding-bottom: 80px;
        /* Space for the overlapping image to hang over */
    }

    .main-img-wrapper {
        width: 100%;
        /* The main image takes the full width of the container */
    }

    .featured-services .main-img {
        width: 100%;
        height: auto;
        /* Allow natural height or set a fixed height like 350px */
        min-height: 350px;
        object-fit: cover;
    }

    .featured-services .overlap-img-wrapper {
        position: absolute;
        /* Maintain the absolute layer */
        bottom: 0;
        /* Align to the bottom of the stack container */
        right: 0;
        /* Align to the right side */
        width: 40%;
        /* Smaller scale for mobile overlap */
        z-index: 2;
        border: 5px solid #f4efdf;
        /* Thinner border for mobile */
    }

    .featured-services .overlap-img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Content adjustments */
    .featured-services .content-box {
        margin-top: 20px;
        text-align: left;
        /* Keep text left-aligned as per your reference */
    }
}


.room-offers-section {
    padding: 60px 0;
    overflow: hidden;
}

.room-offers-section .filter-button-group {
    margin-bottom: 2rem;
}

.offer-filter-band {
    background: #F4EDE9;
}

/* Hub category tabs — override Bootstrap link styles */
.offer-filter-band .offers-category-nav a.filter-btn {
    border-radius: 0;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    padding: 10px 25px;
    border: 1px solid #5F2836;
    color: #5F2836 !important;
    background: transparent;
    display: inline-block;
    text-decoration: none !important;
    line-height: 1.4;
    transition: 0.3s;
}

.offer-filter-band .offers-category-nav a.filter-btn.active,
.offer-filter-band .offers-category-nav a.filter-btn:hover {
    background-color: #5F2836 !important;
    color: #fff !important;
    border-color: #5F2836;
}

@media (max-width: 480px) {
    .offer-filter-band .offers-category-nav a.filter-btn {
        font-size: 0.8rem;
        padding: 10px;
        letter-spacing: 0;
    }
}

.offer-intro {
    padding: 80px 20px 40px;
    background: #F4EDE9;
}

.intro-text {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.intro-price {
    font-size: 16px;
    color: #392f4a;
    margin-bottom: 10px;
}

.intro-valid {
    font-size: 14px;
    color: #392f4a;
}



.comfort-section {
    padding: 100px 0;
    background: #fff;
}

.comfort-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.comfort-section ul {
    padding-left: 20px;
}

.comfort-section li {
    margin-bottom: 10px;
    color: #392f4a;
}




.enhance-section {
    padding: 60px 0;
    background: #F4EDE9;
}

/* CARD */
.enhance-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: .4s ease;
}

.enhance-card:hover {
    transform: translateY(-10px);
}

/* IMAGE WRAPPER */
.enhance-img {
    position: relative;
    overflow: hidden;
}

/* IMAGE */
.enhance-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 1.2s ease;
}

/* DARK OVERLAY */
.enhance-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0));
    z-index: 1;
}

/* TEXT OVER IMAGE */
.enhance-img .overlay-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    z-index: 2;
}

.enhance-img .overlay-content h5 {
    font-size: 46px;
    margin-bottom: 6px;
    font-weight: 500;
}

.enhance-img .overlay-content p {
    font-size: 20px;
    margin-bottom: 6px;
    opacity: 0.9;
}

.enhance-img .overlay-content span {
    font-size: 16px;
    opacity: 0.8;
}

.room-card {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #111;
    cursor: grab;
}

.room-card__image {
    position: absolute;
    top: 0;
    left: -120px;
    width: 130%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.room-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, .65),
            rgba(0, 0, 0, .25),
            rgba(0, 0, 0, 0));
}

.room-card__content {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 500px;
    color: #fff;
}

.room-badge {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #c7a17a;
}

.room-card .room-title {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 600;
}

.room-desc {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.85;
}


/* PARALLAX SHIFT */
.swiper-slide.is-active .room-card__image {
    transform: translateX(80px);
}

@media (max-width:768px) {
    .swiper-slide.is-active .room-card__image {
        transform: translateX(40px);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .room-card {
        height: 450px;
    }

    .room-card__content {
        padding: 40px;
    }

    .room-card .room-title {
        font-size: 28px;
    }
}

/* Scope everything to the parent section */
.ihg-rewards-section {
    background-color: #fff;
    overflow: hidden;
}

.ihg-rewards-section .reward-card {
    position: relative;
    overflow: hidden;
    border: none;
    transition: transform .35s ease;
}

.ihg-rewards-section .reward-image {
    position: relative;
}

.ihg-rewards-section .reward-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Overlay */
.ihg-rewards-section .reward-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Content */
.ihg-rewards-section .reward-content {
    color: #fff;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.ihg-rewards-section .reward-content h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.ihg-rewards-section .reward-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Hover Effects */
.ihg-rewards-section .reward-card:hover img {

    transform: translateY(-10px);
}

.ihg-rewards-section .reward-card:hover .reward-overlay {
    opacity: 1;
}

.ihg-rewards-section .reward-card:hover .reward-content {
    transform: translateY(0);
}

/* SECTION */
.discount-section-main {
    background-color: #fff;
    padding: 60px;
    min-height: 100vh;
}

@media (max-width:740px) {
    .discount-section-main {
        padding: 30px 15px;
        min-height: 100vh;
    }
}

.discount-slider-section {

    display: flex;
    justify-content: center;
    align-items: center;
}


/* CONTAINER */

.discount-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    height: 80vh;
    gap: 10px;
}


/* CARD */

.discount-card {
    position: relative;
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;

    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);

    background-image: var(--card-img);
    background-size: cover;
    background-position: center;

    will-change: flex;
}


/* EXPANDED CARD */

.discount-card.active {
    flex: 5;
}


/* DARK OVERLAY */

.discount-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));

    z-index: 1;
}


/* VERTICAL LABEL */

.discount-vertical-label {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;

    white-space: nowrap;

    transition: opacity 0.3s ease;

    z-index: 2;
}


/* HIDE LABEL WHEN ACTIVE */

.discount-card.active .discount-vertical-label {
    opacity: 0;
}


/* CONTENT */

.discount-content {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%) translateY(20px);

    opacity: 0;
    color: white;
    text-align: center;

    padding: 20px;
    pointer-events: none;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    max-width: 420px;
    width: 100%;

    transition: opacity 0.3s ease, transform 0.3s ease;

    z-index: 2;
}


/* ACTIVE CONTENT */

.discount-card.active .discount-content {
    opacity: 1;
    pointer-events: auto;

    transform: translate(-50%, -50%);
}




/* DESKTOP */

@media (min-width: 768px) {

    .discount-container {
        flex-direction: row;
        height: 560px;
    }

    .discount-vertical-label {
        transform: translate(-50%, -50%) rotate(-90deg);
        font-size: 1.4rem;
    }

}


/* MOBILE */

@media (max-width: 768px) {

    .discount-content {
        max-width: 90%;
    }

}


.events-hero {
    height: 100vh;
    background: #F4EDE9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.events-inner {
    text-align: center;
    max-width: 1240px;
}

.events-hero .split-text {
    font-size: 12vw;
    font-weight: 900;
    letter-spacing: -4px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    line-height: 0.9;
}

.events-hero .split-text span {
    display: inline-block;
}

.events-subtext {
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    opacity: 0;
}

.events-featured-copy p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.events-featured-copy p:last-child {
    margin-bottom: 1.5rem;
}




/* =============================
CAPACITY TABLE
============================= */

.venue-capacity-section {

    padding: 100px 0;
    background: #F4EDE9;
    text-align: center;

}


/* TABLE */

.capacity-table-wrapper {

    overflow-x: auto;

}

.capacity-table {

    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);

}

/* HEAD */

.capacity-table thead th {

    padding: 30px 20px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #555;
    background: #f7f4f2;

}

.capacity-table thead img {

    width: 38px;
    display: block;
    margin: auto;
    margin-bottom: 10px;
    opacity: .8;

}

/* BODY */

.capacity-table td {

    padding: 28px 20px;
    font-size: 18px;
    color: #333;
    border-top: 1px solid #eee;

}

.capacity-table tbody tr:nth-child(even) {

    background: #fafafa;

}

/* VENUE COLUMN */

.capacity-table td:first-child {

    font-weight: 500;
    color: #2e273b;

}

/* HOVER */

.capacity-table tbody tr:hover {

    background: #f3ece7;

}

/* MOBILE */

@media(max-width:768px) {

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

    .capacity-table td {
        font-size: 15px;
        padding: 20px;
    }

}



.event-types {
    padding: 100px 0;
    background: #fff;
}

.event-card {
    padding: 40px;
    border: 1px solid #eee;
    background: #fff;
    transition: all .4s ease;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}




/* story section */
.stories-section {
    background: #f5f3f0;
    padding: 60px 0;
    position: relative;
}


/* Story Card */
.story-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border: 1px solid #e5e5e5;
    transition: all 0.4s ease;
}

/* Make swiper slide stretch */
.storiesSwiper .swiper-wrapper {
    align-items: stretch;
}

.storiesSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.story-card:hover {
    transform: translateY(-8px);
}

/* IMAGE FULL WIDTH */
.story-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* change to contain if you NEVER want crop */
    transition: transform 0.6s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

/* Date */
.story-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #6d2737;
    color: #fff;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
}

/* Content */
.story-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.story-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.story-category {
    font-size: 13px;
    margin-bottom: 15px;
    color: #a8742a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.story-content p {
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
}

.read-more {
    color: #6d2737;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    margin-top: auto;
}

.read-more::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #6d2737;
    transition: width 0.3s ease;
}

.read-more:hover::after {
    width: 20%;
}

.storiesSwiper {
    position: relative;
}

.stories-header {
    position: relative;
    margin-bottom: 50px;
}

.stories-arrows {
    position: absolute;
    bottom: -40px;
    right: 0;
    display: flex;
    gap: 15px;
}

.stories-arrows .arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #dcdcdc;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow i {
    font-size: 18px;
    color: var(--secondary-color);
}

.arrow:hover {
    background: var(--secondary-color);
}

.arrow:hover i {
    color: #fff;
}

.stories-section .row {
    align-items: stretch;
}

.story-card {
    height: 100%;
}

.hidden-story {
    display: none;
}

/* Accommodation card */
.section-mini-title {
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.section-mini-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    opacity: .6;
}


.accommodation-card {
    background: var(--light-bg);
    border-radius: 26px;
    overflow: hidden;
    transition: all .45s cubic-bezier(.17, .67, .3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* luxury hover lift */

.accommodation-card:hover {
    transform: translateY(-10px);
}

/* IMAGE */

.room-img {
    position: relative;
    overflow: hidden;
    border-radius: 26px 26px 0 0;
}

/* smooth zoom */

.room-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform .9s cubic-bezier(.17, .67, .3, 1);
}

.accommodation-card:hover .room-img img {
    transform: scale(1.08);
}

/* RATING BADGE */

.room-rating {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
    z-index: 2;
}

.room-rating i {
    color: #ffb03b;
    margin-right: 5px;
}

/* SHINE EFFECT */

.room-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, .4) 100%);
    transform: skewX(-25deg);
}

/* .accommodation-card:hover .room-img::after {
    animation: shine .9s;
} */

@keyframes shine {
    100% {
        left: 120%;
    }
}

/* ROOM CARD ICONS */

.room-meta-icons {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 15px;
}

.room-meta-icons span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #3a2c2c;
}

.room-meta-icons img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: invert(18%) sepia(18%) saturate(500%) hue-rotate(320deg);
}

/* CONTENT — flex so multi-line titles don’t push buttons out of alignment */

.room-content {
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}

.room-content h3 {
    font-size: 28px;
    color: var(--primary-color);
    letter-spacing: .5px;
    margin-bottom: 10px;
    flex-shrink: 0;
}

/* DESCRIPTION — grows so divider / meta / CTA line up across cards */

.room-content p,
.room-content .accommodation-card__excerpt {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
    flex: 1 1 auto;
    min-height: 0;
    margin-bottom: 0;
}

.room-content .room-meta-icons {
    flex-shrink: 0;
}

/* BOTTOM */

.room-bottom {
    margin-top: auto;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}










/* SWIPER ARROWS */

.swiper-button-next,
.swiper-button-prev {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    color: #2E273B;
    transition: all .3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #2E273B;
    color: #fff;
}

@media(max-width:768px) {

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

}

.room-offers-section .container {
    position: relative;
}

/* LEFT ARROW */

.room-offers-prev {
    left: -60px;
}

/* RIGHT ARROW */

.room-offers-next {
    right: -60px;
}

/* Arrow styling */

.room-offers-prev,
.room-offers-next {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    color: #2E273B;
}

.room-offers-prev:hover,
.room-offers-next:hover {
    background: #2E273B;
    color: #fff;
}

/* hide on mobile */

@media(max-width:991px) {

    .room-offers-prev,
    .room-offers-next {
        display: none;
    }
}









/* savour page */
.item-card {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.item-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(46, 33, 69, 0.95) 0%,
            rgba(46, 33, 69, 0.75) 35%,
            rgba(46, 33, 69, 0.35) 60%,
            rgba(46, 33, 69, 0) 100%);
    z-index: 1;
    transition: .4s;
}

.item-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* bottom label */

.bottom-label {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 18px;
    letter-spacing: 3px;
    font-weight: 500;
    z-index: 2;
}

/* overlay */

.hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(46, 33, 69, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    opacity: 0;
    transition: .45s;
    z-index: 2;
}

.item-card:hover .hover-overlay {
    opacity: 1;
}

.item-card:hover .bottom-label {
    opacity: 0;
}

/* overlay content */

.item-card .overlay-content {
    color: #fff;
    max-width: 420px;
}

.item-card .overlay-content h2 {
    letter-spacing: 6px;
    margin-bottom: 20px;
}

.item-card .overlay-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* buttons */

.overlay-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.overlay-buttons .btn-white {
    min-width: 180px;
    text-align: center;
}


.savour-sidebar {
    position: sticky;
    top: 120px;
}


.restaurant-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.restaurant-menu li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    transition: .35s;
    position: relative;
}

.restaurant-menu li:last-child {
    border-bottom: none;
}

/* hover */

.restaurant-menu li:hover {
    background: #f6f3f1;
}

/* active */

.restaurant-menu li.active {
    background: var(--primary-color);
    color: #fff;
}

/* animated indicator */

.restaurant-menu li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--secondary-color);
    opacity: 0;
    transition: .3s;
}

.restaurant-menu li.active::before {
    opacity: 1;
}



/* SIDEBAR STICKY */
/* HELP CARD */

.savour-help {
    position: relative;
    overflow: hidden;
    margin: 25px 0;
}

.savour-help img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* GLASS OVERLAY */

.savour-help-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 30px;
}


/* TAGLINE */

.savour-tagline {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
}


/* CONTACT */

.savour-title {
    font-size: 16px;
    margin-bottom: 10px;
}

.savour-contact p {
    font-size: 14px;
    margin: 6px 0;
}


/* divider */

.savour-help-overlay hr {
    width: 80%;
    border-color: rgba(255, 255, 255, .3);
    margin: 15px auto;
}

.savour-help img {
    transition: transform .6s;
}

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


.restaurant-note {
    font-size: 14px;
    margin-top: 18px;
    color: #5a5555;
}

.restaurant-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
}

.restaurant-logos img {
    height: 30px;
    object-fit: contain;
    opacity: .9;
}

.restaurant-logos img {
    height: 30px;
    filter: grayscale(100%);
    opacity: .8;
    transition: .3s;
}

.restaurant-logos img:hover {
    filter: none;
    opacity: 1;
}

/* HERO HEADER */

.story-hero {
    padding: 120px 0 60px;
    background: #F4EDE9;
    text-align: center;
}

.story-headline {
    font-size: 56px;
    margin-top: 15px;
    color: var(--primary-color);
}

.story-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 14px;
    opacity: .7;
    letter-spacing: 1px;
}

/* META BAR */

.story-meta-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid #e6e2df;
    border-bottom: 1px solid #e6e2df;
    padding: 25px 0;
}

/* DATE BOX */

.story-date-box {
    background: #6e2d38;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* META TEXT */

.story-meta-info {
    display: flex;
    gap: 40px;
    font-size: 16px;
    color: #777;
    align-items: center;
}

.story-meta-info strong {
    color: #333;
}

.story-meta-info a {
    color: #6e2d38;
    text-decoration: none;
    font-weight: 500;
}

.story-comments {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
}

/* HERO IMAGE */

.story-hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}


/* ARTICLE */

.story-article {
    padding: 60px 0;
    background: #fff;
}

.story-text {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 30px;
}

/* GALLERY */

.story-gallery {
    padding: 60px 0;
    background: #fff;
}

.story-gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .4s;
}

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


/* CTA */

.story-cta {
    padding: 100px 0;
    background: #F4EDE9;
}

.story-cta h3 {
    font-size: 34px;
    margin-bottom: 15px;
}

@media (max-width: 740px) {
    .story-meta-bar {
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 10px;
        margin-top: 40px;
        border-top: 1px solid #e6e2df;
        border-bottom: 1px solid #e6e2df;
        padding: 25px 0;
        flex-wrap: wrap;
    }

    .story-meta-info {
        display: flex;
        gap: 10px;
        font-size: 16px;
        color: #777;
        align-items: center;
        flex-wrap: wrap;
    }
}







.split-text {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.split-text .line {
    display: block;
}

.split-text .accent {
    color: #c7a17a;
    /* luxury gold accent */
}

@media (max-width: 992px) {
    .split-text {
        font-size: 60px;
    }
}


















/* ===============================
ROOM PAGE
=============================== */

.roompage-subtitle {
    max-width: 700px;
    margin: auto;
    color: rgba(34, 34, 34, 0.7);
}

.roompage-lead {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.75;
}


/* ROOM IMAGES */

.roompage-gallery img {
    transition: all .4s ease;
}

.roompage-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
}

.roompage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

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


/* AMENITIES */

.roompage-amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    padding: 10px 0;
}

.roompage-amenity-item i {
    font-size: 20px;
    color: var(--secondary-color);
}


/* BOOKING CARD */

.roompage-booking-card {
    background: #f7f4f2;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.roompage-booking-card h5 {
    margin-bottom: 15px;
    font-size: 20px;
}

.roompage-booking-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.roompage-booking-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.roompage-booking-info li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
}

.roompage-booking-info i {
    color: var(--secondary-color);
}

/* ===============================
ROOM DETAILS MODERN
=============================== */

.roompage-details-title {
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--primary-color);
}

/* grid cards */

.roompage-detail-card {
    display: flex;
    align-items: center;
    gap: 16px;

    background: #fff;
    padding: 18px 22px;

    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

    transition: all .3s ease;
}

.roompage-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.roompage-detail-card i {
    font-size: 24px;
    color: var(--secondary-color);
}

.roompage-detail-label {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #777;
    display: block;
}

.roompage-detail-card h6 {
    margin: 2px 0 0;
    font-size: 16px;
    color: #111;
}


.roompage-quick-specs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 18px;
    font-size: 16px;
    color: #444;
}

.roompage-quick-specs span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.roompage-quick-specs img {
    width: 20px;
    height: 20px;
}

.roompage-quick-specs i {
    font-size: 18px;
    color: var(--secondary-color);
}

.roompage-activities-title {
    font-size: 20px;
    letter-spacing: 1.5px;
    color: var(--primary-color);
}

.roompage-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 6px;
}

.roompage-activities span {
    background: #fff;
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    transition: .3s;
}

.roompage-activities span:hover {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

.related-rooms-slider-wrapper {
    position: relative;
}

/* ARROWS */

.related-rooms-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    z-index: 5;
    transition: .3s;
}

.related-rooms-arrow:hover {
    background: var(--secondary-color);
    color: #fff;
}

.related-prev {
    left: -60px;
}

.related-next {
    right: -60px;
}

/* hide arrows on mobile */

@media (max-width:991px) {

    .related-rooms-arrow {
        display: none;
    }

}

/* f and b offers */
.fb-offers {
    background: #f6f3ef;
}

.offers-curated-block {
    row-gap: 32px;
}

.offers-curated-block__intro {
    max-width: 860px;
}

.offers-curated-block__tabs {
    margin-top: 8px;
}

.offers-curated-block__tabs .offer-tabs {
    gap: 10px;
    margin-bottom: 0;
}

.offers-curated-block__tabs .offer-tabs .nav-link {
    border: 0;
    background: transparent;
    color: #7a736d;
    font-size: clamp(1rem, 1.4vw, 1.35rem);
    letter-spacing: 0.02em;
    padding: 0 0 8px;
    margin: 0 14px;
}

.offers-curated-block__tabs .offer-tabs .nav-link.active {
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    text-decoration: none;
}

.offers-curated-block__tabs .offer-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: currentColor;
}

.offers-curated-tabs {
    margin-top: 8px;
}

.offers-curated-list {
    background: #f6f3ef;
    padding: clamp(24px, 4vw, 48px);
}

.offers-curated-item {
    border-bottom: 1px solid rgba(46, 39, 59, 0.08);
    padding: clamp(20px, 3vw, 34px) 0;
}

.offers-curated-item:first-child {
    padding-top: 0;
}

.offers-curated-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.offers-curated-item__media {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: #111;
}

.offers-curated-item__media img {
    width: 100%;
    aspect-ratio: 4 / 2.7;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.offers-curated-item:hover .offers-curated-item__media img {
    transform: scale(1.05);
}

.offers-curated-item__content {
    max-width: 480px;
}

.offers-curated-item__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--secondary-color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.offers-curated-item__content h2 {
    color: var(--primary-color);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    margin-bottom: 18px;
}

.offers-curated-item__content p {
    color: #605852;
    line-height: 1.85;
    margin-bottom: 30px;
}

.offers-curated-empty {
    background: #f6f3ef;
    color: #605852;
    padding: 56px 20px;
    text-align: center;
}

.fb-offer {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 60px;
}

.fb-offer:last-child {
    border: none;
}

.fb-offer-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.fb-offer-image img {
    width: 100%;
    height: 120%;
    /* slightly bigger for movement */
    object-fit: cover;
    will-change: transform;
}

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

.fb-offer h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2E273B;
}

.fb-offer p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

@media (max-width:991px) {

    .offers-curated-block__tabs .offer-tabs {
        overflow-x: auto;
        justify-content: flex-start !important;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .offers-curated-block__tabs .offer-tabs::-webkit-scrollbar {
        display: none;
    }

    .offers-curated-block__tabs .offer-tabs .nav-link {
        margin: 0 10px 0 0;
        white-space: nowrap;
    }

    .offers-curated-list {
        padding: 22px;
    }

    .offers-curated-item__content {
        max-width: none;
    }

    .fb-offer-image img {
        height: 360px;
    }

    .fb-offer {
        margin-bottom: 60px;
        padding-bottom: 30px;
    }

}

.left-0 {
    left: unset;
}

/* infinity floor */
.revamp-section {
    padding: 60px 5%;
    background: #F4EDE9;
    position: relative;
    overflow: hidden;
}

/* watermark */

.bg-watermark {
    position: absolute;
    top: 50%;
    right: -120px;
    transform: translateY(-50%);
    width: 500px;
    opacity: .04;
    pointer-events: none;
}

/* layout */

.revamp-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

/* IMAGE SIDE */

.visual-wrapper {
    position: relative;
}

.image-frame {
    overflow: hidden;
    border-radius: 6px;
}

.image-frame img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 1.6s cubic-bezier(.19, 1, .22, 1);
}

.visual-wrapper:hover img {
    transform: scale(1.06);
}

/* floating logo */

.logo-badge {
    position: absolute;
    bottom: -35px;
    left: -35px;
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.logo-badge img {
    width: 50px;
}

/* TEXT SIDE */

.featured-services .content-box,
.revamp-section .content-box {
    max-width: 520px;
}





.headline strong {
    font-weight: 500;
}

.description-wrap {
    border-left: 2px solid var(--secondary-color);
    padding-left: 28px;
}

.desc-text {
    font-size: 16px;
    line-height: 1.9;
}

.desc-text strong {
    color: #2e273b;
    font-weight: 500;
}

/* responsive */

@media (max-width:991px) {

    .revamp-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .image-frame img {
        height: 420px;
    }

    .logo-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -40px;
    }

    .description-wrap {
        border-left: none;
        padding-left: 0;
    }

    .content-box {
        text-align: center;
        margin: auto;
    }

    .bg-watermark {
        display: none;
    }

}

@media (max-width:991px) {
    .revamp-section {
        padding: 30px 5%;
    }

    .infinity-suites {
        padding: 30px 0;
        background: #f4ede9;
    }
}


.infinity-suites {
    padding: 60px 0;
    background: #f4ede9;
}

.section-header {
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 48px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: auto;
}

.suite-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.suite-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 1s ease;
}

.suite-card:hover img {
    transform: scale(1.08);
}

.suite-info {
    padding: 24px 10px;
}

.suite-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.suite-info p {
    color: #666;
}

/* Infinity Floor page scope */
.page-infinity-floor .luxury-section {
    background: #F4EDE9;
    padding: 120px 0;
}

.page-infinity-floor .luxury-img {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 14px;
}

.page-infinity-floor .luxury-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.page-infinity-floor .luxury-img:hover img {
    transform: scale(1.05);
}

.page-infinity-floor .luxury-text {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    line-height: 1.9;
    font-size: 17px;
}

.page-infinity-floor .luxury-highlight {
    max-width: 600px;
    margin: 0 auto;
    background: #2E273B;
    color: #fff;
    padding: 40px;
    border-radius: 12px;
}

.page-infinity-floor .luxury-highlight ul {
    margin-top: 15px;
}

.page-infinity-floor .luxury-slider {
    width: 100%;
    padding: 30px 0;
    position: relative;
}

.page-infinity-floor .luxury-slider::before,
.page-infinity-floor .luxury-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.page-infinity-floor .luxury-slider::before {
    left: 0;
    background: linear-gradient(to right, #F4EDE9, transparent);
}

.page-infinity-floor .luxury-slider::after {
    right: 0;
    background: linear-gradient(to left, #F4EDE9, transparent);
}

.page-infinity-floor .luxury-slider .swiper-slide {
    width: auto !important;
}

.page-infinity-floor .luxury-card {
    min-width: 260px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: #fff;
    text-align: center;
    font-size: 15px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.page-infinity-floor .luxury-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .page-infinity-floor .luxury-section {
        padding: 80px 20px;
    }

    .page-infinity-floor .luxury-img img {
        height: 280px;
    }
}

/* ============================================================
   CAREERS DETAIL PAGE  —  all rules namespaced with .cd-
   ============================================================ */

/* ── Banner overrides ── */
.cd-sub-banner {
    background-image: url('../images/blog/Fluid_SocialStudio_Lifestyle.jpg');
    background-position: center 30%;
}

.cd-banner-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.cd-banner-meta {
    margin-top: 1.5rem;
}

.cd-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.08);
}

.cd-meta-pill--remote {
    border-color: rgba(123, 44, 59, 0.6);
    color: #ffc4c4;
}


/* ── Split section: poster + form ── */
.cd-split-section {
    background: #F4EDE9;
}

.cd-split-row {
    min-height: 90vh;
}

/* LEFT — Poster */
.cd-poster-col {
    position: relative;
}

.cd-poster {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 560px;
    overflow: hidden;
}

.cd-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s ease;
}

.cd-poster:hover .cd-poster-img {
    transform: scale(1.04);
}

.cd-poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(30, 20, 40, 0.88) 0%,
        rgba(30, 20, 40, 0.45) 45%,
        rgba(30, 20, 40, 0.10) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 48px 44px;
}

.cd-poster-content {
    color: #fff;
    width: 100%;
}

.cd-poster-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 200, 180, 0.9);
    margin-bottom: 1rem;
}

.cd-poster-heading {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.cd-poster-subtext {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    max-width: 400px;
    margin-bottom: 1.75rem;
}

.cd-poster-divider {
    width: 48px;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
    margin-bottom: 1.5rem;
}

.cd-poster-facts {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.cd-poster-fact {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cd-fact-num {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.cd-fact-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}


/* RIGHT — Form panel */
.cd-form-col {
    background: #F4EDE9;
    display: flex;
    align-items: center;
}

.cd-form-wrapper {
    width: 100%;
    padding: 48px 40px;
}

.cd-application-form {
    background: linear-gradient(160deg, #ffffff 0%, #fffaf7 60%, #fff5f0 100%);
    border: 1px solid rgba(123, 44, 59, 0.12);
    border-radius: 1.5rem;
    box-shadow: 0 24px 72px rgba(46, 39, 59, 0.10);
}

.cd-form-title {
    color: #2E273B;
    font-size: 1.45rem;
    font-weight: 600;
    margin: 0.25rem 0 0.5rem;
    line-height: 1.2;
}

.cd-required {
    color: #7b2c3b;
    font-size: 0.85em;
}

/* Upload zone */
.cd-upload-zone {
    position: relative;
    border: 1.5px dashed rgba(57, 47, 74, 0.25);
    border-radius: 0.9rem;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.6);
    transition: border-color 0.25s ease, background 0.25s ease;
    overflow: hidden;
}

.cd-upload-zone:hover,
.cd-upload-zone--drag {
    border-color: #7b2c3b;
    background: rgba(123, 44, 59, 0.04);
}

.cd-upload-zone--selected {
    border-color: #5c353d;
    background: rgba(92, 53, 61, 0.04);
}

.cd-upload-icon {
    font-size: 1.8rem;
    color: rgba(57, 47, 74, 0.4);
    display: block;
    margin-bottom: 6px;
}

.cd-upload-text {
    font-size: 0.88rem;
    color: #392f4a;
    margin: 0 0 4px;
}

.cd-upload-trigger {
    color: #7b2c3b;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cd-upload-hint {
    font-size: 0.75rem;
    color: rgba(57, 47, 74, 0.5);
    margin: 0;
}

.cd-upload-filename {
    font-size: 0.82rem;
    color: #5c353d;
    font-weight: 600;
    margin: 6px 0 0;
    word-break: break-all;
}

.cd-upload-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    pointer-events: none;
}

/* Submit button — full width in form */
.cd-submit-btn {
    width: 100%;
    justify-content: center;
    min-height: 54px;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
}

.cd-form-privacy {
    font-size: 0.75rem;
    color: rgba(57, 47, 74, 0.55);
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

.cd-form-privacy a {
    color: #7b2c3b;
    text-decoration: underline;
    text-underline-offset: 2px;
}


/* ── Job detail sections ── */
.cd-detail-section {
    background: #ffffff;
    padding: 90px 0 100px;
}

.cd-content-block {
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(57, 47, 74, 0.08);
}

.cd-content-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cd-section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7b2c3b;
    margin-bottom: 0.75rem;
}

.cd-section-title {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 600;
    color: #2E273B;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.cd-body-text {
    font-size: 1rem;
    color: #5a5467;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.cd-body-text:last-child {
    margin-bottom: 0;
}

/* Lists */
.cd-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cd-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.85rem;
    font-size: 1rem;
    color: #5a5467;
    line-height: 1.7;
}

.cd-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7b2c3b;
    flex-shrink: 0;
}

.cd-list--check li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5c353d;
    top: 0.55em;
}

.cd-list--preferred li::before {
    background: rgba(92, 53, 61, 0.4);
}

.cd-sub-heading {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #392f4a;
    margin-bottom: 1rem;
}

/* Benefits grid inside HR block */
.cd-benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.cd-benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: 0.9rem;
    background: #faf8f6;
    border: 1px solid rgba(57, 47, 74, 0.07);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.cd-benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(46, 39, 59, 0.08);
}

.cd-benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(123, 44, 59, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #7b2c3b;
    font-size: 1rem;
}

.cd-benefit-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #2E273B;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cd-benefit-desc {
    font-size: 0.85rem;
    color: #7a7185;
    line-height: 1.55;
    margin: 0;
}

/* Confidentiality block */
.cd-confidentiality-block {
    background: linear-gradient(135deg, #faf8f6 0%, #f7f2f0 100%);
    border: 1px solid rgba(123, 44, 59, 0.1);
    border-radius: 1rem;
    padding: 2rem 2rem 2rem !important;
    margin-bottom: 64px;
}

.cd-confidentiality-inner {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.cd-conf-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(123, 44, 59, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #7b2c3b;
    font-size: 1.3rem;
}


/* ── Sidebar ── */
.cd-sidebar-card {
    background: #fff;
    border: 1px solid rgba(57, 47, 74, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    position: sticky;
    top: 110px;
}

.cd-sidebar-heading {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2E273B;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(57, 47, 74, 0.08);
}

.cd-overview-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.cd-overview-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(57, 47, 74, 0.06);
}

.cd-overview-list li:last-child {
    border-bottom: none;
}

.cd-overview-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(123, 44, 59, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #7b2c3b;
    font-size: 0.9rem;
}

.cd-overview-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(57, 47, 74, 0.5);
    margin-bottom: 2px;
}

.cd-overview-value {
    display: block;
    font-size: 0.88rem;
    color: #2E273B;
    font-weight: 600;
}

.cd-sidebar-apply-btn {
    width: 100%;
    justify-content: center;
    min-height: 50px;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
}

/* Share card */
.cd-share-card {
    background: #fff;
    border: 1px solid rgba(57, 47, 74, 0.1);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
}

.cd-share-heading {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2E273B;
    margin-bottom: 1rem;
}

.cd-share-links {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.cd-share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(57, 47, 74, 0.15);
    background: #faf8f6;
    color: #392f4a;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cd-share-btn:hover {
    background: #7b2c3b;
    color: #fff;
    border-color: #7b2c3b;
}

/* Back link */
.cd-back-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7b2c3b;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.cd-back-link:hover {
    opacity: 0.7;
    color: #7b2c3b;
}


/* ── Responsive: Tablet (≤ 991px) ── */
@media (max-width: 991px) {
    .cd-split-row {
        min-height: auto;
    }

    .cd-poster {
        min-height: 480px;
    }

    .cd-form-wrapper {
        padding: 40px 24px;
    }

    .cd-benefit-grid {
        grid-template-columns: 1fr;
    }

    .cd-sidebar-card {
        position: static;
    }

    .cd-detail-section {
        padding: 60px 0 72px;
    }

    .cd-confidentiality-block {
        padding: 1.5rem !important;
    }
}


/* ── Responsive: Mobile (≤ 575px) ── */
@media (max-width: 575px) {
    .cd-poster {
        min-height: 360px;
    }

    .cd-poster-overlay {
        padding: 28px 24px;
    }

    .cd-poster-heading {
        font-size: 1.5rem;
    }

    .cd-poster-facts {
        gap: 1.25rem;
    }

    .cd-form-wrapper {
        padding: 24px 16px;
    }

    .cd-application-form {
        border-radius: 1rem;
    }

    .cd-confidentiality-inner {
        flex-direction: column;
        gap: 1rem;
    }

    .cd-share-card,
    .cd-sidebar-card {
        border-radius: 0.75rem;
    }

    .cd-banner-meta {
        display: none !important;
    }
}

/* ── End Careers Detail ── */
