:root {
    --primary: #A2B518;
    --dark: #1F383D;
    --accent: #C9A96E;
    --bg-warm: #FAFAFA;
    --text-light: #6B7280;
    --border: #E5E7EB;
}
.rooms-hero {
    position: relative;
    padding: 11rem 1.5rem 5rem;
    text-align: center;
    background: linear-gradient(165deg, #1F383D 0%, #162A2E 40%, #0F1E22 100%);
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rooms-hero__pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(162,181,24,0.07) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201,169,110,0.06) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 60px,
            rgba(255,255,255,0.008) 60px,
            rgba(255,255,255,0.008) 61px
        );
    pointer-events: none;
}
.rooms-hero__accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
}
.rooms-hero .container {
    position: relative;
    z-index: 1;
    max-width: 750px;
    margin: 0 auto;
}
.rooms-hero__eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
    position: relative;
    padding: 0 2rem;
}
.rooms-hero__eyebrow::before,
.rooms-hero__eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--accent);
    opacity: 0.5;
}
.rooms-hero__eyebrow::before { left: -15px; }
.rooms-hero__eyebrow::after { right: -15px; }
.rooms-hero h1 {
    font-family: 'Lora', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    margin: 0 0 1rem;
    font-weight: 700;
    line-height: 1.15;
}
.rooms-hero h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 1.25rem auto 0;
    border-radius: 2px;
}
.rooms-hero p {
    color: rgba(255,255,255,0.55);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 1.25rem auto 0;
    line-height: 1.75;
}
.rooms-hero__scroll-hint {
    margin-top: 2.5rem;
    animation: scrollBounce 2s ease-in-out infinite;
}
.rooms-hero__scroll-hint i {
    font-size: 1rem;
    color: rgba(255,255,255,0.25);
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(8px); opacity: 1; }
}
.amenities-strip {
    background: var(--dark);
    padding: 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.amenities-strip .container {
    max-width: 1100px;
    margin: 0 auto;
}
.amenities-strip__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.amenity-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.amenity-pill i {
    color: var(--primary);
    font-size: 0.85rem;
}
.amenity-pill:hover {
    background: rgba(162,181,24,0.12);
    border-color: rgba(162,181,24,0.25);
    color: #fff;
    transform: translateY(-1px);
}
.rooms-listing-section {
    padding: 4.5rem 1.5rem 5rem;
    background: var(--bg-warm);
}
.rooms-listing-section .container {
    max-width: 1100px;
    margin: 0 auto;
}
.rooms-listing__header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(162,181,24,0.08);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 0.75rem;
}
.section-tag--light {
    color: var(--accent);
    background: rgba(201,169,110,0.12);
}
.section-title {
    font-family: 'Lora', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--dark);
    margin: 0.5rem 0 0;
    font-weight: 700;
}
.rooms-grid {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
.room-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    animation: fadeInCard 0.6s ease-out forwards;
    border: 1px solid rgba(0,0,0,0.04);
    min-height: 320px;
}
.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(31,56,61,0.1);
    border-color: rgba(162,181,24,0.2);
}
@keyframes fadeInCard {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}
.room-image-container {
    width: 42%;
    min-width: 42%;
    position: relative;
    overflow: hidden;
}
.room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.room-card:hover .room-image {
    transform: scale(1.06);
}
.room-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(31,56,61,0.2) 0%,
        rgba(31,56,61,0.05) 50%,
        transparent 100%
    );
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.room-card:hover .room-image-overlay {
    opacity: 0.6;
}
.room-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(31,56,61,0.85);
    backdrop-filter: blur(8px);
    color: var(--accent);
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid rgba(201,169,110,0.2);
}
.room-badge i {
    font-size: 0.6rem;
    color: var(--accent);
}
.room-info {
    flex: 1;
    padding: 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.room-name {
    font-family: 'Lora', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 0.6rem;
    line-height: 1.25;
    position: relative;
}
.room-name::after {
    content: '';
    display: block;
    width: 35px;
    height: 2px;
    background: var(--primary);
    margin-top: 0.6rem;
    border-radius: 1px;
    transition: width 0.3s ease;
}
.room-card:hover .room-name::after {
    width: 55px;
}
.room-description-preview {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0.5rem 0 1rem;
    flex-grow: 0;
}
.room-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.highlight-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(162,181,24,0.06);
    color: #5A6B12;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 500;
    opacity: 0;
    animation: highlightIn 0.5s ease-out forwards;
    border: 1px solid rgba(162,181,24,0.1);
    transition: all 0.25s ease;
}
.highlight-item i {
    font-size: 0.6rem;
    color: var(--primary);
}
.highlight-item:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-1px);
}
.highlight-item:hover i {
    color: #fff;
}
@keyframes highlightIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}
.room-meta {
    display: flex;
    gap: 1.25rem;
    font-size: 0.82rem;
    color: var(--text-light);
    padding: 0.85rem 0;
    border-top: 1px solid var(--border);
    margin-bottom: 1.25rem;
}
.room-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.room-meta i {
    color: var(--primary);
    font-size: 0.8rem;
}
.room-card-actions {
    display: flex;
    gap: 0.65rem;
}
.room-card-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.82rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: 0.2px;
    box-sizing: border-box;
}
.btn-details {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--border);
}
.btn-details:hover {
    border-color: var(--dark);
    background: var(--dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31,56,61,0.15);
}
.btn-book-now {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
}
.btn-book-now:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,169,110,0.3);
}
.book-direct-section {
    padding: 5rem 1.5rem;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.book-direct-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(162,181,24,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.book-direct-section .container {
    max-width: 900px;
    margin: 0 auto;
}
.book-direct__inner {
    text-align: center;
}
.book-direct__title {
    font-family: 'Lora', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #fff;
    margin: 0.5rem 0 0.75rem;
    font-weight: 700;
}
.book-direct__text {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}
.book-direct__perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}
.perk-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}
.perk-item:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(162,181,24,0.15);
    transform: translateY(-2px);
}
.perk-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(162,181,24,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.perk-icon i {
    color: var(--primary);
    font-size: 1rem;
}
.perk-item strong {
    display: block;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.perk-item span {
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
    line-height: 1.5;
}
@media (min-width: 640px) and (max-width: 1023px) {
    .rooms-grid {
        gap: 1.5rem;
    }
    .room-card {
        min-height: 280px;
    }
    .room-image-container {
        width: 38%;
        min-width: 38%;
    }
    .room-info {
        padding: 1.75rem;
    }
    .book-direct__perks {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}
@media (min-width: 1024px) {
    .rooms-hero {
        padding: 13rem 1.5rem 6rem;
        min-height: 520px;
    }
    .room-card {
        min-height: 340px;
    }
    .room-image-container {
        width: 42%;
        min-width: 42%;
    }
}
@media (max-width: 639px) {
    .rooms-hero {
        padding: 9rem 1.25rem 3.5rem;
        min-height: auto;
    }
    .rooms-hero__eyebrow {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
    .rooms-hero__eyebrow::before,
    .rooms-hero__eyebrow::after {
        display: none;
    }
    .rooms-hero p {
        font-size: 0.95rem;
    }
    .rooms-hero__scroll-hint {
        margin-top: 1.5rem;
    }
    .amenities-strip {
        padding: 1rem 1rem;
    }
    .amenities-strip__grid {
        gap: 0.4rem;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.25rem;
    }
    .amenity-pill {
        padding: 0.5rem 1rem;
        font-size: 0.72rem;
        flex-shrink: 0;
    }
    .rooms-listing-section {
        padding: 3rem 1.25rem 3.5rem;
    }
    .room-card {
        flex-direction: column;
        min-height: auto;
        border-radius: 14px;
    }
    .room-image-container {
        width: 100%;
        min-width: unset;
        height: 220px;
    }
    .room-image-overlay {
        background: linear-gradient(
            to bottom,
            rgba(31,56,61,0.15) 0%,
            transparent 40%,
            transparent 60%,
            rgba(31,56,61,0.08) 100%
        );
    }
    .room-info {
        padding: 1.5rem;
    }
    .room-name {
        font-size: 1.35rem;
    }
    .room-meta {
        font-size: 0.78rem;
    }
    .room-card-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    .room-card-actions .btn {
        width: 100%;
        padding: 0.7rem;
    }
    .book-direct-section {
        padding: 3.5rem 1.25rem;
    }
    .book-direct__perks {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .perk-item {
        padding: 1rem;
    }
}
@media (min-width: 1200px) {
    .room-card {
        min-height: 360px;
    }
}
