
    :root {
        --green: #075b2b;
        --deep: #063b1d;
        --gold: #f4b900;
        --soft: #f5f8f3;
        --muted: #68736b;
        --ink: #172019;
        --line: #dfe9e1;
        --shadow: 0 15px 40px rgba(7, 91, 43, 0.12);
    }

    /* ===== HERO SECTION - ONLY BANNER ===== */
    .page-hero {
        padding: 0;
        margin: 0;
        background: none;
        position: relative;
    }



    /* ===== LOCATIONS SECTION ===== */
    .locations-page {
        background: linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
        padding: 60px 0 80px;
    }

    .locations-page .section-header {
        text-align: center;
        margin-bottom: 35px;
    }

    .locations-page .section-header .tag {
        display: inline-block;
        color: var(--green);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 10px;
        padding: 5px 16px;
        background: var(--soft);
        border-radius: 50px;
    }

    .locations-page .section-header .title {
        font-size: clamp(28px, 4vw, 38px);
        font-weight: 800;
        line-height: 1.1;
        color: var(--ink);
        margin-bottom: 10px;
    }

    .locations-page .section-header .title em {
        font-family: 'Playfair Display', serif;
        font-style: normal;
        color: var(--green);
    }

    .locations-page .section-header .sub {
        color: var(--muted);
        font-size: 16px;
        line-height: 1.7;
        max-width: 600px;
        margin: 0 auto;
    }

    /* ===== TOOLBAR ===== */
    .location-toolbar {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 18px 20px;
        box-shadow: 0 8px 22px rgba(7, 91, 43, 0.05);
        margin-bottom: 30px;
    }

    .filter-row {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .search-wrap {
        flex: 1 1 280px;
        position: relative;
    }

    .search-wrap i {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--muted);
    }

    .search-wrap input {
        width: 100%;
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 11px 16px 11px 40px;
        font-size: 14px;
        outline: none;
        transition: all 0.3s ease;
    }

    .search-wrap input:focus {
        border-color: var(--green);
        box-shadow: 0 0 0 3px rgba(7, 91, 43, 0.08);
    }

    .filter-select {
        min-width: 160px;
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 11px 14px;
        font-size: 14px;
        background: #fff;
        color: var(--ink);
        outline: none;
        transition: all 0.3s ease;
    }

    .filter-select:focus {
        border-color: var(--green);
        box-shadow: 0 0 0 3px rgba(7, 91, 43, 0.08);
    }

    .filter-btn {
        border-radius: 10px;
        padding: 11px 24px;
        font-weight: 700;
        font-size: 14px;
        background: var(--green);
        border-color: var(--green);
        color: #fff;
        transition: all 0.3s ease;
    }

    .filter-btn:hover {
        background: var(--deep);
        border-color: var(--deep);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(7, 91, 43, 0.2);
    }

    .filter-btn i {
        margin-right: 6px;
    }

    /* ===== LOCATION GRID ===== */
    .location-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }

    .location-card {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 16px;
        overflow: hidden;
        height: 100%;
        box-shadow: 0 8px 24px rgba(7, 91, 43, 0.04);
        transition: all 0.4s ease;
        display: flex;
        flex-direction: column;
    }

    .location-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 45px rgba(7, 91, 43, 0.1);
        border-color: var(--green);
    }

    .location-image-wrapper {
        position: relative;
        overflow: hidden;
    }

    .location-image-wrapper img {
        height: auto;
        width: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .location-card:hover .location-image-wrapper img {
        transform: scale(1.05);
    }

    .location-status {
        position: absolute;
        left: 14px;
        top: 14px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(7, 91, 43, 0.9);
        color: #fff;
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        backdrop-filter: blur(4px);
    }

    .location-status.coming-soon {
        background: rgba(244, 185, 0, 0.92);
        color: #1d1d1d;
    }

    .location-status i {
        font-size: 8px;
    }

    .card-body {
        padding: 20px 20px 18px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .location-title {
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 8px;
        color: var(--ink);
        transition: color 0.3s ease;
    }

    .location-card:hover .location-title {
        color: var(--green);
    }

    .location-description {
        color: var(--muted);
        margin-bottom: 14px;
        font-size: 14px;
        line-height: 1.7;
        flex: 1;
    }

    .location-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 16px;
    }

    .pill {
        background: #eaf5ed;
        color: var(--green);
        border: 1px solid #d6ead9;
        border-radius: 50px;
        padding: 4px 12px;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    .location-btn {
        width: 100%;
        border-radius: 10px;
        padding: 12px;
        font-weight: 700;
        font-size: 14px;
        transition: all 0.3s ease;
        text-align: center;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: var(--green);
        color: #fff;
        border: none;
    }

    .location-btn:hover {
        background: var(--deep);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(7, 91, 43, 0.25);
    }

    .location-btn i {
        transition: transform 0.3s ease;
    }

    .location-btn:hover i {
        transform: translateX(4px);
    }

    .location-btn.btn-outline-success {
        background: transparent;
        color: var(--green);
        border: 1.5px solid var(--green);
    }

    .location-btn.btn-outline-success:hover {
        background: var(--green);
        color: #fff;
        border-color: var(--green);
    }

    /* ===== PAGINATION ===== */
    .pagination-wrap {
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }

    .pagination {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .pagination .page-item .page-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 42px;
        height: 42px;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: #fff;
        color: var(--ink);
        text-decoration: none;
        font-weight: 700;
        padding: 0 14px;
        transition: all 0.3s ease;
    }

    .pagination .page-item .page-link:hover {
        background: var(--soft);
        border-color: var(--green);
        color: var(--green);
        transform: translateY(-2px);
    }

    .pagination .page-item.active .page-link {
        background: var(--green);
        color: #fff;
        border-color: var(--green);
        box-shadow: 0 6px 20px rgba(7, 91, 43, 0.25);
    }

    .pagination .page-item.disabled .page-link {
        opacity: 0.4;
        pointer-events: none;
    }

    .pagination .page-item .page-link i {
        font-size: 16px;
    }

    /* ===== NO RESULTS ===== */
    .no-results {
        text-align: center;
        padding: 40px 20px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 16px;
    }

    .no-results i {
        font-size: 48px;
        color: var(--muted);
        margin-bottom: 16px;
        display: block;
        opacity: 0.3;
    }

    .no-results h4 {
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 6px;
    }

    .no-results p {
        color: var(--muted);
        font-size: 14px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 991px) {

        .location-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 767px) {

        .locations-page {
            padding: 40px 0 60px;
        }
        .locations-page .section-header .title {
            font-size: 26px;
        }
        .locations-page .section-header .sub {
            font-size: 14px;
        }
        .location-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }
        .filter-row {
            flex-direction: column;
            align-items: stretch;
        }
        .search-wrap,
        .filter-select,
        .filter-btn {
            width: 100%;
        }
        .location-toolbar {
            padding: 14px 16px;
        }
        /* .location-image-wrapper img {
            height: 190px;
        } */
        .location-title {
            font-size: 18px;
        }
        .location-description {
            font-size: 13px;
        }
    }

    @media (max-width: 576px) {

        .locations-page .section-header .title {
            font-size: 22px;
        }
        /* .location-image-wrapper img {
            height: 170px;
        } */
        .card-body {
            padding: 16px 16px 14px;
        }
        .location-title {
            font-size: 17px;
        }
        .pagination .page-item .page-link {
            min-width: 36px;
            height: 36px;
            font-size: 13px;
            padding: 0 10px;
        }
    }


