.elementor-13800 .elementor-element.elementor-element-8067244{--display:flex;}/* Start custom CSS for html, class: .elementor-element-a63e7c3 *//* Reset và Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --muted: #64748B;
    --text-mid: var(--muted);
}

.text-center {
    text-align: center;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 640px) {
    .container {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 32px;
    }
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
}

.nav-content {
    display: flex;
    height: 64px;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

.brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #0066FF 0%, #00AEEF 100%);
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.brand-text {
    font-size: 20px;
    font-weight: bold;
    color: #0F172A;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    text-decoration: none;
    color: #64748B;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0066FF;
}

.nav-link.active {
    color: #0066FF;
    font-weight: 600;
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .nav-actions {
        display: flex;
    }
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0066FF;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #00AEEF;
}

.mobile-menu-btn {
    display: block;
    padding: 8px;
    background: none;
    border: none;
    color: #64748B;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #0066FF;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    padding: 16px 0;
    gap: 16px;
    border-top: 1px solid rgba(0, 102, 255, 0.1);
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-nav-link {
    display: block;
    padding: 8px 0;
    color: #64748B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #0066FF;
}

.mobile-actions {
    padding-top: 16px;
    gap: 8px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: linear-gradient(90deg, #0066FF 0%, #00AEEF 100%);
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-primary.large {
    padding: 16px 24px;
    font-size: 18px;
    border-radius: 8px;
}

.btn-primary.full-width {
    width: 100%;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #0066FF;
    background: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-secondary:hover {
    background-color: #F5F8FF;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(180deg, #F5F8FF 0%, #ffffff 100%);
    padding: 80px 0;
}

.hero-content {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 16px;
}

.hero-badge span {
    color: #0066FF;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 24px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 64px;
    }
}

.hero-description {
    font-size: 18px;
    color: #64748B;
    margin-bottom: 32px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 20px;
    }
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: white;
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 102, 255, 0.3);
}

.card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card-icon {
    display: inline-flex;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.card-icon.blue-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
}

.card-icon.green-gradient {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.card-icon.purple-gradient {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    color: #0F172A;
    margin-bottom: 12px;
}

.card-description {
    color: #64748B;
    margin-bottom: 24px;
    line-height: 1.6;
}

.card-features {
    list-style: none;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: #0066FF;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item span {
    font-size: 14px;
    color: #64748B;
}

.card-footer {
    padding-top: 16px;
    border-top: 1px solid rgba(0, 102, 255, 0.1);
}

/* Why Choose Us Section */
.why-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #F5F8FF 100%);
}

.why-content {
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .why-content {
        grid-template-columns: 1fr 1fr;
    }
}

.section-badge {
    display: inline-block;
    margin-bottom: 16px;
}

.section-badge span {
    color: #0066FF;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #0F172A;
    margin-bottom: 24px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 48px;
    }
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.why-feature {
    display: flex;
    gap: 16px;
}

.why-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(135deg, #0066FF 0%, #00AEEF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.why-icon svg {
    width: 24px;
    height: 24px;
}

.why-feature-title {
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 8px;
    font-size: 16px;
}

.why-feature-desc {
    color: #64748B;
    line-height: 1.6;
    font-size: 14px;
}

.why-image {
    position: relative;
}

.image-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== 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 .text-center p {
    text-align: center;
    color: var(--text-mid);
}

.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 */