
/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #0060df 0%, #4d8cff 100%);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
    color: #0060df;
    margin-bottom: 30px;
    font-size: 28px;
}

.contact-method {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    background-color: #f8f9fa;
    color: #0060df;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
}

.contact-details h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.contact-details p {
    color: #495057;
}

.social-links-contact {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #0060df;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link-contact:hover {
    background-color: #0060df;
    color: #ffffff;
}

.contact-form-container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
    color: #0060df;
    margin-bottom: 30px;
    font-size: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group .formgrp {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group .form-control {
    color: black;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    border: 1px solid #374151;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #0060df;
    outline: none;
}

.form-control.error {
    border-color: #dc3545;
}
    
textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background-color: #0060df;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background-color: #0044b3;
}

.error-text {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #0060df;
    font-size: 36px;
    margin-bottom: 15px;
}

.section-header p {
    color: #495057;
    max-width: 700px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: #0060df;
    margin-bottom: 10px;
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* CAPTCHA Styles */
.captcha-group {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #e9ecef;
}

.captcha-question {
    font-size: 18px;
    font-weight: 600;
    color: #4361ee;
    margin-bottom: 10px;
    padding: 10px;
    background: white;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.form-text {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #6c757d;
}

/* Honeypot */
.honeypot {
    display: none !important;
    position: absolute;
    left: -9999px;
}



