/* Hero Section Styles */
.are-hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(2, 30, 58, 0.85) 0%, rgba(3, 25, 37, 0.85) 100%);
    color: white;
    overflow: hidden;
}

.are-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.are-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/h1.png') no-repeat center center/cover;
    opacity: 0.2;
}

.are-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.are-hero-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.are-hero-content {
    z-index: 2;
    animation: are-fadeInUp 1s ease-out;
}

.are-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.are-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.are-hero-title span {
    color: #1f89da;
}

.are-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 90%;
}

.are-hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.are-hero-btn {
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.are-hero-btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

.are-hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.are-hero-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.are-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.are-hero-features {
    display: flex;
    gap: 2rem;
}

.are-hero-feature {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.are-hero-feature i {
    font-size: 1.2rem;
    color: #083a70;
}

.are-hero-feature-text {
    font-size: 0.9rem;
}

.are-hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: are-fadeInRight 1s ease-out;
}

.are-hero-visual-main {
    width: 100%;
    height: 100%;
    background: url('../img/h1.png') no-repeat center center/cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.are-hero-visual-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.3) 0%, rgba(0, 168, 255, 0.3) 100%);
}

.are-hero-visual-element {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    animation: are-float 6s ease-in-out infinite;
}

.are-hero-visual-element:nth-child(2) {
    top: 10%;
    left: -10%;
    animation-delay: 0.5s;
    background: url('../img/h2.png') no-repeat center center/cover;
}

.are-hero-visual-element:nth-child(3) {
    bottom: 10%;
    right: -10%;
    animation-delay: 1s;
    background: url('../img/h3.png') no-repeat center center/cover;
}

.are-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0.7;
    transition: var(--transition);
    cursor: pointer;
}

.are-scroll-indicator:hover {
    opacity: 1;
}

.are-scroll-indicator span {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.are-scroll-indicator i {
    font-size: 1.2rem;
    animation: are-bounce 2s infinite;
}

/* Animations */
@keyframes are-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes are-fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes are-float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes are-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .are-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .are-hero-title {
        font-size: 2.8rem;
    }
    
    .are-hero-subtitle {
        max-width: 100%;
    }
    
    .are-hero-visual {
        height: 400px;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .are-hero-title {
        font-size: 2.2rem;
    }
    
    .are-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .are-hero-btn {
        width: 80%;
        justify-content: center;
    }
    
    .are-hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .are-hero-visual-element {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .are-hero-title {
        font-size: 1.8rem;
    }
    
    .are-hero-subtitle {
        font-size: 1rem;
    }
    
    .are-hero-visual {
        height: 300px;
    }
    
    .are-hero-visual-element {
        width: 100px;
        height: 100px;
    }
}