/* pricing */

.pricing-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 40px;
    flex-wrap: wrap;
}

.pricing-box {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 250px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 2px solid #f0f0f0;
    position: relative;
}

.pricing-box:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.free {
    border-top: 4px solid #4CAF50;
}

.premium {
    border-top: 4px solid #008CBA;
}
.enterprise {
    border-top: 4px solid #FF9800; 
}
.enterprise::before {
    content: "Kurumsal";
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #FF9800;
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 8px;
    font-size: 12px;
}


.pricing-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.pricing-box ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: left;
    max-width: 99%;
}

.pricing-box ul li {
    text-align: left;
    padding:  5px 0;
    position: relative;
    font-size: 16px;
    color: #555;
}

.pricing-box ul li::before {
    content: "✔";
    color: #4CAF50;
    font-weight: bold;
    margin-right: 8px;
}

/* Fiyatlandırma alanı */
.price {
    font-size: 30px;
    font-weight: bold;
    color: #008CBA;
    margin: 15px 0;
}

.old-price {
    text-decoration: line-through;
    color: gray;
    font-size: 18px;
}

.new-price {
    color: #008CBA;
    font-size: 32px;
    font-weight: bold;
    display: block;
    margin-top: 5px;
}

.discount-label {
    background-color: #4CAF50;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin-top: 5px;
}

@media (max-width: 600px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .pricing-box {
        width: 100%;
        max-width: 100%;
    }
}
@media (min-width: 1200px) {
    .pricing-container {
        flex-wrap: nowrap;
    }
}



/* büyüyüp küçülen animasyon */
@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/*---------ninja form---------*/

#nf-form-4-cont {
    width: 50%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #dee2e6;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Mobil ekranlar için */
@media (max-width: 768px) {
    #nf-form-4-cont {
        width: 90%; /* Genişliği daha dar ekranlara uygun hale getir */
        padding: 15px; /* Daha küçük bir padding kullan */
    }
}

@media (max-width: 480px) {
    #nf-form-4-cont {
        width: 95%; /* Küçük ekranlarda daha fazla genişlik */
        padding: 10px; /* Daha küçük bir padding */
    }
}