/* ===================================
   AKED - Hero Section Styles
   =================================== */

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-dark), var(--color-darker), var(--color-deep));
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(27, 58, 75, 0.9), 
        rgba(33, 47, 69, 0.9), 
        rgba(39, 38, 64, 0.9));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--text-white);
    padding: var(--spacing-xl) 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    color: var(--text-white);
}

.hero-title .highlight {
    color: #045e62;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

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

.stat-item i {
    font-size: 2rem;
    color: var(--color-primary);
}

.stat-item strong {
    display: block;
    font-size: 1rem;
    color: var(--text-white);
}

.stat-item p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Image - Floating Cards */
.hero-image {
    position: relative;
    height: 500px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-card {
    position: absolute;
    background: var(--bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: var(--transition-normal);
}

.float-card i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.float-card span {
    font-weight: 500;
    color: var(--color-dark);
}

.float-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 100, 102, 0.3);
}

.card-1 {
    top: 50px;
    left: 50px;
    animation: float 3s ease-in-out infinite;
}

.card-2 {
    top: 50px;
    right: 50px;
    animation: float 3s ease-in-out infinite 0.5s;
}

.card-3 {
    bottom: 150px;
    left: 30px;
    animation: float 3s ease-in-out infinite 1s;
}

.card-4 {
    bottom: 150px;
    right: 30px;
    animation: float 3s ease-in-out infinite 1.5s;
}

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

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.05;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--color-primary);
    top: -300px;
    right: -200px;
    animation: rotate 20s linear infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--color-accent);
    bottom: -200px;
    left: -100px;
    animation: rotate 15s linear infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--color-primary-light);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.05;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
}

/* Responsive Hero */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        gap: var(--spacing-md);
    }
    
    .stat-item {
        flex: 1 1 calc(50% - var(--spacing-md));
    }
    
    .hero-image {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 90px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .stat-item {
        flex: 1 1 100%;
    }
}
