/* Contact Section Styling */

.contact-info-section {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-section h3 {
    color: #333;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.contact-item i {
    font-size: 20px;
    color: #e74c3c;
    margin-right: 15px;
    margin-top: 5px;
    width: 25px;
}

.contact-details h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 600;
}

.contact-details p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}



/* Form Styling */
#contactfrm {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#contactfrm .form-group {
    margin-bottom: 20px;
}

#contactfrm label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

#contactfrm .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

#contactfrm .form-control:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

#contactfrm .btn-primary {
    background: #2c3e50;
    border-color: #2c3e50;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

#contactfrm .btn-primary:hover {
    background: #34495e;
    border-color: #34495e;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .contact-info-section {
        margin-top: 30px;
    }
}