.elementor-13794 .elementor-element.elementor-element-d2a52a0{--display:flex;}/* Start custom CSS for html, class: .elementor-element-c1c7886 */*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue: #0066FF;
    --cyan: #00AEEF;
    --dark: #0F172A;
    --muted: #64748B;
    --light: #F5F8FF;
    --white: #ffffff;
    --text-mid: var(--muted);
    --border: rgba(0, 102, 255, .1);
    --grad: linear-gradient(135deg, var(--blue), var(--cyan));
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
}

/* ── Utilities ── */
.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.5rem;
    border-radius: .5rem;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: opacity .2s, background .2s, transform .15s;
    text-decoration: none;
}

.btn:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--white);
    color: var(--blue);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .1);
}

.btn-blue {
    background: var(--grad);
    color: var(--white);
}

.btn-blue-outline {
    background: var(--white);
    border: 2px solid var(--blue);
    color: var(--blue);
}

.btn-blue-outline:hover {
    background: var(--light);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.section-label {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    display: inline-block;
    margin-bottom: .75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 640px;
    margin-inline: auto;
}

.text-center {
    text-align: center;
}

.mb-12 {
    margin-bottom: 3rem;
}

/* ── Card ── */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 1rem;
    transition: box-shadow .25s, border-color .25s;
}

.card:hover {
    box-shadow: 0 8px 32px rgba(0, 102, 255, .12);
    border-color: rgba(0, 102, 255, .3);
}

.card-body {
    padding: 1.5rem;
}

/* ── Icon badge ── */
.icon-badge {
    width: 4rem;
    height: 4rem;
    border-radius: .75rem;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-badge svg {
    width: 2rem;
    height: 2rem;
    stroke: var(--white);
    fill: none;
}

.icon-badge-sm {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .5rem;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-badge-sm svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--white);
    fill: none;
}

.check-icon {
    width: 1rem;
    height: 1rem;
    stroke: var(--blue);
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ══════════════════════════════
       HERO
    ══════════════════════════════ */
#hero {
    background: var(--grad);
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(255, 255, 255, .08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    padding: .5rem 1.25rem;
    border-radius: 999px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-img {
    width: 100%;
    border-radius: 1.25rem;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .25);
    display: block;
}

/* ══════════════════════════════
       SERVICES GRID
    ══════════════════════════════ */
#services {
    padding: 5rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 580px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    text-align: center;
}

.service-card .icon-badge {
    margin: 0 auto 1rem;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.service-card p {
    font-size: .875rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.service-card li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .8rem;
    color: var(--muted);
}

/* ══════════════════════════════
       BENEFITS
    ══════════════════════════════ */
#benefits {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--white), var(--light));
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

@media (max-width: 700px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card .card-body {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-card h3 {
    font-size: .975rem;
    font-weight: 700;
    margin-bottom: .35rem;
}

.benefit-card p {
    font-size: .8rem;
    color: var(--muted);
}

.benefits-img {
    display: block;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    border-radius: 1.25rem;
    box-shadow: 0 20px 48px rgba(0, 102, 255, .15);
}

/* ══════════════════════════════
       PACKAGES
    ══════════════════════════════ */
#packages {
    padding: 5rem 0;
    background: var(--white);
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 820px;
    margin-inline: auto;
}

@media (max-width: 640px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

.pkg-card {
    border: 2px solid var(--border);
    position: relative;
}

.pkg-card.highlighted {
    border-color: var(--blue);
    box-shadow: 0 16px 48px rgba(0, 102, 255, .18);
}

.pkg-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad);
    color: var(--white);
    padding: .25rem 1rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
    white-space: nowrap;
}

.pkg-card .card-body {
    padding: 2rem;
    text-align: center;
}

.pkg-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.pkg-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: .5rem;
}

.pkg-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 1.5rem;
}

.pkg-features {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 1.5rem;
}

.pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .875rem;
    color: var(--muted);
}

/* ══════════════════════════════
       FAQ
    ══════════════════════════════ */
#faq {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--white), var(--light));
}

.faq-list {
    max-width: 760px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-card .card-body {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.faq-q-badge {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}

.faq-card h3 {
    font-size: .975rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.faq-card p {
    font-size: .85rem;
    color: var(--muted);
}

/* ══════════════════════════════
       CTA BAND
    ══════════════════════════════ */
#cta {
    padding: 4rem 0;
    background: var(--grad);
    text-align: center;
}

#cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

#cta p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 2rem;
}

.cta-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cta-chip {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    padding: .75rem 1.5rem;
    border-radius: .5rem;
    color: var(--white);
    font-weight: 600;
    font-size: .95rem;
}

.cta-chip svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--white);
    fill: none;
}

/* ══════════════════════════════
       CONSULTATION SECTION
    ══════════════════════════════ */
#consultation-form {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--white), var(--light));
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
}

/* ── Header ── */
.cf-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cf-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: .6rem;
    line-height: 1.25;
}

.cf-header p {
    font-size: 1.05rem;
    color: var(--text-mid);
}

/* ── Two-column grid ── */
.cf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin-inline: auto;
}

@media (max-width: 900px) {
    .cf-grid {
        grid-template-columns: 1fr;
    }

    .cf-img-wrap {
        order: 2;
    }

    .cf-form-wrap {
        order: 1;
    }
}

/* ── Image ── */
.cf-img-wrap {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .18);
    border: 1px solid var(--border);
}

.cf-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Placeholder khi ảnh không load */
.cf-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: .9rem;
    font-weight: 600;
}

/* ── Form card ── */
.cf-form-wrap {
    background: var(--white);
    border-radius: 1.25rem;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .1);
    border: 1px solid var(--border);
}

/* ── Form fields ── */
.cf-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cf-group {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.cf-label {
    font-size: .875rem;
    font-weight: 600;
    color: var(--dark);
}

.cf-label .req {
    color: var(--red);
    margin-left: 2px;
}

.cf-input,
.cf-textarea {
    width: 100%;
    padding: .8rem 1rem;
    border: 1.5px solid #D1D5DB;
    border-radius: .5rem;
    font-size: .9rem;
    font-family: inherit;
    color: var(--dark);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    background: var(--white);
}

.cf-input::placeholder,
.cf-textarea::placeholder {
    color: #9CA3AF;
}

.cf-input:focus,
.cf-textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, .15);
}

.cf-textarea {
    resize: none;
    min-height: 110px;
}

/* ── Submit button ── */
.cf-submit {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--grad);
    color: var(--white);
    border: none;
    border-radius: .5rem;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: opacity .2s, transform .15s;
    box-shadow: 0 6px 20px rgba(0, 102, 255, .3);
    margin-top: .25rem;
}

.cf-submit:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.cf-submit svg {
    width: 1.2rem;
    height: 1.2rem;
    stroke: var(--white);
    fill: none;
}

/* ===== CONSULTATION ===== */
.consultation {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #F5F8FF 100%);
}

.consultation h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    margin-bottom: 12px;
}

.consultation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.consult-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.1);
    line-height: 0;
}

.consult-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.consult-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 12px 48px rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group label .req {
    color: #EF4444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0066FF;
    box-shadow: 0 0 0 3px rgba(0, 133, 255, 0.1);
}

.form-group textarea {
    resize: none;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(90deg, #0066FF, #00AEEF);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s, transform 0.2s;
    font-family: inherit;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}

.btn-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-submit svg {
    width: 20px;
    height: 20px;
}

/* ===== TOAST NOTIFICATION ===== */
.toast-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.toast-overlay.show {
    opacity: 1;
    visibility: visible;
}

.toast-box {
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px 36px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
    transform: scale(0.85) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast-overlay.show .toast-box {
    transform: scale(1) translateY(0);
}

.toast-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #fff;
}

.toast-icon.is-success {
    background: linear-gradient(135deg, #10B981, #34D399);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

.toast-icon.is-error {
    background: linear-gradient(135deg, #EF4444, #F87171);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.35);
}

.toast-title {
    font-size: 22px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 8px;
}

.toast-msg {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 24px;
}

.toast-close-btn {
    padding: 12px 36px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s, transform 0.2s;
    color: #fff;
}

.toast-close-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.toast-close-btn.is-success {
    background: linear-gradient(135deg, #10B981, #34D399);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.toast-close-btn.is-error {
    background: linear-gradient(135deg, #EF4444, #F87171);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

.field-error {
    border-color: #EF4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

@media (max-width: 768px) {
    .consultation-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */