/* Ana Sayfa için Modern CSS */

/* Hero Bölümü */
.hero-section {
    padding: 100px 0;
    /*background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);*/
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%233b82f6' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image {
    position: relative;
    z-index: 1;
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
    /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);*/
    border-radius: 10px;
    overflow: hidden;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-buttons .btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2);
}

.hero-buttons .btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(59, 130, 246, 0.3);
}

.hero-buttons .btn-outline-secondary {
    border-color: #94a3b8;
    color: #64748b;
}

.hero-buttons .btn-outline-secondary:hover {
    background-color: #f1f5f9;
    color: #475569;
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(148, 163, 184, 0.1);
}

/* Özellikler Bölümü */
.features-section {
    padding: 100px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.feature-card {
    border: none;
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    padding: 2rem;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    transform: rotate(5deg);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}

.feature-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
}

/* Nasıl Çalışır Bölümü */
.how-it-works-section {
    padding: 100px 0;
    background-color: #f8fafc;
    position: relative;
	border-radius:12px;
}

.step-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: all 0.3s ease;
    padding: 2rem;
    background-color: #fff;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}

.step-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.step-description {
    color: #64748b;
    text-align: center;
    line-height: 1.6;
}

.steps-cta {
    margin-top: 3rem;
    text-align: center;
}

.steps-cta .btn {
	color:#fff!important;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.steps-cta .btn:hover {
	color:#fff!important;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(59, 130, 246, 0.3);
}

/* Fiyatlandırma Özeti */
.pricing-summary {
    padding: 100px 0;
    background-color: #fff;
}

.pricing-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricing-card.featured {
    transform: scale(1.05);
    position: relative;
    z-index: 1;
    border: 2px solid var(--primary-color);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    background-color: #fff;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #fff;
    color: #1e293b;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    margin-top: 1rem;
}

.pricing-card.featured .pricing-header {
    background-color: var(--primary-color);
    color: white;
}

.pricing-card.featured .pricing-title {
    color: white;
}

.pricing-card.featured .pricing-price {
    color: white;
}

.pricing-period {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.pricing-card.featured .pricing-period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-body {
    padding: 2rem;
    flex-grow: 1;
}

.pricing-features {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.pricing-features li {
    margin-bottom: 1rem;
    color: #475569;
    display: flex;
    align-items: flex-start;
}

.pricing-features li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.pricing-footer {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
}

.pricing-card .btn {
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.pricing-card .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2);
}

.pricing-card .btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(59, 130, 246, 0.3);
}

.pricing-card .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pricing-card .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white!important;
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(59, 130, 246, 0.3);
}

/* Müşteri Görüşleri */
.testimonials {
    padding: 100px 0;
    background-color: #f8fafc;
    position: relative;
}

.testimonial-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    background-color: #fff;
    height: 100%;
    padding: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.testimonial-stars {
    color: #f59e0b;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.testimonial-author-name {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.testimonial-author-title {
    font-size: 0.875rem;
    color: #64748b;
}

/* CTA Bölümü */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-button {
    background-color: white;
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
	color:var(--text-color);
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section,
    .features-section,
    .how-it-works-section,
    .pricing-summary,
    .testimonials {
        padding: 0px 0px 60px 0px;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
}

/* Animasyonlar */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.animated-float {
    animation: float 6s ease-in-out infinite;
}