/* ========== SECTION HEADER / 'Xem tất cả' LINK ========== */
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 56px;
}
.section-header > div { 
    display: flex; 
    flex-direction: column;
    gap: 12px;
}
.section-kicker {
    color: #9ca3af;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.section-header h2 { 
    margin: 0; 
    font-size: 2.125rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    letter-spacing: -0.02em;
}
.section-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    white-space: nowrap;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}
.section-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}
.section-link::after {
    content: '→';
    font-size: 1.25em;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-link:hover::after {
    transform: translateX(3px);
}
@media (max-width: 767px) {
    .section-header { flex-direction: column; align-items: flex-start; }
    .section-link { margin-top: 8px; align-self: flex-start; }
}
:root {
    /* LDTECH brand palette - Flat Gold Theme */
    --primary-gold: #e3b22c;
    --primary-dark: #c0931f;
    --primary-light: #f5d063;
    
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --bg-gray: #f5f5f5;
    
    --border-light: rgba(227, 178, 44, 0.15);
    --border-medium: rgba(227, 178, 44, 0.25);
    
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}
.header.scrolled {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar-brand img { height: 46px; display: block; }

.navbar-nav .nav-link {
    color: var(--dark-gray) !important;
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    transition: all 0.3s ease;
    position: relative;
}
/* White nav when over hero */
.header:not(.scrolled) .nav-link { color: #fff !important; }
.header:not(.scrolled) .navbar-brand img { filter: drop-shadow(0 0 2px rgba(0,0,0,0.5)); }

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-gold) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    padding: 140px 0 120px;
    background: url('/assets/img/hero.jpg?w=1920') center/cover;
    color: #f4f7ff;
    overflow: hidden;
}

.hero-overlay,
.hero-noise {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-overlay {
    background: rgba(15, 15, 25, 0.85);
}

.hero-noise {
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 3px 3px;
    mix-blend-mode: screen;
    opacity: 0.15;
}

.hero-simple {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-simple { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

.hero-copy { max-width: 560px; }

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: var(--spacing-sm);
}

.hero-kicker::before {
    content: '';
    width: 32px;
    height: 1px;
    background: currentColor;
    opacity: 0.6;
}

.hero-copy h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #dbe6ff;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.hero-btn--primary {
    background: var(--primary-gold);
    color: #fff;
    border: 2px solid var(--primary-gold);
    box-shadow: var(--shadow-md);
}

.hero-btn--primary:hover { transform: translateY(-2px); background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }

.hero-btn--ghost {
    border: 1px solid rgba(255,255,255,0.4);
    color: #eef3ff;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(6px);
}

.hero-btn--ghost:hover { color: #fff; border-color: rgba(255,255,255,0.65); transform: translateY(-2px); }

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.hero-metric {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
}

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
}

.metric-label { color: #c7d6ff; font-size: 0.95rem; }

.hero-highlights {
    display: grid;
    gap: 18px;
}

@media (min-width: 768px) {
    .hero-highlights { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.highlight-card {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    background: rgba(10,15,30,0.7);
    border: 1px solid rgba(255,255,255,0.1);
    color: #eaf0ff;
}

.highlight-card i { font-size: 1.6rem; color: var(--primary-light); }
.highlight-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.highlight-card p { margin: 0; color: #cbd9ff; font-size: 0.95rem; }

/* ========== SERVICES STRIP ========== */
.services-strip {
    padding: 45px 0;
    background: #ffffff;
}

.services-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 42px;
}

.services-kicker {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #2a6bff;
    margin-bottom: 12px;
}

.services-intro h2 {
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.services-intro p {
    color: #51607a;
    font-size: 1.05rem;
    margin: 0 auto;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.services-card {
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    text-align: left;
    transition: all 0.2s ease;
}

.services-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-medium); }

.services-card i { font-size: 1.8rem; color: var(--primary-gold); margin-bottom: var(--spacing-sm); display: inline-block; }
.services-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.services-card p { margin: 0; color: #5a6784; font-size: 0.95rem; line-height: 1.6; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== COMPANY INTRODUCTION ========== */
.company-intro {
    padding: 60px 0;
}

/* Responsive intro image */
.company-intro img.company-image { width: 100%; height: auto; display: block; border-radius: 12px; }
@media (max-width: 576px) { .company-intro { padding: 70px 0 50px; } }



.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.btn-custom {
    background: var(--primary-gold);
    color: white;
    padding: 12px 35px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    border: 2px solid var(--primary-gold);
    transition: all 0.2s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

/* ========== DEVELOPMENT HISTORY ========== */


.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: var(--spacing-2xl);
    position: relative;
    padding-bottom: var(--spacing-md);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
}



/* ========== KEY FIGURES ========== */

.highlight-card {
    text-align: center;
    padding: 40px 20px;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.highlight-icon {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.highlight-text {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* ========== APPLICATIONS ========== */
.applications-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-gray);
}

.app-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    cursor: pointer;
}

.app-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.app-card:hover img {
    transform: scale(1.1);
}

.app-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px;
    color: white;
    transition: all 0.2s ease;
}

.app-card:hover .app-overlay {
    background: rgba(227,178,44,0.8);
}

.app-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.applications-header .section-title {
    text-align: left;
    margin: 0;
    padding-bottom: 12px;
}

.applications-header .section-title::after {
    left: 0;
    transform: none;
}

/* ========== WHY CHOOSE US ========== */
.why-choose-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-light);
}

.why-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.why-kicker {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: var(--spacing-sm);
}

.why-kicker::before,
.why-kicker::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: currentColor;
    opacity: 0.4;
}

.why-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.why-subtitle {
    font-size: 1.05rem;
    color: #54607b;
    line-height: 1.7;
    margin: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.2s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-medium);
}

.why-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    background: var(--primary-gold);
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.why-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.why-card-text {
    margin: 0;
    color: #5d6788;
    line-height: 1.7;
    font-size: 0.98rem;
}

@media (max-width: 575px) {
    .why-kicker { gap: 10px; letter-spacing: 0.24em; }
    .why-kicker::before,
    .why-kicker::after { width: 24px; }
    .why-card { padding: 28px 24px; }
}

/* ========== FOOTER ========== */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 0;
}

.footer h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.footer-logo {
    margin-bottom: 20px;
}
.footer-logo img { height: 48px; }

.footer p {
    color: #ccc;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
}

.contact-info i {
    color: var(--primary-light);
    margin-right: 10px;
    margin-top: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s ease;
}

.social-icons a:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 10px 0;
    margin-top: 30px;
    text-align: center;
    color: #888;
}

/* ========== ROBOT PRODUCT CARDS ========== */
.robot-section { padding: 20px 0; background: #fff; }
.robot-grid { display: flex; flex-wrap: wrap; gap: 30px; }
.robot-card {
    flex: 1 1 260px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .3s ease, transform .3s ease;
}

/* ========== PARTNERS SECTION ========== */
.partners-section { padding: 60px 0; background: #fff; }
.partners-wrapper { position: relative; }
.partners-track {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px 10px;
    scrollbar-width: none;
}
.partners-track::-webkit-scrollbar { display: none; }
.partner-item {
    flex: 0 0 180px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    position: relative;
    border-right: 1px solid rgba(0,0,0,0.12);
}
.partner-item:last-child { border-right: none; }
.partner-item img { max-width: 100%; max-height: 70px; object-fit: contain; filter: grayscale(15%); transition: filter .3s ease, transform .3s ease; }
.partner-item:hover img { filter: none; transform: scale(1.05); }
.partner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}
.partner-nav:hover { background: var(--primary-gold); color: #fff; }
.partner-nav.prev { left: -20px; }
.partner-nav.next { right: -20px; }
@media (max-width: 992px) { .partner-nav.prev { left: 5px; } .partner-nav.next { right: 5px; } }
@media (max-width: 576px) {
    .partner-item { flex: 0 0 150px; padding: 10px 15px; }
    .partner-nav { width: 38px; height: 38px; }
}

/* ========== SOLUTIONS LINE + STATS (per screenshot) ========== */


.stats-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.stat-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-md);
    transition: all 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-medium);
}

.stat-icon {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gold);
    color: #fff;
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.stat-content { position: relative; z-index: 1; }

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    font-variant-numeric: tabular-nums;
}

.stat-label {
    display: block;
    margin-top: var(--spacing-xs);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 600;
}

@media (max-width: 992px) {
    .stat-card { padding: 28px; }
}

@media (max-width: 576px) {
    .stats-section { padding: 70px 0; }
    .stat-card { gap: 18px; padding: 24px; border-radius: 22px; }
    .stat-icon { width: 56px; height: 56px; font-size: 24px; }
    .stat-label { letter-spacing: 0.02em; font-size: 0.95rem; }
}
.robot-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.12); transform: translateY(-4px); }
.robot-card .category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #707070;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 4px 10px;
    border-radius: 3px;
}
.robot-card .img-wrapper { padding: 55px 25px 15px; display: flex; justify-content: center; align-items: center; min-height: 220px; }
.robot-card img { max-width: 100%; height: auto; object-fit: contain; }
.robot-card h3 { font-size: 15px; font-weight: 600; margin: 0; padding: 20px 24px 24px; }
@media (max-width: 576px) {
    .robot-grid { gap: 20px; }
    .robot-card { flex: 1 1 100%; }
}



/* ===== MOBILE ENHANCEMENTS ===== */
@media (max-width: 576px) {
    .hero-section { padding: 100px 0 80px; }
    .hero-frame { grid-template-columns: 1fr; gap: 40px; }
    .hero-col--copy { max-width: none; }
    .hero-col--copy h1 { font-size: 2.1rem; }
    .hero-lede { font-size: 1.05rem; }
    .hero-actions { flex-direction: column; }
    .hero-btn { width: 100%; }
    .hero-pills { justify-content: flex-start; }
    .hero-stats { grid-template-columns: 1fr; }
    .hero-glass-panel { padding: 22px; }
    .hero-floating { flex-direction: column; align-items: flex-start; gap: 10px; }

    .services-shell { padding: 30px 20px; }
    .services-header { margin-bottom: 30px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 22px; }

    .solutions-line { flex-direction: column; gap: 18px; padding-bottom: 10px; }
    .solutions-line::after, .solutions-line .dot { display: none; }
    .solution-item { width: 100%; display: flex; align-items: center; gap: 14px; padding: 12px 16px; border: 1px solid #e3eef7; border-radius: 12px; box-shadow: 0 4px 14px rgba(0,0,0,0.06); background: #fff; }
    .solution-item i { margin-bottom: 0; font-size: 24px; }
    .solution-item .label { font-size: 13px; letter-spacing: .5px; }
    .solution-item.active { border-color: #2aa2ff; box-shadow: 0 4px 18px rgba(42,162,255,0.25); }

    .solution-content { margin-top: 10px; }
    .solution-card .card-body { padding: 20px 18px; }
    .solution-title { font-size: 20px; }
    .solution-list li { font-size: 14px; line-height: 1.4; }
    .solution-image { padding: 12px 14px; }
    .solution-cta { width: 100%; justify-content: center; }

    .partners-track { gap: 16px; padding: 10px 8px; }
    .partner-item { min-width: 110px; }
    .partner-item img { max-height: 54px; }
    .partner-nav { top: 40%; }

    .stat-card { padding: 20px 16px; }
    .stat-card i { font-size: 26px; }
    .stat-card .number { font-size: 22px; }
    .stat-card .label { font-size: 12px; }

    .why-card { padding: 20px 18px; }
    .why-card .why-title { font-size: 15px; }
    .why-card .why-desc { font-size: 13px; }

    .footer .footer-links a, .contact-info span { font-size: 13px; }
}

@media (max-width: 400px) {
    .hero-col--copy h1 { font-size: 1.9rem; }
    .solution-title { font-size: 18px; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .hero-frame { grid-template-columns: 1fr; gap: 52px; }
    .hero-col--copy h1 { font-size: 2.7rem; }
    .hero-lede { font-size: 1.15rem; }
    .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 22px;
    }

    .timeline-item:nth-child(even) {
        left: 0%;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .intro-content h2 {
        font-size: 1.8rem;
    }
}

/*=========================== FLOATING ACTION BAR ========== */
/* Floating action bar */
.floating-action-bar {
  position: fixed;
  top: 30%;
  right: 0;
  width: 56px;
  display: flex;
  flex-direction: column;
  z-index: 1200;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}

.fab-item {
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-gold);
  color: #ffffff;
  text-decoration: none;
  font-size: 1.35rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fab-item + .fab-item {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.fab-item:hover {
  background-color: var(--primary-dark);
}

.fab-item i,
.fab-item .fab-text {
  pointer-events: none;
}

.fab-text {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
}

.fab-call {
  background-color: var(--primary-gold);
}

.fab-call:hover {
  background-color: var(--primary-dark);
}

.fab-zalo {
  background-color: var(--primary-gold);
}

.fab-zalo:hover {
  background-color: var(--primary-dark);
}

.fab-messenger {
  background-color: var(--primary-gold);
}

.fab-messenger:hover {
  background-color: var(--primary-dark);
}

.fab-tiktok {
    background-color: var(--primary-gold);
}

.fab-tiktok:hover {
  background-color: var(--primary-dark);
}

.fab-scroll-top {
  background-color: #545b64;
  opacity: 0;
  pointer-events: none;
  transition: background-color 0.18s ease, opacity 0.18s ease;
  border: none;
}

.fab-scroll-top:hover {
  background-color: #3e434a;
}

.fab-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 768px) {
  .floating-action-bar {
    width: 46px;
    top: 35%;
  }

  .fab-item {
    height: 46px;
    font-size: 1.1rem;
  }

  .fab-text {
    font-size: 0.75rem;
    letter-spacing: 0.2px;
  }

    .hero-section {
        padding-left: 12px;
        padding-right: 12px;
        min-height: auto !important;
    }

    .hero-col--copy h1 {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-lede {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

  .container {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .row {
    margin-left: 0;
    margin-right: 0;
  }

  [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
  }
}