.discover-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: #e3e4df;
    font-family: "PP Woodland Ultralight";
}

.discover-text {
    flex: 1;
    padding-right: 40px;
}

.discover-text h2 {
    font-size: 34px;
    color: #444;
    font-family: "PP Woodland Ultralight";
    font-weight: 700;
}

.discover-text h2 span {
    font-weight: bold;
    font-family: "PP Woodland";
    color: #2e3222;
}

.discover-text p {
    font-size: 16px;
    color: #4c4c4c;
    margin-top: 20px;
    line-height: 1.6;
}

.discover-image {
    flex: 1;
    max-width: 100%;
    border: 2px solid #f2b321;
    border-radius: 20px;
    padding: 15px;
    /* background-color: #0c1a40; */
}

.discover-image img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    display: block;
}

.room-highlight-section {
    display: flex;
    background-color: #e3e4df;
    padding: 60px 30px;
    font-family: 'Playfair Display', serif;
}

.room-left-image {
    flex: 1;
    max-width: 100%;
    border: 2px solid #f2b321;
    border-radius: 20px;
    padding: 15px;
    /* background-color: #0c1a40; */
    margin-right: 40px;
}

.room-left-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.room-right-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.room-block h3 {
    font-size: 34px;
    font-family: "PP Woodland Ultralight";
    font-weight: 700;
    color: #555;
    margin-bottom: 10px;
}

.room-block h3 span {
    font-weight: bold;
    font-family: "PP Woodland";
    color: #2e3222;
}

.room-block p {
    font-size: 16px;
    color: #4c4c4c;
    line-height: 1.6;
}

@media(max-width: 768px) {

    .discover-section,
    .room-highlight-section {
        flex-direction: column;
        padding: 30px;
    }

    .discover-image,
    .room-left-image {
        margin-right: 0;
        max-width: 100%;
    }
}

/* offer sections */
.offer-banner-section {
    display: flex;
    background-color: #0c1a40;
    height: 280px;
    overflow: hidden;
}

/* Left vertical logo bar */
.offer-left-bar {
    background-color: #091839;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-left-bar img {
    height: 200px;
}

.offer-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 280px;
    overflow: hidden;
}

.offer-carousel-css {
    position: relative;
    width: 100%;
    height: 100%;
}

.offer-carousel-css img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeCarousel 9s infinite;
}

.offer-carousel-css img:nth-child(1) {
    animation-delay: 0s;
}

.offer-carousel-css img:nth-child(2) {
    animation-delay: 3s;
}

.offer-carousel-css img:nth-child(3) {
    animation-delay: 6s;
}

@keyframes fadeCarousel {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    35% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


/* Offer text box with shape background */
.offer-text-box {
    background: url('../images/offerbg-section.png') no-repeat center center;
    background-size: cover;
    width: 50%;
    height: 300px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.offer-text-box h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
}

.offer-text-box .subtext {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 10px;
}

.offer-text-box h2 {
    font-size: 32px;
    margin: 5px 0;
}

.discount {
    font-size: 24px;
    color: #f2b321;
    font-weight: bold;
    margin-bottom: 10px;
}

.book-now {
    background-color: transparent;
    color: #f2b321;
    border: 1px solid #f2b321;
    padding: 8px 18px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}

/*  */
.proximity-container {
    background-color: #f9f8f0;
    padding: 10px 10px 10px 4%;
    border-radius: 12px;
    /* font-family: 'Playfair Display', serif; */
    max-width: 100%;
    width: 30%;
}

.proximity-title {
    font-size: 24px;
    color: #0c1a40;
    font-weight: bold;
    margin-bottom: 10px;
}

.proximity-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #d8d8d8;
}

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

.proximity-item img {
    width: 36px;
    height: 36px;
    background-color: #0c1a40;
    padding: 8px;
    border-radius: 6px;
    margin-right: 16px;
}

.proximity-item p {
    font-size: 16px;
    color: #1d1d1d;
    font-weight: 400;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background-color: #faf8f2;
    justify-content: space-between;
}

/* --- Advanced Animation Keyframes & Classes (for discover page animations) --- */
@keyframes parallaxFadeUp {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.98);
    }

    60% {
        opacity: 0.7;
        transform: translateY(10px) scale(1.01);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }

    60% {
        opacity: 1;
        transform: translateY(-10px) scale(1.05);
    }

    80% {
        transform: translateY(5px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInStagger {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ani-parallax-up {
    opacity: 0;
}

.ani-parallax-up.visible {
    animation: parallaxFadeUp 1.1s cubic-bezier(.23, 1.01, .32, 1) forwards;
}

.ani-bounce-up {
    opacity: 0;
}

.ani-bounce-up.visible {
    animation: bounceInUp 1s cubic-bezier(.23, 1.01, .32, 1) forwards;
}

.ani-slide-left {
    opacity: 0;
}

.ani-slide-left.visible {
    animation: slideInLeft 1s cubic-bezier(.23, 1.01, .32, 1) forwards;
}

.ani-slide-right {
    opacity: 0;
}

.ani-slide-right.visible {
    animation: slideInRight 1s cubic-bezier(.23, 1.01, .32, 1) forwards;
}

.ani-fade-stagger {
    opacity: 0;
}

.ani-fade-stagger.visible {
    animation: fadeInStagger 0.7s cubic-bezier(.23, 1.01, .32, 1) forwards;
}

/* Stagger delay utilities (0-7) */
.ani-delay-0 {
    animation-delay: 0s !important;
}

.ani-delay-1 {
    animation-delay: 0.15s !important;
}

.ani-delay-2 {
    animation-delay: 0.3s !important;
}

.ani-delay-3 {
    animation-delay: 0.45s !important;
}

.ani-delay-4 {
    animation-delay: 0.6s !important;
}

.ani-delay-5 {
    animation-delay: 0.75s !important;
}

.ani-delay-6 {
    animation-delay: 0.9s !important;
}

.ani-delay-7 {
    animation-delay: 1.05s !important;
}