/* Hosting Promo Section */
.hosting-promo-section {
    padding: 10px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.hosting-promo-wrapper {
    position: relative;
    z-index: 1;
}

/* Left Content Section */
.hosting-promo-content {
    padding: 20px 15px;
}

.hosting-promo-title {
    font-size: clamp(32px, 6vw, 55px);
    font-weight: 900;
    line-height: 99%;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

.hosting-promo-title .title-part-1 {
    color: #4ABAB9;
}

.hosting-promo-title .title-part-2 {
    color: #000000;
}

.hosting-promo-tagline {
    font-size: clamp(16px, 2.2vw, 18px);
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: bold;
}

.hosting-promo-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
}

.hosting-promo-features .feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}

.hosting-promo-features .feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #6B7280;
}

.hosting-promo-features .feature-icon svg {
    width: 20px;
    height: 20px;
}

.hosting-promo-features .feature-text {
    font-size: clamp(14px, 2vw, 16px);
    color: #000000;
    line-height: 1.5;
}

.hosting-promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 5px 5px 5px 15px;
    background: linear-gradient(135deg, #1E40AF 0%, #00BFA5 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hosting-promo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 191, 165, 0.3);
    background: white;
    color: #4ABAB9;
}

.hosting-promo-cta span {
    width: calc(100% - 36px);
}

.hosting-promo-cta .cta-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
}

.hosting-promo-cta:hover .cta-arrow {
    background: #4ABAB9;
    color: white;
}

.hosting-promo-cta .cta-arrow svg {
    width: 16px;
    height: 16px;
}

/* Right Visual Section */
.hosting-promo-visual {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
}

.visual-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.server-rack-graphic {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    border-radius: 20px;
    opacity: 0.6;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(59, 130, 246, 0.1) 40px, rgba(59, 130, 246, 0.1) 42px), repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(147, 51, 234, 0.1) 40px, rgba(147, 51, 234, 0.1) 42px);
}

/* Stats Cards */
.stats-cards {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.stat-card {
    background: #E0F2F1;
    border-radius: 12px;
    padding: 20px 24px;
    position: absolute;
    width: auto;
    width: 270px;
    min-height: 160px;
}

.stat-card-1 {
    top: 5%;
    left: 0;
    background: #EEFFFF;
    z-index: 4;
    text-align: center;
}

.stat-card-2 {
    top: 5%;
    right: 0;
    background: #F7F7F7;
    z-index: 4;
}

.stat-card-3 {
    bottom: 24%;
    left: -15%;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    z-index: 4;
    width: 190px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 20%);
}

.stat-number {
    font-size: clamp(40px, 5vw, 48px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: clamp(12px, 1.6vw, 14px);
    color: #4B5563;
    line-height: 1.4;
    text-align: center;
}

.stat-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    justify-content: center;
}

.stat-rating svg {
    width: 18px;
    height: 18px;
}

.stat-growth {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    color: #10B981;
    font-size: clamp(12px, 1.6vw, 14px);
    font-weight: 600;
    justify-content: center;
}

.stat-title {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;
    color: #000000;
    margin-bottom: 4px;
}

.stat-period {
    font-size: clamp(11px, 1.4vw, 12px);
    color: #6B7280;
    margin-bottom: 8px;
    display: inline-block;
    margin-right: 10px;
}

.stat-badge {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: clamp(11px, 1.4vw, 12px);
    font-weight: 600;
    margin-bottom: 12px;
}

.stat-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
    margin-top: 12px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, #00BFA5 0%, #217B7A 100%);
    border-radius: 4px 4px 0 0;
    min-width: 8px;
    transition: height 0.3s ease;
}

/* Person Image */
.visual-person {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
}

.person-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
}

/* Background Decorative Elements */
.hosting-promo-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 191, 165, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hosting-promo-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* Responsive Design */
/* Tablet vÃ  nhá» hÆ¡n */
@media (max-width: 991.98px) {
    .hosting-promo-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .hosting-promo-visual {
        min-height: 500px;
    }

    .stats-cards {
        min-height: 500px;
    }

    .stat-card {
        max-width: 180px;
        padding: 16px 20px;
    }

    .stat-card-1 {
        top: 3%;
        left: 3%;
    }

    .stat-card-2 {
        top: 3%;
        right: 3%;
    }

    .stat-card-3 {
        bottom: 30%;
        left: 3%;
    }

    .visual-person {
        width: 300px;
        height: 400px;
    }

    .server-rack-graphic {
        width: 300px;
        height: 250px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .hosting-promo-section {
        padding: 10px 0;
        margin-top: 20px;
        border-radius: 10px;
    }

    .hosting-promo-content {
        padding: 15px 10px;
    }

    .hosting-promo-visual {
        padding: 15px 10px;
        min-height: 400px;
    }

    .stats-cards {
        min-height: 400px;
    }

    .stat-card {
        max-width: 150px;
        padding: 14px 16px;
    }

    .stat-card-1 {
        top: 2%;
        left: 2%;
    }

    .stat-card-2 {
        top: 2%;
        right: 2%;
    }

    .stat-card-3 {
        bottom: 9%;
        left: 2%;
    }

    .visual-person {
        width: 250px;
        height: 350px;
    }

    .server-rack-graphic {
        width: 250px;
        height: 200px;
    }
    .hosting-promo-title{
        line-height: 120%;
    }

}

/* ============================================
   HOSTING INFOGRAPHIC SECTION
   ============================================ */
.hosting-infographic-section {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.hosting-infographic-header {
    text-align: center;
    margin-bottom: 50px;
}

.hosting-infographic-title {
    font-size: clamp(28px, 4.5vw, 42px);
    font-weight: 700;
    color: #4ABAB9;
    margin-bottom: 0;
    line-height: 1.2;
}

.hosting-infographic-subtitle {
    font-size: clamp(14px, 3.2vw, 32px);
    font-weight: 700;
    color: #4B5563;
    margin: 0;
    line-height: 1.6;
}

.hosting-infographic-grid {
    margin-top: 30px;
}

.hosting-problem-box {
    background: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgb(0 0 0 / 20%);
    border-radius: 16px;
    padding: 30px;
    padding-bottom: 0;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.hosting-problem-box:hover {
    box-shadow: 0 8px 24px rgba(0, 191, 165, 0.15);
    border-color: #00BFA5;
    transform: translateY(-4px);
}

.hosting-problem-box .server-rack-graphic {
    left: 0;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 80px, rgb(74 186 185 / 10%) 80px, rgb(74 186 185 / 10%) 82px), repeating-linear-gradient(0deg, transparent, transparent 40px, rgb(255 255 255 / 10%) 80px, rgb(74 186 185 / 10%) 82px);
}

.hosting-problem-box.hosting-problem-key {
    background: #4ABAB9;
}

.hosting-problem-key .problem-content-image img {
    position: relative;
}

.hosting-problem-key .problem-content-image:before {
    content: "";
    background: white;
    position: absolute;
    right: -80px;
    bottom: 0;
    width: 125%;
    height: 100%;
    opacity: .5;
    border-radius: 30px 0 0 0;
}

.hosting-problem-orr .problem-text {
    background: #75E3E2;
    padding: 15px;
    border-radius: 16px 16px 0 16px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 20%);
}

.problem-header {
    margin-bottom: 20px;
}

.problem-label {
    display: inline-block;
    background: #4ABAB91A;
    color: #4ABAB9;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: clamp(12px, 1.6vw, 14px);
    font-weight: 600;
}

.hosting-problem-key .problem-label {
    background: white;
    color: #4ABAB9;
}

.problem-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-visual {
    position: relative;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-text {
    font-size: clamp(13px, 1.7vw, 15px);
    color: #1F2937;
    line-height: 1.6;
    margin: 0;
    font-weight: bold;
}

.hosting-problem-key .problem-text {
    background: white;
    padding: 15px;
    border-radius: 16px 16px 0 16px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 20%);
}

.hosting-problem-box.hosting-problem-key .server-rack-graphic {
    background-image: repeating-linear-gradient(90deg, transparent, transparent 80px, rgb(255 255 255 / 0%) 80px, rgb(255 255 255 / 40%) 82px), repeating-linear-gradient(0deg, transparent, transparent 40px, rgb(255 255 255 / 0%) 80px, rgb(255 255 255 / 40%) 82px);
}

/* Laptop Icon */
.laptop-icon {
    position: relative;
    width: 120px;
    height: 80px;
    z-index: 2;
}

.laptop-screen {
    width: 100%;
    height: 70px;
    background: #1F2937;
    border-radius: 8px 8px 0 0;
    border: 3px solid #00BFA5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.laptop-base {
    width: 130%;
    height: 8px;
    background: #00BFA5;
    border-radius: 0 0 8px 8px;
    margin: 0 auto;
    position: relative;
    left: -5%;
}

/* Loading Spinner */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: #FF6B35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #9CA3AF;
    border-radius: 50%;
    opacity: 0.6;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation: float 3s ease-in-out infinite;
}

.particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation: float 3s ease-in-out infinite 0.5s;
}

.particle:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation: float 3s ease-in-out infinite 1s;
}

.particle:nth-child(4) {
    top: 40%;
    right: 10%;
    animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* People Group */
.problem-visual-people {
    background: linear-gradient(135deg, rgba(0, 191, 165, 0.05) 0%, rgba(0, 191, 165, 0.1) 100%);
    border-radius: 12px;
    padding: 20px;
}

.people-group {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.person {
    position: relative;
}

.person-head {
    width: 30px;
    height: 30px;
    background: #00BFA5;
    border-radius: 50%;
    margin: 0 auto 5px;
}

.person-body {
    width: 40px;
    height: 50px;
    background: #00BFA5;
    border-radius: 8px;
    margin: 0 auto;
}

.person-arm {
    position: absolute;
    width: 20px;
    height: 4px;
    background: #00BFA5;
    border-radius: 2px;
}

.arm-pointing {
    top: 35px;
    right: -15px;
    transform: rotate(-20deg);
}

/* Chart Display */
.chart-display {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 100px;
    height: 60px;
    background: #ffffff;
    border-radius: 8px;
    padding: 8px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chart-line {
    width: 100%;
    height: 2px;
    background: #00BFA5;
    margin-bottom: 8px;
    position: relative;
}

.chart-points {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 30px;
}

.chart-point {
    width: 8px;
    height: 20px;
    background: #00BFA5;
    border-radius: 4px;
    display: block;
}

.chart-point:nth-child(2) {
    height: 15px;
}

.chart-point:nth-child(3) {
    height: 25px;
}

.chart-point:nth-child(4) {
    height: 18px;
}

.chart-point:nth-child(5) {
    height: 22px;
}

/* Background Icons */
.background-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.bg-icon {
    position: absolute;
    font-size: clamp(20px, 2.5vw, 24px);
    color: #00BFA5;
}

.icon-code {
    top: 15%;
    left: 10%;
    font-size: clamp(16px, 2.2vw, 20px);
    font-weight: 700;
}

.icon-target {
    top: 20%;
    right: 15%;
}

.icon-erp {
    bottom: 15%;
    left: 15%;
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 700;
}

/* Woman Figure */
.problem-visual-woman {
    position: relative;
    padding: 20px;
}

.woman-figure {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.woman-head {
    width: 35px;
    height: 35px;
    background: #00BFA5;
    border-radius: 50%;
    position: relative;
    margin-bottom: 5px;
}

.woman-face {
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.woman-body {
    width: 45px;
    height: 60px;
    background: #00BFA5;
    border-radius: 8px;
}

.arm-head {
    position: absolute;
    top: 20px;
    left: -10px;
    width: 25px;
    height: 4px;
    background: #00BFA5;
    border-radius: 2px;
    transform: rotate(45deg);
}

.exclamation-bubble {
    position: absolute;
    top: -10px;
    right: -15px;
    width: 25px;
    height: 25px;
    background: #FF6B35;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 700;
    z-index: 3;
}

.laptop-error {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1;
}

.error-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-folder {
    font-size: clamp(24px, 3.5vw, 32px);
    position: absolute;
}

.error-x {
    position: absolute;
    font-size: clamp(28px, 4.5vw, 40px);
    color: #EF4444;
    font-weight: 700;
    z-index: 2;
}

.desk-plant {
    position: absolute;
    bottom: 10px;
    left: 20px;
    font-size: clamp(20px, 2.5vw, 24px);
    z-index: 1;
}

/* Server Stack */
.problem-visual-server {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 191, 165, 0.05) 0%, rgba(0, 191, 165, 0.1) 100%);
    border-radius: 12px;
}

.server-stack {
    position: absolute;
    bottom: 30px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 1;
}

.server-unit {
    width: 80px;
    height: 20px;
    background: #00BFA5;
    border-radius: 4px;
    position: relative;
}

.server-unit::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
}

.laptop-chart {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

.pie-chart {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: conic-gradient(
        #00BFA5 0deg 120deg,
        #00D9C4 120deg 240deg,
        #A7F3D0 240deg 360deg
    );
    position: relative;
}

.pie-slice {
    position: absolute;
    width: 100%;
    height: 100%;
}

.globe-hand {
    position: absolute;
    top: -10px;
    right: -15px;
    font-size: clamp(20px, 2.5vw, 24px);
    z-index: 3;
}

.background-gears {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
}

.gear-icon {
    position: absolute;
    font-size: clamp(24px, 3.2vw, 30px);
    color: #00BFA5;
}

.gear-icon:nth-child(1) {
    top: 10%;
    right: 10%;
    animation: rotate 4s linear infinite;
}

.gear-icon:nth-child(2) {
    bottom: 15%;
    right: 20%;
    animation: rotate 4s linear infinite reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hosting-problem-box {
        min-height: 260px;
        padding: 25px;
    }
}

@media (max-width: 767.98px) {
    .hosting-infographic-section {
        padding: 40px 0;
    }
    
    .hosting-infographic-header {
        margin-bottom: 30px;
    }
    
    .hosting-problem-box {
        min-height: 240px;
        padding: 20px;
    }
    
    .problem-visual {
        min-height: 120px;
    }
    
    .laptop-icon {
        width: 100px;
        height: 70px;
    }
    
    .chart-display {
        width: 80px;
        height: 50px;
    }
    
    .server-stack {
        bottom: 20px;
    }
    
    .server-unit {
        width: 60px;
        height: 16px;
    }
}
/* ============================================
   NHAN HOA BANNER SECTION
   ============================================ */
.nhanhoa-banner {
    width: 100%;
    padding: 40px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.nhanhoa-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.nhanhoa-banner-content {
    background: #8edde5;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Ripple effect background */
.nhanhoa-ellipse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.ellipse-1 {
    width: 20%;
    height: 150px;
    background: radial-gradient(ellipse at center, rgb(176 224 230 / 0%) 0%, rgb(176 224 230) 35%, rgba(255, 255, 255, 0.1) 60%, #e2f7f9 80%);
}

.ellipse-2 {
    width: 40%;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(173, 216, 230, 0.4) 0%, rgba(173, 216, 230, 0.2) 35%, rgba(255, 255, 255, 0.08) 60%, #ddf5f7 80%);
}

.ellipse-3 {
    width: 60%;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(135, 206, 250, 0.35) 0%, rgba(135, 206, 250, 0.15) 35%, rgba(255, 255, 255, 0.06) 60%, #c6eef2 80%);
}

.ellipse-4 {
    width: 80%;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(176, 196, 222, 0.3) 0%, rgba(176, 196, 222, 0.12) 35%, rgba(255, 255, 255, 0.04) 60%, #ade6ec 80%);
}

.ellipse-5 {
    width: 100%;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(176, 224, 230, 0.25) 0%, rgba(176, 224, 230, 0.1) 35%, rgb(255 255 255 / 20%) 60%, #99e0e8 80%);
}

.nhanhoa-banner-title {
    font-size: clamp(24px, 3.2vw, 28px);
    font-weight: 700;
    color: #37474F;
    margin: 0;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.nhanhoa-banner-description {
    font-size: clamp(14px, 2vw, 16px);
    color: #515151;
    margin: 0 0 35px 0;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.nhanhoa-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(90deg, #1E88E5 0%, #00BCD4 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

.nhanhoa-banner-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
}

.nhanhoa-cta-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nhanhoa-cta-icon svg {
    width: 12px;
    height: 12px;
    stroke: #ffffff;
    stroke-width: 2.5;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .nhanhoa-banner-content {
        padding: 40px 30px;
    }
}

@media (max-width: 767.98px) {
    .nhanhoa-banner {
        padding: 30px 15px;
    }

    .nhanhoa-banner-content {
        padding: 35px 25px;
        border-radius: 16px;
    }

    .nhanhoa-banner-title {
        margin-bottom: 15px;
    }

    .nhanhoa-banner-description {
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .nhanhoa-banner-cta {
        padding: 14px 28px;
        gap: 10px;
    }

    .nhanhoa-cta-icon {
        width: 28px;
        height: 28px;
    }

    .nhanhoa-cta-icon svg {
        width: 10px;
        height: 10px;
    }

    .nhanhoa-banner-content::before {
        width: 400px;
        height: 300px;
    }

    .nhanhoa-banner-content::after {
        width: 500px;
        height: 350px;
    }
}

/* ============================================
   NHAN HOA HOSTING SECTION
   ============================================ */
.nhanhoa-hosting-section {
    padding: 80px 0;
    background: #F1FAFA;
    position: relative;
}

.nhanhoa-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 15px;
}

.nhanhoa-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.nhanhoa-subtitle {
    font-size: clamp(14px, 2vw, 16px);
    color: #515151;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
}

.nhanhoa-content-section {
    background: white;
    padding: 30px;
    border-radius: 16px;
}

.nhanhoa-stat-box {
    background: #278281;
    padding: 15px;
    border-radius: 16px;
    position: absolute;
    top: -5px;
    left: -81px;
    border: 10px solid white;
    text-align: center;
    color: white;
    max-width: 200px;
}

.nhanhoa-section-label {
    color: #4ABAB9;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;
}

.nhanhoa-section-heading {
    font-size: clamp(22px, 3.5vw, 31px);
    color: #515151;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.nhanhoa-content-left {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
}

.nhanhoa-section-blue {
    background: #B3EAEA;
}

.nhanhoa-feature-list {
    margin: 0;
    padding-left: 20px;
}

.nhanhoa-feature-list li {
    font-size: clamp(14px, 1.8vw, 15px);
    line-height: 1.7;
    margin-bottom: 12px;
    color: #515151;
}

.nhanhoa-stat-box .stat-number {
    font-size: clamp(24px, 3.5vw, 48px);
    font-weight: 700;
    margin-bottom: 10px;
}

.nhanhoa-stat-box .stat-text {
    font-size: clamp(12px, 1.6vw, 14px);
    line-height: 1.5;
}

.nhanhoa-section-heading:before {
    content: "";
    width: 100px;
    height: 2px;
    background: #4ABAB9;
    position: absolute;
    bottom: -20px;
    left: 0;
}

.nhanhoa-server-icon {
    position: absolute;
    bottom: 0;
    right: 0;
}

.nhanhoa-section-blue .nhanhoa-section-heading, .nhanhoa-section-last .nhanhoa-section-heading{
    margin-bottom: 20px;
}

.nhanhoa-section-blue .nhanhoa-section-heading:before, .nhanhoa-section-last .nhanhoa-section-heading:before {
    display: none;
}

.nhanhoa-section-blue .nhanhoa-section-label {
    color: white;
}

.nhanhoa-section-blue .nhanhoa-feature-list, .nhanhoa-section-last .nhanhoa-feature-list{
    position: relative;
}

.nhanhoa-section-blue .nhanhoa-feature-list:before, .nhanhoa-section-last .nhanhoa-feature-list:before{
    content: "";
    width: 2px;
    height: 100%;
    background: #4ABAB9;
    position: absolute;
    left: -15px;
    top: 0;
}

.nhanhoa-section-last .nhanhoa-stat-box {
    top: inherit;
    bottom: -20px;
    max-width: 250px;
    width: 100%;
    background: #4ABAB9;
    border-radius: 30px;
}

/* Responsive Design */
@media (max-width: 500px) {
    .nhanhoa-stat-box, .nhanhoa-section-last .nhanhoa-stat-box {
        position: relative;
        top: 0;
        left: 0;
        max-width: 100%;
    }
}

/* ============================================
   NHAN HOA SWITCH HOSTING
   ============================================ */
.nhanhoa-switch-hosting {
    padding: 80px 0;
    position: relative;
}

.swiper-nhanhoa {
    padding: 30px 10px;
}

.item-nhanhoa-swiper {
    background: white;
    box-shadow: 0 0px 50px rgb(123 210 210 / 30%);
    padding: 15px;
    min-height: 300px;
    border-radius: 16px;
    margin-top: -20px;
}

.swiper-nhanhoa .swiper-slide {
    height: auto;
}

.swiper-nhanhoa .number {
    text-align: center;
    font-size: 150px;
    font-weight: 800;
    color: #4ABAB9;
    line-height: 72%;
    opacity: .5;
    position: relative;
    z-index: -1;
}

.nhanhoa-swiper--image {
    text-align: center;
    margin-bottom: 20px;
}

.nhanhoa-swiper--image img {
    width: 96px;
    height: 96px;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.nhanhoa-wrap--title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.swiper-nhanhoa .swiper-slide:hover .item-nhanhoa-swiper {
    background: #4ABAB9;
}

.swiper-nhanhoa .swiper-slide:hover .item-nhanhoa-swiper * {
    color: white;
}

.swiper-nhanhoa .swiper-slide:hover .item-nhanhoa-swiper img {
    filter: brightness(0) invert(1);
}

.swiper-nhanhoa .swiper-slide:hover .number {
    opacity: 1;
}

/* ============================================
   INTRODUCING-SERVICE
   ============================================ */
.bg-service {
    background: #EFFAFD;
    padding: 80px 0;
}

.item-service-hosting {
    background: white;
    padding: 15px;
    min-height: 300px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.nhanhoa-service-hosting {
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nhanhoa-service-hosting img {
    transform: translateX(50px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item-service-hosting:hover {
    background: #4ABAB9;
}

.item-service-hosting:hover .nhanhoa-wrap * {
    color: white;
}

.item-service-hosting:hover .nhanhoa-service-hosting img {
    transform: translateX(0px);
}

.view-service {
    background: white;
    border-radius: 30px;
    color: black;
    padding: 10px;
    margin-top: 10px;
    opacity: 0;
    position: relative;
    z-index: 1;
}

.item-service-hosting .nhanhoa-wrap {
    transform: translateY(30px);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item-service-hosting:hover .nhanhoa-wrap {
    transform: translateY(-25px);
}

.item-service-hosting:hover .view-service {
    opacity: 1;
}

.item-service-hosting:after {
    content: "";
    background: linear-gradient(to bottom, transparent 0%, #000000 100%);
    height: 100%;
    width: 100%;
    position: absolute;
    inset: 0;
    opacity: 0;
}

.item-service-hosting:hover:after {
    opacity: 1;
}

/* ============================================
   FAQ
   ============================================ */
.faq-hosting {
    position: relative;
    padding: 80px 0;
}

#accordionFAQ .card {
    border: 1px solid #4ABAB980;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

#accordionFAQ .card-header button {
    color: black;
   
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#accordionFAQ .card-body {
    padding: 1rem;
}

#accordionFAQ .card-body ul {
    list-style: none;
    padding: 0;
}

.card-header h3 button:not(.collapsed) i {
    transform: rotate(180deg);
}

#accordionFAQ .card-header button:not(.collapsed), .collapse {
    background: #4ABAB9;
    color: white;
}

#accordionFAQ .collapsed:not(.show) {
    background: white;
}

.faq-hosting-title-sub {
    text-align: center;
    font-size: 24px;
    color: #4ABAB9;
    font-weight: 700;
}

.view-faq {
    font-size: 20px;
    color: #4ABAB9;
    font-weight: 600;
}

/* ============================================
   FEEDBACK SERVICE
   ============================================ */
.item-feedback-service {
    background: white;
    padding: 30px;
    border-radius: 16px;
}

.feedback-image {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    overflow: hidden;
    margin-top: -55px;
    margin-bottom: 15px;
    border: 5px solid white;
}

.item-feedback-service .fa-quote-right {
    font-size: 60px;
    color: #4ABAB9;
}

.feedback-wrap--title {
    font-size: 20px;
    font-weight: 700;
}

.feedback-wrap .job {
    color: #4ABAB9;
    font-weight: 600;
}

.feedback-wrap-description {
    font-size: 16px;
    margin-top: 10px;
}

