/* MÀU SẮC CHỦ ĐẠO DỰA TRÊN LOGO & TÂM LÝ HỌC */
:root {
    --primary: #F39C12; /* Vàng cam đậm - Màu của mặt trời, sự ấm áp */
    --primary-light: #FAD7A1;
    --secondary: #27AE60; /* Xanh lá - Màu của sự sống, chữa lành */
    --accent: #E74C3C; /* Đỏ san hô nhẹ - Điểm nhấn */
    
    --bg-main: #FCFBF8; /* Cảm giác mềm mại, không chói mắt */
    --bg-warm: #FFF9ED; /* Nền khối màu ấm áp */
    
    --text-dark: #2C3E50;
    --text-p: #556B8D;
    --white: #FFFFFF;
    
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Quicksand', sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-p);
    max-width: 600px;
    margin: 0 auto;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #D35400);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(243, 156, 18, 0.4);
}

.btn-large {
    width: 100%;
    padding: 18px 32px;
    font-size: 1.2rem;
}

.btn i {
    margin-left: 8px;
}

/* NAVBAR (NEW) */
.navbar {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    color: var(--text-dark);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.95rem;
}

/* 1. HERO SECTION */
.hero {
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.5;
    z-index: -1;
    border-radius: 50%;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--bg-warm);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--primary-light);
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-p);
    margin-bottom: 30px;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 30px 30px 10px 30px;
    border: 8px solid white;
    box-shadow: var(--shadow);
    overflow: visible;
    max-width: 400px;
}

.image-frame img {
    border-radius: 22px 22px 2px 22px;
    display: block;
    width: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    bottom: 20px;
    left: -30px;
    background: white;
    padding: 12px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.floating-card i {
    color: var(--accent);
}

/* PLACEHOLDER STYLES (ĐỂ KHUNG ẢNH KHÔNG BỊ RỖNG MÀ CÓ VIỀN NÉT ĐỨT) */
.image-frame.has-placeholder {
    background-color: var(--bg-warm);
    border: 8px dashed var(--primary-light);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame-circle.has-placeholder {
    background-color: var(--bg-warm);
    border: 8px dashed var(--primary-light);
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.has-placeholder img {
    display: none !important;
}

.placeholder-overlay {
    display: none;
}

.has-placeholder .placeholder-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-align: center;
    width: 100%;
}

.has-placeholder .placeholder-overlay i {
    font-size: 4rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.has-placeholder .placeholder-overlay p {
    font-weight: 600;
    opacity: 0.7;
}

/* 2. PAIN POINTS */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pain-card {
    background: white;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.pain-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--accent);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.icon-box.red { background: #FDEDEC; color: var(--accent); }
.icon-box.gold { background: #FEF5E7; color: var(--primary); }
.icon-box.green { background: #EAFAF1; color: var(--secondary); }
.icon-box.blue { background: #EBF5FB; color: #3498DB; }

.pain-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.pain-card p {
    font-size: 0.95rem;
    color: var(--text-p);
}

.empathy-box {
    background-color: var(--bg-warm);
    padding: 20px 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* 3. SOLUTIONS */
.bg-warm {
    background-color: var(--bg-warm);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.solution-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.solution-card.active {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--bg-warm);
    line-height: 1;
}

.solution-card h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.solution-card .subtitle {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
    font-style: italic;
}

.solution-card ul {
    list-style: none;
}

.solution-card li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-p);
}

.solution-card li i {
    color: var(--secondary);
    margin-top: 4px;
}

.solution-card .price-tag {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px dashed #E5E7EB;
    color: var(--text-p);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.solution-card .price-tag i {
    color: #BDC3C7;
    font-size: 0.9rem;
}

.solution-card .price-tag small {
    color: #95A5A6;
    font-size: 0.8rem;
    font-weight: normal;
}

/* 4. BENEFITS */
.benefits-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.benefits-image {
    flex: 1;
    position: relative;
}

.image-frame-circle {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 3 / 4;
    height: auto;
    border-radius: 150px 150px 20px 20px;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: var(--shadow);
    margin: 0 auto;
}

.image-frame-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Tăng độ zoom và đẩy ảnh lên trên nhiều hơn */
    transform: scale(1.2) translateY(-8%);
}

.quote-box {
    position: absolute;
    bottom: -45px;
    right: -25px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 250px;
    border-top: 4px solid var(--primary);
}

.quote-box i {
    color: var(--primary-light);
    font-size: 2rem;
    margin-bottom: 10px;
}

.quote-box p {
    font-style: italic;
    font-size: 0.95rem;
}

.expert-name-sign {
    margin-top: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-dark);
    text-align: right;
}

.benefits-content {
    flex: 1;
}

.benefits-content h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.check-icon {
    width: 30px;
    height: 30px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.benefit-list h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.benefit-list p {
    color: var(--text-p);
}

/* 5. TESTIMONIALS (PHẢN HỒI KHÁCH HÀNG) */
.testimonials .grid-3 {
    gap: 40px;
}

.review-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    border-top: 4px solid var(--primary);
}

.review-card::before {
    content: '\f10d'; /* FontAwesome quote-left */
    font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.8;
}

.stars {
    color: #F1C40F; /* Màu vàng sao */
    margin-bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
    min-height: 140px;
    line-height: 1.7;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #EEEEEE;
    padding-top: 20px;
}

.reviewer .avatar i {
    font-size: 3.5rem;
    color: #BDC3C7;
}

.reviewer-info strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: #7F8C8D;
}

/* 7. VỀ CHUYÊN GIA */
.about-container { display: flex; gap: 50px; align-items: center; }
.about-image { flex: 0 0 350px; display: flex; justify-content: center; }
.about-content { flex: 1; }
.about-content p { margin-bottom: 20px; font-size: 1.1rem; color: var(--text-dark); line-height: 1.7; }

/* 8. CÂU HỎI THƯỜNG GẶP (FAQ) */
.faq-container { max-width: 850px; margin: 0 auto; }
.faq-item {
    background: white; padding: 25px 30px; border-radius: 12px;
    box-shadow: var(--shadow); border-left: 4px solid var(--primary);
    margin-bottom: 20px; transition: var(--transition);
}
.faq-item:hover { transform: translateX(5px); }
.faq-item h4 { font-size: 1.15rem; color: var(--text-dark); margin-bottom: 12px; }
.faq-item h4 i { color: var(--primary); margin-right: 8px; }
.faq-item p { color: var(--text-p); font-size: 1rem; }

/* 9. CTA VÀ CAM KẾT VÀ BỐ CỤC */
.cta-section {
    background: linear-gradient(135deg, #FFF9ED, #FFEEC0);
}
.commit-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.commit-item { display: flex; gap: 20px; margin-bottom: 25px; }
.commit-icon {
    width: 60px; height: 60px; background: white; color: var(--secondary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; flex-shrink: 0; box-shadow: var(--shadow);
}
.commit-item h4 { font-size: 1.15rem; margin-bottom: 5px; color: var(--text-dark); }
.commit-item p { color: var(--text-p); font-size: 0.95rem; }

.cta-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.1);
}

.cta-box h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.cta-box > p {
    margin-bottom: 25px;
    color: var(--text-p);
}

.offer-box {
    background: #FEF5E7;
    padding: 15px;
    border-radius: 10px;
    border: 1px dashed var(--primary);
    margin-bottom: 30px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.offer-box i {
    color: var(--accent);
    margin-right: 5px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input {
    padding: 16px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus {
    border-color: var(--primary);
}

/* FOOTER */
footer {
    background: #2C3E50;
    color: white;
    padding: 40px 0 20px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

footer p {
    color: #BDC3C7;
    margin-bottom: 20px;
}

.copyright {
    border-top: 1px solid #34495E;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* FLOATING YOUTUBE BUTTON */
.floating-youtube-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #E74C3C, #C0392B);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: 2px solid white;
}

.floating-youtube-btn strong {
    font-weight: 800;
}

.floating-youtube-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.6);
    color: white;
}

/* FLOATING ZALO BUTTON */
.floating-zalo-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 9999;
}

.zalo-pulse {
    width: 65px;
    height: 65px;
    background-color: #0068FF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.15rem;
    box-shadow: 0 4px 15px rgba(0, 104, 255, 0.4);
    animation: zalo-ripple 1.5s infinite;
    position: relative;
    border: 2px solid white;
}

.zalo-text {
    background: white;
    color: #0068FF;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
    pointer-events: none;
    border: 1px solid #0068FF;
    white-space: nowrap;
}

.floating-zalo-btn:hover .zalo-text {
    opacity: 1;
    transform: translateX(0);
}

@keyframes zalo-ripple {
    0% { box-shadow: 0 0 0 0 rgba(0, 104, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 104, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 104, 255, 0); }
}

@media (max-width: 992px) {
    .grid-2 { grid-template-columns: 1fr; }
    .hero-container, .benefits-container, .about-container, .commit-cta-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-container .section-header, .about-container .empathy-box, .commitments-content {
        text-align: center !important;
    }
    .commit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .floating-card { left: 20px; }
    .benefit-list li { text-align: left; }
}

@media (max-width: 768px) {
    .hero-content h1, .benefits-content h2 { font-size: 2rem; }
    .section-header h2 { font-size: 1.8rem; }
    .cta-box { padding: 30px 20px; text-align: center; }
    .floating-youtube-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    .floating-zalo-btn {
        bottom: 20px;
        left: 20px;
    }
    .zalo-pulse {
        width: 55px;
        height: 55px;
        font-size: 1rem;
    }
    .zalo-text {
        display: none;
    }
}
