.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-info-box {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.contact-info-item:hover {
    background: #e9ecef;
    transform: translateY(-3px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #4CAF50;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-icon i {
    color: white;
    font-size: 20px;
}

.contact-caption h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-caption p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.contact-title {
    color: #333;
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: left;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.boxed-btn {
    background: #4CAF50;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.boxed-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.social-links {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.social-links h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons li a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons li a:hover {
    background: #45a049;
    transform: translateY(-2px);
}



.invalid-feedback {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
}

@media (max-width: 991px) {
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-caption h4 {
        font-size: 1rem;
    }
    
    .contact-caption p {
        font-size: 0.9rem;
    }
    
    .social-links {
        margin-top: 15px;
    }
    
    .map-section {
        margin-top: 20px;
    }
}
