/* Premium Hero Section */

.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(30, 90, 158, 0.85) 0%, rgba(77, 163, 232, 0.85) 100%),
        url('../assets/images/backdrop/2.avif') center center;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
    padding: calc(var(--space-3xl) + 80px) 0 var(--space-3xl);
}

/* Animated Background Pattern */
.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.hero-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particle-float 15s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 15s; }
.particle:nth-child(3) { left: 40%; animation-delay: 4s; animation-duration: 18s; }
.particle:nth-child(4) { left: 60%; animation-delay: 1s; animation-duration: 14s; }
.particle:nth-child(5) { left: 75%; animation-delay: 3s; animation-duration: 16s; }
.particle:nth-child(6) { left: 90%; animation-delay: 5s; animation-duration: 13s; }

@keyframes particle-float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: var(--fw-medium);
    margin-bottom: var(--space-lg);
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.hero-badge i {
    color: var(--accent-gold);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: var(--fw-black);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3), 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInLeft 0.8s ease-out 0.4s both;
}

.hero-title .text-highlight {
    position: relative;
    display: inline-block;
}

.hero-title .text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: -0.05em;
    right: -0.05em;
    height: 0.3em;
    background: var(--accent-gradient);
    opacity: 0.5;
    z-index: -1;
    border-radius: var(--radius-sm);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: var(--fw-semibold);
    line-height: 1.5;
    margin-bottom: var(--space-xl);
    opacity: 1;
    text-shadow: 0 2px 10px rgba(255, 141, 75, 0.452);
    color:white;
    animation: fadeInLeft 0.8s ease-out 0.6s both;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-cta-primary {
    position: relative;
    padding: 1.1rem 2.5rem;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: var(--radius-full);
    font-weight: var(--fw-bold);
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.hero-cta-secondary {
    position: relative;
    padding: 1.1rem 2.5rem;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: var(--radius-full);
    font-weight: var(--fw-semibold);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.hero-cta-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    align-items: center;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.trust-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    font-size: 1.2rem;
}

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

.trust-value {
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.trust-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Hero Image/Illustration */
.hero-visual {
    position: relative;
    z-index: 2;
    animation: fadeInRight 0.8s ease-out 0.5s both;
}

.hero-image-wrapper {
    position: relative;
    padding: var(--space-lg);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: var(--radius-2xl);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-premium {
        padding: calc(var(--space-2xl) + 80px) 0 var(--space-2xl);
        min-height: auto;
    }

    .hero-visual {
        margin-top: var(--space-xl);
    }

    .hero-cta-group {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-premium {
        text-align: center;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .trust-item {
        flex: 1 1 auto;
        min-width: 140px;
    }
}
