/* Contact Us Form (Shortcode) */

/* Style for disabled form */
.form-disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Contact Us Container */
.contact-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px; /* Increased padding for better spacing */
    background-color: #ffffff; /* White background */
    color: #333333; /* Darker text color for readability */
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333333; /* Darker color for readability */
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.contact-header p {
    font-size: 16px;
    color: #666666;
    font-family: 'Roboto', sans-serif;
}

/* Contact Content Layout */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

/* Contact Form Section */
.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: #f5f5f5; /* Light gray background for form section */
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0; /* Subtle border for contrast */
}

.contact-form h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333333; /* Darker color for readability */
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.contact-form .success-message {
    color: #00ff00;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.contact-form .error-message {
    color: #ff0000;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .captcha-group {
    margin-bottom: 20px;
}

.contact-form .captcha-group label {
    display: block;
    font-size: 14px;
    color: #333333;
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif;
}

.contact-form .captcha-group input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    color: #333333;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form .captcha-group input:focus {
    border-color: #0055ff;
    outline: none;
}

.contact-form label {
    display: block;
    font-size: 14px;
    color: #333333; /* Darker color for readability */
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    color: #333333; /* Darker text for input fields */
    background-color: #ffffff; /* White background for inputs */
    border: 1px solid #cccccc; /* Lighter border */
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease; /* Smooth transition for focus */
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0055ff; /* Highlight border on focus */
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: #0055ff;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

.contact-form button:hover {
    background-color: #0044b3; /* Slightly darker blue on hover */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow on hover */
}

.contact-form button:focus {
    outline: 2px solid #0044b3; /* Accessibility: Focus outline */
    outline-offset: 2px;
}

.contact-form button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    box-shadow: none;
}

/* Contact Info Section */
.contact-info {
    flex: 1;
    min-width: 300px;
    background-color: #f5f5f5; /* Light gray background for contact info section */
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0; /* Subtle border for contrast */
}

.contact-info h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333333; /* Darker color for readability */
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.contact-info ul li {
    font-size: 14px;
    color: #666666;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
}

.contact-info ul li strong {
    color: #333333; /* Darker color for readability */
}

.contact-info ul li a {
    color: #0055ff;
    text-decoration: none;
}

.contact-info ul li a:hover {
    text-decoration: underline;
}

.contact-info .social-links h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333333; /* Darker color for readability */
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.contact-info .social-links .social-icons {
    display: flex;
    gap: 10px;
}

.contact-info .social-links .social-icons a {
    font-size: 20px;
    color: #0055ff;
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth transition for hover */
}

.contact-info .social-links .social-icons a:hover {
    color: #0044b3; /* Slightly darker blue on hover */
}

.contact-info .social-links .social-icons a:focus {
    outline: 2px solid #0044b3; /* Accessibility: Focus outline */
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-form,
    .contact-info {
        min-width: 100%; /* Full width on smaller screens */
    }

    .contact-us-container {
        padding: 40px 20px; /* Reduced padding on smaller screens */
    }

    .contact-header h1 {
        font-size: 28px; /* Smaller heading on mobile */
    }

    .contact-form h2,
    .contact-info h2 {
        font-size: 20px; /* Smaller subheading on mobile */
    }
}
/* Submit Form Style */
.nexlify-contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.nexlify-contact-form h2 {
    background-color: red;
    color: #1e3a8a;
    padding: 20px;
    text-align: center;
    margin: -20px -20px 20px -20px;
    font-size: 28px;
}
.nexlify-contact-form h2 span {
    color: #00ced1;
    font-size: 16px;
    display: block;
    margin-top: 5px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    font-weight: bold;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.form-group button {
    background-color: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.form-group button:hover {
    background-color: #005d87;
}
#nexlify-response {
    margin-top: 10px;
    color: green;
}
