/* ========================================
   New Hero Section Styles
======================================== */
.hero-section-new {
    position: relative;
    padding: 20px 0 80px;
    background: linear-gradient(180deg, #F8FAFC 0%, #EEF2FF 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#4F46E5 0.5px, transparent 0.5px), radial-gradient(#4F46E5 0.5px, #F8FAFC 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.05;
    pointer-events: none;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: #fff;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 25px;
    border: 1px solid #E2E8F0;
}

.hero-badge-new .badge-icon {
    color: #F59E0B;
    font-size: 18px;
}

.hero-badge-new .badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
}

.hero-title-new {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-title-new .highlight-text {
    display: block;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc-new {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 540px;
}

.hero-actions-new {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-medium);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.btn-hero-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.4);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #fff;
    color: var(--dark-color);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-medium);
    border: 1px solid #E2E8F0;
}

.btn-hero-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #F8FAFC;
}

.hero-trust-new {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -15px;
    object-fit: cover;
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.trust-count {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--dark-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 3px solid #fff;
    margin-left: -15px;
}

.trust-text .stars {
    color: #F59E0B;
    font-size: 14px;
    margin-bottom: 4px;
}

.trust-text span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
}

/* Hero Image Side */
.hero-image-wrapper-new {
    position: relative;
    padding: 20px;
}

.main-img-box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    border: 8px solid #fff;
}

.main-hero-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 22px;
}

.float-card {
    position: absolute;
    background: #fff;
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    border: 1px solid rgba(0,0,0,0.05);
}

.float-card-1 {
    top: 60px;
    left: -30px;
}

.float-card-2 {
    bottom: 60px;
    right: -30px;
}

.float-card .icon-box {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.float-card .icon-box.success {
    background: #DCFCE7;
    color: #10B981;
}

.float-card .icon-box.warning {
    background: #FEF3C7;
    color: #F59E0B;
}

.float-card .text-box h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    line-height: 1;
}

.float-card .text-box p {
    font-size: 12px;
    color: var(--text-color);
    margin: 4px 0 0;
}

.animate-float-y {
    animation: floatY 4s ease-in-out infinite;
}

.animate-float-x {
    animation: floatX 5s ease-in-out infinite;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes floatX {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-15px); }
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section-new {
        padding: 90px 0 50px;
        text-align: center;
    }
    
    .hero-badge-new {
        margin: 0 auto 20px;
    }
    
    .hero-title-new {
        font-size: 36px;
    }
    
    .hero-desc-new {
        margin: 0 auto 30px;
    }
    
    .hero-actions-new {
        justify-content: center;
    }
    
    .hero-trust-new {
        justify-content: center;
    }
    
    .hero-image-wrapper-new {
        margin-top: 40px;
    }
    
    .main-hero-img {
        height: 400px;
    }
    
    .float-card-1 {
        left: 0;
    }
    
    .float-card-2 {
        right: 0;
    }
}

@media (max-width: 575px) {
    .hero-title-new {
        font-size: 32px;
    }
    
    .main-hero-img {
        height: 300px;
    }
    
    .float-card {
        display: none;
    }
    
    .hero-actions-new {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}
