/* Main Form Container */
.haroshub-order-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
}

/* Form Styling */
.haroshub-order-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.haroshub-order-form h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 28px;
}

.haroshub-form-group {
    margin-bottom: 20px;
}

.haroshub-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.haroshub-form-group input,
.haroshub-form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
}

.haroshub-form-group input:focus,
.haroshub-form-group select:focus {
    border-color: #FF6B00;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,107,0,0.2);
}

.haroshub-form-group input.error {
    border-color: #ff0000;
}

/* Submit Button */
.haroshub-submit-btn {
    background: #FF6B00;
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(255,107,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.haroshub-submit-btn:hover {
    background: #E05A00;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,0,0.4);
}

.haroshub-submit-btn:active {
    transform: translateY(1px);
}

/* Features Section */
.haroshub-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.haroshub-feature-box {
    flex: 1;
    min-width: 200px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.haroshub-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.haroshub-feature-box i {
    font-size: 40px;
    color: #FF6B00;
    margin-bottom: 15px;
}

.haroshub-feature-box h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 18px;
}

.haroshub-feature-box p {
    color: #7f8c8d;
    font-size: 14px;
}

/* Admin Styles */
#haroshub-packages-table {
    width: 100%;
    margin-bottom: 20px;
}

#haroshub-packages-table th {
    text-align: left;
    padding: 10px;
    background: #f1f1f1;
}

#haroshub-packages-table td {
    padding: 10px;
    vertical-align: middle;
}