/* hero.css - Premium Corporate Blue Hero - Client Approved */

.hero-section {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--color-deep-blue) 0%, var(--color-corporate-navy) 40%, var(--color-dark-navy) 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 206, 250, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91, 59, 140, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(124, 206, 250, 0.12);
    color: var(--color-sky-blue);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-sm);
    border: 1px solid rgba(124, 206, 250, 0.2);
    text-transform: uppercase;
}

.hero-text h1 {
    font-size: 3.8rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-lg);
    max-width: 540px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
}

.hero-graphic-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-portal {
    position: relative;
    width: 100%;
    height: 100%;
}

.circle-portal-inner {
    position: absolute;
    width: 250px;
    height: 250px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 35px rgba(0,0,0,0.2);
    overflow: hidden;
    z-index: 5;
}

.portal-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.portal-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.portal-slide.active {
    opacity: 1;
    z-index: 1;
}

.portal-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portal-border-orbit {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    animation: rotateOrbit 40s linear infinite;
    pointer-events: none;
    z-index: 4;
}

@keyframes rotateOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.connecting-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.connecting-lines path {
    stroke: rgba(255, 255, 255, 0.1);
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 14px 18px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 10;
    width: 220px;
    transition: all var(--transition-fast);
}

.float-card:hover {
    transform: scale(1.05) translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.float-card-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
    padding: 4px;
}

.float-card-icon.orange { background-color: rgba(245, 158, 11, 0.15); }
.float-card-icon.blue { background-color: rgba(124, 206, 250, 0.15); }
.float-card-icon.green { background-color: rgba(46, 182, 125, 0.15); }
.float-card-icon.purple { background-color: rgba(91, 59, 140, 0.15); }

.float-card-text {
    display: flex;
    flex-direction: column;
}

.float-card-text strong {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 2px;
}

.float-card-text p {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    line-height: 1.2;
}

.card-tl {
    top: 55px;
    left: 0;
    animation: float1 5s ease-in-out infinite;
}

.card-tr {
    top: 55px;
    right: 0;
    animation: float2 5.5s ease-in-out infinite;
}

.card-bl {
    bottom: 55px;
    left: 0;
    animation: float3 6s ease-in-out infinite;
}

.card-br {
    bottom: 55px;
    right: 0;
    animation: float4 5.2s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-graphic-container {
        max-width: 440px;
        height: 440px;
        margin-top: var(--spacing-md);
    }
    
    .circle-portal-inner {
        width: 180px;
        height: 180px;
    }
    
    .portal-border-orbit {
        width: 204px;
        height: 204px;
        top: -12px;
        left: -12px;
    }
    
    .float-card {
        width: 175px;
        padding: 8px 12px;
        gap: 8px;
    }
    
    .float-card-text strong {
        font-size: 0.75rem;
    }
    
    .float-card-text p {
        font-size: 0.62rem;
    }
    
    .card-tl { top: 40px; left: -10px; }
    .card-tr { top: 40px; right: -10px; }
    .card-bl { bottom: 40px; left: -10px; }
    .card-br { bottom: 40px; right: -10px; }
}

@media (max-width: 480px) {
    .hero-graphic-container {
        max-width: 320px;
        height: 350px;
    }
    
    .circle-portal-inner {
        width: 130px;
        height: 130px;
    }
    
    .portal-border-orbit {
        display: none;
    }
    
    .float-card {
        width: 135px;
        padding: 6px 8px;
    }
    
    .float-card-icon {
        width: 22px;
        height: 22px;
    }
    
    .float-card-text p {
        display: none;
    }
    
    .card-tl { top: 30px; left: -5px; }
    .card-tr { top: 30px; right: -5px; }
    .card-bl { bottom: 30px; left: -5px; }
    .card-br { bottom: 30px; right: -5px; }
}
