/* Help Page Styles */
.help-page {
    min-height: 100vh;
    background: #FAEDE8;
    padding: 40px 0;
}

.help-page-container {
    max-width: 1268px;
    margin: 0 auto;
    padding: 0 20px;
}

.help-page-content {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    padding: 0;
}

.help-page-content .row {
    margin: 0;
    min-height: 600px;
    gap: 30px;
    display: flex;
    align-items: stretch;
}

/* Left Side - Image and Contact Info */
.help-page-content-left {
    padding: 0;
    position: relative;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 50%;
}

.help-page-content-left img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
}

.contact-info {
    padding: 40px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #dc5545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 16px;
}

.contact-item span {
    color: #656565;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
    font-family: var(--font-secondary);
}

/* Right Side - Contact Form */
.help-page-content-right {
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 50%;
}

.contact-form-section h2 {
    color: #030303;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-form-section p {
    color: #030303;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 30px;
}

/* Form Styles */
.contact-form {
    max-width: 100%;
}

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

.form-group label {
    display: block;
    color: #444444;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #C2C2C2;
    background-color: #F5F5F5;
    border-radius: 15px;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #C2C2C2;
}

/* Phone Input */
.phone-input {
    display: flex;
    gap: 10px;
}

.country-code {
    width: 80px;
    flex-shrink: 0;
}

.phone-input input {
    flex: 1;
}

/* Textarea */
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 3px;
    flex-shrink: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 13px;
    color: #444444;
    line-height: 1.4;
}

.checkbox-group a {
    color: #000000;
    text-decoration: none;
    font-weight: 700;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: #CE4F49;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    opacity: 1;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #c44a3a;
    transform: translateY(-1px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Form Validation Styles */
.form-group input.is-valid,
.form-group textarea.is-valid,
.form-group select.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-group input.is-invalid,
.form-group textarea.is-invalid,
.form-group select.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-group input.is-valid:focus,
.form-group textarea.is-valid:focus,
.form-group select.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

.form-group input.is-invalid:focus,
.form-group textarea.is-invalid:focus,
.form-group select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

/* Checkbox validation styling */
.checkbox-group input[type="checkbox"].is-invalid + label {
    color: #dc3545;
}

.checkbox-group input[type="checkbox"].is-valid + label {
    color: #28a745;
}

/* SweetAlert2 Custom Styling */
.contact-success-popup {
    border-radius: 15px !important;
}

.contact-success-title {
    color: #333 !important;
    font-weight: 600 !important;
}

.contact-success-button {
    border-radius: 8px !important;
    padding: 10px 25px !important;
    font-weight: 600 !important;
}

.contact-error-popup {
    border-radius: 15px !important;
}

.contact-error-title {
    color: #333 !important;
    font-weight: 600 !important;
}

.contact-error-button {
    border-radius: 8px !important;
    padding: 10px 25px !important;
    font-weight: 600 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .help-page {
        padding: 20px 0;
    }

    .help-page-container {
        padding: 0 15px;
    }

    .help-page-content .row {
        flex-direction: column;
        gap: 20px;
    }

    .help-page-content-left,
    .help-page-content-right {
        max-width: 100%;
        flex: none;
    }

    .help-page-content-left img {
        height: 250px;
    }

    .contact-info {
        padding: 20px;
    }

    .help-page-content-right {
        padding: 30px 20px;
    }

    .contact-form-section h2 {
        font-size: 28px;
    }

    .phone-input {
        flex-direction: column;
        gap: 15px;
    }

    .country-code {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-form-section h2 {
        font-size: 24px;
    }

    .contact-item {
        padding: 12px;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
    }

    .contact-item span {
        font-size: 13px;
    }
}
