:root {
    --gold: #AD8B3A;
    --gold-lt: #c9a84c;
    --dark: #111010;
}

.raaga-inner {
    position: absolute;
    z-index: 1;
    width: 100%;
    top: 110px;
}

.raaga-left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.raaga-dash {
    width: 65px !important;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    margin-top: 25px;
    flex-shrink: 0;
    animation: dashGrow 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0.3s forwards;
}

@keyframes dashGrow {
    to {
        width: 36px;
    }
}

.rooms-at-text {
    font-family: 'CorporateAPro' !important;
    font-weight: 500;
    /* letter-spacing: -0.05em; */
    font-size: clamp(28px, 3.6vw, 46px);
    color: #f0ede6;
    /* letter-spacing: 0.08em; */
    text-transform: uppercase;
    line-height: 1.15;
}

.word-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25em;
    overflow: hidden;
    justify-content: left;
}

.word {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    animation: wordRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.w1 {
    animation-delay: 0.45s;
}

.w2 {
    animation-delay: 0.58s;
}

.w3 {
    animation-delay: 0.71s;
}

.w4 {
    animation-delay: 0.84s;
}

@keyframes wordRise {
    0% {
        transform: translateY(110%);
        opacity: 0;
    }

    60% {
        opacity: 1;
    }

    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

.raaga-right {
    display: flex;
    align-items: center;
    height: 100%;
}

.rooms-at-desc {
    /* font-family: 'Jost', sans-serif; */
    font-size: 17px;
    font-weight: 300;
    font-size: 19px;
    line-height: 26px;
    color: rgba(220, 215, 205, 0.82);
    letter-spacing: 0.025em;
    opacity: 0;
    transform: translateX(32px);
    animation: slideIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards;
    position: relative;
    padding-left: 22px;
    margin-bottom: 0;
}

.rooms-at-desc::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: scaleY(0);
    transform-origin: top;
    animation: lineReveal 0.8s ease 1.55s forwards;
}

@keyframes lineReveal {
    to {
        transform: scaleY(1);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(32px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .raaga-left {
        gap: 14px;
    }

    .raaga-right {
        margin-top: 24px;
    }

    .rooms-at-desc {
        transform: translateX(0);
        animation-name: fadeInUp;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.rooms-at-raaga-slider-section {
    overflow: hidden;
    position: relative;
}

.scene {
    position: relative;
    width: 100vw;
    height: 100vh;
    padding: 0 0 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    overflow: hidden;
}

.scene-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.28);
    z-index: 0;
    transition: background-image 0.7s ease;
}

.section-header {
    position: relative;
    z-index: 5;
    text-align: center;
    margin-bottom: 28px;
}

.section-header hr {
    width: 50px;
    border: none;
    border-top: 1px solid var(--gold);
    margin: 0 auto 10px;
}

.section-title {
    font-family: 'CorporateAPro' !important;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
    max-width: 420px;
    margin: 10px auto 0;
    line-height: 1.85;
}

.slider-row {
    position: relative;
    z-index: 5;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 420px;
}

.side-panel {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 24%;
    overflow: hidden;
    z-index: 2;
}

.side-panel.left {
    left: 0;
}

.side-panel.right {
    right: 0;
}

.side-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) sepia(0.3);
    transition: background-image 0.7s ease;
}

.side-panel.left::after,
.side-panel.right::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.side-panel.left::after {
    right: 0;
}

.side-panel.right::after {
    left: 0;
}

.side-ctrl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 4;
}

.side-panel.left .side-ctrl {
    left: 60px;
    flex-direction: row;
}

.side-panel.right .side-ctrl {
    right: 60px;
    flex-direction: row-reverse;
}

.arrow-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 19PX;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .3s, border-color .3s;
    z-index: 10;
}

.arrow-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.8);
}

.side-label {
    font-family: 'CorporateAPro';
    font-size: 20px;
    font-weight: 500;
    /* letter-spacing: -0.05em; */
    /* text-transform: uppercase; */
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
}

.card-wrap {
    position: relative;
    z-index: 6;
    width: 52%;
    max-width: 760px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
    overflow: hidden;
}

.card-img-track-wrap {
    width: 100%;
    height: 340px;
    overflow: hidden;
    position: relative;
}

.card-img-track {
    display: flex;
    height: 100%;
    will-change: transform;
}

.card-img-track img {
    flex-shrink: 0;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 20px 44px 20px;
    text-align: center;
}

.card-title {
    font-family: 'CorporateAPro';
    font-size: 20px;
    font-weight: 500;
    /* letter-spacing: 0.25em; */
    /* text-transform: uppercase; */
    color: #1c1510;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .55s ease .1s, transform .55s ease .1s;
}

.card-desc {
    /* font-family: 'CorporateAPro'; */
    font-family: "Inter", sans-serif;
    margin-top: 12px;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    color: #45443F;
    max-width: 100%;
    margin-inline: auto;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .55s ease .22s, transform .55s ease .22s;
}

.card-link {
    font-family: "Inter", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-top: 18px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    background: #ad8b3a;
    padding: 10px 15px;
    text-decoration: none;
    border-bottom: 1px solid var(--gold-lt);
    /* padding-bottom: 2px; */
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .55s ease .34s, transform .55s ease .34s;
}

.card-link:hover{color: #fff;}

.card-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.text-in .card-title,
.text-in .card-desc,
.text-in .card-link {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */

.mobile-arrows {
    display: none;
}


/* 1366px / 1300px laptop */
@media (max-width: 1400px) {

    .rooms-at-text {
        font-size: clamp(26px, 5vw, 36px);
    }

    .rooms-at-desc {
        font-size: clamp(14px, 1.5vw, 14px);
        line-height: 22px;
    }

    .raaga-inner {
        top: 80px;
    }

    .scene {
        padding-bottom: 80px;
        padding: 220px 0 100px;
        height: auto;
    }

    .slider-row {
        height: 390px;
    }

    .card-img-track-wrap {
        height: 280px;
    }

    .card-body {
        padding: 16px 20px;
    }

    .side-label {
        font-size: 18px;
    }

    .card-title {
        font-size: 18px;
        line-height: 18px;
        margin-bottom: 5px;
    }

    .card-desc {
        font-size: 12px;
        line-height: 20px;
        margin-top: 0;
    }

    .card-wrap {
        width: 45%;
    }

    .side-panel.left .side-ctrl {
        left: 30px;
    }

    .side-panel.right .side-ctrl {
        right: 30px;
    }
}

/* 1200px */
@media (max-width: 1200px) {
    .raaga-inner {
        top: 70px;
    }

    .scene {
        padding-bottom: 60px;
    }

    .slider-row {
        height: 360px;
    }

    .card-img-track-wrap {
        height: 255px;
    }

    .card-body {
        padding: 14px 28px;
    }

    .card-desc {
        font-size: 13px;
        line-height: 22px;
    }

    .card-wrap {
        width: 56%;
    }

    .side-label {
        font-size: 15px;
    }

    .side-panel.left .side-ctrl {
        left: 28px;
    }

    .side-panel.right .side-ctrl {
        right: 28px;
    }
}

/* 1024px tablet landscape */
@media (max-width: 1024px) {
    .raaga-inner {
        top: 60px;
    }

    .scene {
        padding-bottom: 50px;
    }

    .slider-row {
        height: 340px;
    }

    .card-img-track-wrap {
        height: 230px;
    }

    .card-body {
        padding: 12px 22px;
    }

    .card-title {
        font-size: 17px;
    }

    .card-desc {
        font-size: 12px;
        line-height: 20px;
        margin-top: 8px;
    }

    .card-link {
        margin-top: 10px;
        font-size: 13px;
    }

    .card-wrap {
        width: 62%;
    }

    .side-panel {
        width: 19%;
    }

    .side-label {
        display: none;
    }

    .side-panel.left .side-ctrl {
        left: 16px;
    }

    .side-panel.right .side-ctrl {
        right: 16px;
    }
}

/* Tablet portrait (max 768px) */
@media (max-width: 768px) {
    .raaga-inner {
        position: relative;
        top: 0;
        padding: 65px 0 20px;
        background: #111010;
    }

    .raaga-left {
        gap: 14px;
    }

    .raaga-right {
        margin-top: 16px;
    }

    .rooms-at-desc {
        transform: translateX(0);
        animation-name: fadeInUp;
        font-size: 13px;
    }

    .scene {
        height: auto;
        min-height: 520px;
        padding: 32px 0 60px;
        justify-content: center;
    }

    .slider-row {
        height: 380px;
    }

    .side-panel {
        display: none;
    }

    .card-wrap {
        width: 88%;
        max-width: 520px;
    }

    .card-img-track-wrap {
        height: 240px;
    }

    .card-body {
        padding: 18px 24px;
    }

    .card-title {
        font-size: 17px;
    }

    .card-desc {
        font-size: 13px;
        line-height: 22px;
    }

    .mobile-arrows {
        display: flex;
        justify-content: space-between;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 92%;
        max-width: 540px;
        z-index: 10;
        pointer-events: none;
    }

    .mobile-arrows .arrow-btn {
        pointer-events: all;
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {

    .raaga-dash {
        margin-top: 12px;
        width: 32px !important;
    }

    .raaga-right {
        margin-top: 0;
        padding-bottom: 30px;
    }

    .rooms-at-desc.black-para::before {
        display: none;
    }

    .rooms-at-desc {
        padding-left: 0;
    }

}

/* Mobile (max 480px) */
@media (max-width: 480px) {
    .scene {
        min-height: 460px;
        padding: 24px 0 48px;
    }

    .slider-row {
        height: 340px;
    }

    .card-wrap {
        width: 92%;
    }

    .card-img-track-wrap {
        height: 200px;
    }

    .card-body {
        padding: 14px 16px;
    }

    .card-title {
        font-size: 15px;
    }

    .card-desc {
        font-size: 12px;
        line-height: 20px;
        margin-top: 8px;
    }

    .card-link {
        font-size: 12px;
        margin-top: 12px;
    }

    .mobile-arrows .arrow-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .rooms-at-text {
        font-size: clamp(22px, 7vw, 32px);
    }
}


@media only screen and (min-width: 1023px) and (max-width: 1200px) {

    .card-wrap {
        width: 52%;
    }

    .parallax-section {
        background-attachment: scroll;
    }

}