:root {
    --primary: #FF5252;
    --primary-hover: #E53935;
    --background-main: #FDFDFD;
    --surface-panel: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #5F6368;
    --text-muted: #9AA0A6 !important;
    --accent: #FF8A80;
    --border-color: rgba(0, 0, 0, 0.05);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.04);
    --shadow-elevated: 0 20px 50px rgba(255, 82, 82, 0.08);
    --radius-panel: 24px;
    --radius-card: 12px;
}

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

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

.smooth-scroll {
    scroll-behavior: smooth;
}

.text-muted {
    color: var(--text-secondary) !important;
}

a {
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-radius: 50px;
    padding: 12px 30px;
    border: none;
    box-shadow: var(--shadow-elevated);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(255, 82, 82, 0.15);
    background-color: var(--primary-hover) !important;
}

/* ===== header ===== */
.stayvexa-header {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1050;
}

.stayvexa-header .brand-text {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.01em;
    color: #1A1A1A;
}

.stayvexa-header .nav-link {
    color: #5F6368 !important;
    transition: color 0.3s ease-in-out, transform 0.2s ease;
}

.stayvexa-header .nav-link:hover {
    color: #FF5252 !important;
}

.stayvexa-header .btn-primary {
    background-color: #FF5252 !important;
    border: none !important;
    box-shadow: 0 8px 20px rgba(255, 82, 82, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stayvexa-header .btn-primary:hover {
    background-color: #E53935 !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 82, 82, 0.2);
}

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

.stayvexa-header .navbar-nav.justify-content-end {
    align-items: center !important;
    justify-content: flex-end !important;
    flex-wrap: nowrap;
    flex-grow: 0 !important;
    margin-left: auto !important;
}

.stayvexa-header .navbar-nav.justify-content-end .nav-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.stayvexa-header .navbar-nav.justify-content-end .nav-item:last-child {
    margin-left: 0.75rem;
}

@media (min-width: 992px) {
    .stayvexa-header .navbar-nav.justify-content-end {
        gap: 0.25rem;
    }
    
    .stayvexa-header .navbar-nav.d-none.d-lg-flex {
        flex-grow: 0 !important;
    }
    
    .stayvexa-header .navbar-brand.mx-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 991.98px) {
    .stayvexa-header .navbar-collapse {
        background-color: #ffffff !important;
        padding: 1rem;
        border-radius: 0 0 24px 24px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        max-height: 85vh;
        overflow-y: auto;
    }

    .stayvexa-header .nav-link {
        font-size: 1.1rem;
    }
}

/* ===== hero ===== */
.hero-block {
    position: relative;
    background-color: #FDFDFD;
    padding-bottom: 80px;
}

.hero-bg-container {
    position: relative;
    min-height: 80vh;
    background-image: url('../assets/media/content/stayvexa-hero-resort.png');
    background-size: cover;
    background-position: center;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
    padding: 100px 0 180px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #FFFFFF !important;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    color: #E8EAED !important;
}

.btn-hero-primary {
    background-color: #FF5252;
    color: #FFFFFF;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background-color: #E53935;
    transform: translateY(-3px);
    color: #FFFFFF;
}

.btn-hero-outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background-color: #FFFFFF;
    color: #1A1A1A;
    transform: translateY(-3px);
}

.hero-panel-container {
    margin-top: -100px;
    position: relative;
    z-index: 5;
}

.hero-floating-panel {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.hero-feature-card {
    transition: transform 0.3s ease;
}

.hero-feature-card:hover {
    transform: translateY(-5px);
}

.hero-feature-img-wrapper {
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
}

.hero-feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A !important;
}

.hero-feature-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #5F6368 !important;
    line-height: 1.5;
}

@media (max-width: 991.98px) {
    .hero-main-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-main-title {
        font-size: 18px !important;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-feature-title {
        font-size: 16px !important;
    }

    .hero-feature-text {
        font-size: 14px !important;
    }

    .hero-bg-container {
        min-height: auto;
        padding: 80px 0 140px;
    }

    .hero-floating-panel {
        padding: 1.5rem;
    }

    .hero-btn-group {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        padding: 12px;
    }
}

/* ===== featured-accommodations ===== */
.featured-accommodations {
    background-color: #FDFDFD;
    font-family: 'Inter', sans-serif;
}

.featured-accommodations h2 {
    font-family: 'Montserrat', sans-serif;
    color: #1A1A1A;
    line-height: 1.2;
}

.featured-accommodations .accommodation-panel {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.featured-accommodations .accommodation-panel:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 82, 82, 0.08);
}

.featured-accommodations .panel-image-link {
    display: block;
    height: 220px;
    overflow: hidden;
}

.featured-accommodations .panel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-accommodations .accommodation-panel:hover .panel-img {
    transform: scale(1.05);
}

.featured-accommodations .panel-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.featured-accommodations .panel-text {
    font-size: 0.95rem;
    color: #5F6368;
    line-height: 1.6;
}

.featured-accommodations .btn-floating {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FF5252;
    color: #FFFFFF;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    text-align: center;
    min-height: 48px;
    box-sizing: border-box;
}

.featured-accommodations .btn-floating:hover {
    background-color: #E53935;
    color: #FFFFFF;
    transform: scale(1.02);
}

.featured-accommodations .btn-outline-primary {
    border-color: #FF5252;
    color: #FF5252;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.featured-accommodations .btn-outline-primary:hover {
    background-color: #FF5252;
    color: #FFFFFF;
    border-color: #FF5252;
}

@media (max-width: 767px) {
    .featured-accommodations h2 {
        font-size: 1.75rem;
    }

    .featured-accommodations .panel-image-link {
        height: 200px;
    }
}

/* ===== about-us ===== */
#stayvexa-about {
    background-color: #FDFDFD;
    overflow: hidden;
}

#stayvexa-about .stayvexa-about-content {
    background-color: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 2;
}

#stayvexa-about .stayvexa-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.2;
}

#stayvexa-about .stayvexa-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #5F6368;
}

#stayvexa-about .stayvexa-btn-primary {
    display: inline-block;
    background-color: #FF5252;
    color: #FFFFFF !important;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 82, 82, 0.15);
    border: none;
}

#stayvexa-about .stayvexa-btn-primary:hover {
    background-color: #E53935;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 82, 82, 0.25);
}

#stayvexa-about .stayvexa-rounded {
    border-radius: 24px;
    object-fit: cover;
    width: 100%;
    height: auto;
    min-height: 400px;
}

#stayvexa-about .stayvexa-image-panel {
    position: relative;
    padding: 10px;
}

#stayvexa-about .stayvexa-image-panel::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-color: #FF8A80;
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

@media (max-width: 767px) {
    #stayvexa-about .stayvexa-heading {
        font-size: 1.25rem;
    }

    #stayvexa-about .stayvexa-text {
        font-size: 0.9rem;
    }

    #stayvexa-about .stayvexa-about-content {
        padding: 1.5rem !important;
    }

    #stayvexa-about .stayvexa-rounded {
        min-height: 250px;
    }
}

/* ===== latest-offers ===== */
.latest-offers-block {
    background-color: #FDFDFD;
    position: relative;
    overflow: hidden;
}

.latest-offers-block .offer-panel {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(255, 82, 82, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.latest-offers-block .offer-panel:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 82, 82, 0.15);
}

.latest-offers-block .rounded-panel-img {
    border-radius: 16px;
    position: relative;
    aspect-ratio: 3/2;
}

.latest-offers-block .offer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.latest-offers-block .offer-panel:hover .offer-img {
    transform: scale(1.05);
}

.latest-offers-block .btn-offer {
    background-color: #FF5252;
    color: #FFFFFF;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 82, 82, 0.2);
    transition: all 0.3s ease;
    min-width: 160px;
}

.latest-offers-block .btn-offer:hover {
    background-color: #E53935;
    color: #FFFFFF;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 82, 82, 0.3);
}

.latest-offers-block h3 a:hover {
    color: #FF5252 !important;
}

.latest-offers-block .text-secondary {
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 767.98px) {
    .latest-offers-block .display-5 {
        font-size: 1.75rem;
    }

    .latest-offers-block h3 {
        font-size: 1.25rem;
    }

    .latest-offers-block .offer-panel {
        padding: 1.5rem !important;
    }
}

/* ===== footer ===== */
.footer-section {
    background-color: #1A1A1A;
    position: relative;
    z-index: 10;
}

.footer-notice-panel {
    background: rgba(255, 82, 82, 0.05);
    border: 1px solid rgba(255, 82, 82, 0.2);
}

.footer-partners-row .partner-logo {
    max-width: 130px;
    height: auto;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.footer-partners-row a:hover .partner-logo {
    transform: translateY(-3px);
}

.footer-section h5 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.01em;
}

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

.age-modal-content {
    max-width: 500px;
    width: 100%;
    transform: scale(0.9);
    animation: modalIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes modalIn {
    to {
        transform: scale(1);
    }
}

.age-modal-overlay .btn-primary {
    background-color: #FF5252;
    border-color: #FF5252;
    box-shadow: 0 10px 30px rgba(255, 82, 82, 0.2);
}

.age-modal-overlay .btn-primary:hover {
    background-color: #E53935;
    border-color: #E53935;
}

.age-modal-overlay .btn-outline-secondary {
    border-color: #DADCE0;
    color: #5F6368;
}

.age-modal-overlay .btn-outline-secondary:hover {
    background: #F8F9FA;
    border-color: #9AA0A6;
}

/* ===== PAGE: privacy ===== */
.policy-content-root { padding: 40px 20px; background-color: #FDFDFD; color: #1A1A1A; font-family: 'Inter', sans-serif; line-height: 1.6; } .policy-wrapper { max-width: 900px; margin: 0 auto; background: #FFFFFF; padding: 40px; border-radius: 24px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04); border: 1px solid rgba(0, 0, 0, 0.05); } .policy-header { margin-bottom: 40px; padding: 20px; text-align: center; } .policy-main-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2.5rem; color: #1A1A1A; margin-bottom: 0 !important; display: inline !important; } .policy-effective-date { color: #5F6368; font-size: 0.9rem; font-weight: 500; display: inline; margin-left: 15px; } .policy-section { margin-bottom: 30px; } .policy-section h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.25rem; color: #FF5252; margin-bottom: 15px; border-left: 4px solid #FF5252; padding-left: 15px; } .policy-section p { margin-bottom: 15px; color: #1A1A1A; } .policy-section ul { padding-left: 20px; margin-bottom: 15px; list-style-type: square; color: #5F6368; } .policy-section ul li { margin-bottom: 8px; } .policy-section strong { color: #1A1A1A; font-weight: 600; } .js-policy-link { color: #FF5252; text-decoration: none; font-weight: 600; transition: color 0.3s ease; } .js-policy-link:hover { color: #E53935; text-decoration: underline; } @media (max-width: 768px) { .policy-content-root { padding: 20px 15px; } .policy-wrapper { padding: 25px; border-radius: 16px; } .policy-main-title { font-size: 18px; } .policy-section h3 { font-size: 16px; } .policy-section p, .policy-section li { font-size: 14px; hyphens: auto; } }

/* ===== PAGE: terms ===== */
.policy-content-root { padding: 80px 20px; background-color: #FDFDFD; font-family: 'Inter', sans-serif; color: #1A1A1A; max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 40px; } .policy-content-root .terms-header-panel { text-align: center; margin-bottom: 20px; } .policy-content-root .terms-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 3.5rem; color: #1A1A1A; margin-bottom: 1rem; line-height: 1.2; letter-spacing: -0.02em; } .policy-content-root .terms-subtitle { font-size: 1.125rem; color: #5F6368; font-weight: 500; } .policy-content-root .terms-panel { background: #FFFFFF; padding: 40px; border-radius: 24px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04); border: 1px solid rgba(0, 0, 0, 0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; } .policy-content-root .terms-panel:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(255, 82, 82, 0.08); } .policy-content-root .terms-heading { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.75rem; color: #FF5252; margin-bottom: 1.5rem; line-height: 1.3; } .policy-content-root .terms-text { font-size: 1rem; line-height: 1.6; color: #5F6368; margin-bottom: 1rem; } .policy-content-root .terms-list { list-style-type: none; padding-left: 0; margin-bottom: 0; } .policy-content-root .terms-list li { position: relative; padding-left: 30px; margin-bottom: 12px; font-size: 1rem; color: #5F6368; line-height: 1.5; } .policy-content-root .terms-list li::before { content: '\F26E'; font-family: 'bootstrap-icons'; position: absolute; left: 0; top: 2px; color: #FF5252; font-size: 1.1rem; } .policy-content-root .terms-contact-info { background: #F8F9FA; padding: 20px; border-radius: 12px; font-size: 1rem; color: #1A1A1A; } .policy-content-root .terms-link { color: #FF5252; text-decoration: none; font-weight: 600; transition: color 0.2s ease; } .policy-content-root .terms-link:hover { color: #E53935; text-decoration: underline; } @media (max-width: 767px) { .policy-content-root { padding: 40px 15px; gap: 24px; } .policy-content-root .terms-title { font-size: 18px; } .policy-content-root .terms-heading { font-size: 16px; } .policy-content-root .terms-panel { padding: 24px; border-radius: 16px; } .policy-content-root .terms-text, .policy-content-root .terms-list li { font-size: 14px; } .policy-content-root .terms-subtitle { font-size: 14px; } }

/* ===== PAGE: disclaimer ===== */
.policy-content-root .policy-wrapper { padding: 40px 20px; background-color: #FDFDFD; display: flex; justify-content: center; } .policy-content-root .policy-panel { max-width: 900px; width: 100%; background: #FFFFFF; padding: 3rem; border-radius: 24px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04); color: #1A1A1A; font-family: 'Inter', sans-serif; line-height: 1.6; } .policy-content-root .last-updated { color: #9AA0A6; font-size: 0.875rem; margin-bottom: 2rem; font-weight: 500; } .policy-content-root h2 { font-family: 'Montserrat', sans-serif; font-size: 1.75rem; font-weight: 700; margin-top: 2.5rem; margin-bottom: 1.25rem; color: #1A1A1A; border-left: 4px solid #FF5252; padding-left: 1rem; } .policy-content-root p { margin-bottom: 1.25rem; color: #5F6368; } .policy-content-root ul { margin-bottom: 1.5rem; padding-left: 1.25rem; list-style-type: none; } .policy-content-root li { margin-bottom: 0.75rem; color: #5F6368; position: relative; padding-left: 1.5rem; } .policy-content-root li::before { content: '\F26E'; font-family: 'bootstrap-icons'; position: absolute; left: 0; color: #FF5252; font-size: 1rem; } .policy-content-root a { color: #FF5252; text-decoration: none; font-weight: 600; transition: color 0.3s ease; } .policy-content-root a:hover { color: #E53935; text-decoration: none; } @media (max-width: 768px) { .policy-content-root .policy-panel { padding: 1.5rem; border-radius: 16px; } .policy-content-root h2 { font-size: 1rem; padding-left: 0.75rem; } .policy-content-root p, .policy-content-root li { font-size: 0.875rem; } }

/* ===== PAGE: cookies ===== */
.policy-content-root .policy-card-stack {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.policy-content-root .policy-panel-floating {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-content-root .policy-panel-floating:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(255, 82, 82, 0.08);
}

.policy-content-root .policy-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(255, 82, 82, 0.1);
  color: #FF5252;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.policy-content-root .policy-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #1A1A1A;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.policy-content-root .policy-subheading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #1A1A1A;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-content-root .policy-subheading i {
  color: #FF5252;
}

.policy-content-root .policy-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #5F6368;
  margin-bottom: 1.2rem;
}

.policy-content-root .policy-grid-system {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.policy-content-root .policy-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.policy-content-root .policy-list-item {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  font-family: 'Inter', sans-serif;
  color: #5F6368;
}

.policy-content-root .policy-list-item::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #FF5252;
  font-weight: bold;
}

.policy-content-root .policy-highlight {
  color: #FF5252;
  font-weight: 500;
}

.policy-content-root .policy-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: #FDFDFD;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  margin-top: 1rem;
}

.policy-content-root .policy-link {
  color: #FF5252;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.policy-content-root .policy-link:hover {
  color: #E53935;
}

@media (max-width: 767.98px) {
  .policy-content-root .policy-heading {
    font-size: 16px !important;
  }
  .policy-content-root .policy-subheading {
    font-size: 14px !important;
  }
  .policy-content-root .policy-text {
    font-size: 0.9rem;
  }
  .policy-content-root .policy-grid-system {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .policy-content-root .policy-panel-floating {
    padding: 1.5rem;
    border-radius: 16px;
  }
  .policy-content-root .policy-icon-box {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }
}

/* ===== PAGE: accommodations ===== */
.stayvexa-acc-block { background-color: #FDFDFD; font-family: 'Inter', sans-serif; } .stayvexa-acc-block h1, .stayvexa-acc-block h2 { font-family: 'Montserrat', sans-serif; color: #1A1A1A; } .stayvexa-acc-block .shadow-soft { box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04) !important; } .stayvexa-acc-block .rounded-24 { border-radius: 24px; } .stayvexa-acc-block .btn-primary { background-color: #FF5252; border: none; transition: transform 0.2s, box-shadow 0.2s; } .stayvexa-acc-block .btn-primary:hover { background-color: #E53935; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(255, 82, 82, 0.3); } .stayvexa-acc-block .btn-outline-primary { color: #FF5252; border-color: #FF5252; } .stayvexa-acc-block .btn-outline-primary:hover { background-color: #FF5252; color: #FFF; } .stayvexa-acc-block .btn-outline-secondary { border-color: rgba(0,0,0,0.1); color: #5F6368; } .stayvexa-acc-block .btn-rounded { border-radius: 50px; padding-top: 0.6rem; padding-bottom: 0.6rem; } .stayvexa-card { transition: transform 0.3s ease, box-shadow 0.3s ease; } .stayvexa-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08) !important; } .stayvexa-card-img-wrap { height: 220px; overflow: hidden; } .stayvexa-card-img-wrap img { height: 100%; object-fit: cover; transition: transform 0.5s ease; } .stayvexa-card:hover .stayvexa-card-img-wrap img { transform: scale(1.1); } .stayvexa-search-group .input-group-text { border-color: rgba(0,0,0,0.05); } .stayvexa-search-group .form-control { border-color: rgba(0,0,0,0.05); padding: 0.8rem 1.2rem; } .stayvexa-search-group .form-control:focus { box-shadow: none; border-color: #FF5252; } @media (max-width: 767.98px) { .stayvexa-acc-block h1 { font-size: 18px !important; } .stayvexa-acc-block h2 { font-size: 16px !important; } .stayvexa-acc-block h3 { font-size: 14px !important; } .stayvexa-card-img-wrap { height: 180px; } }

/* ===== PAGE: tips ===== */
.tips-header-section {
  padding-top: 80px;
  background: #FDFDFD;
}
.tips-header-section .tips-header-panel {
  background: transparent;
  border-radius: 24px;
  box-shadow: none;
  border: none;
}
.tips-header-section .tips-main-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #1A1A1A;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}
.tips-header-section .tips-main-desc {
  font-size: 1.1rem;
  color: #5F6368;
  max-width: 700px;
}
.tips-list-section .tips-card {
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.tips-list-section .tips-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 82, 82, 0.08);
}
.tips-list-section .tips-card-img-link {
  display: block;
  height: 240px;
  overflow: hidden;
}
.tips-list-section .tips-card-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tips-list-section .tips-card:hover .tips-card-img-link img {
  transform: scale(1.05);
}
.tips-list-section .tips-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.tips-list-section .tips-card:hover .tips-card-title {
  color: #FF5252;
}
.tips-list-section .badge {
  background: rgba(255, 82, 82, 0.1);
  color: #FF5252;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 12px;
}
.tips-list-section .tips-meta {
  font-size: 0.85rem;
  color: #9AA0A6;
}
.tips-list-section .btn-primary {
  background-color: #FF5252;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.tips-list-section .btn-primary:hover {
  background-color: #E53935;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 82, 82, 0.2);
}
.tips-list-section .btn-outline-primary {
  border: 1px solid #FF5252;
  color: #FF5252;
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.tips-list-section .btn-outline-primary:hover {
  background-color: rgba(255, 82, 82, 0.05);
  color: #E53935;
  border-color: #E53935;
}
@media (max-width: 768px) {
  .tips-header-section .tips-main-title {
    font-size: 1.75rem;
  }
  .tips-list-section .tips-card-img-link {
    height: 200px;
  }
}

/* ===== PAGE: offers ===== */
.offers-section {
  background-color: #FDFDFD;
  font-family: 'Inter', sans-serif;
}

.offers-section .panel-floating {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.offers-section .h1-offers {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.02em;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
}

.offers-section .lead-offers {
  font-size: 1.1rem;
  line-height: 1.6;
}

.offers-section .filter-panel {
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}

.offers-section .btn-pill-filter {
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #E8EAED;
  background: #fff;
  color: #5F6368;
  box-shadow: none;
}

.offers-section .btn-pill-filter.active,
.offers-section .btn-pill-filter:hover {
  background-color: #FF5252;
  color: #fff;
  border-color: #FF5252;
  box-shadow: 0 8px 20px rgba(255, 82, 82, 0.15);
}

.offers-section .search-box {
  min-width: 280px;
}

.offers-section .search-input {
  border-radius: 50px;
  padding: 0.6rem 1rem 0.6rem 2.5rem;
  border: 1px solid #E8EAED;
  background-color: #F8F9FA;
}

.offers-section .search-input:focus {
  border-color: #FF5252;
  box-shadow: 0 0 0 0.25rem rgba(255, 82, 82, 0.1);
}

.offers-section .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9AA0A6;
}

.offers-section .offer-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.offers-section .offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.offers-section .offer-img-link {
  position: relative;
  display: block;
  overflow: hidden;
  height: 220px;
}

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

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

.offers-section .offer-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 82, 82, 0.95);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.offers-section .card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s;
}

.offers-section .offer-card:hover .card-title {
  color: #FF5252 !important;
}

.offers-section .price-tag {
  font-weight: 700;
  color: #FF5252;
  font-size: 0.95rem;
}

.offers-section .btn-primary-pill {
  border-radius: 50px;
  background: #FF5252;
  color: #fff;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 82, 82, 0.2);
}

.offers-section .btn-primary-pill:hover {
  background: #E53935;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 82, 82, 0.3);
  color: #fff;
}

@media (max-width: 768px) {
  .offers-section .panel-floating {
    padding: 1.5rem;
  }
  .offers-section .filter-panel {
    padding: 1.5rem 1rem;
  }
  .offers-section .search-box {
    width: 100%;
    min-width: unset;
  }
}

/* ===== PAGE: contact ===== */
.contact-block {
  background-color: #FDFDFD;
  font-family: 'Inter', sans-serif;
}

.contact-block .contact-info-card,
.contact-block .contact-form-panel,
.contact-block .contact-help-banner {
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.contact-block .contact-intro-panel {
  background: transparent;
  border-radius: 24px;
  border: none;
  box-shadow: none;
}

.contact-block .contact-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #1A1A1A;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

.contact-block .contact-subtitle {
  color: #5F6368;
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 700px;
}

.contact-block .info-title,
.contact-block .form-header {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #1A1A1A;
  font-size: 1.5rem;
}

.contact-block .info-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 82, 82, 0.1);
  color: #FF5252;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-block .info-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #9AA0A6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-block .info-text {
  color: #1A1A1A;
  font-weight: 500;
}

.contact-block .form-control {
  background: #F8F9FA !important;
  border: 2px solid transparent !important;
  border-radius: 12px;
  transition: all 0.3s ease;
  padding: 1rem 1.25rem;
}

.contact-block .form-control:focus {
  background: #FFFFFF !important;
  border-color: #FF5252 !important;
  box-shadow: 0 0 0 4px rgba(255, 82, 82, 0.08) !important;
}

.contact-block .form-label {
  color: #5F6368 !important;
  margin-left: 0.5rem;
}

.contact-block .btn-primary {
  background-color: #FF5252 !important;
  border: none !important;
  box-shadow: 0 10px 20px rgba(255, 82, 82, 0.15) !important;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.contact-block .btn-primary:hover {
  background-color: #E53935 !important;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 82, 82, 0.25) !important;
}

.contact-block .contact-help-banner {
  border: 1px solid rgba(255, 82, 82, 0.1);
}

.contact-block .support-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 82, 82, 0.2);
}

.contact-block .banner-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1A1A1A;
}

.contact-block .banner-desc {
  font-size: 0.95rem;
  color: #5F6368;
}

@media (max-width: 767.98px) {
  .contact-block .contact-title {
    font-size: 1.5rem;
  }
  .contact-block .contact-subtitle {
    font-size: 0.9rem;
  }
  .contact-block .contact-intro-panel,
  .contact-block .contact-info-card,
  .contact-block .contact-form-panel {
    padding: 1.5rem !important;
  }
}

.stayvexa-comment-panel {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stayvexa-comment-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

.stayvexa-avatar {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
}

.stayvexa-avatar-main {
    background: linear-gradient(135deg, #FF5252 0%, #FF8A80 100%);
}

.stayvexa-comment-name {
    color: #1A1A1A;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
}

.stayvexa-comment-status {
    color: #FF5252;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.stayvexa-comment-date {
    color: #9AA0A6;
    font-size: 0.85rem;
}

.stayvexa-comment-body {
    color: #5F6368;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.stayvexa-action-btn {
    background: #FDFDFD;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    color: #5F6368;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.stayvexa-action-btn:hover {
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    color: #1A1A1A;
}

.stayvexa-reply-container {
    border-left: 2px solid rgba(255, 82, 82, 0.1);
}

.stayvexa-reply-panel {
    padding: 1.75rem !important;
    border-radius: 20px !important;
    background-color: rgba(253, 253, 253, 0.7) !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.02) !important;
}

.stayvexa-avatar-reply {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    font-size: 1rem !important;
    background: #1A1A1A !important;
}

.stayvexa-reply-panel .stayvexa-comment-body {
    font-size: 0.95rem;
    color: #5F6368;
}

@media (max-width: 576px) {
    .stayvexa-reply-container {
        border-left: none;
        margin-top: 1rem;
    }

    .stayvexa-comment-panel {
        padding: 1.5rem;
    }
}


/* ===== PAGE TEMPLATE: accommodations ===== */
.stayvexa-detail-page {
    background-color: #FDFDFD;
}

.stayvexa-header {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1050;
}

.stayvexa-header .brand-text {
    font-family: 'Montserrat', sans-serif;
    color: #1A1A1A;
}

.stayvexa-header .nav-link {
    color: #5F6368 !important;
    transition: color 0.3s ease-in-out;
}

.stayvexa-header .nav-link:hover {
    color: #FF5252 !important;
}

.stayvexa-header .btn-primary {
    background-color: #FF5252 !important;
    border: none !important;
}

.detail-hero {
    background-position: center;
    background-size: cover;
    position: relative;
}

.detail-hero h1 {
    font-family: 'Montserrat', sans-serif;
}

.detail-panel {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-panel h2,
.detail-panel h3,
.detail-panel h5 {
    font-family: 'Montserrat', sans-serif;
    color: #1A1A1A;
}

.detail-panel p {
    color: #5F6368;
    line-height: 1.8;
}

.sidebar-panel {
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.sidebar-panel h4 {
    font-family: 'Montserrat', sans-serif;
}

.nav-tabs {
    border-bottom: 2px solid #F1F3F4;
}

.nav-tabs .nav-link {
    border: none;
    color: #9AA0A6;
    padding: 1rem 1.5rem;
}

.nav-tabs .nav-link.active {
    color: #FF5252 !important;
    border-bottom: 3px solid #FF5252;
}

.stayvexa-comment-panel {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stayvexa-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    background: #FF5252;
    color: white;
    flex-shrink: 0;
}

.stayvexa-comment-name {
    font-weight: 700;
    color: #1A1A1A;
}

.stayvexa-comment-status {
    font-size: 0.75rem;
    color: #FF5252;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stayvexa-comment-date {
    font-size: 0.8rem;
    color: #9AA0A6;
}

.stayvexa-comment-body {
    font-size: 0.95rem;
    color: #5F6368;
    margin: 1rem 0;
}

.stayvexa-action-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.85rem;
    color: #5F6368;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.stayvexa-action-btn:hover {
    color: #FF5252;
}

.stayvexa-action-btn i.active {
    color: #FF5252;
}

.footer-section {
    background-color: #1A1A1A;
    position: relative;
    z-index: 10;
}

.footer-notice-panel {
    background: rgba(255, 82, 82, 0.05);
    border: 1px solid rgba(255, 82, 82, 0.2);
}

.footer-partners-row .partner-logo {
    max-width: 130px;
    height: auto;
    object-fit: contain;
}

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

.age-modal-content {
    max-width: 500px;
    width: 100%;
    background: white;
}

@media (max-width: 768px) {
    .detail-hero h1 {
        font-size: 1.5rem;
    }

    .detail-hero p {
        font-size: 0.9rem;
    }

    .detail-panel {
        padding: 1.5rem !important;
    }
}

/* ===== PAGE TEMPLATE: tips ===== */
.stayvexa-detail-page {
    background-color: #FDFDFD;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.stayvexa-header {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1050;
}

.stayvexa-header .brand-text {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.01em;
    color: #1A1A1A;
}

.stayvexa-header .nav-link {
    color: #5F6368 !important;
    transition: color 0.3s ease-in-out;
}

.stayvexa-header .nav-link:hover {
    color: #FF5252 !important;
}

.stayvexa-header .btn-primary {
    background-color: #FF5252 !important;
    border: none !important;
    box-shadow: 0 8px 20px rgba(255, 82, 82, 0.15);
}

.stayvexa-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url('../assets/media/content/ti-treasure-island.png') center/cover no-repeat;
    padding: 160px 0 100px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.stayvexa-hero-section h1 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
}

.stayvexa-panel {
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stayvexa-article-body h2,
.stayvexa-article-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1A1A1A;
    margin: 2.5rem 0 1.25rem;
}

.stayvexa-article-body p {
    line-height: 1.8;
    color: #5F6368;
    margin-bottom: 1.5rem;
}

.stayvexa-article-body ul,
.stayvexa-article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.stayvexa-article-body li {
    margin-bottom: 0.75rem;
    color: #5F6368;
}

.stayvexa-comment-panel {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 20px;
}

.stayvexa-avatar {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: #FF5252;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.stayvexa-avatar-reply {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #1A1A1A;
    font-size: 0.9rem;
}

.stayvexa-comment-name {
    font-weight: 700;
    color: #1A1A1A;
    font-family: 'Montserrat', sans-serif;
}

.stayvexa-comment-status {
    font-size: 0.75rem;
    color: #FF5252;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stayvexa-comment-date {
    font-size: 0.85rem;
    color: #9AA0A6;
}

.stayvexa-action-btn {
    border: none;
    background: none;
    color: #5F6368;
    font-size: 0.9rem;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.stayvexa-action-btn:hover {
    color: #FF5252;
}

.stayvexa-action-btn.active .bi-heart {
    display: none;
}

.stayvexa-action-btn.active .bi-heart-fill {
    display: inline-block;
    color: #FF5252;
}

.footer-section {
    background-color: #1A1A1A;
    position: relative;
    z-index: 10;
}

.footer-notice-panel {
    background: rgba(255, 82, 82, 0.05);
    border: 1px solid rgba(255, 82, 82, 0.2);
}

.footer-partners-row .partner-logo {
    max-width: 130px;
    height: auto;
    object-fit: contain;
}

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

.age-modal-content {
    max-width: 500px;
    width: 100%;
    animation: modalIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes modalIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 991.98px) {
    .stayvexa-hero-section {
        padding: 120px 0 60px;
    }

    .stayvexa-header .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: 0 0 24px 24px;
    }
}

/* ===== PAGE TEMPLATE: offers ===== */
.stayvexa-header {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1050;
}

.stayvexa-header .brand-text {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.01em;
    color: #1A1A1A;
}

.stayvexa-header .nav-link {
    color: #5F6368 !important;
    transition: color 0.3s ease-in-out;
}

.stayvexa-header .nav-link:hover {
    color: #FF5252 !important;
}

.stayvexa-header .btn-primary {
    background-color: #FF5252 !important;
    border: none !important;
    box-shadow: 0 8px 20px rgba(255, 82, 82, 0.15);
}

.stayvexa-hero-panel {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.stayvexa-panel {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stayvexa-main-img {
    height: 450px;
    object-fit: cover;
    width: 100%;
}

.stayvexa-check-list li i {
    font-size: 1.1rem;
}

.stayvexa-input {
    background: #F8F9FA !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: none !important;
}

.stayvexa-input:focus {
    background: #FFFFFF !important;
    border-color: #FF5252 !important;
}

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

.stayvexa-avatar-main {
    background-color: #FF5252;
}

.stayvexa-avatar-reply {
    background-color: #5F6368;
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
}

.stayvexa-comment-name {
    color: #1A1A1A;
    font-weight: 700;
}

.stayvexa-comment-status {
    font-size: 0.75rem;
    color: #FF5252;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stayvexa-comment-date {
    font-size: 0.8rem;
    color: #9AA0A6;
}

.stayvexa-comment-body {
    color: #5F6368;
    line-height: 1.6;
    margin: 10px 0;
}

.stayvexa-action-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.85rem;
    color: #9AA0A6;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.stayvexa-action-btn:hover {
    color: #FF5252;
}

.stayvexa-action-btn.active i {
    color: #FF5252;
}

.footer-section {
    background-color: #1A1A1A;
}

.footer-notice-panel {
    background: rgba(255, 82, 82, 0.05);
    border: 1px solid rgba(255, 82, 82, 0.2);
}

.footer-partners-row .partner-logo {
    max-width: 120px;
}

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

.age-modal-content {
    max-width: 500px;
    width: 100%;
}

@media (max-width: 768px) {
    .stayvexa-main-img {
        height: 280px;
    }

    .display-4 {
        font-size: 2.2rem;
    }

    .stayvexa-panel {
        padding: 1.5rem !important;
    }
}