/* =============================
   GLOBAL BASE STYLE
============================= */
body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #ffffff;
}

/* =============================
   NAVBAR BUTTON (Book Now)
============================= */
.book-btn {
    font-size: 1.1rem;
    border-radius: 35px !important;
    padding: 8px 25px !important;
    font-weight: 600;
}

.book-btn:hover {
    background: #ffe2e2 !important;
    color: #8B1E1E !important;
    transform: scale(1.05);
    transition: 0.25s;
}

/* =============================
   PREMIUM IMAGE STYLES
============================= */
.premium-wrapper {
    margin: 50px auto;
    padding: 0 15px;
    max-width: 1300px;
    position: relative;
}

.premium-image {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    display: block;
}

/* =============================
   HOW IT WORKS — OVERLAY
============================= */
.hiw-overlay {
    position: absolute;
    inset: 0;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* Light Transparent Overlay */
    background: rgba(0,0,0,0.18);
    backdrop-filter: blur(4px);
    border-radius: 22px;

    z-index: 10;
    color: white;
    text-align: center;
}

.hiw-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    margin-bottom: 25px;
}

.hiw-steps {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.step-item {
    width: 180px;
    padding: 18px;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
}

.step-item i {
    font-size: 2.2rem;
    color: #C62828;
    margin-bottom: 8px;
}

/* =============================
   MOBILE RESPONSIVE — PERFECT FIX
============================= */
@media(max-width: 768px) {

    .premium-image {
        height: 55vh;
        object-fit: cover;
    }

    .hiw-overlay {
        inset: 0;
        padding: 12px;
        background: rgba(0,0,0,0.25);
        border-radius: 22px;
    }

    .hiw-title {
        font-size: 1.7rem;
        margin-bottom: 12px;
    }

    .hiw-steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
    }

    .step-item {
        padding: 10px;
        font-size: 0.9rem;
        width: 100%;
    }

    .step-item i {
        font-size: 1.5rem;
    }
}

/* =============================
   FOOTER PREMIUM STYLE
============================= */
.footer-premium {
    background-color: #C62828;
    padding-top: 40px;
    color: #ffecec;
}

.footer-link {
    color: #ffecec;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
}

.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

.social-icon {
    font-size: 1.4rem;
    color: #fff;
    transition: 0.3s;
}

.social-icon:hover {
    color: #ffd1d1;
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #B71C1C;
    padding: 12px 0;
    text-align: center;
    color: #fff;
}

/* =============================
   NAVBAR TOGGLER FIX
============================= */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.7);
}

.navbar-toggler-icon {
    filter: invert(1);
}
