/* Contact Page Styles */

.contact-hero {
    background: linear-gradient(135deg, #0dcaf0 0%, #7c3aed 100%);
    padding: 80px 0 60px;
    color: white;
    margin-bottom: 0;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-hero .lead {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 50px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    border-color: #0dcaf0;
    box-shadow: 0 15px 50px rgba(13, 202, 240, 0.15);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form-title {
    color: #030303;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-form-description {
    color: #6b7280;
    font-size: 1.1rem;
}

.form-label {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #0dcaf0;
    box-shadow: 0 0 0 3px rgba(13, 202, 240, 0.1);
}

.btn-submit {
    background: linear-gradient(135deg, #0dcaf0 0%, #7c3aed 100%);
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(13, 202, 240, 0.3);
    color: white;
}

.info-cards {
    margin-top: 50px;
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 2px solid #e5e7eb;
    height: 100%;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #0dcaf0;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(13, 202, 240, 0.15);
}

.info-card-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #0dcaf0 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.info-card h4 {
    color: #030303;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.info-card p {
    color: #6b7280;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #030303;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 60px;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #0dcaf0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: white;
    box-shadow: 0 4px 16px rgba(13, 202, 240, 0.1);
}

.faq-item h5 {
    color: #030303;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item h5 i {
    color: #0dcaf0;
    margin-right: 10px;
}

.faq-item p {
    color: #4b5563;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item a {
    color: #0dcaf0;
    font-weight: 600;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Honeypot field - hidden from humans */
.form-field-hp {
    position: absolute;
    left: -5000px;
    opacity: 0;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero .lead {
        font-size: 1.1rem;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}
