/* Hiệu ứng hover cho hình ảnh card */
.home-card-img, .home-card-img-udhh {
    position: relative;
    overflow: hidden;
}
.home-card-img img,
.home-card-img-udhh img {
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s;
}
.home-card:hover .home-card-img img,
.udhh-card:hover .home-card-img-udhh img {
    transform: scale(1.07) rotate(-1deg);
    box-shadow: 0 8px 32px 0 rgba(30,136,229,0.13);
    z-index: 2;
}
/* Ưu đãi hàng hãng - điểm nhấn */
.udhh-section-title {
    margin-bottom: 2.2rem;
}
.udhh-title {
    font-size: 2.3rem;
    font-weight: 900;
    color: #1976d2;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.udhh-title-underline {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #1976d2 60%, #64b5f6 100%);
    border-radius: 2px;
    margin-bottom: 0.5rem;
}
.udhh-card {
    border-radius: 1.25rem;
    box-shadow: 0 2px 12px 0 rgba(30,136,229,0.07);
    background: #f8fafd;
    transition: box-shadow 0.2s, transform 0.2s;
}
.udhh-card:hover {
    box-shadow: 0 8px 32px 0 rgba(30,136,229,0.13);
    transform: translateY(-4px) scale(1.03);
}
.udhh-card-title {
    font-size: 1.7rem;
    font-weight: 900;
    color: #1976d2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.2rem;
    margin-bottom: 0;
    line-height: 1.1;
}
.udhh-card .home-card-body {
    padding-top: 0.7rem !important;
    padding-bottom: 0.7rem !important;
}
/* Company Info Section - Card & Features */
.company-title-highlight {
    color: #1976d2;
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(30,136,229,0.08);
}
.company-title-underline-full {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #1976d2 60%, #64b5f6 100%);
    border-radius: 3px;
}
.company-info-card { 
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
}
.company-desc {
    font-size: 1.25rem;
    color: #333;
    max-width: 700px;
    line-height: 1.7;
    text-align: center;
}
.company-feature-row {
    margin-top: 2rem;
}
.company-feature-card {
    background: #f8fafd;
    border-radius: 1.25rem;
    box-shadow: 0 2px 12px 0 rgba(30,136,229,0.07);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 240px;
}
.company-feature-card:hover {
    box-shadow: 0 8px 32px 0 rgba(30,136,229,0.13);
    transform: translateY(-4px) scale(1.03);
}
.company-feature-icon {
    font-size: 2.7rem;
    color: #1976d2;
    margin-bottom: 0.5rem;
}
.company-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1976d2;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.company-feature-desc {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
}
/* Ưu đãi hàng hãng */
.home-card-img-udhh {
    border-radius: 1rem 1rem 0 0;
    overflow: hidden;
    background: #f6f8fa;
}
.home-card-img-udhh-img {
    object-fit: cover;
    aspect-ratio: 4/3;
    min-height: 180px;
    width: 100%;
    height: auto;
    display: block;
}
.home-card-title-udhh {
    font-size: 1.45rem;
    font-weight: 700;
    word-break: break-word;
    color: #222;
    letter-spacing: 1px;
    text-transform: uppercase;
}
/* Modern Home Slider1 Styles */
.home-card {
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(80, 80, 120, 0.08);
    overflow: visible;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    position: relative;
    transition: box-shadow 0.2s;
    border: none;
}
.home-card:hover {
    box-shadow: 0 8px 32px rgba(80, 80, 120, 0.16);
}
.home-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    background: #f6f8fa;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.home-card-title {
    font-size: 1.41rem;
    font-weight: 700;
    color: #23235a;
    margin-bottom: 12px;
    word-break: break-word;
}
.home-card-body {
    flex: 1 1 auto;
    padding: 32px 16px 0 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 120px;
}
.home-toggle-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #f2f2f2;
    box-shadow: 0 2px 8px rgba(80,80,120,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ff2d2d;
    margin: 0 auto 8px auto;
    transition: background 0.2s, box-shadow 0.2s;
    position: absolute;
    left: 50%;
    bottom: -28px;
    transform: translateX(-50%);
    z-index: 2;
}
.home-toggle-btn:hover {
    background: #ffeaea;
    box-shadow: 0 4px 16px rgba(255,45,45,0.08);
}
.home-card-body { position: relative; }
.home-collapse-content {
    position: relative;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.4s;
    margin-top: 0;
    padding: 0 16px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}
.home-collapse-content.open {
    max-height: 400px;
    padding: 24px 16px 16px 16px;
}
.home-card-text {
    color: #23235a;
    font-size: 1rem;
    margin: 0 0 0 0;
    line-height: 1.6;
}
@media (max-width: 991px) {
    .home-card-img { aspect-ratio: 16/9; }
}
@media (max-width: 767px) {
    .home-card-img { aspect-ratio: 4/3; }
    .home-card { min-height: 320px; }
    .home-card-body { padding: 20px 8px 0 8px; }
}
