/* MANH DUC MCI - Optimized Front Page CSS - FINAL VERSION */
/* Version: 4.0.0 | Date: 2026 | Cleaned & Optimized */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== CONTAINER SYSTEM ===== */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 0.5px;
    box-sizing: border-box;
}

/* Tablet: >= 768px */
@media (min-width: 48rem) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
}

/* Desktop: >= 1024px */
@media (min-width: 64rem) {
    .container {
        max-width: 1200px;
        padding: 0 20px;
    }
}

/* ===== SECTION STYLES ===== */
.section-padding {
    padding: 80px 0;
    position: relative;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 100px 0;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 120px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0077b6, #48cae4);
    border-radius: 2px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.5rem;
    }
}

.section-title .highlight {
    color: #0077b6;
    display: inline;
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 119, 182, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.bg-light {
    background-color: #f8fafc;
    position: relative;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 119, 182, 0.1), transparent);
}

.bg-dark {
    background-color: #0a1929;
}

/* ===== MH HERO SECTION ===== */
.mh-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.97) 0%,
            rgba(248, 249, 250, 0.95) 50%,
            rgba(240, 242, 245, 0.93) 100%),
        url('/wp-content/themes/oceanic-vision/assets/images/construction-team-light.jpg') center/cover;
    padding: 80px 20px;
    overflow: hidden;
    max-width: 1440px;
    margin: 0 auto;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

.mh-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(
            circle at 80% 20%, 
            rgba(0, 119, 182, 0.08) 0%, 
            transparent 50%
        ),
        radial-gradient(
            circle at 20% 80%, 
            rgba(72, 202, 228, 0.06) 0%, 
            transparent 50%
        );
    z-index: 1;
    pointer-events: none;
}

.mh-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.mh-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

/* MH Badge */
.mh-badge {
    margin-bottom: 40px;
    animation: mh-badge-float 3s ease-in-out infinite;
}

.mh-badge-content {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0077b6, #48cae4);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.8px;
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.25);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mh-badge-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 119, 182, 0.35);
}

.mh-badge-content i {
    font-size: 1.2rem;
    animation: mh-icon-sparkle 2s ease-in-out infinite;
}

/* MH Title */
.mh-title {
    margin-bottom: 35px;
}

.mh-title-line-1 {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.mh-title-line-2 {
    display: block;
    font-size: 3.2rem;
    font-weight: 900;
    color: #0a2540;
    line-height: 1.1;
    letter-spacing: -0.8px;
}

.mh-highlight {
    background: linear-gradient(135deg, #0077b6, #48cae4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding: 0 10px;
}

.mh-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 10px;
    width: calc(100% - 20px);
    height: 6px;
    background: linear-gradient(90deg, 
        rgba(0, 119, 182, 0.2), 
        rgba(72, 202, 228, 0.3), 
        rgba(0, 119, 182, 0.2));
    border-radius: 3px;
    z-index: -1;
}

/* MH Slogan */
.mh-slogan {
    margin: 20px auto 30px;
    max-width: 700px;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.mh-slogan p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-style: italic;
    line-height: 1.4;
    text-align: center;
    padding: 15px 30px;
    position: relative;
}

.mh-slogan p::before,
.mh-slogan p::after {
    content: '"';
    position: absolute;
    font-size: 3.5rem;
    color: rgba(0, 119, 182, 0.2);
    font-family: Georgia, serif;
    font-weight: bold;
    line-height: 1;
}

.mh-slogan p::before {
    top: -10px;
    left: 0;
}

.mh-slogan p::after {
    bottom: -25px;
    right: 0;
}

.slogan-highlight {
    color: #0077b6;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.slogan-highlight::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 119, 182, 0.3) 50%, 
        transparent 100%);
}

/* MH Service Tags */
.mh-service-tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.mh-service-tag {
    color: #0077b6;
    font-weight: 700;
    padding: 16px 28px;
    background: white;
    border-radius: 12px;
    border: 2px solid #e3f2fd;
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.mh-service-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 119, 182, 0.05) 0%, 
        rgba(72, 202, 228, 0.03) 100%);
    z-index: -1;
}

.mh-service-tag:hover {
    transform: translateY(-6px);
    border-color: #48cae4;
    box-shadow: 0 15px 35px rgba(0, 119, 182, 0.15);
    color: #005885;
}

/* MH Description */
.mh-description {
    color: #4a5568;
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 50px;
    font-weight: 400;
    position: relative;
    padding: 0 20px;
}

.mh-description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #48cae4, transparent);
    border-radius: 2px;
}

.mh-description::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #48cae4);
    border-radius: 2px;
}

/* MH CTA Buttons */
.mh-cta {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.mh-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.mh-btn-primary {
    background: linear-gradient(135deg, #0077b6, #48cae4);
    color: white;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 119, 182, 0.3);
}

.mh-btn-primary:hover {
    background: linear-gradient(135deg, #005885, #0077b6);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 119, 182, 0.4);
}

.mh-btn-primary .fa-arrow-right {
    transition: transform 0.3s ease;
}

.mh-btn-primary:hover .fa-arrow-right {
    transform: translateX(8px);
}

.mh-btn-secondary {
    background: white;
    color: #0077b6;
    border: 2px solid #0077b6;
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.1);
}

.mh-btn-secondary:hover {
    background: #f8f9fa;
    color: #005885;
    border-color: #005885;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 119, 182, 0.2);
}

/* ===== COMPANY INTRO ===== */
.company-intro {
    background: white;
    position: relative;
}

.company-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 119, 182, 0.2), transparent);
}

.intro-grid {
    display: grid;
    gap: 50px;
    align-items: center;
}

@media (min-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.intro-content {
    text-align: left;
    position: relative;
}

.intro-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0077b6, #48cae4);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(0, 119, 182, 0.2);
    position: relative;
    overflow: hidden;
}

.intro-badge::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #0077b6, #48cae4, #90e0ef);
    border-radius: 27px;
    z-index: -1;
    opacity: 0.7;
}

.intro-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-content p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px;
}

@media (min-width: 768px) {
    .intro-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    font-size: 0.95rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: white;
    border-color: #0077b6;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 119, 182, 0.1);
}

.feature-item i {
    color: #0077b6;
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
}

.feature-item span {
    font-weight: 600;
    color: #333;
}

.intro-image {
    position: relative;
}

.image-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    border: 8px solid white;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.intro-image:hover .image-frame {
    transform: perspective(1000px) rotateY(0deg);
}

.image-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.intro-image:hover .image-frame img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(8, 32, 58, 0.9));
    padding: 30px 20px;
    text-align: center;
}

.overlay-text {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: #f8fafc;
    position: relative;
}

.services-grid {
    display: grid;
    gap: 35px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 119, 182, 0.15);
    border-color: rgba(0, 119, 182, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0077b6, #48cae4);
    border-radius: 20px 20px 0 0;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0077b6, #48cae4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: white;
    font-size: 2rem;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 119, 182, 0.2);
}

.icon-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff6b6b;
    color: white;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 800;
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.3);
}

.service-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.3;
}

.service-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-size: 1rem;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: #48cae4;
    font-size: 1rem;
    flex-shrink: 0;
    background: rgba(72, 202, 228, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0077b6;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
    font-size: 1.05rem;
}

.service-link:hover {
    gap: 15px;
    color: #005885;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
    background: white;
    position: relative;
}

.reasons-grid {
    display: grid;
    gap: 35px;
}

@media (min-width: 768px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .reasons-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.reason-card {
    text-align: center;
    padding: 35px 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 119, 182, 0.15);
    border-color: rgba(0, 119, 182, 0.2);
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #48cae4, #90e0ef);
    border-radius: 20px 20px 0 0;
}

.reason-card i {
    font-size: 3rem;
    color: #0077b6;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #0077b6, #48cae4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reason-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.3;
}

.reason-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
    background: #f8fafc;
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.projects-slider {
    display: grid;
    gap: 35px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .projects-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .projects-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 119, 182, 0.15);
    border-color: rgba(0, 119, 182, 0.2);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        transparent 70%, 
        rgba(8, 32, 58, 0.3) 100%);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-status {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.project-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.project-category {
    display: inline-block;
    background: rgba(0, 119, 182, 0.1);
    color: #0077b6;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    align-self: flex-start;
    letter-spacing: 0.5px;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.4;
}

.project-location {
    color: #666;
    font-size: 1rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.project-location i {
    color: #48cae4;
    font-size: 1.1rem;
}

.project-progress {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.progress-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0077b6, #48cae4);
    border-radius: 4px;
    position: relative;
    z-index: 2;
}

.progress-text {
    font-size: 1rem;
    font-weight: 700;
    color: #0077b6;
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-text::before {
    content: 'Tiến độ:';
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    background: white;
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 119, 182, 0.2), transparent);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    justify-items: center;
    align-items: center;
}

@media (min-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.partner-logo {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 170px;
    width: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.partner-logo:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 119, 182, 0.15);
    border-color: rgba(0, 119, 182, 0.2);
}

.partner-logo img {
    max-width: 130px;
    max-height: 70px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.partner-name {
    font-size: 0.9rem;
    color: #666;
    font-weight: 700;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.partner-logo:hover .partner-name {
    color: #0077b6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, 
        #0077b6 0%, 
        #005885 50%, 
        #004a73 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(72, 202, 228, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(144, 224, 239, 0.1) 0%, transparent 50%);
}

.cta-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3.5rem;
    }
}

.cta-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    min-width: 180px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: #48cae4;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(72, 202, 228, 0.5));
}

.feature span {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 35px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #48cae4, #0077b6);
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0077b6, #005885);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 119, 182, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    color: #0077b6;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 22px 45px;
    font-size: 1.2rem;
    border-radius: 15px;
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 767px) {
    /* MH Hero */
    .mh-section {
        min-height: 65vh;
        padding: 60px 15px;
        border-radius: 0 0 16px 16px;
    }
    
    .mh-title-line-1 {
        font-size: 2rem;
    }
    
    .mh-title-line-2 {
        font-size: 2.3rem;
    }
    
    .mh-service-tags {
        gap: 15px;
    }
    
    .mh-service-tag {
        padding: 14px 22px;
        font-size: 0.95rem;
    }
    
    .mh-description {
        font-size: 1.1rem;
        padding: 0 15px;
        margin-bottom: 40px;
    }
    
    .mh-description::before,
    .mh-description::after {
        width: 20px;
    }
    
    .mh-cta {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .mh-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 16px 30px;
    }
    
    /* Slogan */
    .mh-slogan {
        margin: 15px auto 25px;
    }
    
    .mh-slogan p {
        font-size: 1.2rem;
        padding: 12px 20px;
    }
    
    .mh-slogan p::before,
    .mh-slogan p::after {
        font-size: 2.5rem;
    }
    
    /* General */
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .services-grid,
    .reasons-grid,
    .projects-slider {
        grid-template-columns: 1fr;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }
    
    .cta-features {
        gap: 20px;
    }
    
    .feature {
        flex: 0 0 calc(50% - 10px);
        min-width: 140px;
        padding: 15px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .partner-logo {
        height: 150px;
        padding: 20px;
    }
    
    .partner-logo img {
        max-width: 110px;
        max-height: 60px;
    }
    
    .project-image {
        height: 200px;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-subtitle {
        font-size: 1.2rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* Tablet */
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 400px;
        margin-bottom: 20px;
    }
    
    .intro-grid {
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid .service-card:nth-child(3) {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    /* Mobile Small */
    .mh-title-line-1 {
        font-size: 1.7rem;
    }
    
    .mh-title-line-2 {
        font-size: 2rem;
    }
    
    .mh-service-tags {
        flex-direction: column;
        align-items: center;
    }
    
    .mh-service-tag {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .mh-description::before,
    .mh-description::after {
        display: none;
    }
    
    .mh-slogan p {
        font-size: 1.1rem;
        padding: 10px 15px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mh-badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes mh-icon-sparkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes mh-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.mh-content > * {
    animation: mh-fade-in 0.8s ease-out forwards;
    opacity: 0;
}

.mh-badge { animation-delay: 0.2s; }
.mh-title { animation-delay: 0.4s; }
.mh-slogan { animation-delay: 0.6s; }
.mh-service-tags { animation-delay: 0.8s; }
.mh-description { animation-delay: 1s; }
.mh-cta { animation-delay: 1.2s; }

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #0077b6, #48cae4);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #005885, #0077b6);
}
/* MANH DUC MCI - MISSING CSS FOR WEBSITE */
/* Version: 4.1.0 | Date: 2026 | Added Missing Parts */

/* ===== CRITICAL MISSING SECTIONS ===== */

/* 1. SITE WRAPPER - CẦN THIẾT ĐỂ FIX LỖI TRÀN MÀN HÌNH */
.site-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    overflow-x: hidden;
}

/* 2. HERO STATS - PHẦN THỐNG KÊ TRONG HERO (đang bị thiếu) */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 700px;
    margin: 60px auto 0;
    position: relative;
    padding-top: 40px;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.stat-item {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(72, 202, 228, 0.3);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #48cae4;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(72, 202, 228, 0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
    color: white;
}

/* 3. BUTTONS - NÚT TRONG HERO (đang bị thiếu từ MH Hero) */
.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 20px 40px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: 0.5s;
}

.cta-btn-primary:hover::before {
    left: 100%;
}

.cta-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.4);
}

.cta-btn-primary i {
    font-size: 1.4rem;
}

.cta-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.cta-btn-primary:hover .cta-arrow {
    transform: translateX(5px);
}

/* 4. HOTLINE SECTION - PHẦN HOTLINE (đang bị thiếu) */
.cta-hotline {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 15px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-hotline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.hotline-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #48cae4, #0077b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(72, 202, 228, 0.3);
}

.hotline-content {
    display: flex;
    flex-direction: column;
}

.hotline-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.hotline-number {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hotline-number:hover {
    color: #48cae4;
}

/* 5. HERO FEATURES - CÁC TÍNH NĂNG TRONG HERO (đang bị thiếu) */
.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: 40px auto 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-box-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #0077b6, #48cae4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 119, 182, 0.3);
}

.feature-box-content {
    flex: 1;
}

.feature-box-number {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.feature-box-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

/* 6. SCROLL INDICATOR - MŨI TÊN CUỘN (đang bị thiếu) */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.scroll-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(255, 255, 255, 0.5), 
        transparent);
}

.scroll-indicator i {
    color: #48cae4;
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* 7. MH HERO CTA CONTAINER - CẦN CHO NÚT TRONG MH HERO */
.hero-cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* 8. SUBTITLE HIGHLIGHT - TAGLINE TRONG HERO */
.subtitle-highlight {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.subtitle-highlight:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.subtitle-divider {
    color: #48cae4;
    font-size: 1.5rem;
    font-weight: 300;
}

/* 9. RESPONSIVE FIXES CHO CÁC PHẦN THIẾU */

/* Mobile fixes cho Hero Stats */
@media (max-width: 767px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 280px;
        margin-top: 40px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        max-width: 300px;
        gap: 20px;
    }
    
    .hero-cta-container {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .cta-btn-primary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 16px 30px;
        font-size: 1.1rem;
    }
    
    .cta-hotline {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .hotline-content {
        align-items: center;
    }
    
    .subtitle-highlight {
        font-size: 1.1rem;
        padding: 6px 15px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
}

/* Tablet fixes */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-stats {
        max-width: 600px;
    }
    
    .hero-features {
        max-width: 600px;
    }
    
    .hero-cta-container {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .cta-btn-primary {
        width: auto;
        min-width: 250px;
    }
}

/* 10. FIX LỖI HÌNH ẢNH TEAM - PHẦN NÀY ĐANG BỊ LỖI TRÊN WEBSITE */
.visual-wrapper {
    display: block;
    width: 100%;
}

.image-container {
    position: relative;
    border-radius: 1.5rem !important;
    overflow: hidden;
    background: #f8f9fa;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
}

.image-inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.team-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s ease;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 40%,
        rgba(0, 0, 0, 0.2) 60%,
        rgba(0, 0, 0, 0.6) 80%,
        rgba(0, 0, 0, 0.85) 100%
    );
    pointer-events: none;
    z-index: 2;
}

/* 11. FIX LỖI ANIMATION COUNT-UP CHO STATS */
@keyframes countUp {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.stat-item {
    animation: countUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Tạo độ trễ cho từng item */
.stat-item:nth-child(1) { animation-delay: 0.3s; }
.stat-item:nth-child(2) { animation-delay: 0.5s; }
.stat-item:nth-child(3) { animation-delay: 0.7s; }

/* 12. FIX LỖI CONTAINER TRONG MH HERO */
.mh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* 13. IMPORTANT! FIX LỖI BACKGROUND ATTACHMENT TRÊN MOBILE */
@media (max-width: 1024px) {
    .mh-section {
        background-attachment: scroll !important;
    }
}

/* 14. FIX LỖI BUTTON HOVER EFFECTS */
.btn:hover {
    transform: translateY(-3px);
}

/* 15. FIX LỖI Z-INDEX CHO OVERLAY */
.mh-overlay {
    z-index: 1;
}

.mh-content {
    z-index: 3;
}

/* 16. FIX LỖI FONT SIZE TRÊN MOBILE NHỎ */
@media (max-width: 480px) {
    .mh-title-line-1 {
        font-size: 1.6rem;
    }
    
    .mh-title-line-2 {
        font-size: 1.8rem;
    }
    
    .mh-slogan p {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hotline-number {
        font-size: 1.2rem;
    }
}

/* 17. FIX LỖI GRID GAP TRÊN MOBILE */
@media (max-width: 767px) {
    .services-grid,
    .reasons-grid,
    .projects-slider,
    .partners-grid {
        gap: 25px;
    }
    
    .service-card,
    .reason-card,
    .project-card {
        padding: 25px 20px;
    }
}

/* 18. FIX LỖI SHADOW VÀ BORDER */
.service-card:hover,
.reason-card:hover,
.project-card:hover,
.partner-logo:hover {
    box-shadow: 0 15px 30px rgba(0, 119, 182, 0.2);
}

/* 19. FIX LỖI LINE HEIGHT CHO TITLE */
.section-title {
    line-height: 1.3;
}

/* 20. FIX LỖI IMAGE FRAME TRONG INTRO */
.intro-image .image-frame {
    transform: perspective(1000px) rotateY(-5deg);
}

.intro-image:hover .image-frame {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* 21. FIX LỖI PROGRESS BAR ANIMATION */
@keyframes progressShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        #0077b6 0%, 
        #48cae4 50%, 
        #90e0ef 100%);
    border-radius: 4px;
    animation: progressShimmer 2s infinite linear;
    background-size: 200% 100%;
}
/* MANH DUC MCI - HERO SECTION CSS - 1440px LIMITED */
/* Version: 4.2.0 | Date: 2026 | Added Full Hero Section */

/* ===== HERO SECTION - TỔNG THỂ VÀ CHUYÊN NGHIỆP ===== */
.home-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(135deg, 
            rgba(8, 32, 58, 0.92) 0%, 
            rgba(15, 48, 85, 0.88) 50%, 
            rgba(22, 65, 110, 0.85) 100%),
        url('/wp-content/themes/oceanic-vision/assets/images/hero-team-work.jpg') center/cover no-repeat fixed !important;
    padding: 120px 0 80px;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Container giới hạn 1440px */
.hero-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Background pattern */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(72, 202, 228, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 119, 182, 0.08) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
}

/* Hero Badge */
.hero-badge {
    margin-bottom: 40px;
    animation: badge-float 3s ease-in-out infinite;
}

.badge-content {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(15px);
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.badge-content i {
    color: #48cae4;
    font-size: 1.2rem;
}

.badge-content span {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Hero Main Title */
.hero-main-title {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-title-line {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

.hero-title-line.accent {
    background: linear-gradient(135deg, #48cae4, #90e0ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title-line.accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(72, 202, 228, 0.2);
    z-index: -1;
    border-radius: 4px;
}

/* Hero Subtitle */
.hero-subtitle-container {
    margin-bottom: 50px;
}

.subtitle-tagline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.subtitle-highlight {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.subtitle-highlight:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.subtitle-divider {
    color: #48cae4;
    font-size: 1.5rem;
    font-weight: 300;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* CTA Container */
.hero-cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* CTA Button Primary */
.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 20px 40px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: 0.5s;
}

.cta-btn-primary:hover::before {
    left: 100%;
}

.cta-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.4);
}

.cta-btn-primary i {
    font-size: 1.4rem;
}

.cta-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.cta-btn-primary:hover .cta-arrow {
    transform: translateX(5px);
}

/* Hotline */
.cta-hotline {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 15px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-hotline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.hotline-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #48cae4, #0077b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(72, 202, 228, 0.3);
}

.hotline-content {
    display: flex;
    flex-direction: column;
}

.hotline-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.hotline-number {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hotline-number:hover {
    color: #48cae4;
}

/* Hero Features */
.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #0077b6, #48cae4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 119, 182, 0.3);
}

.feature-content {
    flex: 1;
}

.feature-number {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.feature-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.scroll-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(255, 255, 255, 0.5), 
        transparent);
}

.scroll-indicator i {
    color: #48cae4;
    font-size: 1.2rem;
}

/* ===== ANIMATIONS ===== */
@keyframes badge-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
/* Desktop Large */
@media (min-width: 1441px) {
    .home-hero {
        margin: 0 auto;
        border-radius: 0 0 24px 24px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .hero-title-line {
        font-size: 2.8rem;
    }
    
    .subtitle-highlight {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-features {
        max-width: 600px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .home-hero {
        min-height: 90vh;
        padding: 100px 0 60px;
        background-attachment: scroll !important;
        border-radius: 0 0 16px 16px;
    }
    
    .hero-title-line {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-cta-container {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .cta-btn-primary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 18px 30px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        max-width: 300px;
        gap: 20px;
    }
    
    .subtitle-tagline {
        gap: 10px;
    }
    
    .subtitle-highlight {
        padding: 6px 15px;
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.3rem;
    }
    
    .feature-number {
        font-size: 1.8rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .home-hero {
        padding: 80px 0 40px;
    }
    
    .hero-title-line {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .cta-hotline {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .hotline-content {
        align-items: center;
    }
    
    .subtitle-tagline {
        flex-direction: column;
    }
    
    .subtitle-divider {
        display: none;
    }
    
    .badge-content {
        padding: 10px 20px;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
}

/* ===== FIX LỖI CHO 1440px GIỚI HẠN ===== */
@media (min-width: 1440px) {
    .home-hero {
        position: relative;
        left: auto;
        right: auto;
    }
}

/* ===== ANIMATION DELAYS CHO HIỆU ỨNG XUẤT HIỆN ===== */
.hero-badge {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-main-title {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-subtitle-container {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta-container {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-features {
    animation: fadeInUp 0.8s ease-out 1s both;
}

.scroll-indicator {
    animation: fadeInUp 0.8s ease-out 1.2s both, bounce 2s infinite 2s;
}
/* ===== CSS BỔ SUNG CHO PHẦN GIỚI THIỆU - CHUYÊN NGHIỆP HƠN ===== */

/* Container chính - Giới hạn chiều rộng và tạo không gian tốt hơn */
.company-intro .intro-content.col-lg-7 {
    position: relative;
    padding-right: 40px;
}

/* Badge với hiệu ứng nổi bật hơn */
.company-intro .intro-badge {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    animation: intro-badge-enter 0.8s ease-out;
}

.company-intro .intro-badge .badge {
    background: linear-gradient(135deg, 
        #0077b6 0%, 
        #48cae4 50%, 
        #90e0ef 100%) !important;
    color: white !important;
    padding: 14px 28px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    letter-spacing: 0.5px;
    border: none !important;
    box-shadow: 
        0 8px 25px rgba(0, 119, 182, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset !important;
    border-radius: 50px !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.company-intro .intro-badge .badge:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(0, 119, 182, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset !important;
}

.company-intro .intro-badge .badge i {
    font-size: 1.1rem;
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Tiêu đề h3 với underline gradient */
.company-intro .intro-content h3.h2 {
    color: #1a365d;
    font-weight: 800 !important;
    font-size: 2.2rem !important;
    line-height: 1.3;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.company-intro .intro-content h3.h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0077b6, #48cae4);
    border-radius: 2px;
}

/* Đoạn văn với icon check đẹp hơn */
.company-intro .intro-text p.fs-5 {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.15rem !important;
    position: relative;
    padding-left: 40px;
}

.company-intro .intro-text p.fs-5 i.fa-check-circle {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 1.3rem;
    color: #28a745 !important;
    background: rgba(40, 167, 69, 0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.15);
}

.company-intro .intro-text p.fs-5 strong {
    color: #0077b6;
    font-weight: 700;
}

/* Highlight box trích dẫn - Điểm nhấn chính */
.company-intro .highlight-box {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 250, 252, 0.95) 100%) !important;
    border-left: 4px solid #0077b6 !important;
    box-shadow: 
        0 10px 30px rgba(0, 119, 182, 0.1),
        0 0 0 1px rgba(0, 119, 182, 0.05) inset !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    margin: 25px 0;
}

.company-intro .highlight-box:hover {
    transform: translateX(5px);
    box-shadow: 
        0 15px 40px rgba(0, 119, 182, 0.15),
        0 0 0 1px rgba(0, 119, 182, 0.1) inset !important;
}

.company-intro .highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(72, 202, 228, 0.05), 
        transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.company-intro .highlight-box:hover::before {
    transform: translateX(100%);
}

.company-intro .highlight-box p {
    color: #2d3748 !important;
    font-size: 1.1rem !important;
    line-height: 1.6;
    font-style: italic !important;
    position: relative;
    z-index: 1;
}

.company-intro .highlight-box p strong {
    color: #0077b6;
    font-weight: 700;
}

/* Phần thế mạnh - Cải thiện hiển thị */
.company-intro .strengths-list-wrapper {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.company-intro .strengths-list-wrapper h3 {
    color: #1a365d;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.company-intro .strengths-list-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #48cae4, #90e0ef);
    border-radius: 2px;
}

.company-intro .strengths-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-intro .strengths-list li {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1.05rem;
    padding: 15px 15px 15px 50px;
    margin-bottom: 12px;
    background: rgba(241, 245, 249, 0.5);
    border-radius: 10px;
    border-left: 3px solid #48cae4;
    position: relative;
    transition: all 0.3s ease;
}

.company-intro .strengths-list li:hover {
    background: white;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 119, 182, 0.1);
    border-left-color: #0077b6;
}

.company-intro .strengths-list li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #48cae4, #0077b6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 119, 182, 0.2);
}

.company-intro .strengths-list li strong {
    color: #0077b6;
    font-weight: 700;
    display: inline-block;
    margin-right: 5px;
}

/* Animation cho các phần tử */
@keyframes intro-badge-enter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.company-intro .intro-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.company-intro .intro-badge { animation-delay: 0.1s; }
.company-intro .intro-content h3.h2 { animation-delay: 0.2s; }
.company-intro .intro-text { animation-delay: 0.3s; }
.company-intro .highlight-box { animation-delay: 0.4s; }
.company-intro .strengths-list-wrapper { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive cho tablet và mobile */
@media (max-width: 992px) {
    .company-intro .intro-content.col-lg-7 {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .company-intro .intro-content h3.h2 {
        font-size: 1.8rem !important;
    }
    
    .company-intro .intro-text p.fs-5 {
        font-size: 1.1rem !important;
        padding-left: 35px;
    }
}

@media (max-width: 768px) {
    .company-intro .intro-badge .badge {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }
    
    .company-intro .intro-content h3.h2 {
        font-size: 1.6rem !important;
    }
    
    .company-intro .strengths-list li {
        padding: 12px 12px 12px 45px;
        font-size: 1rem;
    }
    
    .company-intro .highlight-box {
        padding: 20px !important;
    }
}
