/* Hero section overall styling */
.hero {
    position: relative;
    min-height: 80vh;
    background: linear-gradient(rgba(27, 60, 89, 0.95), rgba(27, 60, 89, 0.9)), url('../img/bg-pattern.png');
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
}

.hero__content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.hero__title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero__highlight {
    display: block;
    color: var(--color-accent);
    margin-top: 15px;
    font-size: 32px;
}

/* Hero features section styling */
.hero__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    padding: 20px 0;
}

.feature__item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    width: 300px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature__item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature__item i {
    font-size: 24px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    min-height: 50px;
}

.feature__content {
    flex: 1;
}

.feature__content h3,
.feature__content .feature__title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0 0 5px 0;
}
.feature__content .feature__title {
    margin: 0 0 5px 0;
}

.feature__content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

.hero__brands {
    margin-top: 40px;
    text-align: center;
}

.brands__label {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.brands__list {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.brand__logo {
    height: 50px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.brand__logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive design */
@media (max-width: 768px) {
    .hero__title {
        font-size: 32px;
    }
    
    .hero__highlight {
        font-size: 24px;
    }
    
    .hero__features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature__item {
        width: 100%;
        max-width: 320px;
    }
    
    .brands__list {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .brand__logo {
        height: 40px;
    }
}
