/* /efis-ae/styles.css */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f5f5f5;
    overflow-x: hidden;
}

header {
    background-color: #4f287d;
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.logo img {
    height: 50px;
    transition: all 0.3s ease-in-out;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.menu li {
    margin: 0 15px;
}

.menu li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 10px;
    border-radius: 10px;
    transition: background-color 0.3s, transform 0.3s;
}

.menu li a:hover {
    background-color: #713b8f;
    transform: scale(1.1);
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 30px;
    z-index: 101;
}

.burger-menu div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: 0.4s;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #4f287d;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        border-radius: 8px;
        z-index: 99;
        width: 90%;
    }

    .menu li {
        margin: 10px 0;
    }

    nav.active .menu {
        display: flex;
    }

    .burger-menu {
        display: flex;
    }

    .logo-container {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        padding: 5px 15px;
        border-radius: 8px;
        z-index: 102;
    }

    .logo img {
        height: 45px;
    }
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: url('imagini_site_efis/efis-logo-5-psd-pattern-972x729.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    animation: fadeInUp 1s ease-in-out;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #b380ff;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #8a60cc;
    transform: scale(1.05);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.5s ease-out;
    z-index: -1;
}

.cta-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-section {
    padding: 20px;
    background-color: #fff;
    text-align: center;
}

.info-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    color: #4f287d;
}

.info-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #b380ff;
    margin: 20px auto 0;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 1024px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .info-cards {
        grid-template-columns: 1fr;
    }
}

.info-card {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.info-card h3 {
    font-size: 24px;
    color: #4f287d;
    margin-bottom: 15px;
}

.info-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.info-card .icon {
    font-size: 48px;
    color: #b380ff;
    margin-bottom: 20px;
    animation: bounceIn 1s;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }

    60% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

.pricing-section {
    padding: 30px 20px;
    background-color: #4f287d;
    color: white;
    text-align: center;
}

.pricing-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.pricing-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #b380ff;
    margin: 20px auto 0;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10mm;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-box {
    background-color: #fff;
    color: #4f287d;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: calc(50% - 5mm);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: auto;
    min-height: 450px;
}

.pricing-box h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.pricing-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.image-box {
    padding: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
    box-sizing: border-box;
}

.text-box {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .steps {
        width: calc(100% - 40px);
        max-width: 100%;
        align-items: center;
        position: static;
        transform: none;
        padding-left: 20px;
        padding-right: 20px;
    }

    .pricing-box {
        width: 100%;
        margin-bottom: 10mm;
    }
}

.final-call {
    padding: 60px 20px;
    background-color: #b380ff;
    color: white;
    text-align: center;
}

.final-call h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.final-call p {
    font-size: 18px;
    margin-bottom: 30px;
}

.download-app {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.download-app h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #4f287d;
}

.download-app p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.download-app img {
    width: 150px;
    margin: 10px;
}

.contact-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.contact-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    color: #4f287d;
}

.contact-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #b380ff;
    margin: 20px auto 0;
}

.contact-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.company-info {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
    border-top: 1px solid #ddd;
}

.company-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #4f287d;
}

.company-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

footer {
    padding: 20px 0;
    background-color: #343a40;
    color: white;
    text-align: center;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    justify-content: center;
}

footer ul li {
    margin: 0 15px;
}

footer ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

footer ul li a:hover {
    color: #b380ff;
}

@media (max-width: 768px) {
    .info-section h2,
    .steps-section h2,
    .pricing-section h2,
    .final-call h2,
    .contact-section h2 {
        font-size: 28px;
    }

    .info-card h3,
    .step h3 {
        font-size: 20px;
    }

    .pricing-box {
        padding: 30px;
    }

    .cta-button {
        padding: 12px 25px;
    }
}

.steps-section {
    padding: 10px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.steps-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    color: #4f287d;
}

.steps-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #b380ff;
    margin: 20px auto 0;
}

.section-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.section-image {
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 0px;
}

.section-image img {
    width: 100%;
    height: auto;
    max-height: 100vh;
    object-fit: cover;
}

.steps {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 50%;
    padding-right: 40px;
    z-index: 10;
    box-sizing: border-box;
}

.step {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: relative;
    opacity: 0;
    transform: translateX(100px);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.step::before {
    content: attr(data-step);
    position: absolute;
    top: -20px;
    left: -20px;
    background-color: #b380ff;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    z-index: 11;
}

@media (max-width: 1200px) {
    .steps {
        position: static;
        transform: none;
        margin-top: 20px;
        align-items: center;
        width: 100%;
        max-width: 100%;
        padding-right: 0;
    }

    .step {
        width: 90%;
        margin: 20px 0;
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .steps {
        width: calc(100% - 40px);
        max-width: 100%;
        align-items: center;
        position: static;
        transform: none;
    }

    .section-image img {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .step {
        margin: 30px 0;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .step::before {
        left: -10px;
    }
}
