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




        /* .nav-links a:hover {
            color: #00A651;
        }

        .cta-buttons {
            display: flex;
            gap: 12px;
        }

        .btn {
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 14px;
            cursor: pointer;
            border: none;
            font-family: 'Cairo', sans-serif;
        }

        .btn-primary {
            background: linear-gradient(135deg, #00A651 0%, #006C35 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(0, 108, 53, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 108, 53, 0.4);
        } */

        /* Request Job Section */
        .request-job-section {
            padding: 50px 20px 80px;
            background: transparent;
        }

        .request-container {
            max-width: 700px;
            margin: 0 auto;
        }

        .page-header {
            text-align: center;
            margin-bottom: 40px;
        }

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

        .page-subtitle {
            font-size: 16px;
            color: #4B5B52;
        }

        .selected-type-badge {
            display: inline-block;
            padding: 10px 20px;
            background: linear-gradient(135deg, #00A651 0%, #006C35 100%);
            color: white;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 700;
            margin-top: 14px;
            box-shadow: 0 4px 12px rgba(0, 108, 53, 0.25);
        }

        .whatsapp-link-wrap {
            display: flex;
            justify-content: center;
            margin: 0 0 24px;
        }

        /* Form Styles */
        .request-form {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 108, 53, 0.1);
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-label {
            display: block;
            font-weight: 700;
            font-size: 15px;
            color: #0B3B23;
            margin-bottom: 8px;
        }

        .form-label .required {
            color: #C5405A;
            margin-right: 4px;
        }

        .form-label .optional {
            color: #999;
            font-weight: 400;
            font-size: 13px;
            margin-right: 6px;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #E6EEE9;
            border-radius: 12px;
            font-family: 'Cairo', sans-serif;
            font-size: 15px;
            transition: all 0.3s;
            background-color: #F8F9FA;
        }

        .input-error {
            border-color: #dc2626 !important;
            background-color: #fff5f5 !important;
        }

        .field-error {
            color: #dc2626;
            font-size: 13px;
            font-weight: 600;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #006C35;
            background-color: white;
            box-shadow: 0 0 0 3px rgba(0, 108, 53, 0.1);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Job Type Select */
        .custom-select-wrapper {
            position: relative;
        }

        .custom-select {
            position: relative;
        }

        .custom-select-trigger {
            padding: 14px 16px;
            border: 2px solid #E6EEE9;
            border-radius: 12px;
            background-color: #F8F9FA;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .custom-select-trigger:hover {
            border-color: #006C35;
            background-color: white;
        }

        .custom-select.open .custom-select-trigger {
            border-color: #006C35;
            background-color: white;
        }

        .selected-option {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
        }

        .option-icon {
            font-size: 20px;
        }

        .dropdown-arrow {
            font-size: 12px;
            color: #006C35;
            transition: transform 0.3s;
        }

        .custom-select.open .dropdown-arrow {
            transform: rotate(180deg);
        }

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

        .custom-select.open .custom-options {
            max-height: 400px;
            overflow-y: auto;
            opacity: 1;
            transform: translateY(0);
        }

        .custom-option {
            padding: 14px 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: all 0.2s;
        }

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

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

        /* Submit Button */
        .submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #00A651 0%, #006C35 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-family: 'Cairo', sans-serif;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 20px;
            box-shadow: 0 4px 15px rgba(0, 108, 53, 0.25);
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 108, 53, 0.35);
        }

        .submit-btn.is-loading {
            pointer-events: none;
            opacity: 0.85;
        }

        .submit-btn.is-loading::after {
            content: '';
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255, 255, 255, 0.45);
            border-top-color: #fff;
            border-radius: 50%;
            display: inline-block;
            animation: spin 0.9s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Error Messages */
        .error-message {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            color: white;
            padding: 14px 18px;
            border-radius: 10px;
            margin-bottom: 20px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
        }

        .success-message {
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
            color: white;
            padding: 14px 18px;
            border-radius: 10px;
            margin-bottom: 20px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
        }

        /* Character Counter */
        .char-counter {
            text-align: left;
            font-size: 12px;
            color: #999;
            margin-top: 6px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            nav {
                display: none;
                position: absolute;
                top: 100%;
                right: 0;
                left: 0;
                background: linear-gradient(135deg, #0B3B23 0%, #1a5c3a 100%);
                flex-direction: column;
                padding: 20px;
                gap: 15px;
            }

            nav.active {
                display: flex;
            }

            .nav-links {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .request-form {
                padding: 24px;
            }

            .page-title {
                font-size: 26px;
            }
        }

        .form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-row {
    margin-bottom: 20px;
}

.form-row.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-row.two-cols {
        grid-template-columns: 1fr;
    }
}

.error-message-box {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    transition: opacity 0.3s;
}

.next-step-btn, .prev-step-btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border: none;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s;
}

.next-step-btn {
    background: linear-gradient(135deg, #00A651 0%, #006C35 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 108, 53, 0.3);
}

.prev-step-btn {
    background: #f3f4f6;
    color: #374151;
}

.step-navigation {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: 30px;
}

.image-upload-container {
    margin-top: 8px;
}

.upload-area {
    border: 2px dashed #E6EEE9;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #F8F9FA;
}

.upload-area:hover {
    border-color: #006C35;
    background-color: #F0FDF4;
}

.upload-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.upload-text {
    font-size: 16px;
    font-weight: 600;
    color: #0B3B23;
    margin-bottom: 6px;
}

.upload-hint {
    font-size: 13px;
    color: #666;
}

.image-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.image-preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.image-preview-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.image-remove-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}
