/* Import Font: Tối ưu hóa bằng cách gọi cả Inter và Oswald trong một lần import */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Inter:wght@400;500;600;700&display=swap');

/* CUSTOM PROPERTIES (Hợp nhất tất cả các biến, ưu tiên giá trị mới nhất) */
:root {
    /* Base & Primary Colors (Ưu tiên giá trị cuối cùng) */
    --primary-blue: #004a80;    /* Xanh chủ đạo (cho FAQ, dots, Tailwind map) */
    --dark-blue: #003366;       /* Xanh đậm (cho FAQ hover, Tailwind map) */
    --accent-yellow: #ffc107;   /* Vàng nổi bật (cho Footer hover, FAQ border, Tailwind map) */
    --accent-red: #d90f23;      /* Đỏ nổi bật (cho Quality Stats title, Tailwind map) */
    --light-red: #f31a29;       /* Đỏ sáng (cho Tailwind map) */

    /* Biến giữ lại cho hiệu ứng viền EKE */
    --accent-blue: #1C74BB;     /* Màu xanh riêng biệt cho hiệu ứng viền góc */
    --border-thickness: 4px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f7f7f7;
}

/* TYPOGRAPHY & UTILITIES */
.font-oswald { font-family: 'Oswald', sans-serif; }

/* Tailwind Custom Color Mapping */
.bg-primary-blue { background-color: var(--primary-blue); }
.bg-dark-blue { background-color: var(--dark-blue); }
.text-accent-yellow { color: var(--accent-yellow); }
.text-accent-red { color: var(--accent-red); }
.text-light-red { color: var(--light-red); }
.faq-blue { background-color: var(--primary-blue); }

/* Animation cho nút CTA */
@keyframes pulse-shake {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.animate-pulse-shake {
    animation: pulse-shake 2s infinite ease-in-out;
}

/* ------------------------------------------- */
/* BACKGROUNDS & OVERLAYS */
/* ------------------------------------------- */

/* Header Background */
.header-bg {
    background-image: url('https://dienlanhquanglong.vn/wp-content/uploads/2025/09/nenbanner.jpg');
    background-size: cover;
    background-position: center;
}

/* Quality Stats Section Background (Parallax) */

.quality-stats-overlay {
    background-color: rgba(0, 0, 50, 0.7);
    padding-top: 4rem;
    padding-bottom: 4rem;
}
/* Title container for Quality Stats (sử dụng định nghĩa mới nhất) */
.quality-stats-title-bg {
    background-color: var(--accent-red);
    padding: 1rem 2rem;
}
.quality-stats-title-bg h2 {
    font-family: 'Oswald', sans-serif;
}

/* ------------------------------------------- */
/* UI COMPONENTS */
/* ------------------------------------------- */

/* Feature Icon Box (Hợp nhất: sử dụng styles chi tiết hơn) */
.service-icon-box {
    padding: 1.5rem;
    border-radius: 0.75rem; /* Cập nhật từ 0.5rem */
    background-color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-icon-box:hover {
    transform: translateY(-5px); /* Cập nhật từ -3px */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Service Card Wrapper (Hiệu ứng Viền Góc EKE) */
.service-card-wrapper {
    position: relative;
    z-index: 0;
    padding: 15px;
}
.service-card-wrapper::before,
.service-card-wrapper::after {
    content: "";
    position: absolute;
    background: var(--accent-blue);
    width: 0;
    height: var(--border-thickness);
    z-index: -1;
    transition: all 0.5s ease;
}
.service-card-wrapper::before {
    top: 5px;
    right: 5px;
}
.service-card-wrapper::after {
    bottom: 5px;
    left: 5px;
}
.service-card-wrapper:hover::before,
.service-card-wrapper:hover::after {
    width: 50%;
    height: 50%;
}

/* Service Card Content (Hợp nhất) */
.service-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0 1px 3px -2px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    border-radius: 1.875rem 0 0 0.75rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-radius 0.4s ease;
    border: none;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 0.75rem 0 1.875rem 0;
}
.service-image-container {
    overflow: hidden;
    height: 15rem; /* h-48 */
    position: relative;
}
.service-card img {
    transition: transform 0.4s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-card:hover img {
    transform: scale(1.08);
}
.service-card h3 {
    font-family: 'Oswald', sans-serif;
}

/* Testimonial Slider (Hợp nhất: sử dụng styles chi tiết hơn và thay biến màu) */
.testimonial-slider {
    overflow: hidden;
    position: relative;
}
.testimonial-content {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1.5rem;
}
.testimonial-card {
    min-width: 100%;
    flex-shrink: 0;
    background: #ffffff;
    padding: 2rem; /* Cập nhật từ 1.5rem */
    border-radius: 1rem; /* Cập nhật từ 0.75rem */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--primary-blue); /* Thay thế var(--color1) */
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem; /* Cập nhật từ 1rem */
}
.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb; /* Cập nhật từ #ccc */
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.6s ease; /* Cập nhật từ 0.3s */
}
.dot.active {
    background-color: var(--primary-blue); /* Cập nhật từ var(--accent-red) */
}

/* FAQ Styles (Thay biến màu) */
.faq-item {
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.faq-item-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    padding: 1rem 1.25rem;
    color: white;
    background-color: var(--primary-blue); /* Thay thế var(--color1) */
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.faq-item-title:hover {
    background-color: var(--dark-blue);
}
.faq-icon {
    transition: transform 0.3s ease;
    font-size: 1.25rem;
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #e6f1f8;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    padding: 0 1.25rem;
    color: #333;
}
.faq-content.active {
    max-height: 500px;
    padding: 1rem 1.25rem;
    border-left: 5px solid var(--accent-yellow);
}
.faq-icon.rotate {
    transform: rotate(45deg);
}
.faq-content p, .faq-content ul, .faq-content ol {
    margin-bottom: 1rem;
}

/* Footer Style */
.footer-link:hover {
    color: var(--accent-yellow);
    transform: translateX(5px);
}
