/* TẦM NHÌN */
.tam-nhin {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: var(--color-white);
    border: 1px solid #ececec;
    border-radius: 22px;
    padding: 15px;
    height: 100%;
    transition: .35s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .04);
	height: 340px;
}

.tam-nhin:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

/* icon */
.tam-nhin .icon-box-img {
    width: 70px !important;
    height: 70px;
    margin: 0 !important;
}

.tam-nhin .icon {
    width: 60px;
    height: 60px;
    background: #fff4e6;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s ease;
}

.tam-nhin .icon-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.tam-nhin .icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: .35s ease;
}

/* Hover đổi màu icon */
.tam-nhin:hover .icon {
    background: var(--color-main);
}

.tam-nhin:hover .icon img {
    filter: brightness(0) invert(1);
}

/* Nội dung */
.tam-nhin .icon-box-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
}

.tam-nhin h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-black);
    text-transform: uppercase;
}

.tam-nhin p {
    margin: 0;
    color: #4b5563;
    font-size: 15px;
}

/* Thẻ span dưới cùng */
.tam-nhin .icon-box-text>p:last-child {
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid #ececec;
}

.tam-nhin span {
    display: inline-block;
    background: #fff2e6;
    color: var(--color-main);
    font-size: 15px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 8px;
}

/* Tablet */
@media (max-width:991px) {
    .tam-nhin {
        padding: 25px;
        border-radius: 18px;
    }

    .tam-nhin h3 {
        font-size: 28px;
    }

    .tam-nhin p {
        font-size: 17px;
        line-height: 1.8;
    }
}

/* Mobile */
@media (max-width:767px) {
    .tam-nhin {
		height: auto;
    }

    .tam-nhin .icon-box-img,
    .tam-nhin .icon {
        width: 60px !important;
        height: 60px;
    }

    .tam-nhin .icon img {
        width: 28px;
        height: 28px;
    }

    .tam-nhin h3 {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .tam-nhin p {
        font-size: 15px;
        line-height: 1.75;
    }

    .tam-nhin span {
        font-size: 14px;
        padding: 6px 12px;
    }
}

/* ===== QUY TRÌNH ===== */
.quy-trinh {
    position: relative;
    background: #232323;
    border: 1px solid #3b3b3b;
    border-radius: 20px;
    padding: 15px;
    transition: all .35s ease;
    overflow: hidden;
	height: 220px;
}

/* Viền đổi màu khi hover */
.quy-trinh:hover {
    border-color: var(--color-main);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(224, 89, 0, .18);
}

/* Hiệu ứng nền nhẹ */
.quy-trinh::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(224, 89, 0, .08),
            transparent 45%);
    opacity: 0;
    transition: .35s;
    pointer-events: none;
}

.quy-trinh:hover::before {
    opacity: 1;
}

/* Số */
.quy-trinh h2 {
    font-size: 35px;
    line-height: 1;
    font-weight: 800;
    color: var(--color-main);
}

/* Tiêu đề */
.quy-trinh h3 {
    color: var(--color-white);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
}

/* Nội dung */
.quy-trinh p {
    margin: 0;
    color: #d7d7d7;
    font-size: 15px;
    line-height: 1.8;
}

/* Responsive Tablet */
@media (max-width: 1024px) {
	.quy-trinh {
		height: auto;
	}
	
    .quy-trinh h2 {
        font-size: 46px;
        margin-bottom: 18px;
    }

    .quy-trinh h3 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .quy-trinh p {
        font-size: 17px;
    }
}

/* Responsive Mobile */
@media (max-width: 768px) {
	.quy-trinh {
		height: auto;
	}
	
    .quy-trinh h2 {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .quy-trinh h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .quy-trinh p {
        font-size: 15px;
        line-height: 1.7;
    }
}