/* --- Global Font Rule (Times New Roman) --- */
.font-serif,
.fac-banner,
.fac-footer,
.section-tag,
.section-title,
.block-title,
.fac-content-block,
.floating-caption {
    font-family: 'Times New Roman', Times, serif !important;
}

.bg-light-section {
    background-color: #f7faff;
}

/* --- Hero Banner --- */
.fac-banner {
    position: relative;
    min-height: 320px;
    background-image: url('../images/b2.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 65px 15px;
}

.fac-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 34, 68, 0.92) 0%, rgba(2, 136, 209, 0.85) 100%);
    z-index: 1;
}

.fac-banner .container {
    z-index: 2;
}

.fac-badge {
    display: inline-block;
    background: rgba(255, 213, 79, 0.2);
    border: 1px solid #ffd54f;
    color: #ffd54f;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.fac-main-heading {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.fac-sub-heading {
    font-size: 18px;
    font-style: italic;
    opacity: 0.95;
    max-width: 740px;
    margin: 8px auto 0;
}

.fac-divider {
    width: 65px;
    height: 3px;
    background-color: #ffd54f;
    margin-top: 16px;
    border-radius: 2px;
}

.fac-divider-small {
    width: 50px;
    height: 3px;
    background-color: #0288d1;
    margin-top: 8px;
    border-radius: 2px;
}

/* --- Section Headings --- */
.section-tag {
    color: #0288d1;
    font-size: 14.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    color: #0f172a;
}

.section-lead {
    font-size: 16.5px;
    color: #64748b;
    line-height: 1.6;
}

/* --- Alternating Row Sections --- */
.fac-row-section {
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.badge-mini {
    display: inline-block;
    background: #e1f5fe;
    color: #0288d1;
    font-size: 13px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.block-title {
    font-size: 27px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
    line-height: 1.3;
}

.block-desc {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-item {
    font-size: 15px;
    color: #1e293b;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.check-item i {
    color: #0288d1;
    font-size: 16px;
    margin-right: 10px;
    margin-top: 3px;
}

/* --- Image Frames & Hover Zoom --- */
.fac-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.12);
    border: 4px solid #ffffff;
    height: 360px;
}

.fac-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fac-img-wrapper:hover img {
    transform: scale(1.05);
}

.floating-caption {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(0, 34, 68, 0.88);
    backdrop-filter: blur(5px);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14.5px;
    font-weight: 600;
    border-left: 4px solid #ffd54f;
}

/* --- Amenity Highlight Card --- */
.amenity-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 10px;
    background: #e1f5fe;
    color: #0288d1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* --- Footer --- */
.fac-footer {
    background: #002244;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .fac-banner {
        min-height: 230px;
        padding: 40px 15px;
        background-attachment: scroll;
    }
    .fac-main-heading {
        font-size: 26px;
    }
    .block-title {
        font-size: 22px;
    }
    .fac-img-wrapper {
        height: 240px;
    }
}