/* Reset định dạng cơ bản */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-image: url('image/background.png'); 
    background-size: cover;          
    background-position: center;     
    background-repeat: no-repeat;    
    background-attachment: fixed;    
    
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Card chứa thông tin, thiết kế mờ trong suốt (Glassmorphism) */
.profile-card {
    width: 100%;
    max-width: 480px; 
    
    /* Nền trong suốt hơn để nhìn rõ hoạ tiết ảnh nền phía sau */
    background-color: rgba(30, 41, 59, 0.25);
    

    
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    padding-bottom: 30px; /* Thu gọn nhẹ padding dưới để cân đối nút profile */
    
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 40px 20px;
}

/* PHẦN LOGO CÔNG TY (Đã tăng kích thước và mở rộng khoảng cách) */
.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
}

.company-logo {
    max-width: 290px; /* Tăng từ 180px lên 290px để logo to rộng và hoành tráng đúng mẫu */
    width: 100%;
    height: auto;
    display: block;
}

/* PHẦN ẢNH CHÂN DUNG */
.avatar-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 40px 20px 40px; 
}

.profile-avatar {
    width: 100%;
    max-width: 340px; 
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 4px; 
}

/* THÔNG TIN TÊN & LIÊN HỆ CHÍNH */
.info-section {
    padding: 10px 40px;
}

.name {
    font-size: 28px;
    font-weight: 200; 
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    color: #ffffff;
}

.title {
    font-size: 16px;
    font-weight: 200;
    color: #a0a5b0;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.contact-item {
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 6px;
    color: #a0a5b0;
}

.contact-item a {
    color: #a0a5b0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #ffffff;
}

/* CẤU TRÚC LƯỚI NỘI DUNG */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 60px; 
    gap: 20px;
    padding: 20px 40px 10px 40px;
}

/* Cột danh sách dịch vụ */
.services-column {
    display: flex;
    flex-direction: column;
    gap: 25px; 
}

.service-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-group div {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 1.2px;
    color: #8c93a0;
    line-height: 1.4;
}

/* Cột chứa bộ icon liên lạc lớn */
.icons-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 30px; 
    padding-top: 5px;
}

/* Định dạng các icon liên kết */
.icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #ffffff; 
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.9;
}

.icon-link svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.zalo-icon svg {
    fill: none;
}

.icon-link:hover {
    transform: scale(1.15); 
    opacity: 1;
}

/* PHẦN LIÊN KẾT COMPANY PROFILE Ở DƯỚI CÙNG */
.company-profile-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 40px 10px 40px; /* Khoảng cách thông thoáng phía dưới cùng */
}

.company-profile-btn {
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
    text-decoration: underline; /* Tạo gạch chân */
    text-underline-offset: 6px;  /* Khoảng cách từ chữ tới nét gạch chân rộng hơn một chút cho thoáng */
    text-decoration-thickness: 1px; /* Độ dày nét gạch chân mảnh tinh tế */
    letter-spacing: 2px; /* Giãn chữ sang trọng giống hình thiết kế */
    transition: color 0.2s ease, opacity 0.2s ease;
    opacity: 0.85;
}

.company-profile-btn:hover {
    opacity: 1;
    color: #d1d5db; /* Đổi màu nhẹ khi hover */
}