/* Container chính */
.newsletter-container {
    background: var(--color-deep-navy);
    padding: 15px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Tiêu đề */
.newsletter-container h3 {
    color: var(--color-white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;
    text-transform: uppercase;
}

/* Đoạn mô tả */
.newsletter-container p {
    color: var(--color-silver-blue);
    font-size: 13px;
    margin-bottom: 15px !important;
}

/* Layout Flexbox */
.newsletter-flex {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Box chứa input */
.newsletter-flex .input-field {
    flex: 1;
}

/* Định dạng ô input */
.newsletter-container input[type="email"] {
    width: 100%;
    background-color: var(--color-white);
    border: 1px solid #32446d;
    border-radius: 12px;
    color: var(--color-white);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-container input[type="email"]:focus {
    border-color: var(--color-teal);
}

/* Placeholder màu xám */
.newsletter-container input::placeholder {
    color: var(--color-slate-gray);
}

/* Định dạng nút Đăng ký */
.newsletter-container input[type="submit"] {
	font-family: 'Inter 24';
    background-color: var(--color-teal);
    color: var(--color-white);
	margin-right: 0;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.newsletter-container input[type="submit"]:hover {
    background-color: var(--color-indigo);
}

/* Loại bỏ margin mặc định của CF7 p tag */
.newsletter-container .wpcf7-form-control-wrap {
    display: block;
}
.newsletter-container .wpcf7-p {
    margin: 0;
}

.newsletter-container .wpcf7-spinner {
	display: none;
}

/* Responsive: Tương thích điện thoại */
@media (max-width: 600px) {
    .newsletter-flex .input-field,
    .newsletter-container input[type="submit"] {
        width: 100%;
    }
    
    .newsletter-container h3 {
        font-size: 15px;
    }
}

/* Ẩn các thông báo lỗi mặc định của CF7 nếu muốn gọn (tùy chọn) */
.wpcf7-response-output {
    margin: 15px 0 0 !important;
    color: var(--color-white) !important;
    font-size: 14px;
    border-radius: 8px;
}

/* Container chính */
.let-branch-wrapper {
    background: var(--color-deep-navy);
    color: var(--color-brand-white);
    margin: 0 auto;
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Phần chứa Icon */
.let-icon-column {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgb(0 0 0 / 10%);
    border-radius: 10px;
    margin-top: 3px;
}

.let-icon-column i {
    color: var(var(--color-white));
    font-size: 20px;
}

/* Phần nội dung chữ */
.let-info-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.let-heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.3;
}

.let-address-detail {
    font-size: 12px;
    line-height: 1.5;
    color: var(--color-brand-white);
    opacity: 0.9;
}

.let-hotline-row {
    font-size: 12px;
    margin-top: 2px;
}

.let-phone-numbers {
    font-weight: 600;
    color: var(--color-silver-blue);
    letter-spacing: 0.5px;
}

/* Cho điện thoại (Dưới 576px) */
@media (max-width: 576px) {
    .let-branch-wrapper {
        flex-direction: column;
    }

    .let-icon-column {
        margin-top: 0;
        margin-bottom: 5px;
        width: 50px;
        height: 50px;
    }

    .let-icon-column i {
        font-size: 24px;
    }

    .let-heading {
        font-size: 1.1rem;
    }
    
    .let-address-detail, .let-hotline-row {
        font-size: 0.95rem;
    }
}

/* GG map */
.ct-map-box {
	width: 100%;
	border-radius: 18px;
	border: 1px solid #e6e6e6;
	overflow: hidden;
	background: var(--color-white);
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.ct-map-box iframe {
	width: 100%;
	height: 200px;
	border: 0;
	display: block;
}

/* Responsive mobile */
@media (max-width: 768px) {
	.ct-map-box iframe {
		height: 200px;
	}
}

.menu-footer .ux-menu-link__link {
	color: var(--color-brand-white) !important;
	font-weight: 500;
	font-size: 15px;
}

.menu-footer .ux-menu-link__link:hover {
	color: var(--color-white) !important;
}