.elementor-13803 .elementor-element.elementor-element-f3fdbbb{--display:flex;}/* Start custom CSS for html, class: .elementor-element-d958dbc */*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue: #0066FF;
    --blue2: #0085FF;
    --cyan: #00AEEF;
    --cyan2: #00E0FF;
    --navy: #003087;
    --dark: #0F172A;
    --muted: #64748B;
    --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));
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
}

.text-center {
    text-align: center;
}

.mb-12 {
    margin-bottom: 3rem;
}

/* ── Section titles ── */
.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title .grad {
    background: var(--gradb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    font-size: 1rem;
    color: var(--muted);
}

/* ── Buttons ── */
.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;
    font-family: inherit;
    text-decoration: none;
    transition: opacity .2s, transform .15s;
}

.btn:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.btn-white {
    background: var(--white);
    color: var(--blue2);
}

.btn-blue {
    background: var(--gradb);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 133, 255, .3);
}

.btn-outline-blue {
    background: var(--white);
    border: 2px solid var(--blue2);
    color: var(--blue2);
}

.btn-outline-blue:hover {
    background: var(--blue2);
    color: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-link {
    background: none;
    border: none;
    color: var(--blue2);
    font-weight: 600;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

/* ── Card ── */
.card {
    background: var(--white);
    border-radius: 1rem;
    transition: box-shadow .25s, border-color .25s;
}

.card-body {
    padding: 1.5rem;
}

/* ── Icon badge ── */
.icon-badge {
    width: 3rem;
    height: 3rem;
    border-radius: .75rem;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-badge svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-badge.red-bg {
    background: #fff1f2;
}

.icon-badge.red-bg svg {
    stroke: var(--red);
}

.icon-circle {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    flex-shrink: 0;
}

.icon-circle svg {
    width: 2rem;
    height: 2rem;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Check icon ── */
.check-ico {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--blue2);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ════════════════════════════
       HERO
    ════════════════════════════ */
#hero {
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #0066FF, #0085FF, #00AEEF);
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, .12) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@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, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 2rem;
}

.hero-img {
    width: 100%;
    border-radius: 1.25rem;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .25);
    display: block;
}

/* ════════════════════════════
       SELF-REGISTRATION BENEFITS
    ════════════════════════════ */
#benefits {
    padding: 4rem 0;
    background: var(--white);
}

.benefits-inner {
    max-width: 900px;
    margin-inline: auto;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 760px) {
    .two-col {
        grid-template-columns: 1fr;
    }
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row h3 {
    font-weight: 700;
    font-size: .975rem;
    margin-bottom: .3rem;
}

.feature-row p {
    font-size: .85rem;
    color: var(--muted);
}

.side-img {
    width: 100%;
    border-radius: 1.25rem;
    box-shadow: 0 20px 48px rgba(0, 0, 0, .15);
    display: block;
}

/* ════════════════════════════
       LIMITATIONS
    ════════════════════════════ */
#limitations {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--white), var(--light));
}

.limitations-inner {
    max-width: 900px;
    margin-inline: auto;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--gradb);
    color: var(--white);
    padding: .6rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.pill-badge svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.limit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 640px) {
    .limit-grid {
        grid-template-columns: 1fr;
    }
}

.limit-card {
    border: 2px solid #fee2e2;
    border-radius: 1rem;
}

.limit-card:hover {
    border-color: #fca5a5;
    box-shadow: 0 8px 24px rgba(239, 68, 68, .1);
}

.limit-card .card-body {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.limit-card h3 {
    font-weight: 700;
    font-size: .975rem;
    margin-bottom: .3rem;
}

.limit-card p {
    font-size: .85rem;
    color: var(--muted);
}

/* ════════════════════════════
       WHY CHOOSE US
    ════════════════════════════ */
#why {
    padding: 4rem 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1050px;
    margin-inline: auto;
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* .badge-5k {
      width: 18rem;
      height: 18rem;
      border-radius: 50%;
      background: var(--grad);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      box-shadow: 0 24px 64px rgba(0, 133, 255, .35);
    } */
.badge-5k {
    position: relative;
    width: 320px;
    /* tăng kích thước */
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    overflow: visible;
    /* cho phép ảnh hiển thị đầy đủ */
}

.badge-5k .side-img {
    width: 100%;
    /* ảnh lấp đầy vòng tròn */
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    /* bo tròn theo khung */
}

/* ════════════════════════════
       FINANCE BANNER
    ════════════════════════════ */
#finance-banner {
    padding: 2rem 0;
}

.banner-link {
    display: block;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .18);
    transition: transform .3s, box-shadow .3s;
}

.banner-link:hover {
    transform: scale(1.015);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .25);
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .5s;
}

.banner-link:hover .banner-img {
    transform: scale(1.04);
}

/* ════════════════════════════
       PROCESS STEPS
    ════════════════════════════ */
#process {
    padding: 5rem 0;
    background: var(--navy);
}

#process .section-title {
    color: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    max-width: 1100px;
    margin-inline: auto;
}

@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    background: var(--white);
    border: none;
    border-radius: 1rem;
    position: relative;
}

.step-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
}

.step-card .card-body {
    padding: 1.5rem;
    text-align: center;
}

.step-card h3 {
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: .4rem;
}

.step-card p {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.5;
}

.step-arrow {
    display: none;
    position: absolute;
    top: 50%;
    right: -1.1rem;
    transform: translateY(-50%);
    z-index: 2;
}

@media (min-width: 900px) {
    .step-arrow {
        display: block;
    }
}

.step-arrow svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ════════════════════════════
       PRICING
    ════════════════════════════ */
#pricing {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--white), var(--light));
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pkg-card {
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    position: relative;
}

.pkg-card.pop {
    border-color: var(--blue2);
    box-shadow: 0 16px 48px rgba(0, 133, 255, .2);
}

.pkg-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue2);
    color: var(--white);
    padding: .25rem 1rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    white-space: nowrap;
}

.pkg-card .card-body {
    padding: 1.5rem;
}

.pkg-name {
    font-size: 1.25rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.pkg-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue2);
    text-align: center;
    line-height: 1;
}

.pkg-unit {
    font-size: .8rem;
    color: var(--muted);
    text-align: center;
    margin-bottom: .25rem;
}

.pkg-sub {
    font-size: .78rem;
    color: var(--blue2);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.25rem;
}

.pkg-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin-bottom: 1.5rem;
    min-height: 280px;
}

.pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.4;
}

/* ════════════════════════════
       TESTIMONIALS
    ════════════════════════════ */
#testimonials {
    padding: 5rem 0;
    background: var(--white);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1050px;
    margin-inline: auto;
}

@media (max-width: 800px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }
}

.testi-card {
    background: var(--navy);
    border: none;
    border-radius: 1rem;
}

.testi-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
}

.testi-card .card-body {
    padding: 2rem;
    text-align: center;
}

.testi-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.testi-avatar svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.testi-card p.quote {
    color: rgba(255, 255, 255, .9);
    font-style: italic;
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: .75rem;
}

.testi-card p.author {
    color: rgba(255, 255, 255, .65);
    font-size: .82rem;
}

/* ════════════════════════════
       FAQ
    ════════════════════════════ */
#faq {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--white), var(--light));
}

.faq-list {
    max-width: 860px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-card {
    border: 2px solid rgba(0, 133, 255, .1);
    border-radius: 1rem;
}

.faq-card:hover {
    border-color: rgba(0, 133, 255, .3);
    box-shadow: 0 8px 24px rgba(0, 133, 255, .1);
}

.faq-card .card-body {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.faq-q {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}

.faq-card h3 {
    font-weight: 700;
    font-size: .975rem;
    margin-bottom: .5rem;
}

.faq-card p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ════════════════════════════
       NEWS
    ════════════════════════════ */
#news {
    padding: 4rem 0;
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1050px;
    margin-inline: auto;
}

@media (max-width: 800px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

.news-card {
    border: 1px solid rgba(0, 133, 255, .1);
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.news-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
}

.news-img-wrap {
    height: 12rem;
    overflow: hidden;
}

.news-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}

.news-card:hover .news-img-wrap img {
    transform: scale(1.1);
}

.news-card .card-body {
    padding: 1.25rem;
}

.news-date {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: .75rem;
}

.news-date svg {
    width: 1rem;
    height: 1rem;
    stroke: var(--muted);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.news-card h3 {
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: .4rem;
    transition: color .2s;
    line-height: 1.4;
}

.news-card:hover h3 {
    color: var(--blue2);
}

.news-card p {
    font-size: .82rem;
    color: var(--muted);
}

.btn-link svg {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ══════════════════════════════
       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 */