/* ===================================
   HYBRID HERO LAYOUT
   Top: Full-width airplane image
   Bottom: 1/3 spinning logo + 2/3 content
   =================================== */

/* Hero Container */
.hero-hybrid {
    position: relative !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

/* Top: Full Width Airplane Image */
.hero-image-top {
    width: 100% !important;
    height: 70vh !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
}

.hero-image-full {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

/* Bottom: Split Content Section */
.hero-content-split {
    display: flex !important;
    width: 100% !important;
    min-height: 50vh !important;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}

/* Left: Spinning Logo (1/3) */
.hero-logo-left {
    flex: 0 0 33.333% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 60px 40px !important;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%) !important;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-spin {
    width: 280px;
    height: auto;
    animation: heroSpin 25s linear infinite;
    filter: drop-shadow(0 10px 30px rgba(34, 197, 94, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo-spin:hover {
    animation: heroSpin 10s linear infinite;
    transform: scale(1.05);
}

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

/* Right: Content (2/3) */
.hero-text-right {
    flex: 0 0 66.667% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 60px 80px 60px 60px !important;
}

/* Title */
.hero-text-right .hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #22c55e 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Subtitle */
.hero-text-right .hero-subtitle {
    font-size: 1.35rem;
    color: #64748b;
    max-width: 650px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Fun Divider */
.fun-divider {
    margin: 25px 0;
}

.rocket-icon {
    font-size: 2.5rem;
    display: inline-block;
    animation: rocketBounce 2s ease-in-out infinite;
}

@keyframes rocketBounce {
    0%, 100% { transform: translateY(0) rotate(-45deg); }
    50% { transform: translateY(-12px) rotate(-45deg); }
}

/* Pillars */
.hero-pillars {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.pillar {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 16px;
    padding: 20px 28px;
    min-width: 140px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pillar:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.3);
}

.pillar-icon {
    font-size: 2.25rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #22c55e 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pillar span {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-text-right {
        padding: 50px 60px 50px 50px;
    }
    
    .hero-text-right .hero-title {
        font-size: 3rem;
    }
    
    .hero-logo-spin {
        width: 240px;
    }
}

@media (max-width: 968px) {
    .hero-image-top {
        height: 50vh !important;
    }
    
    .hero-content-split {
        flex-direction: column;
        min-height: auto;
    }
    
    .hero-logo-left {
        flex: 0 0 auto;
        padding: 50px 30px;
    }
    
    .hero-logo-spin {
        width: 220px;
    }
    
    .hero-text-right {
        flex: 1;
        padding: 40px 30px 60px;
        text-align: center;
        align-items: center;
    }
    
    .hero-text-right .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text-right .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-pillars {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-image-top {
        height: 45vh !important;
    }
    
    .hero-logo-left {
        padding: 40px 20px;
    }
    
    .hero-logo-spin {
        width: 180px;
    }
    
    .hero-text-right {
        padding: 30px 20px 50px;
    }
    
    .hero-text-right .hero-title {
        font-size: 2rem;
    }
    
    .hero-text-right .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-pillars {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .pillar {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Performance */
@media (prefers-reduced-motion: reduce) {
    .hero-logo-spin {
        animation: none !important;
    }
    
    .rocket-icon {
        animation: none;
    }
    
    .pillar:hover {
        transform: none;
    }
}
