/* ========================================================
   CUSTOM CSS FOR HOMEPAGE (THU MUA TRAM BIEN AP)
   ======================================================== */

/* Biến màu sắc toàn cục */
:root {
    --yellow: #F5A800;
    --yellow-light: #FFF3CC;
    --dark: #1A1A2E;
    --dark2: #16213E;
    --mid: #2D3561;
    --accent: #E94560;
    --wire-bg: #F0F2F8;
    --wire-block: #E2E6F0;
    --wire-border: #C5CCE0;
    --wire-text: #7A85A3;
    --wire-label: #3D4770;
    --green: #22C55E;
}

/* HERO SECTION */
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(245,168,0,0.15); border: 1px solid rgba(245,168,0,0.4);
    color: var(--yellow); padding: 6px 14px; border-radius: 20px;
    font-size: 13px; font-weight: 600; margin-bottom: 18px;
}
.hero-dot { width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; }
.hero-h1 { font-size: 42px; font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 15px; }
.hero-h1 .hl { color: var(--yellow); }
.hero-h1 .hl2 { color: var(--accent); }
.hero-sub { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.6; margin-bottom: 30px; }
.hero-trust { display: flex; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
.hero-trust span { color: rgba(255,255,255,0.8); font-size: 14px; display: flex; align-items: center; gap: 6px; }

/* SERVICES GRID */
.section-eyebrow { font-size: 13px; font-weight: 700; color: var(--yellow); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.section-title { font-size: 32px; font-weight: 900; color: var(--dark); margin-bottom: 15px; }
.section-title span { color: var(--accent); }
.section-desc { color: var(--wire-text); font-size: 16px; max-width: 600px; margin: 0 auto; line-height: 1.6; }

.service-card {
    background: var(--wire-bg); border-radius: 12px; padding: 30px 20px;
    border: 2px solid var(--wire-block); transition: all 0.3s; position: relative; height: 100%;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.service-card.featured { background: var(--dark); border-color: var(--yellow); }
.service-card.featured .svc-title { color: #fff; }
.service-card.featured .svc-desc { color: rgba(255,255,255,0.6); }
.service-card.featured .svc-link { color: var(--yellow); }

.hot-tag {
    position: absolute; top: -12px; right: 20px; background: var(--accent);
    color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 10px;
}
.svc-icon {
    width: 50px; height: 50px; background: rgba(245,168,0,0.15); border-radius: 10px;
    margin-bottom: 15px; display: flex; align-items: center; justify-content: center;
    font-size: 24px; border: 1px solid rgba(245,168,0,0.3);
}
.svc-title { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.svc-desc { font-size: 14px; color: var(--wire-text); line-height: 1.6; margin-bottom: 15px; }
.svc-link { font-size: 14px; font-weight: 700; color: var(--accent); }

/* WHY US */
.why-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.why-num {
    width: 40px; height: 40px; background: var(--yellow); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 900; color: #000; flex-shrink: 0;
}
.why-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 5px; line-height:1.2;}
.why-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* PRICE TABLE */
.price-table { width: 100%; border-collapse: collapse; margin-top: 30px; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.price-table th { background: var(--dark); color: #fff; padding: 15px 20px; font-size: 15px; font-weight: 700; text-align: left; }
.price-table td { padding: 15px 20px; font-size: 14px; color: var(--dark); border-bottom: 1px solid var(--wire-block); background: #fff; }
.price-table tr:nth-child(even) td { background: var(--wire-bg); }
.price-highlight { color: var(--accent); font-weight: 800; font-size: 16px; }

/* PROCESS STEPS */
.process-step { text-align: center; padding: 20px; }
.step-circle {
    width: 80px; height: 80px; border-radius: 50%; background: #fff;
    border: 3px solid var(--wire-border); margin: 0 auto 15px;
    display: flex; align-items: center; justify-content: center; flex-direction: column;
}
.step-circle.active { background: var(--yellow); border-color: var(--yellow); }
.step-num { font-size: 12px; color: var(--wire-text); font-weight:bold;}
.step-circle.active .step-num { color: #000; }
.step-icon { font-size: 28px; }
.step-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.step-desc { font-size: 14px; color: var(--wire-text); line-height: 1.6; }

/* AREAS */
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.area-tag { background: var(--wire-bg); border: 1px solid var(--wire-border); color: var(--dark); padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; }
.area-tag.hot { background: var(--dark); color: var(--yellow); border-color: var(--dark); }

/* TESTIMONIALS */
.testi-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 25px; height:100%; }
.testi-card .stars { color: var(--yellow); font-size: 16px; margin-bottom: 15px; }
.testi-text { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 20px; font-style: italic; }
.author-name { font-size: 15px; font-weight: 700; color: #fff; }
.author-role { font-size: 13px; color: rgba(255,255,255,0.5); }


/* ========================================================
   CUSTOM CSS FOR HOMEPAGE (THU MUA TRAM BIEN AP)
   ======================================================== */
:root {
    --yellow: #F5A800;
    --yellow-light: #FFF3CC;
    --dark: #1A1A2E;
    --dark2: #16213E;
    --mid: #2D3561;
    --accent: #E94560;
    --wire-bg: #F0F2F8;
    --wire-block: #E2E6F0;
    --wire-border: #C5CCE0;
    --wire-text: #7A85A3;
    --wire-label: #3D4770;
    --green: #22C55E;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(245,168,0,0.15); border: 1px solid rgba(245,168,0,0.4);
    color: var(--yellow); padding: 6px 14px; border-radius: 20px;
    font-size: 13px; font-weight: 600; margin-bottom: 18px;
}
.hero-dot { width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; }
.hero-h1 { font-size: 42px; font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 15px; }
.hero-h1 .hl { color: var(--yellow); }
.hero-h1 .hl2 { color: var(--accent); }
.hero-sub { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.6; margin-bottom: 30px; }
.hero-trust { display: flex; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
.hero-trust span { color: rgba(255,255,255,0.8); font-size: 14px; display: flex; align-items: center; gap: 6px; }

.section-eyebrow { font-size: 13px; font-weight: 700; color: var(--yellow); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.section-title { font-size: 32px; font-weight: 900; color: var(--dark); margin-bottom: 15px; }
.section-title span { color: var(--accent); }
.section-desc { color: var(--wire-text); font-size: 16px; max-width: 600px; margin: 0 auto; line-height: 1.6; }

.service-card {
    background: var(--wire-bg); border-radius: 12px; padding: 30px 20px;
    border: 2px solid var(--wire-block); transition: all 0.3s; position: relative; height: 100%;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.service-card.featured { background: var(--dark); border-color: var(--yellow); }
.service-card.featured .svc-title { color: #fff; }
.service-card.featured .svc-desc { color: rgba(255,255,255,0.6); }
.service-card.featured .svc-link { color: var(--yellow); }

.hot-tag {
    position: absolute; top: -12px; right: 20px; background: var(--accent);
    color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 10px;
}
.svc-icon {
    width: 50px; height: 50px; background: rgba(245,168,0,0.15); border-radius: 10px;
    margin-bottom: 15px; display: flex; align-items: center; justify-content: center;
    font-size: 24px; border: 1px solid rgba(245,168,0,0.3);
}
.svc-title { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.svc-desc { font-size: 14px; color: var(--wire-text); line-height: 1.6; margin-bottom: 15px; }
.svc-link { font-size: 14px; font-weight: 700; color: var(--accent); }

.why-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.why-num {
    width: 40px; height: 40px; background: var(--yellow); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 900; color: #000; flex-shrink: 0;
}
.why-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 5px; line-height:1.2;}
.why-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

.price-table { width: 100%; border-collapse: collapse; margin-top: 30px; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.price-table th { background: var(--dark); color: #fff; padding: 15px 20px; font-size: 15px; font-weight: 700; text-align: left; }
.price-table td { padding: 15px 20px; font-size: 14px; color: var(--dark); border-bottom: 1px solid var(--wire-block); background: #fff; }
.price-table tr:nth-child(even) td { background: var(--wire-bg); }
.price-highlight { color: var(--accent); font-weight: 800; font-size: 16px; }

.process-step { text-align: center; padding: 20px; }
.step-circle {
    width: 80px; height: 80px; border-radius: 50%; background: #fff;
    border: 3px solid var(--wire-border); margin: 0 auto 15px;
    display: flex; align-items: center; justify-content: center; flex-direction: column;
}
.step-circle.active { background: var(--yellow); border-color: var(--yellow); }
.step-num { font-size: 12px; color: var(--wire-text); font-weight:bold;}
.step-circle.active .step-num { color: #000; }
.step-icon { font-size: 28px; }
.step-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.step-desc { font-size: 14px; color: var(--wire-text); line-height: 1.6; }

.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.area-tag { background: var(--wire-bg); border: 1px solid var(--wire-border); color: var(--dark); padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; }
.area-tag.hot { background: var(--dark); color: var(--yellow); border-color: var(--dark); }

.testi-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 25px; height:100%; }
.testi-card .stars { color: var(--yellow); font-size: 16px; margin-bottom: 15px; }
.testi-text { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 20px; font-style: italic; }
.author-name { font-size: 15px; font-weight: 700; color: #fff; }
.author-role { font-size: 13px; color: rgba(255,255,255,0.5); }

