/* 
    #40b968 main color
*/

.pageAll {
    background-color: #ffffff;
}


 
.contact-info-card,
.contact-form-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-info-card h4,
.contact-form-card h4 {
    color: #40b968;
    font-weight: bold;
    padding-bottom: 15px;
    border-bottom: 3px solid #40b968;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(64, 185, 104, 0.2);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #40b968 0%, #2d8a4d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.contact-details h5 {
    color: #333;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.contact-details p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: #40b968;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #2d8a4d;
    text-decoration: underline;
}

.social-links h5 {
    color: #333;
    font-weight: bold;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #40b968;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #2d8a4d;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(64, 185, 104, 0.4);
    color: white;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #40b968;
    box-shadow: 0 0 0 0.2rem rgba(64, 185, 104, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, #40b968 0%, #2d8a4d 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(64, 185, 104, 0.4);
    background: linear-gradient(135deg, #2d8a4d 0%, #40b968 100%);
}

.map-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container h4 {
    color: #40b968;
    font-weight: bold;
    padding-bottom: 15px;
    border-bottom: 3px solid #40b968;
}

.map-container iframe {
    border-radius: 10px;
}

/* Toast Notification Styles */
.jq-toast-single {
    border-radius: 8px;
    font-family: inherit;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-info-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .textHeader {
        font-size: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .social-links .d-flex {
        justify-content: center;
    }
}
