/* CSS đơn giản cho bản đồ Google Maps */

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Thêm hiệu ứng cho form liên hệ */
.contact-form .form-control {
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 12px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #9E8A78;
    box-shadow: 0 0 0 0.2rem rgba(158, 138, 120, 0.25);
}

.contact-form .btn-primary {
    background-color: #9E8A78;
    border-color: #9E8A78;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background-color: #8a7665;
    border-color: #8a7665;
    transform: translateY(-2px);
}

/* Thêm hiệu ứng cho thông tin liên hệ */
.contact-info-item {
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
}

.contact-info-item h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: #666;
    margin-bottom: 0.25rem;
}

.contact-info-item a {
    color: #666;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #9E8A78;
    text-decoration: none;
}

/* Thêm hiệu ứng cho social icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #9E8A78;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: #9E8A78;
    color: white;
    transform: translateY(-3px);
}

/* Màu nền khi hover giống footer */
.social-icons a.facebook:hover {
    background-color: #1877f2; /* Facebook blue */
}

.social-icons a.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); /* Instagram gradient */
}

.social-icons a.youtube:hover {
    background-color: #ff0000; /* YouTube red */
}

.social-icons a.tiktok:hover {
    background-color: #000000; /* TikTok black */
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form {
        margin-bottom: 2rem;
    }
}
