:root {
    --primary: #4F46E5;
    --secondary: #7C3AED;
    --accent: #F59E0B;
    --bg-main: #F8FAFC;
    --bg-surface: #FFFFFF;
    --mesh-base: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    --glass: rgba(255, 255, 255, 0.7);
    --text-primary: #1E293B;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --border-color: #E2E8F0;
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-depth: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --gradient-button: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.text-muted {
    color: #94A3B8 !important;
}

.smooth-transition {
    transition: all 0.3s ease-in-out;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.btn-primary-custom {
    background: var(--gradient-button);
    border: none;
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-soft);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
    color: white;
}

.mesh-bg-light {
    background: radial-gradient(at 80% 0%, rgba(124, 58, 237, 0.15) 0px, transparent 50%), radial-gradient(at 0% 50%, rgba(79, 70, 229, 0.1) 0px, transparent 50%), radial-gradient(at 100% 100%, rgba(245, 158, 11, 0.1) 0px, transparent 50%);
}

.section-padding {
    padding: 120px 0;
}

/* ===== header ===== */
.roomlyra-header {
    background-color: #FFFFFF !important;
    border-bottom: 1px solid #E2E8F0;
    position: sticky;
    top: 0;
    z-index: 1050;
    padding: 0.5rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.roomlyra-header .navbar {
    padding: 0;
}

.roomlyra-header .header-logo-img {
    max-width: 45px;
    height: 45px;
    object-fit: contain;
}

.roomlyra-header .brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #1E293B !important;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
}

.roomlyra-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #475569 !important;
    padding: 0.75rem 1.25rem !important;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.roomlyra-header .nav-link:hover {
    color: #4F46E5 !important;
}

@media (min-width: 992px) {
    .roomlyra-header .nav-link::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        width: 0;
        height: 2px;
        background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .roomlyra-header .nav-link:hover::after {
        width: 60%;
    }
}

.roomlyra-header .navbar-toggler {
    border: none;
    padding: 0.5rem;
    color: #4F46E5;
    font-size: 1.5rem;
}

.roomlyra-header .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.roomlyra-header .navbar-collapse {
    background-color: #FFFFFF !important;
}

@media (max-width: 991.98px) {
    .roomlyra-header .navbar-collapse {
        padding: 1.5rem 0;
        border-top: 1px solid #F1F5F9;
    }

    .roomlyra-header .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid #F8FAFC;
    }

    .roomlyra-header .nav-link:last-child {
        border-bottom: none;
    }
}

/* ===== hero ===== */
.roomlyra-hero {
    min-height: 85vh;
    padding: 120px 0;
    background-color: #1E293B;
}

.roomlyra-hero-bg {
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.roomlyra-hero-overlay {
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 2;
}

.roomlyra-hero .container {
    z-index: 3;
}

.roomlyra-hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #F8FAFC;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.roomlyra-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #F8FAFC;
    line-height: 1.1;
}

.roomlyra-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: #E2E8F0;
    max-width: 600px;
}

.roomlyra-feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    border-left: 3px solid #F59E0B;
    color: #F8FAFC;
    height: 100%;
    transition: transform 0.3s ease;
}

.roomlyra-feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.roomlyra-feature-item i {
    font-size: 1.2rem;
    color: #F59E0B;
}

.roomlyra-btn-primary {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: #FFFFFF !important;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
    border: none;
}

.roomlyra-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(79, 70, 229, 0.4);
    filter: brightness(1.1);
}

.roomlyra-btn-outline {
    background: transparent;
    color: #FFFFFF !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.roomlyra-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

.roomlyra-hero-footer-text {
    color: #94A3B8;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 991px) {
    .roomlyra-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .roomlyra-hero {
        padding: 80px 0;
        text-align: center;
        min-height: auto;
    }

    .roomlyra-hero-title {
        font-size: 1.125rem;
    }

    .roomlyra-hero-subtitle {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .roomlyra-hero-badge {
        justify-content: center;
    }

    .roomlyra-hero-overlay {
        background: rgba(15, 23, 42, 0.7);
    }
}

/* ===== featured-hotels ===== */
.featured-accommodations {
    padding: 120px 0;
    background: radial-gradient(at 80% 0%, rgba(124, 58, 237, 0.15) 0px, transparent 50%), radial-gradient(at 0% 50%, rgba(79, 70, 229, 0.1) 0px, transparent 50%), radial-gradient(at 100% 100%, rgba(245, 158, 11, 0.1) 0px, transparent 50%);
    background-color: #F8FAFC;
    overflow: hidden;
}

.featured-accommodations__title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1E293B;
    font-weight: 700;
}

.featured-accommodations__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #475569;
    max-width: 700px;
    line-height: 1.6;
}

.featured-accommodations__card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.featured-accommodations__card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.featured-accommodations__img-link {
    display: block;
    height: 240px;
    overflow: hidden;
}

.featured-accommodations__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-accommodations__card:hover .featured-accommodations__img {
    transform: scale(1.1);
}

.featured-accommodations__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.featured-accommodations__meta {
    font-size: 0.875rem;
    font-weight: 600;
}

.featured-accommodations__price {
    color: #4F46E5;
}

.featured-accommodations__rating {
    color: #F59E0B;
}

.featured-accommodations__name-link {
    text-decoration: none;
    color: inherit;
}

.featured-accommodations__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #1E293B;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.featured-accommodations__name-link:hover .featured-accommodations__name {
    color: #4F46E5;
}

.featured-accommodations__desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.featured-accommodations__btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.featured-accommodations__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .featured-accommodations {
        padding: 60px 0;
    }

    .featured-accommodations__title {
        font-size: 1.75rem;
    }

    .featured-accommodations__subtitle {
        font-size: 1rem;
    }
}

/* ===== special-offers ===== */
.roomlyra-offers {
    background: #F8FAFC;
    overflow: hidden;
}

.roomlyra-offers__title {
    font-family: 'Playfair Display', serif;
    color: #1E293B;
    font-size: 2.5rem;
    font-weight: 700;
}

.roomlyra-offers__subtitle {
    font-family: 'Inter', sans-serif;
    color: #475569;
    max-width: 600px;
    line-height: 1.6;
}

.roomlyra-offers__card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.roomlyra-offers__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.roomlyra-offers__image-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    height: 220px;
}

.roomlyra-offers__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.roomlyra-offers__card:hover .roomlyra-offers__img {
    transform: scale(1.1);
}

.roomlyra-offers__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #F59E0B;
    color: #FFFFFF;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.roomlyra-offers__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.roomlyra-offers__link {
    text-decoration: none;
}

.roomlyra-offers__card-title {
    font-family: 'Playfair Display', serif;
    color: #1E293B;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.roomlyra-offers__link:hover .roomlyra-offers__card-title {
    color: #4F46E5;
}

.roomlyra-offers__text {
    font-family: 'Inter', sans-serif;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.roomlyra-offers__btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(79, 70, 229, 0.2);
}

.roomlyra-offers__btn:hover {
    opacity: 0.9;
    color: #FFFFFF;
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .roomlyra-offers__title {
        font-size: 1.75rem;
    }

    .roomlyra-offers__subtitle {
        font-size: 0.9rem;
    }
}

/* ===== travel-tips ===== */
.travel-tips-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    padding: 120px 0;
}

.travel-tips-section .travel-tips-title {
    font-family: 'Playfair Display', serif;
    color: #1E293B;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
}

.travel-tips-section .travel-tips-subtitle {
    color: #475569;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.travel-tips-section .tip-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.5);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.travel-tips-section .tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.travel-tips-section .tip-card-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.travel-tips-section .tip-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.travel-tips-section .tip-card:hover .tip-card-img {
    transform: scale(1.1);
}

.travel-tips-section .tip-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #F59E0B;
    color: #FFFFFF;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.travel-tips-section .tip-card-meta {
    font-size: 0.85rem;
    color: #94A3B8;
    font-family: 'Inter', sans-serif;
}

.travel-tips-section .tip-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.travel-tips-section .tip-card-title a {
    color: #1E293B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.travel-tips-section .tip-card-title a:hover {
    color: #4F46E5;
}

.travel-tips-section .tip-card-text {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.travel-tips-section .tip-card-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

.travel-tips-section .tip-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(79, 70, 229, 0.3);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .travel-tips-section {
        padding: 60px 0;
    }

    .travel-tips-section .travel-tips-title {
        font-size: 1.8rem;
    }

    .travel-tips-section .travel-tips-subtitle {
        font-size: 1rem;
    }
}

/* ===== footer ===== */
.footer-block {
    background: #FFFFFF;
    color: #1E293B;
    padding: 80px 0 40px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #E2E8F0;
}

.footer-disclaimer-box {
    background: rgba(79, 70, 229, 0.05);
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 40px;
}

.disclaimer-badge {
    display: inline-flex;
    align-items: center;
    background: #4F46E5;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footer-disclaimer-box p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

.partner-logos-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #E2E8F0;
}

.partner-logos-row img {
    width: 130px;
    height: auto;
    object-fit: contain;
    filter: none !important;
    transition: transform 0.3s ease;
}

.partner-logos-row img:hover {
    transform: scale(1.05);
}

.partner-logos-row .age-icon {
    width: 45px;
}

.footer-logo-img {
    max-width: 45px;
    height: auto;
}

.footer-main-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 25px;
}

.footer-links-list,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li,
.footer-contact-list li {
    margin-bottom: 12px;
    font-size: 0.9375rem;
    color: #475569;
}

.footer-links-list a,
.footer-contact-list a {
    color: #475569;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-list a:hover,
.footer-contact-list a:hover {
    color: #4F46E5;
}

.footer-contact-list i {
    width: 20px;
    color: #4F46E5;
    margin-right: 10px;
}

.footer-bottom-bar {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #E2E8F0;
    font-size: 0.8125rem;
    color: #94A3B8;
}

.footer-keywords {
    font-size: 0.75rem;
    opacity: 0.6;
}

.age-gate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.98);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.age-gate-content {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.age-gate-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: #1E293B;
}

.age-gate-content p {
    color: #475569;
    margin-bottom: 30px;
    line-height: 1.6;
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-age-confirm {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: #FFFFFF;
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-age-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4);
}

.btn-age-exit {
    background: transparent;
    color: #1E293B;
    border: 2px solid #E2E8F0;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-age-exit:hover {
    background: #F8FAFC;
    border-color: #1E293B;
}

@media (max-width: 768px) {
    .footer-block {
        padding: 60px 0 30px;
    }

    .partner-logos-row {
        gap: 20px;
    }

    .partner-logos-row img {
        width: 100px;
    }

    .age-gate-content {
        padding: 30px 20px;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .btn-age-confirm,
    .btn-age-exit {
        width: 100%;
    }
}

/* ===== PAGE: privacy ===== */
.policy-document-section { padding: 80px 0; background: #F8FAFC; color: #1E293B; } .policy-document-container { max-width: 900px; margin: 0 auto; padding: 40px; background: #FFFFFF; border-radius: 16px; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03); } .policy-document-container h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: #1E293B; margin-bottom: 24px; border-bottom: 2px solid #E2E8F0; padding-bottom: 12px; } .policy-document-container h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #4F46E5; margin-top: 32px; margin-bottom: 16px; font-weight: 700; } .policy-document-container p { font-family: 'Inter', sans-serif; font-size: 1rem; line-height: 1.8; color: #475569; margin-bottom: 16px; } .policy-document-container ul { margin-bottom: 24px; padding-left: 20px; list-style-type: none; } .policy-document-container li { font-family: 'Inter', sans-serif; font-size: 1rem; line-height: 1.7; color: #475569; margin-bottom: 12px; position: relative; } .policy-document-container li::before { content: '•'; color: #7C3AED; font-weight: bold; display: inline-block; width: 1em; margin-left: -1em; } .policy-document-container strong { color: #1E293B; font-weight: 600; } @media (max-width: 768px) { .policy-document-section { padding: 40px 15px; } .policy-document-container { padding: 24px; } .policy-document-container h2 { font-size: 1.125rem; } .policy-document-container h3 { font-size: 1rem; } .policy-document-container p, .policy-document-container li { font-size: 0.875rem; } }

/* ===== PAGE: terms ===== */
.policy-document-section .policy-document-container { padding: 80px 20px; max-width: 900px; margin: 0 auto; line-height: 1.7; color: #475569; font-family: 'Inter', sans-serif; }
.policy-document-section .policy-document-container h1 { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: #1E293B; margin-bottom: 0.5rem; text-align: left; }
.policy-document-section .policy-document-container .policy-date { font-size: 0.9rem; color: #94A3B8; margin-bottom: 3rem; text-transform: uppercase; letter-spacing: 0.05em; }
.policy-document-section .policy-document-container h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #4F46E5; margin-top: 2.5rem; margin-bottom: 1rem; border-left: 4px solid #7C3AED; padding-left: 1rem; }
.policy-document-section .policy-document-container p { margin-bottom: 1.25rem; }
.policy-document-section .policy-document-container ul { list-style: none; padding-left: 0; margin-bottom: 2rem; }
.policy-document-section .policy-document-container li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; }
.policy-document-section .policy-document-container li::before { content: '\f00c'; font-family: 'Font Awesome 5 Free'; font-weight: 900; position: absolute; left: 0; color: #F59E0B; font-size: 0.8rem; top: 0.3rem; }
.policy-document-section .policy-document-container .contact-details { background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(10px); padding: 1.5rem; border-radius: 12px; border: 1px solid #E2E8F0; margin-top: 1.5rem; }
.policy-document-section .policy-document-container .contact-link { color: #4F46E5; text-decoration: none; font-weight: 500; transition: color 0.3s ease; }
.policy-document-section .policy-document-container .contact-link:hover { color: #7C3AED; text-decoration: underline; }
@media (max-width: 768px) {
  .policy-document-section .policy-document-container h1 { font-size: 1.8rem; }
  .policy-document-section .policy-document-container h2 { font-size: 1.3rem; }
  .policy-document-section .policy-document-container { padding: 40px 15px; }
}

/* ===== PAGE: disclaimer ===== */
.policy-document-section { padding: 80px 0; background: #F8FAFC; }.policy-document-container { max-width: 900px; margin: 0 auto; padding: 40px; background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(10px); border-radius: 24px; border: 1px solid #E2E8F0; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05); }.disclaimer-content { color: #475569; font-family: 'Inter', sans-serif; line-height: 1.7; }.disclaimer-content h2 { font-family: 'Playfair Display', serif; color: #1E293B; font-size: 24px; margin-top: 40px; margin-bottom: 20px; font-weight: 700; border-left: 4px solid #4F46E5; padding-left: 15px; }.disclaimer-content p { margin-bottom: 20px; font-size: 16px; text-align: justify; hyphens: auto; }.disclaimer-content ul { padding-left: 20px; margin-bottom: 25px; }.disclaimer-content li { margin-bottom: 12px; position: relative; padding-left: 5px; }.disclaimer-content li strong { color: #1E293B; }.disclaimer-content a { color: #4F46E5; text-decoration: none; font-weight: 500; transition: color 0.3s ease; }.disclaimer-content a:hover { color: #7C3AED; text-decoration: underline; }@media (max-width: 768px) { .policy-document-section { padding: 40px 15px; } .policy-document-container { padding: 25px; } .disclaimer-content h2 { font-size: 20px; } .disclaimer-content p { font-size: 15px; } }

/* ===== PAGE: cookies ===== */
.policy-document-container {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.policy-document-content h2 {
  font-family: 'Playfair Display', serif;
  color: #1E293B;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.policy-document-content p {
  font-family: 'Inter', sans-serif;
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.policy-document-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  list-style-type: none;
}

.policy-document-content li {
  font-family: 'Inter', sans-serif;
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  position: relative;
}

.policy-document-content li::before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #4F46E5;
  position: absolute;
  left: -1.5rem;
  top: 0;
}

.policy-document-content strong {
  color: #1E293B;
  font-weight: 600;
}

.policy-document-content .policy-link {
  color: #4F46E5;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.policy-document-content .policy-link:hover {
  color: #7C3AED;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .policy-document-container {
    padding: 40px 15px;
  }
  .policy-document-content h2 {
    font-size: 1.25rem;
    margin-top: 1.75rem;
  }
  .policy-document-content p, .policy-document-content li {
    font-size: 0.95rem;
  }
}

/* ===== PAGE: accommodation ===== */
:root {
  --primary-gradient: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  --glass-bg: rgba(255, 255, 255, 0.7);
}

.accommodation-section {
  background: radial-gradient(at 80% 0%, rgba(124, 58, 237, 0.05) 0px, transparent 50%), 
              radial-gradient(at 0% 50%, rgba(79, 70, 229, 0.03) 0px, transparent 50%);
}

.accommodation-section .hotel-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.accommodation-section .hotel-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
  border-color: rgba(79, 70, 229, 0.3);
}

.accommodation-section .hotel-card-image-wrap {
  position: relative;
  overflow: hidden;
}

.accommodation-section .hotel-price-tag {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  color: #4F46E5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.accommodation-section .hotel-title {
  transition: color 0.3s ease;
}

.accommodation-section .hotel-card:hover .hotel-title {
  color: #4F46E5 !important;
}

.accommodation-section .btn-expedia {
  background: transparent;
  border: 2px solid #4F46E5;
  color: #4F46E5;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.accommodation-section .btn-expedia:hover {
  background: #4F46E5;
  color: #fff;
}

.accommodation-section .btn-booking {
  background: var(--primary-gradient);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

.accommodation-section .btn-booking:hover {
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
  transform: translateY(-1px);
  opacity: 0.9;
  color: #fff;
}

#bookingModal .form-control,
#bookingModal .form-select {
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  color: #1E293B;
  border-radius: 10px;
}

#bookingModal .form-control:focus {
  border-color: #4F46E5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

#bookingModal ::placeholder {
  color: #94A3B8 !important;
  opacity: 1;
}

.accommodation-section .hotel-rating i {
  margin-right: 4px;
}

/* ===== PAGE: tips ===== */
.tips-list-section {
  padding: 120px 0;
  background: #F8FAFC;
  font-family: 'Inter', sans-serif;
}

.tips-list-section .tips-list-title {
  font-family: 'Playfair Display', serif;
  color: #1E293B;
  font-weight: 700;
  font-size: 2.5rem;
}

.tips-list-section .tips-list-subtitle {
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.tips-list-section .search-container {
  position: relative;
}

.tips-list-section .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #94A3B8;
}

.tips-list-section .js-search-tips {
  padding-left: 45px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid #E2E8F0;
  background: #FFFFFF;
  color: #1E293B;
  transition: all 0.3s ease;
}

.tips-list-section .js-search-tips:focus {
  border-color: #4F46E5;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
  outline: none;
}

.tips-list-section .js-sort-tips {
  height: 50px;
  border-radius: 50px;
  border: 1px solid #E2E8F0;
  padding-left: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tips-list-section .js-sort-tips:focus {
  border-color: #4F46E5;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.tips-list-section .tip-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tips-list-section .tip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.tips-list-section .tip-card-img-wrapper {
  display: block;
  height: 220px;
  overflow: hidden;
}

.tips-list-section .tip-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tips-list-section .tip-card:hover .tip-card-img {
  transform: scale(1.1);
}

.tips-list-section .tip-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tips-list-section .tip-meta {
  font-size: 0.85rem;
  color: #94A3B8;
  font-weight: 500;
}

.tips-list-section .tip-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 12px;
  line-height: 1.4;
}

.tips-list-section .tip-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.tips-list-section .tip-title a:hover {
  color: #4F46E5;
}

.tips-list-section .tip-excerpt {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.tips-list-section .btn-tip-link {
  color: #4F46E5;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.tips-list-section .btn-tip-link:hover {
  color: #7C3AED;
  padding-left: 5px;
}

@media (max-width: 768px) {
  .tips-list-section {
    padding: 60px 0;
  }
  .tips-list-section .tips-list-title {
    font-size: 1.75rem;
  }
  .tips-list-section .tip-card-img-wrapper {
    height: 180px;
  }
}

/* ===== PAGE: offers ===== */
.offers-section {
  padding: 120px 0;
  background: #F8FAFC;
  font-family: 'Inter', sans-serif;
}

.offers-section .offers-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #1E293B;
  font-weight: 700;
}

.offers-section .offers-subtitle {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.6;
}

.offers-section .offers-filter-bar {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.offers-section .search-wrapper {
  position: relative;
}

.offers-section .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #94A3B8;
}

.offers-section .js-offers-search {
  padding-left: 45px;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  height: 50px;
}

.offers-section .js-offers-sort {
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  height: 50px;
}

.offers-section .offer-card {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.offers-section .offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
  border-color: #4F46E5;
}

.offers-section .offer-image-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.offers-section .offer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.offers-section .offer-card:hover img {
  transform: scale(1.08);
}

.offers-section .offer-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.offers-section .offer-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F59E0B;
  font-family: 'Playfair Display', serif;
}

.offers-section .offer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  line-height: 1.3;
}

.offers-section .offer-title a {
  text-decoration: none;
  color: #1E293B;
  transition: color 0.3s ease;
}

.offers-section .offer-title a:hover {
  color: #4F46E5;
}

.offers-section .offer-desc {
  color: #64748B;
  font-size: 0.95rem;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.offers-section .btn-primary {
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

.offers-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(79, 70, 229, 0.3);
  opacity: 0.95;
}

#bookingModal .modal-content {
  border-radius: 24px;
  border: none;
  background: #FFFFFF;
  overflow: hidden;
}

#bookingModal .form-control,
#bookingModal .form-select {
  border-radius: 10px;
  border: 1px solid #E2E8F0;
  padding: 10px 15px;
  background-color: #F8FAFC;
}

#bookingModal .form-control:focus {
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
  border-color: #4F46E5;
}

@media (max-width: 768px) {
  .offers-section {
    padding: 60px 0;
  }
  .offers-section .offers-main-title {
    font-size: 2rem;
  }
  .offers-section .offers-subtitle {
    font-size: 1rem;
  }
}

/* ===== PAGE: contact ===== */
.roomlyra-contact-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
  position: relative;
}

.roomlyra-contact-section .roomlyra-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #1E293B;
  font-weight: 700;
}

.roomlyra-contact-section .roomlyra-text {
  font-family: 'Inter', sans-serif;
  color: #475569;
  line-height: 1.8;
  font-size: 1.1rem;
}

.roomlyra-contact-section .roomlyra-info-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roomlyra-contact-section .roomlyra-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.roomlyra-contact-section .roomlyra-icon-wrapper {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.roomlyra-contact-section .roomlyra-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1E293B;
}

.roomlyra-contact-section .roomlyra-card-text {
  font-family: 'Inter', sans-serif;
  color: #64748B;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.roomlyra-contact-section .roomlyra-link {
  color: #4F46E5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.roomlyra-contact-section .roomlyra-link:hover {
  color: #7C3AED;
}

.roomlyra-contact-section .roomlyra-wa-link {
  color: #25D366;
  font-weight: 500;
}

.roomlyra-contact-section .roomlyra-form-wrapper {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
  border: 1px solid #E2E8F0;
}

.roomlyra-contact-section .roomlyra-form-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1E293B;
  font-size: 1.75rem;
}

.roomlyra-contact-section .roomlyra-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #475569;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.roomlyra-contact-section .roomlyra-input {
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #F8FAFC;
}

.roomlyra-contact-section .roomlyra-input:focus {
  border-color: #4F46E5;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
  outline: none;
  background-color: #FFFFFF;
}

.roomlyra-contact-section .roomlyra-input::placeholder {
  color: #94A3B8;
}

.roomlyra-contact-section .roomlyra-btn {
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.roomlyra-contact-section .roomlyra-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.roomlyra-contact-section .roomlyra-map-container {
  border-radius: 24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #E2E8F0;
}

@media (max-width: 768px) {
  .roomlyra-contact-section {
    padding: 60px 0;
  }
  .roomlyra-contact-section .roomlyra-section-title {
    font-size: 1.75rem;
  }
  .roomlyra-contact-section .roomlyra-form-title {
    font-size: 1.5rem;
  }
}

.rl-comment-main {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rl-comment-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.rl-avatar-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

.rl-bg-gradient-primary {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
}

.rl-author-name {
    color: #1E293B;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.rl-comment-text {
    color: #475569;
    line-height: 1.6;
    font-size: 0.95rem;
}

.rl-timestamp {
    color: #94A3B8;
    font-size: 0.8rem;
}

.rl-reply-link {
    color: #4F46E5;
    transition: color 0.2s ease;
}

.rl-reply-link:hover {
    color: #7C3AED;
}

.rl-comment-reply {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.rl-avatar-sm {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
}

.rl-bg-gradient-secondary {
    background: linear-gradient(135deg, #7C3AED 0%, #F59E0B 100%);
}

.rl-comment-reply-container {
    border-color: #E2E8F0 !important;
}

.rl-comment-reply .rl-author-name {
    color: #1E293B;
}

.rl-comment-reply .rl-comment-text {
    color: #475569;
}


/* ===== PAGE TEMPLATE: accommodation ===== */
.accommodation-detail-block {
    font-family: 'Inter', sans-serif;
    background-color: #F8FAFC;
}

.detail-content-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.detail-content-card h2 {
    font-family: 'Playfair Display', serif;
    color: #1E293B;
    font-size: 1.75rem;
}

.main-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.price-tag {
    color: #475569;
    font-size: 0.9rem;
}

.amenity-item {
    background: #F1F5F9;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.amenity-item i {
    color: #4F46E5;
}

.amenity-item:hover {
    background: #E2E8F0;
    color: #1E293B;
}

.btn-booking {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: #FFFFFF !important;
    border: none;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
    filter: brightness(1.1);
}

.btn-booking-alt {
    background: #FFFFFF;
    color: #4F46E5 !important;
    border: 2px solid #4F46E5;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-booking-alt:hover {
    background: #F8FAFC;
    transform: translateY(-2px);
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #4F46E5;
    color: #FFFFFF;
}

.booking-form-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.booking-form-card h3 {
    font-family: 'Playfair Display', serif;
    color: #1E293B;
}

.help-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%);
    border-radius: 20px;
    border: 1px solid #E2E8F0;
}

.reviews-container {
    margin-top: 60px;
}

.reviews-container h3 {
    font-family: 'Playfair Display', serif;
}

.comment-form-box {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
}

.rl-comment-main {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 15px;
}

.rl-avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.rl-bg-gradient-primary {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
}

.rl-bg-gradient-secondary {
    background: linear-gradient(135deg, #94A3B8 0%, #475569 100%);
}

.rl-avatar-sm {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .main-image-wrapper img {
        height: 250px;
    }

    .accommodation-detail-block {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ===== PAGE TEMPLATE: tips ===== */
.tips-detail-template .rl-article-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.tips-detail-template .rl-article-meta {
    color: #94A3B8;
    font-size: 0.875rem;
}

.tips-detail-template .rl-meta-item i {
    color: #4F46E5;
}

.tips-detail-template .rl-article-body h2 {
    font-family: 'Playfair Display', serif;
    color: #1E293B;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
}

.tips-detail-template .rl-article-body p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.tips-detail-template .rl-article-body ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    list-style-type: none;
}

.tips-detail-template .rl-article-body li {
    position: relative;
    color: #475569;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
}

.tips-detail-template .rl-article-body li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #7C3AED;
}

.tips-detail-template .rl-btn-share {
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    color: #FFFFFF !important;
}

.tips-detail-template .rl-btn-share.fb {
    background: #1877F2;
}

.tips-detail-template .rl-btn-share.tw {
    background: #1DA1F2;
}

.tips-detail-template .rl-btn-share.li {
    background: #0A66C2;
}

.tips-detail-template .rl-btn-share:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.tips-detail-template .rl-sidebar-widget {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
}

.tips-detail-template .widget-title {
    font-family: 'Playfair Display', serif;
    border-left: 4px solid #4F46E5;
    padding-left: 15px;
    font-size: 1.25rem;
}

.tips-detail-template .rl-recent-img-mini {
    width: 60px;
    height: 60px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.tips-detail-template .rl-recent-text {
    font-size: 0.9375rem;
    color: #1E293B;
    font-weight: 500;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.tips-detail-template .rl-recent-item:hover .rl-recent-text {
    color: #4F46E5;
}

.tips-detail-template .rl-cta-widget {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: #FFFFFF;
}

.tips-detail-template .rl-cta-widget .rl-btn-primary {
    background: #FFFFFF !important;
    color: #4F46E5 !important;
    border: none;
}


.rl-comment-main {
    background: #FFFFFF;
    border-radius: 15px;
    border: 1px solid #F1F5F9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.rl-avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.rl-bg-gradient-primary {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
}

.rl-bg-gradient-secondary {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.rl-comment-text {
    color: #475569;
    line-height: 1.6;
}

.rl-timestamp {
    color: #94A3B8;
    font-size: 0.8rem;
}

.rl-reply-link {
    color: #4F46E5 !important;
}

.rl-comment-form-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
}

.rl-btn-primary {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: white !important;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.rl-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4);
}

@media (max-width: 768px) {
    .tips-detail-template .roomlyra-hero-title {
        font-size: 2rem;
    }

    .tips-detail-template .rl-article-card {
        padding: 1.5rem !important;
    }
}

/* ===== PAGE TEMPLATE: offers ===== */
.offer-detail-main h2,
.offer-detail-main h3,
.offer-detail-main h4 {
    font-family: 'Playfair Display', serif;
    color: #1E293B;
    font-weight: 700;
}

.offer-detail-main p,
.offer-detail-main span,
.offer-detail-main label {
    font-family: 'Inter', sans-serif;
    color: #475569;
    line-height: 1.7;
}

.offer-price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: #4F46E5;
    background: rgba(79, 70, 229, 0.1);
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-block;
}

.offer-content-block {
    border: 1px solid #E2E8F0;
    position: relative;
    z-index: 10;
}

.booking-form-wrapper {
    background-color: #F8FAFC;
}

.booking-form-wrapper .form-control,
.booking-form-wrapper .form-select {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background-color: #FFFFFF;
    font-size: 0.95rem;
}

.booking-form-wrapper .form-control:focus,
.booking-form-wrapper .form-select:focus {
    border-color: #4F46E5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.sidebar-card {
    border: 1px solid #E2E8F0;
}

.rl-avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.rl-bg-gradient-primary {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
}

.rl-bg-gradient-secondary {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.rl-comment-main {
    background: #F8FAFC;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
}

.stars-input {
    font-size: 1.25rem;
    cursor: pointer;
}

.stars-input i {
    transition: color 0.2s;
}

@media (max-width: 768px) {
    .offer-price-tag {
        font-size: 1.5rem;
    }

    .offer-detail-main {
        padding-left: 15px;
        padding-right: 15px;
    }
}