/* Hero Logo Animation */

.sqa-hero-logo-wrap {
    animation: heroLogoEnter 1.4s ease-out forwards,
               heroLogoFloat 5s ease-in-out infinite 1.4s;
}

.sqa-hero-logo {
    filter: drop-shadow(0 0 22px rgba(200, 169, 81, 0.45));
    animation: heroLogoGlow 4s ease-in-out infinite;
}

@keyframes heroLogoEnter {
    from {
        opacity: 0;
        transform: translateX(-90px) translateY(-50%) scale(0.85);
    }

    to {
        opacity: 1;
        transform: translateX(0) translateY(-50%) scale(1);
    }
}

@keyframes heroLogoFloat {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(calc(-50% - 16px)) translateX(8px);
    }
}

@keyframes heroLogoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 14px rgba(200, 169, 81, 0.35));
    }

    50% {
        filter: drop-shadow(0 0 30px rgba(200, 169, 81, 0.75));
    }
}
.sqa-split-hero {
    min-height: 100vh;
    display: flex;
    background: linear-gradient(135deg, #06251c 0%, #0B3D2E 55%, #123f31 100%);
    overflow: hidden;
}

.sqa-hero-content {
    width: 48%;
    padding: 120px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 5;
}

.sqa-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(200,169,81,0.45);
    color: #F4D37E;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 26px;
}

.sqa-hero-content h1 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 24px;
}

.sqa-hero-content h1 span {
    color: #C8A951;
}

.sqa-hero-content p {
    font-size: 20px;
    line-height: 1.55;
    color: rgba(255,255,255,0.86);
    max-width: 560px;
    margin-bottom: 34px;
}

.sqa-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sqa-btn-gold {
    background: #C8A951;
    color: #0B3D2E;
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.sqa-btn-outline {
    border: 1px solid rgba(255,255,255,0.45);
    color: white;
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 800;
}

.sqa-hero-image-side {
    width: 52%;
    position: relative;
    min-height: 100vh;
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
    overflow: hidden;
    box-shadow: -25px 0 60px rgba(0,0,0,0.28);
}

.sqa-hero-image-side::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11,61,46,0.35), rgba(0,0,0,0.12));
    z-index: 2;
}

.sqa-hero-image-side .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.4s ease, transform 5s ease;
}

.sqa-hero-image-side .hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 900px) {
    .sqa-split-hero {
        flex-direction: column;
    }

    .sqa-hero-content,
    .sqa-hero-image-side {
        width: 100%;
    }

    .sqa-hero-content {
        padding: 80px 28px 40px;
    }

    .sqa-hero-image-side {
        min-height: 420px;
        border-radius: 35px 35px 0 0;
    }
}