/* Contact Page Styles */

/* Contact Section Styles */
.contact-section {
    padding: 40px 0;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E3D6B;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(30, 61, 107, 0.1);
    border: 1px solid rgba(30, 61, 107, 0.1);
    max-width: 600px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(30, 61, 107, 0.15);
}

.contact-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #F8606A;
}

.company-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1E3D6B;
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(248, 96, 106, 0.05);
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.contact-item:hover {
    background: rgba(248, 96, 106, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 30px;
    text-align: center;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-weight: 600;
    color: #1E3D6B;
    font-size: 0.95rem;
}

.contact-value {
    color: #333;
    font-size: 1rem;
    line-height: 1.4;
}

.contact-email {
    color: #F8606A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #1E3D6B;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .contact-card {
        padding: 25px;
        margin: 0 15px;
    }

    .contact-header h3 {
        font-size: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact-info {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }
}