.elementor-13799 .elementor-element.elementor-element-4337306{--display:flex;}/* Start custom CSS for html, class: .elementor-element-02a5e27 */*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue: #0066FF;
    --sky: #00AEEF;
    --dark: #0F172A;
    --muted: #64748B;
    --light-bg: #F5F8FF;
    --white: #ffffff;
    --blue2: #0085FF;
    --cyan: #00AEEF;
    --cyan2: #00E0FF;
    --navy: #003087;
    --light: #F5F8FF;
    --white: #ffffff;
    --red: #ef4444;
    --text-mid: var(--muted);
    --grad: linear-gradient(135deg, var(--blue2), var(--cyan2));
    --gradb: linear-gradient(90deg, var(--blue2), var(--cyan2));
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--dark);
    background: var(--white);
}

.text-center {
    text-align: center;
}

/* ── Utilities ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section--light {
    background: linear-gradient(to bottom, #fff, var(--light-bg));
}

.label {
    display: inline-block;
    color: var(--blue);
    font-weight: 600;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-sub {
    font-size: 1.125rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ── Hero ── */
.hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%);
    padding: 5rem 0;
    color: #fff;
    text-align: center;
}

.hero__badge {
    display: inline-block;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(6px);
    padding: .4rem 1.5rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.hero__sub {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 3rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 760px;
    margin: 0 auto;
}

.stat {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 1.25rem;
    padding: 1.75rem 1rem;
}

.stat__num {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
}

.stat__label {
    font-size: .875rem;
    color: rgba(255, 255, 255, .82);
    margin-top: .4rem;
}

/* ── About ── */
.about-body {
    max-width: 860px;
    margin: 0 auto;
}

.about-body p {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-body strong {
    color: var(--blue);
}

.cards-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    border: 1px solid rgba(0, 102, 255, .1);
    border-radius: 1.25rem;
    padding: 2rem;
    background: #fff;
    transition: box-shadow .25s, border-color .25s;
}

.card:hover {
    box-shadow: 0 16px 40px rgba(0, 102, 255, .12);
    border-color: rgba(0, 102, 255, .25);
}

.card__icon {
    display: inline-flex;
    padding: .75rem;
    border-radius: .875rem;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    margin-bottom: 1.25rem;
}

.card__icon svg {
    width: 2rem;
    height: 2rem;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .75rem;
}

.card__text {
    color: var(--muted);
    line-height: 1.7;
}

.about-highlight {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-bg), #fff);
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 102, 255, .1);
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.7;
}

.about-highlight strong {
    color: var(--blue);
}

/* ── Mission / Vision ── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .split {
        grid-template-columns: 1fr;
    }

    .split--reverse .split__img {
        order: -1;
    }
}

.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.checklist li {
    display: flex;
    gap: 1rem;
    color: var(--muted);
    line-height: 1.6;
}

.checklist li::before {
    content: '';
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066FF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
    margin-top: .15rem;
}

.num-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.num-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.num-badge {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: .625rem;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.num-item__title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .25rem;
}

.num-item__sub {
    color: var(--muted);
}

.img-frame {
    aspect-ratio: 1;
    border-radius: 1.25rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 102, 255, .1), rgba(0, 174, 239, .1));
    border: 1px solid rgba(0, 102, 255, .2);
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Values ── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    max-width: 1080px;
    margin: 0 auto;
}

.value-card {
    border: 1px solid rgba(0, 102, 255, .1);
    border-radius: 1.25rem;
    padding: 2rem;
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: box-shadow .25s, border-color .25s;
}

.value-card:hover {
    box-shadow: 0 16px 40px rgba(0, 102, 255, .12);
    border-color: rgba(0, 102, 255, .28);
}

.value-card__num {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 102, 255, .06);
    line-height: 1;
    pointer-events: none;
}

.value-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .625rem;
}

.value-card__text {
    color: var(--muted);
    line-height: 1.65;
}

/* ── CTA ── */
.cta {
    background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%);
    padding: 5rem 0;
    text-align: center;
}

.cta__title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.cta__sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .9);
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .875rem 1.875rem;
    border-radius: .625rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn--white {
    background: #fff;
    color: var(--blue);
}

.btn--white:hover {
    background: rgba(255, 255, 255, .9);
}

.btn svg {
    width: 1.1rem;
    height: 1.1rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .stats {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}

/* ══════════════════════════════
       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;
    color: var(--text-mid);
}

.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);
    text-align: center;
}

/* ── 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);
}

.consult-form-wrap * {
    box-sizing: border-box;
}

.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 */