/* --- Phần Bản Đồ --- */
.map-full-width {
    width: 100%;
    height: 450px;
    /* Bạn có thể điều chỉnh chiều cao */
}

.map-full-width iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Phần Nội Dung --- */
.contact-content {
    padding: 60px 0;
}

/* --- Thông tin liên hệ --- */
.info-section {
    text-align: center;
    margin-bottom: 50px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item i {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 10px;
    display: block;
}

.info-item h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.info-item p {
    margin: 0;
    color: #6c757d;
}

/* --- Nút Mạng Xã Hội --- */
.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-btn i {
    font-size: 1.2rem;
    margin-right: 8px;
    color: #fff !important;
    /* Ghi đè màu icon */
    margin-bottom: 0;
    display: inline;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.facebook-btn {
    background-color: #1877F2;
}

.tiktok-btn {
    background-image: linear-gradient(to right, #ff0050, #00f2ea, #000000);
    background-size: 200% auto;
}

.tiktok-btn:hover {
    background-position: right center;
}

/* --- Form Đăng Ký Tư Vấn --- */
.form-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
    border-radius: 15px;
}

.form-section h2 {
    text-align: center;
    font-weight: 700;
    color: #28a745;
    /* Màu xanh lá cây */
    margin-bottom: 40px;
}

.form-control {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #ced4da;
    border-radius: 0;
    padding: 10px 0;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    background-color: transparent;
    box-shadow: none;
    border-color: none !important;
}

.form-label {
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 0.2rem;
    /* Giảm khoảng cách dưới label */
}

.btn-submit {
    background-color: #28a745;
    border-color: #28a745;
    font-weight: 700;
    padding: 12px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #218838;
    border-color: #1e7e34;
    transform: translateY(-2px);
}