/* Modern Hero Banner CSS - Completely Separate */
.modern-hero-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-floating-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-circle-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: heroFloat 6s ease-in-out infinite;
}

.floating-circle-2 {
    position: absolute;
    top: 60%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: heroFloat 8s ease-in-out infinite reverse;
}

.floating-circle-3 {
    position: absolute;
    bottom: 30%;
    left: 20%;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: heroFloat 7s ease-in-out infinite;
}

.hero-main-container {
    position: relative;
    z-index: 2;
}

.hero-text-area {
    padding: 60px 0;
}

.hero-trust-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 8px 20px;
    border-radius: 25px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.hero-main-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: black;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    background: #2563eb;
    background-image: none;
    border-radius: 20px;
    padding: 29px;
}

.hero-gradient-text {
    background: linear-gradient(45deg, #4ade80, #06d6a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: black;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-primary-btn {
    background: linear-gradient(45deg, #4ade80, #06d6a0);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.3);
    border: none;
    transform: translateY(0);
}

.hero-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(74, 222, 128, 0.4);
    color: white;
    text-decoration: none;
}

.hero-secondary-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.hero-trust-indicators {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.hero-rating-stars {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-star-group {
    display: flex;
}

.hero-star {
    color: #fbbf24;
    font-size: 18px;
}

.hero-rating-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-left: 8px;
}

.hero-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-customer-count {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-users-icon {
    color: #4ade80;
    font-size: 20px;
}

.hero-customer-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.hero-image-area {
    position: relative;
    padding: 40px 0;
}

.hero-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: perspective(1000px) rotateY(-8deg) rotateX(5deg);
}

.hero-main-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-main-image:hover {
    transform: scale(1.05);
}

.hero-stats-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    color: #667eea;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.hero-stat-label {
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-floating-icon-1 {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #4ade80, #06d6a0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
    animation: heroPulse 2s infinite;
}

.hero-floating-icon-2 {
    position: absolute;
    bottom: 100px;
    left: -20px;
    width: 110px;
    height: 110px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    animation: heroBounce 2s infinite;
}

.hero-scroll-text {
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes heroBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes heroPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.8rem !important;
    }

    .hero-image-area {
        margin-top: 40px;
    }

    .hero-trust-indicators {
        flex-direction: column;
        gap: 20px !important;
    }

    .hero-buttons-wrapper {
        justify-content: center;
    }
}