/* Hero section styles */

.hero {
    background: linear-gradient(var(--overlay), var(--overlay)), url('/wp-content/uploads/2026/03/bg.jpeg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--text-light);
    padding: 0 0 40px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: inherit;
    filter: brightness(0.9);
    animation: slowZoom 25s infinite alternate ease-in-out;
    z-index: -1;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-content {
    width: 100%;
    padding-top: calc(var(--header-height) + 70px);
    padding-bottom: 40px;
    animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-align: left;
}

.hero h1 span {
    color: var(--accent);
    display: inline-block;
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 196, 0, 0.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 48px;
    max-width: 800px;
    text-align: left;
    color: var(--text-light);
    opacity: 0.95;
}

.hero-subtitle strong {
    color: var(--accent);
    font-weight: 700;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 48px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);
    border-radius: var(--border-radius-card);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

.feature-item:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.1);
    border-color: var(--accent);
}

.feature-item i {
    font-size: 2.2rem;
    color: var(--accent);
}

.feature-item strong {
    font-size: 1.2rem;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.4;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 196, 0, 0.2);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(255, 196, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 1.1rem;
    border: 2px solid var(--gray-light);
    backdrop-filter: blur(4px);
    transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.partners {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    opacity: 0.9;
}

.partners span {
    color: #ffffff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: color 0.2s;
}

.partners span:hover {
    color: var(--accent);
}

.tender-highlight {
    color: var(--secondary-accent);
    font-weight: 700;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s, background 0.3s, border-color 0.3s;
    cursor: default;
}

.partner-logo:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

.partner-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.2s;
}

.partner-logo:hover img {
    opacity: 1;
}

@media (max-width: 700px) {
    .hero-content {
        padding-top: 180px;
        padding-bottom: 40px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }
    .hero-features {
        grid-template-columns: 1fr 1fr;
    }
    .partners {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .partners span {
        white-space: normal;
        text-align: left;
    }
    .partner-logos {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-features {
        grid-template-columns: 1fr;
    }
    .hero-actions {
        flex-direction: column;
    }
    .btn-primary, .btn-secondary {
        text-align: center;
        width: 100%;
    }
    .hero-content {
        padding-top: 200px;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .partner-logo {
        padding: 8px 16px;
    }
    .partner-logo img {
        height: 30px;
    }
}