/* === CONTACT MODAL STYLES === */

.contact-modal .modal-content {
    max-width: 600px;
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    border: 1px solid #333;
}

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

.contact-icon {
    margin-bottom: 15px;
}

.contact-icon i {
    font-size: 3rem;
    color: #4a90e2;
    background: rgba(74, 144, 226, 0.1);
    padding: 20px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-header h2 {
    margin: 0;
    color: #4a90e2;
    font-size: 2rem;
}

.contact-intro {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 30px;
    color: #ccc;
    line-height: 1.6;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(74, 144, 226, 0.05);
    border-radius: 10px;
    border-left: 4px solid #4a90e2;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateX(5px);
}

.contact-method-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #4a90e2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-method-text {
    flex: 1;
}

.contact-method-text h4 {
    margin: 0 0 8px 0;
    color: #4a90e2;
    font-size: 1.2rem;
    font-family: 'Nunito Sans', sans-serif;
}

.contact-method-text p {
    margin: 0 0 10px 0;
    color: #ccc;
    font-size: 0.95rem;
}

.contact-email, .contact-phone {
    color: #4a90e2;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 8px 16px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 25px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

.contact-email:hover, .contact-phone:hover {
    background: #4a90e2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.contact-cta {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #333;
}

.contact-cta strong {
    color: #4a90e2;
}

.contact-suggestions {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.contact-suggestions li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #ccc;
}

.contact-suggestions li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
    font-size: 1.1rem;
}

.contact-response-time {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-style: italic;
    color: #999;
    text-align: center;
    font-size: 0.95rem;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .contact-modal .modal-content {
        margin: 20px;
        padding: 20px;
    }
    
    .contact-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-icon i {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
        padding: 15px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-method-icon {
        align-self: center;
    }
    
    .contact-intro {
        font-size: 1rem;
    }
    
    .contact-cta {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .contact-email, .contact-phone {
        font-size: 1rem;
        padding: 6px 12px;
    }
    
    .contact-suggestions li {
        font-size: 0.95rem;
    }
}