/* Professional Hero Section for Infor Services */

.hero {
    /* background: linear-gradient(135deg, #052772 0%, #4572d3 50%, #052772 100%); */
    background: linear-gradient(135deg, #011c57 0%, #052772 50%, #0a2a6e 100%);      
    min-height: 60vh;
    padding: 120px 0 50px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Enhanced background patterns */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(10, 42, 110, 0.3) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

/* Add decorative elements */
.hero-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 2px;
}

.hero-content::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 1px;
}

/* Hero Badge with Infor Logo */
.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    min-height: 50px;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Text-based Infor Logo */
.infor-logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.infor-text {
    background: #dc2626;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.delivery-text {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.partner-badge {
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Hero Title */
.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-3px);
    color: #ffffff;
}

.hero-feature i {
    font-size: 1.5rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-feature:hover i {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.hero-feature span {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.3px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    min-width: 160px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    color: #021642;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.15);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero {
        padding: 100px 0 45px;
        min-height: 65vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 90px 0 40px;
        min-height: 60vh;
    }

    .hero .container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.7;
    }

    .hero-btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.85rem;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 35px;
        min-height: 55vh;
    }

    .hero .container {
        padding: 0 1.25rem;
    }

    .hero-title {
        font-size: 1.7rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
        line-height: 1.6;
        max-width: 90%;
    }

    .hero-actions {
        gap: 1.25rem;
    }

    .hero-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
        min-width: 140px;
        border-radius: 40px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 70px 0 30px;
        min-height: 50vh;
    }

    .hero .container {
        padding: 0 1rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.7;
        max-width: 95%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-btn {
        width: 100%;
        max-width: 240px;
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
        border-radius: 35px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .hero-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    /* Enhanced mobile decorative elements */
    .hero-content::before {
        width: 40px;
        height: 2px;
        top: -15px;
    }

    .hero-content::after {
        width: 30px;
        height: 1.5px;
        bottom: -15px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero {
        padding: 60px 0 25px;
        min-height: 45vh;
    }

    .hero .container {
        padding: 0 0.75rem;
    }

    .hero-title {
        font-size: 1.35rem;
        margin-bottom: 0.875rem;
        line-height: 1.4;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
        max-width: 100%;
    }

    .hero-actions {
        gap: 0.875rem;
    }

    .hero-btn {
        max-width: 220px;
        padding: 0.7rem 1.25rem;
        font-size: 0.75rem;
        border-radius: 30px;
    }

    /* Adjust decorative elements for very small screens */
    .hero-content::before {
        width: 35px;
        top: -12px;
    }

    .hero-content::after {
        width: 25px;
        bottom: -12px;
    }
}
