.tnc-hero {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: start;
    justify-content: center;
    overflow: hidden;
}

/* Lớp phủ màu tối phủ lên ảnh nền */
.tnc-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Độ tối của ảnh nền */
    display: flex;
    align-items: center;
}

.tnc-hero-title {
    color: #ff9800; /* Màu cam chủ đạo */
    font-size: clamp(3rem, 5vw, 5rem);;
    font-weight: 700;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Thanh đứng màu trắng bên trái chữ */
.vertical-line {
    display: inline-block;
    width: 8px;
    height: 60px; /* Chiều cao thanh đứng */
    background-color: #ffffff;
    margin-right: 20px;
}

/* Responsive cho điện thoại */
@media (max-width: 768px) {
    .tnc-hero {
        /* height: 250px; */
    }
    .tnc-hero-title {
        font-size: 2.5rem;
    }
    .vertical-line {
        height: 40px;
        width: 5px;
    }
}

.contact-section-container {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.contact-section-container *, 
.contact-section-container *::before, 
.contact-section-container *::after {
    box-sizing: border-box;
}

.contact-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #000000;
}

.contact-box-wrapper {
    display: flex;
    border: 1px solid #ff9800;
    background: #ffffff;
    min-height: 450px;
    border-radius: 20px;
    overflow: hidden;
}

/* Khối màu cam bên trái */
.info-panel-left {
    background-color: #ff9800;
    color: #ffffff;
    width: 38%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 1rem;
    border-radius: 20px;
}

.info-panel-left .logo-building {
    text-align: center;
    margin-bottom: 20px;
}

.info-panel-left .logo-building img {
    width: 100px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
}

.info-panel-left h2 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 15px;
    color: #ffffff;
}

.info-panel-left p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Khối form điền bên phải */
.form-panel-right {
    width: 62%;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.form-input-group {
    margin-bottom: 25px;
}

.form-panel-right input,
.form-panel-right textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    outline: none;
    font-size: 15px;
    color: #333333;
    background: transparent;
}

.form-panel-right input:focus,
.form-panel-right textarea:focus {
    border-bottom: 1px solid #ff9800;
}

.form-panel-right input::placeholder,
.form-panel-right textarea::placeholder {
    color: #cccccc;
}

.form-panel-right textarea {
    height: 60px;
    resize: none;
}

.btn-submit-center {
    text-align: center;
    margin-top: 20px;
}

.btn-custom-orange {
    background-color: #ff9800;
    color: #ffffff;
    border: none;
    padding: 12px 60px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.btn-custom-orange:hover {
    background-color: #e68a00;
}

/* Responsive cho Mobile */
@media (max-width: 768px) {
    .contact-box-wrapper {
        flex-direction: column;
    }
    .info-panel-left, 
    .form-panel-right {
        width: 100%;
        padding: 30px 20px;
    }
}

/* Tổng quan section */
.tnc-map-section {
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

/* Khung giới hạn chiều rộng */
.map-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

/* Phần chữ tiêu đề */
.map-header {
    text-align: center;
    margin-bottom: 35px;
}

/* Khung bọc bản đồ - Tạo hiệu ứng bo góc và đổ bóng */
.map-wrapper {
    position: relative;
    width: 100%;
    /* Tạo tỷ lệ khung hình 16:9 hoàn hảo */
    aspect-ratio: 32 / 12; 
    
    border-radius: 16px; /* Bo góc mềm mại */
    overflow: hidden; /* Ép bản đồ bên trong phải bo góc theo */
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 
                0 8px 10px -6px rgba(0, 0, 0, 0.05); /* Đổ bóng nhẹ sang trọng */
    border: 1px solid #e2e8f0;
}

/* Định dạng cho iframe bản đồ bên trong */
.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; /* Xóa viền mặc định của iframe */
}

/* Tối ưu riêng cho màn hình điện thoại nhỏ */
@media (max-width: 768px) {
    .tnc-map-section {
        padding: 40px 0;
    }
    
    .map-header h2 {
        font-size: 24px;
    }
    
    /* Trên điện thoại thì đổi sang tỷ lệ 4:3 nhìn sẽ cao và dễ bấm hơn */
    .map-wrapper {
        aspect-ratio: 4 / 3; 
    }
}