* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cairo', sans-serif;
            background: #F6F8F7;
            color: #2E3B33;
            line-height: 1.6;
            scrollbar-color: #0F7C3F #E6EEE9;
        }

        body::-webkit-scrollbar {
            width: 10px;
        }

        body::-webkit-scrollbar-track {
            background: #E6EEE9;
        }

        body::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #0F7C3F, #006C35);
            border-radius: 999px;
            border: 2px solid #E6EEE9;
        }

        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            color: #006C35;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, #006C35, #00A651);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
        }

        .page-hero {
            padding: 50px 20px 30px;
            background: linear-gradient(135deg, #FFFFFF 0%, #F7F3EE 100%);
        }

        .page-hero-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .page-title {
            font-size: 32px;
            font-weight: 800;
            color: #0B3B23;
        }

        .page-subtitle {
            color: #5C6D64;
            font-size: 15px;
            margin-top: 6px;
        }

        .page-layout {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px 80px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 24px;
            grid-template-areas: "requests filters";
        }

        .requests-grid {
            grid-area: requests;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }

        .request-card {
            background: white;
            border-radius: 16px;
            padding: 22px;
            border: 1px solid rgba(0, 108, 53, 0.12);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .request-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
        }

        .request-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .request-title {
            font-size: 18px;
            font-weight: 800;
            color: #2E3B33;
        }

        .request-chip {
            padding: 6px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            background: rgba(0, 108, 53, 0.1);
            color: #006C35;
        }

        .request-desc {
            font-size: 14px;
            color: #5C6D64;
            margin-bottom: 12px;
        }

        .request-meta {
            font-size: 13px;
            color: #6E7B74;
            margin-bottom: 14px;
        }

        .request-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .request-actions {
            display: flex;
            gap: 8px;
        }

        .request-btn {
            padding: 8px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            text-decoration: none;
            border: 1px solid transparent;
            transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
        }

        .request-btn-primary {
            background: #8A6A2B;
            color: white;
            box-shadow: 0 8px 18px rgba(138, 106, 43, 0.2);
        }

        .request-btn-secondary {
            background: #F8F2E8;
            color: #8A6A2B;
            border-color: rgba(138, 106, 43, 0.25);
        }

        .request-btn:hover {
            transform: translateY(-1px);
        }

        .request-budget {
            font-size: 16px;
            font-weight: 800;
            color: #006C35;
        }

        .request-action {
            text-decoration: none;
            font-weight: 700;
            color: #006C35;
            font-size: 14px;
        }

        .filter-panel {
            grid-area: filters;
            background: white;
            border-radius: 16px;
            padding: 20px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
            height: fit-content;
            position: sticky;
            top: 100px;
        }

        .filter-title {
            font-size: 18px;
            font-weight: 800;
            color: #0B3B23;
            margin-bottom: 16px;
        }

        .filter-group {
            margin-bottom: 18px;
        }

        .filter-group label {
            display: block;
            font-size: 13px;
            font-weight: 700;
            color: #2E3B33;
            margin-bottom: 8px;
        }

        .filter-group select,
        .filter-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid #E0E0E0;
            border-radius: 10px;
            font-family: 'Cairo', sans-serif;
            font-size: 14px;
            background: #F8F9FA;
        }

        .filter-actions {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 12px 16px;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            font-weight: 700;
            font-size: 14px;
        }

        .btn-primary {
            background: #006C35;
            color: white;
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid #006C35;
            color: #006C35;
        }

        @media (max-width: 980px) {
            .page-layout {
                grid-template-columns: 1fr;
                grid-template-areas:
                    "filters"
                    "requests";
            }

            .filter-panel {
                position: static;
            }
        }

/* Request Offer Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 59, 35, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    z-index: 1100;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: #fff;
    border-radius: 18px;
    width: min(560px, 92vw);
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
}

.modal-title {
    font-size: 20px;
    font-weight: 800;
    color: #0B3B23;
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 14px;
    color: #5C6D64;
    margin-bottom: 16px;
}

.modal-close {
    position: absolute;
    top: 14px;
    left: 14px;
    border: none;
    background: #F1F4F2;
    color: #0B3B23;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
}

.modal-form {
    display: grid;
    gap: 12px;
}

.modal-form input,
.modal-form textarea {
    padding: 12px;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    background: #F8F9FA;
}

.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.modal-actions .btn {
    flex: 1;
}

/* Modal Phone Country Selector */
.phone-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.country-selector {
    position: relative;
    flex-shrink: 0;
    width: 120px;
}

.country-selector-trigger {
    height: 100%;
    padding: 12px 10px;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    background-color: #F8F9FA;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
}

.country-selector-trigger:hover {
    border-color: #006C35;
    background-color: #fff;
}

.selector-arrow {
    font-size: 12px;
    color: #7A8B82;
}

.country-flag {
    font-size: 18px;
}

.country-code {
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #006C35;
}

.phone-number-input {
    flex: 1;
}

.country-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #006C35;
    border-radius: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.2s;
    z-index: 1200;
    box-shadow: 0 8px 20px rgba(0, 108, 53, 0.15);
}

.country-selector.open .country-options {
    max-height: 260px;
    overflow-y: auto;
    opacity: 1;
    transform: translateY(0);
}

.country-option {
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.country-option:hover {
    background-color: #F0FDF4;
}

.country-option.selected {
    background-color: #E6F7ED;
    font-weight: 700;
}

.country-option .country-name {
    flex: 1;
    font-size: 13px;
}

.country-option .country-code {
    font-size: 12px;
}
