/* =================================================================
   HERO SECTION REDESIGN - Marketing Optimized
   ================================================================= */

/* .hero-redesigned {
    background:
        linear-gradient(135deg, rgba(26, 35, 50, 0.92) 0%, rgba(45, 55, 72, 0.88) 100%),
        url('https://images.unsplash.com/photo-1535531298052-7457bcdae809?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    padding: 2.5rem 0;
    min-height: auto;
} */

.hero-redesigned {
    position: relative;
    padding: 6rem 0 4rem;
    /* Increased padding for better visual balance with bg */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Add this to center horizontally */
    overflow: hidden;
    background-color: #1a2332;
    /* Fallback color */
}

/* Hero Background Slider */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s linear;
    transform: scale(1);
    z-index: 0;
}

.hero-bg-slide.active {
    opacity: 1;
    transform: scale(1.05);
    /* Subtle zoom effect */
}

/* Overlay to ensure text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.75) 0%, rgba(45, 55, 72, 0.70) 100%);
    z-index: 1;
}

/* Ensure content is above bg */
.hero-redesigned .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Centered Content Layout */
.hero-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.hero-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Left Side - Main Content */
.hero-left {
    padding-top: 0;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(30, 174, 69, 0.15);
    color: #1eae45;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(30, 174, 69, 0.3);
}

.hero-title-new {
    font-size: 1.65rem;
    font-weight: 700;
    color: white;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.hero-subtitle-new {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Trust Badges Grid */
.hero-trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.trust-badge-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(30, 174, 69, 0.3);
    transform: translateY(-2px);
}

.trust-icon {
    font-size: 1.25rem;
    color: #1eae45;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 0.85rem;
    color: white;
    font-weight: 700;
}

.trust-text span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Buttons */
.hero-cta-new {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.hero-cta-new .btn-primary-large {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background-color: #1eae45;
    color: #ffffff;
    border: 2px solid #1eae45;
    padding: 0.55rem 1.25rem;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta-new .btn-primary-large:hover {
    background-color: #179a37;
    border-color: #179a37;
    color: #ffffff;
}

.btn-secondary-outlined {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.55rem 1.25rem;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
}

.btn-secondary-outlined:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #d4af37;
    color: #d4af37;
}

/* Social Proof */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    justify-content: center;
}

.client-avatars {
    display: flex;
    align-items: center;
}

.client-avatars img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #1a2332;
    margin-left: -7px;
}

.client-avatars img:first-child {
    margin-left: 0;
}

.avatar-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1eae45;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    margin-left: -7px;
}

.hero-social-proof p {
    color: #ffffff;
    font-size: 0.8rem;
    margin: 0;
    white-space: nowrap;
}

.hero-social-proof p strong {
    color: #ffffff;
    font-weight: 700;
}

/* Right Side - Stats Card */
.hero-stats-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stats-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.stats-card-header i {
    font-size: 1.15rem;
    color: #1eae45;
}

.stats-card-header h3 {
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.stat-item {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.stat-item i {
    font-size: 1.1rem;
    color: #1eae45;
    margin-top: 0.1rem;
}

.stat-item strong {
    font-size: 0.85rem;
    color: #ffffff;
    display: block;
    margin-bottom: 0.15rem;
    font-weight: 600;
}

.stat-item p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

/* Trustpilot Widget */
.trustpilot-widget {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 182, 122, 0.08);
    border: 1px solid rgba(0, 182, 122, 0.2);
    border-radius: 8px;
}

.trustpilot-stars {
    color: #00b67a;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.trustpilot-widget p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.trustpilot-widget strong {
    color: #ffffff;
    font-weight: 600;
}

.trustpilot-logo {
    max-width: 120px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title-new {
        font-size: 2.25rem;
    }

    .hero-trust-badges {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-cta-new {
        flex-direction: column;
    }

    .hero-cta-new button,
    .hero-cta-new a {
        width: 100%;
    }

    /* Make stats card more compact on tablet/mobile */
    .hero-stats-card {
        padding: 1rem;
    }

    .stats-card-header {
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
    }

    .stats-card-header h3 {
        font-size: 0.9rem;
    }

    .stats-list {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .stat-item {
        gap: 0.5rem;
    }

    .stat-item i {
        font-size: 1rem;
    }

    .stat-item strong {
        font-size: 0.8rem;
    }

    .stat-item p {
        font-size: 0.7rem;
    }

    .trustpilot-widget {
        padding: 0.75rem;
    }

    .trustpilot-stars {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .trustpilot-widget p {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }
}

@media (max-width: 768px) {
    .hero-redesigned {
        padding: 3rem 0 2rem;
    }

    .hero-redesigned .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .hero-title-new {
        font-size: 1.75rem;
    }

    .hero-subtitle-new {
        font-size: 1rem;
    }
}