.service-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.service-categories .filter-btn {
    padding: 10px 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #f6f6f6;
    font-weight: 600;
    text-transform: uppercase;
    color: #222;
    transition: all 0.3s ease;
}

.service-categories .filter-btn.active,
.service-categories .filter-btn:hover {
    background-color: #062143;
    color: white;
    border-color: #062143;
}

.service-boxes {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-box {
    width: 100%;
    background: white;
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.04);
}

.box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #222;
}

.box-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
    color: #333;
}

.box-desc {
    font-size: 15px;
    color: #444;
    margin-bottom: 15px;
}

.box-reqs {
    margin-bottom: 20px;
}

.box-reqs strong {
    display: block;
    margin-bottom: 8px;
    color: #222;
}

.box-reqs ul {
    list-style: none;
    padding-left: 0;
}

.box-reqs li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 6px;
    font-size: 15px;
    color: #444;
}

.box-reqs li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.box-footer {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}
.box-footer a {
    min-width: 95px;
    justify-content: center;
    font-weight: 600;
    font-size: 1em;
}
.request-call-btn {
    background-color: transparent;
    color: #e60028;
    border: 2px solid #e60028;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

.request-call-btn:hover {
    background-color: #e60028;
    color: white;
}

.whatsapp-btn {
    background-color: transparent;
    border: 2px solid #25d366;
    color: #25d366;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #25d366;
    color: white;
}

/* Popup */
#service-form-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    position: relative;
}

.popup-content h3 {
    margin-top: 0;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.popup-content input,
.popup-content button {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.popup-content button {
    background-color: #e60028;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.popup-content .close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}
