/* Ana sayfa modern tasarım stilleri */

/* Genel sayfa ayarları */
body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 60px; /* Fixed navbar için boşluk */
}

/* Navbar modern görünüm */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.nav-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-buttons .btn {
    border-radius: 25px;
    padding: 8px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.nav-buttons .btn:hover::before {
    left: 100%;
}

/* Hero bölümü */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.hero .lead {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons .btn {
    border-radius: 30px;
    padding: 15px 35px;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 10px 10px 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.hero-buttons .btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    color: white;
    margin-top: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    color: white;
}

.hero .check {
    color: #4ecdc4;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Özellikler bölümü */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(118, 75, 162, 0.1), transparent);
}

.features .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.features h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.features .card {
    border: none;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.features .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.features .card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.features .card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Fiyatlandırma bölümü */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.pricing h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.pricing .card {
    border: none;
    border-radius: 25px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing .card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
}

.pricing .plan-recommended {
    border: 2px solid #4ecdc4;
    background: rgba(78, 205, 196, 0.1);
    position: relative;
}

.pricing .plan-recommended::before {
    content: 'ÖNERİLEN';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: #4ecdc4;
    color: white;
    padding: 5px 20px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing .display-6 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4ecdc4;
}

.pricing .btn {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}

/* Yorumlar bölümü */
.reviews {
    padding: 100px 0 20px; /* Alt padding daha da azaltıldı */
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.reviews h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.reviews .card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
    height: 100%;
}

.reviews .card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

/* Yıldızlar */
.stars {
    display: inline-block;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.stars::before {
    content: '★★★★★';
    letter-spacing: 3px;
    background: linear-gradient(90deg, #ffd700 calc(var(--rating) / 5 * 100%), rgba(255,255,255,0.3) calc(var(--rating) / 5 * 100%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mobil optimizasyonları */
@media (max-width: 991.98px) {
    body {
        padding-bottom: 72px;
        padding-top: 60px; /* Mobilde navbar için daha az boşluk */
    }
    
    .navbar .container {
        flex-wrap: nowrap;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    /* Navbar butonları mobilde küçük */
    .nav-buttons .btn {
        padding: 6px 16px;
        font-size: 0.875rem;
        border-radius: 20px;
    }
    
    .nav-buttons {
        gap: 6px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        font-size: 1.1rem;
    }
    
    .features h2,
    .pricing h2,
    .reviews h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    /* Navbar butonları çok küçük ekranlarda */
    .nav-buttons .btn {
        padding: 5px 12px;
        font-size: 0.8rem;
        border-radius: 18px;
    }
    
    .nav-buttons {
        gap: 4px;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 10px 16px;
        border-radius: 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .features .card,
    .pricing .card,
    .reviews .card {
        margin-bottom: 2rem;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Button effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: #ecf0f1;
    padding: 20px 0 20px; /* Üst padding daha da azaltıldı */
}

.footer .footer-title {
    color: #bdc3c7;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer a {
    color: #ecf0f1;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #3498db;
}

.footer .brand-badge {
    background: linear-gradient(135deg, #3498db, #2980b9);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer .social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ecf0f1;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
}

.footer .social a:hover {
    background: #3498db;
    border-color: #3498db;
    color: white;
    transform: translateY(-3px);
}

.footer .divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
}
