.umrah-package-card {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.package-header {
    background: #86a83d;
    color: #fff;
    padding: 8px 14px;
    font-weight: bold;
    display: inline-block;
    border-radius: 0 0 14px 0;
}

.package-body {
    display: grid;
    grid-template-columns: 2fr 3fr 3fr 1.5fr;
    gap: 15px;
    padding: 20px;
    align-items: center;
}

/* ---------- SECTIONS ---------- */

.flight-section img {
    max-height: 40px;
    margin-bottom: 6px;
}

.route {
    font-size: 18px;
    color: #c36c00;
    font-weight: bold;
}

.hotel-section h4 {
    color: #c36c00;
    margin-bottom: 5px;
}

.price-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.price-section span {
    display: block;
    font-size: 13px;
    color: #2b6cb0;
}

.price-section strong {
    font-size: 16px;
}

.action-section {
    text-align: center;
}

.remaining {
    color: #c36c00;
    margin-bottom: 10px;
}

.book-btn {
    display: inline-block;
    background: #8bb23f;
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

.package-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
}

/* Ensure columns don't wrap on desktop */
.package-body > div {
    flex-shrink: 0;
}

.col-logo {
    flex: 0 0 10%;
    text-align: center;
}

.col-rout {
    flex: 0 0 25%;
}

.col-hotels {
    flex: 0 0 25%;
}

.col-sharing {
    flex: 0 0 15%;
}

.col-remaining {
    flex: 0 0 15%;
    text-align: center;
}

@media (max-width: 992px) {
    .package-body {
        flex-wrap: wrap;
    }

    .package-body > div {
        flex: 0 0 48%;
    }

    .col-remaining {
        flex: 0 0 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .package-body {
        flex-direction: column;
        align-items: stretch;
    }

    .package-body > div {
        flex: 0 0 100%;
        text-align: center;
    }

    .airline-logo {
        max-width: 80px;
        margin: 0 auto;
    }

    .book-btn {
        display: inline-block;
        margin-top: 10px;
    }
}


/* ---------- TABLET ---------- */
@media (max-width: 1024px) {
    .package-body {
        grid-template-columns: 1fr 2fr;
    }

    .price-section {
        grid-column: span 2;
    }

    .action-section {
        grid-column: span 2;
        margin-top: 10px;
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {

    .package-body {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .flight-section,
    .hotel-section,
    .price-section,
    .action-section {
        text-align: center;
    }

    .price-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .package-header {
        font-size: 14px;
    }

    .route {
        font-size: 16px;
    }
}

/* ============================
   UMRAH FILTERS – BASE STYLE
============================ */

.umrah-filters {
    background: #f8fafc;
    padding: 16px;
    border-radius: 14px;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

/* Inputs & Selects */
.umrah-filters input,
.umrah-filters select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.umrah-filters input::placeholder {
    color: #9ca3af;
}

.umrah-filters input:focus,
.umrah-filters select:focus {
    border-color: #8bb23f;
    box-shadow: 0 0 0 2px rgba(139,178,63,0.15);
    outline: none;
}

/* ============================
   TABLET (≤1024px)
============================ */
@media (max-width: 1024px) {
    .umrah-filters {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================
   MOBILE (≤768px)
============================ */
@media (max-width: 768px) {

    .umrah-filters {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 14px;
    }

    .umrah-filters input,
    .umrah-filters select {
        font-size: 16px; /* Better touch experience */
        padding: 12px 14px;
    }
}

