/**
 * Web Ajansınız Fiyatlandırma & Başvuru Sistemi Stil Dosyası
 */

/* Font Awesome ekleme */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* Genel Stiller */
.wa-pricing-wrapper {
    padding: 2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Fiyat Tablosu Kartı */
.wa-pricing-card {
    transition: all 0.3s ease;
}

.wa-pricing-card:hover {
    transform: translateY(-10px);
}

.wa-pricing-card .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.wa-pricing-card .card-header {
    position: relative;
    overflow: hidden;
}

.wa-pricing-card .card-header::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(-45deg);
    top: -60%;
    left: -30%;
}

/* Fiyat Stili */
.pricing-value {
    padding: 1rem 0;
}

.pricing-value h1 {
    font-weight: 700;
    color: #333;
}

.pricing-value small {
    font-size: 40%;
    font-weight: 400;
}

.pricing-value .text-muted {
    font-size: 0.9rem;
}

.renewal-price {
    margin-top: 10px;
}

/* Özellikler Listesi */
.feature-list {
    margin-bottom: 1.5rem;
}

.feature-list .list-group-item {
    background-color: transparent;
    padding: 0.5rem 0;
}

.feature-list .list-group-item i {
    width: 20px;
    text-align: center;
}

/* Butonlar */
.btn-outline-primary {
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    transform: scale(1.05);
}

.btn-success {
    background-color: #25d366;
    border-color: #25d366;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #128c7e;
    border-color: #128c7e;
    transform: scale(1.05);
}

/* Form Modal */
#waApplicationModal .modal-content {
    border-radius: 10px;
    overflow: hidden;
}

#waApplicationModal .modal-header {
    background-color: #007bff;
    color: white;
}

#waApplicationModal .btn-close-white {
    color: white;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wa-pricing-card {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.wa-pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.wa-pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.wa-pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Responsive ayarları */
@media (max-width: 992px) {
    .wa-pricing-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .pricing-value h1 {
        font-size: 2.5rem;
    }
}