/* En üste Font importunu ekliyoruz */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   1. TEMEL AYARLAR VE DEĞİŞKENLER
   ============================================================ */
:root {
    /* Renk Paleti */
    --primary-color: #ff5757;
    --primary-dark: #e04848;
    --primary-light: #fff0f0;
    
    --secondary-color-1: #f78974;
    --secondary-color-2: #f79986;

    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #ffffff;
    
    --bg-white: #ffffff;
    --bg-gray: #f9fafb;
    
    --border-color: #e5e7eb;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-primary: 0 10px 25px -5px rgba(255, 87, 87, 0.4);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   2. NAVBAR VE BUTONLAR
   ============================================================ */
 /* WhatsApp Widget Konumlandırma */
        .whatsapp-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
            font-family: 'Poppins', sans-serif;
        }

        /* Ana Yuvarlak Buton */
        .whatsapp-button {
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            text-decoration: none;
            border: 2px solid white;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }

        /* Bildirim Rozeti */
        .wa-notification-badge {
            position: absolute;
            top: -2px;
            right: -2px;
            background-color: #ff5757;
            color: white;
            font-size: 11px;
            font-weight: bold;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid white;
            animation: bounce 2s infinite;
        }

        /* Chat Penceresi (Bot Görünümü) */
        .whatsapp-chat-box {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 320px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.95);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            transform-origin: bottom right;
            border: 1px solid #f3f4f6;
        }

        .whatsapp-chat-box.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        /* Widget Header */
        .wa-header {
            background: linear-gradient(135deg, #0f6f60 0%, #095045 100%);
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: white;
            position: relative;
        }

        .wa-avatar {
            width: 44px;
            height: 44px;
            background: white;
            border-radius: 50%;
            padding: 2px;
            flex-shrink: 0;
        }
        .wa-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

        .wa-info h4 { margin: 0; font-size: 16px; font-weight: 600; line-height: 1.2; }
        .wa-info p { margin: 0; font-size: 12px; opacity: 0.9; margin-top: 2px; }
        
        .wa-close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: white;
            opacity: 0.7;
            cursor: pointer;
            padding: 5px;
        }
        .wa-close-btn:hover { opacity: 1; }

        /* Widget Body */
        .wa-body {
            padding: 20px;
            background-color: #e5ddd5;
            background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
            background-size: 300px;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        /* Mesaj Balonu */
        .wa-message {
            background: white;
            padding: 12px 14px;
            border-radius: 0 12px 12px 12px;
            font-size: 14px;
            color: #111827;
            box-shadow: 0 1px 2px rgba(0,0,0,0.1);
            position: relative;
            max-width: 90%;
            margin-bottom: 4px;
            line-height: 1.5;
        }
        .wa-message::before {
            content: '';
            position: absolute;
            top: 0; left: -8px;
            width: 0; height: 0;
            border-style: solid;
            border-width: 0 8px 10px 0;
            border-color: transparent white transparent transparent;
        }

        .wa-time {
            display: block;
            text-align: right;
            font-size: 10px;
            color: #9ca3af;
            margin-top: 4px;
        }

        /* Widget Footer (Buton) */
        .wa-footer {
            padding: 15px;
            background: white;
            border-top: 1px solid #f3f4f6;
        }

        .wa-btn {
            background-color: #25D366;
            color: white;
            text-align: center;
            padding: 14px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: background 0.2s, transform 0.2s;
            box-shadow: 0 4px 6px rgba(37, 211, 102, 0.2);
        }
        .wa-btn:hover { background-color: #1da851; transform: translateY(-2px); }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-3px); }
        }
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-buttons {
    display: flex;
    align-items: center;
}

/* SADECE ANA MENÜ LİNKLERİ İÇİN */
.nav-buttons > a {
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-buttons > a:hover { 
    color: var(--primary-color); 
    background-color: var(--bg-gray); 
}

/* CSS Hack'i (::before köprüsü) KALDIRILDI çünkü HTML tarafında padding ile çözüldü */

/* Buton Stilleri */
.cta-button {
    background-color: var(--primary-color);
    color: white !important;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: var(--shadow-primary);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(255, 87, 87, 0.6);
    color: white !important;
}

.cta-button-secondary {
    padding: 10px 20px !important;
    background-color: var(--primary-light) !important;
    color: var(--primary-color) !important;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.cta-button-secondary:hover {
    background-color: #ffe0e0 !important;
}

.cta-button-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.cta-button-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: white;
}

.cta-button svg { width: 20px; height: 20px; }

/* ============================================================
   3. HERO SECTION
   ============================================================ */
#hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, var(--bg-gray) 100%);
}

.hero-bg-shape {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,87,87,0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111827;
}

.hero-title .highlight-text {
    color: var(--primary-color);
    position: relative;
    white-space: nowrap;
}

.hero-title .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 87, 87, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-stats-mini {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-mini { display: flex; flex-direction: column; }
.stat-num { font-size: 1.5rem; font-weight: 700; color: var(--text-dark); }
.stat-label { font-size: 0.9rem; color: var(--text-gray); }
.divider { width: 1px; height: 40px; background-color: var(--border-color); }

.hero-image-wrapper {
    position: relative;
    padding: 20px;
}

.hero-image-slider {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background-color: #eee;
}

.hero-image-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-image-slide.active { opacity: 1; }

/* Yüzer Kartlar */
.floating-card {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.floating-card .icon { font-size: 1.5rem; background: var(--bg-gray); padding: 8px; border-radius: 10px; }
.floating-card .text { display: flex; flex-direction: column; line-height: 1.2; }
.floating-card strong { font-size: 0.9rem; color: var(--text-dark); }
.floating-card span { font-size: 0.75rem; color: var(--text-gray); }

.card-1 { top: 10%; left: -20px; animation-delay: 0s; }
.card-2 { bottom: 10%; right: -20px; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================================
   4. BÖLÜM STİLLERİ (SOSYAL KANIT, NASIL ÇALIŞIR, ÖZELLİKLER)
   ============================================================ */
.section-header { margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; text-align: center; }
.section-tag {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}
.section-title { font-size: 2.5rem; font-weight: 800; color: var(--text-dark); line-height: 1.2; margin-bottom: 15px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-gray); }

/* Sosyal Kanıt */
#social-proof { padding: 100px 0; background-color: var(--bg-white); }
.proof-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}
.proof-item {
    padding: 40px;
    border-radius: 20px;
    background: var(--bg-gray);
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}
.proof-item:hover { transform: translateY(-5px); }
.proof-item h3 { font-size: 1.5rem; margin: 15px 0; font-weight: 700; }
.proof-item ul { list-style: none; padding: 0; }
.proof-item ul li { margin-bottom: 10px; color: var(--text-gray); position: relative; padding-left: 25px; }
.proof-item ul li::before { content: '•'; position: absolute; left: 0; color: #ccc; }

.proof-item.bad .icon-box { font-size: 2rem; background: #fee2e2; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 12px; }
.proof-item.good { background: #fff0f0; border-color: #fca5a5; }
.proof-item.good .icon-box { font-size: 2rem; background: #fff; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 12px; box-shadow: var(--shadow-sm); }
.proof-item.good ul li::before { content: '✓'; color: var(--primary-color); font-weight: bold; }
.arrow-separator svg { width: 40px; color: var(--text-gray); opacity: 0.5; }

/* Nasıl Çalışır */
#nasil-calisir { padding: 100px 0; background-color: var(--bg-gray); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    text-align: center;
}
.step-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.step-icon {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 87, 87, 0.1);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
}
.step-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 15px; position: relative; }
.step-card p { color: var(--text-gray); font-size: 0.95rem; }

/* Neden Biz */
#neden-biz { padding: 100px 0; }
.features-wrapper { display: flex; align-items: center; gap: 60px; }
.feature-content { flex: 1; }
.feature-visual { flex: 1; display: flex; justify-content: center; position: relative; }
.floating-phone { max-width: 80%; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2)); animation: float 6s ease-in-out infinite; }
.feature-list { margin-top: 40px; }
.feature-li { display: flex; gap: 20px; margin-bottom: 30px; }
.f-icon {
    width: 50px; height: 50px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.feature-li h4 { font-size: 1.1rem; font-weight: 700; margin: 0 0 5px 0; }
.feature-li p { margin: 0; color: var(--text-gray); font-size: 0.95rem; }

/* ============================================================
   5. FİYATLANDIRMA
   ============================================================ */
#pricing { padding: 100px 0; background-color: var(--bg-gray); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.pricing-card.popular {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-primary);
    transform: scale(1.05);
    z-index: 2;
}
.popular-badge {
    position: absolute;
    top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--primary-color); color: white;
    padding: 6px 16px; border-radius: 20px;
    font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
}
.pricing-header { text-align: center; border-bottom: 1px solid var(--border-color); padding-bottom: 30px; margin-bottom: 30px; }
.pricing-header h3 { font-size: 1.5rem; margin-bottom: 10px; }
.pricing-header .price { font-size: 3rem; font-weight: 800; color: var(--text-dark); line-height: 1; }
.pricing-header .currency { font-size: 1.5rem; vertical-align: top; }
.pricing-header .period { color: var(--text-gray); font-size: 0.9rem; margin-top: 5px; }

.pricing-features { flex-grow: 1; }
.pricing-features ul { list-style: none; padding: 0; margin-bottom: 30px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; color: var(--text-dark); }
.check-icon { width: 20px; color: var(--primary-color); }

.pricing-btn {
    display: block; width: 100%; text-align: center;
    padding: 16px; border-radius: 12px;
    font-weight: 600; text-decoration: none;
    background: var(--text-dark); color: white;
    transition: all 0.3s;
    margin-top: auto;
}
.popular .pricing-btn { background: var(--primary-color); }
.pricing-btn:hover { opacity: 0.9; transform: translateY(-2px); }

/* ============================================================
   6. FOOTER VE CTA
   ============================================================ */
/* Son CTA Kartı */
.final-cta-card {
    background: linear-gradient(45deg, var(--secondary-color-1), var(--primary-color));
    color: var(--text-light);
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    z-index: 10;
    margin-top: 50px;
    margin-bottom: -100px; /* Footer'ın üzerine binmesi için */
    box-shadow: 0 20px 50px rgba(247, 121, 98, 0.3);
}

.final-cta-card h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0 0 16px 0;
}

.final-cta-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-light {
    background-color: white;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}
.cta-button-light:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Footer Temel Yapısı */
footer {
    background-color: var(--bg-white); 
    color: var(--text-gray); 
    padding: 180px 0 0 0; /* Kart üstte olduğu için padding fazla */
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-description {
    max-width: 300px;
    line-height: 1.8;
    margin-top: 20px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--primary-color);
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    color: var(--text-gray);
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 25px 0;
    text-align: center;
    background-color: #fcfcfc;
}

/* ============================================================
   7. CHECKOUT / ÖDEME SAYFASI STİLLERİ
   ============================================================ */

/* Modern Input Stilleri (Eksik Olan) */
.form-input-modern {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-dark);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d1d5db; /* border-gray-300 */
    border-radius: 0.5rem; /* rounded-lg */
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    /* appearance: none;  <-- BU SATIRI KALDIRDIM veya AŞAĞIDAKİ GİBİ SELECT İÇİN ÖZELLEŞTİRDİM */
}

/* Select elementleri için özel stil (Ok işareti ekle) */
select.form-input-modern {
    appearance: none; /* Varsayılan oku gizle */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.form-input-modern:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 87, 87, 0.2); /* Primary color ring */
}

.form-input-modern::placeholder {
    color: #9ca3af; /* text-gray-400 */
}

.form-input-modern:disabled {
    background-color: #f3f4f6;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Textarea özel ayar */
textarea.form-input-modern {
    resize: vertical;
    min-height: 80px;
}

/* Miktar Kontrolcü (Modern) */
.quantity-control-modern {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: var(--shadow-sm);
}

.quantity-control-modern .quantity-btn {
    background-color: transparent;
    border: none;
    padding: 0 16px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-gray);
    transition: all 0.2s;
}

.quantity-control-modern .quantity-btn:hover {
    background-color: #f9fafb;
    color: var(--primary-color);
}

.quantity-control-modern .quantity-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.quantity-control-modern input {
    border: none;
    border-left: 1px solid #f3f4f6;
    border-right: 1px solid #f3f4f6;
    text-align: center;
    width: 60px;
    height: 48px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    padding: 0;
    background: transparent;
    -moz-appearance: textfield;
}

.quantity-control-modern input::-webkit-outer-spin-button,
.quantity-control-modern input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Toplam Fiyat Özeti */
.total-price-summary {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.total-price-summary div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}
.total-price-summary div:last-child {
    margin-bottom: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed #e5e7eb;
    font-size: 1.2rem;
    font-weight: 700;
}
.total-price-summary span:first-child { color: var(--text-gray); }
.total-price-summary span:last-child { font-weight: 600; color: var(--text-dark); }
.total-price-summary div:last-child span:last-child { color: var(--primary-color); }

/* Hata Mesajları */
#form-validation-errors { display: none; margin-bottom: 1.5rem; }
.form-input-modern.error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 1px #ef4444 !important;
    background-color: #fef2f2;
}

/* QR Kart Seçenekleri */
.qr-option-card { 
    border: 2px solid var(--border-color); 
    border-radius: 12px; 
    padding: 1rem; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    cursor: pointer; 
    transition: all 0.2s; 
    background-color: #fff; 
    text-align: center; 
}
.qr-option-card:hover {
    border-color: #d1d5db;
    background-color: #f9fafb;
}
.qr-option-card img { 
    max-height: 80px; 
    margin-bottom: 0.75rem; 
    border-radius: 4px; 
    border: 1px solid #eee;
    box-shadow: var(--shadow-sm);
}
.qr-option-card span { font-size: 0.85rem; font-weight: 500; color: var(--text-dark); }
.qr-option-card.selected { 
    border-color: var(--primary-color); 
    box-shadow: 0 0 0 3px rgba(255, 87, 87, 0.2); 
    background-color: #fff0f0;
}
.qr-option-card.selected span {
    color: var(--primary-color);
    font-weight: 700;
}

/* Örnek QR Modal */
#qr-sample-image-container { overflow: hidden; position: relative; border-radius: 0.5rem; width: 100%; }
#qr-slider-images { display: flex; transition: transform 0.3s ease-in-out; width: fit-content; }
.qr-slide { width: 100%; flex-shrink: 0; box-sizing: border-box; display: flex; align-items: center; justify-content: center; }
.qr-slide img { display: block; max-width: 100%; height: auto; max-height: 70vh; object-fit: contain; border-radius: 0.25rem; }
#qr-slider-prev, #qr-slider-next { position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(0, 0, 0, 0.5); color: white; border: none; border-radius: 50%; width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; font-size: 1.5rem; }
#qr-slider-prev { left: 0.5rem; }
#qr-slider-next { right: 0.5rem; }

/* Sözleşme & Modal */
.terms-container {
    margin-top: 1.5rem; padding: 1rem; background-color: #f9fafb; border-radius: 12px;
    border: 1px solid var(--border-color);
}
.terms-container label { display: flex; align-items: flex-start; }
.terms-container input { margin-top: 3px; flex-shrink: 0; accent-color: var(--primary-color); width: 18px; height: 18px; cursor: pointer; }
.terms-container p { margin-left: 0.75rem; font-size: 0.9rem; color: #374151; }
.terms-container a { color: var(--primary-color); font-weight: 600; text-decoration: none; cursor: pointer; border-bottom: 1px dashed var(--primary-color); }
.terms-container a:hover { border-bottom-style: solid; }

.modal-overlay {
    position: fixed; inset: 0; background-color: rgba(0,0,0,0.6); backdrop-filter: blur(5px);
    display: none; align-items: center; justify-content: center; z-index: 1000;
}
.modal-overlay.open { display: flex; }
.modal-container {
    background-color: white; border-radius: 1rem; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 90%; max-width: 800px; max-height: 90vh; display: flex; flex-direction: column;
}
.modal-header {
    padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border-color);
    display: flex; justify-content: space-between; align-items: center;
}
.modal-header h3 { font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin: 0; }
.modal-header button { background: none; border: none; font-size: 2rem; color: #9ca3af; cursor: pointer; line-height: 1; transition: color 0.2s; }
.modal-header button:hover { color: var(--text-dark); }
.modal-body { padding: 1.5rem; overflow-y: auto; color: var(--text-dark); font-size: 0.95rem; }
.contract-content p { margin-bottom: 1em; }
.contract-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1em; }
.contract-content strong { color: #111827; font-weight: 600; }
.contract-content span[id^="contract_"] { 
    font-weight: 700; 
    color: var(--primary-color); 
    background-color: #fff0f0; 
    padding: 2px 6px; 
    border-radius: 4px;
}
.modal-footer {
    padding: 1.25rem 1.5rem; border-top: 1px solid var(--border-color); text-align: right;
    background-color: #f9fafb; border-bottom-left-radius: 1rem; border-bottom-right-radius: 1rem;
}
.modal-close-btn {
    background-color: white; border: 1px solid var(--border-color); padding: 8px 20px;
    border-radius: 8px; font-weight: 600; cursor: pointer; color: var(--text-dark);
    transition: all 0.2s;
}
.modal-close-btn:hover { background-color: #f3f4f6; border-color: #d1d5db; }

/* Stepper Stilleri */
.stepper-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
    padding: 0 10px;
}

.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    z-index: 2;
}

.stepper-wrapper::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e5e7eb;
    z-index: 1;
    transform: translateY(-50%);
}

.stepper-progress-line {
    position: absolute;
    top: 20px;
    left: 0;
    height: 3px;
    background-color: var(--primary-color);
    z-index: 1;
    transform: translateY(-50%);
    width: 0%;
    transition: width 0.4s ease-in-out;
}

.step-counter {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #e5e7eb;
    margin-bottom: 8px;
    font-weight: 700;
    color: #9ca3af;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.stepper-item.active .step-counter {
    border-color: var(--primary-color);
    background-color: #fff;
    color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(255, 87, 87, 0.15);
}

.stepper-item.active .step-name {
    color: var(--primary-color);
}

.stepper-item.completed .step-counter {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.stepper-item.completed .step-name {
    color: var(--text-dark);
}

.form-step { display: none; }
.form-step.active { display: block; animation: slideUp 0.4s ease-out; }

@keyframes slideUp { 
    from { opacity: 0; transform: translateY(15px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* Tablet ve Mobil Genel */
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-title { font-size: 2.8rem; }
    .hero-buttons, .hero-stats-mini { justify-content: center; }
    .hero-image-wrapper { margin-top: 20px; padding: 0; }
    
    /* Kartları mobilde gizleyelim, çok yer kaplamasın */
    .floating-card { display: none; }

    .proof-grid { grid-template-columns: 1fr; }
    .arrow-separator {     transform: rotate(90deg);margin: 0px 43%;width: 10%; }
    .logo{justify-content:center;}
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    footer-col{
    display: flex;justify-content: center;flex-direction: column;align-items: center;}
    .features-wrapper { flex-direction: column; text-align: center; }
    .feature-visual { display: none; } /* Görseli mobilde gizle */
    .feature-li { flex-direction: column; text-align: center; align-items: center; }
}

/* Mobil Özel (Telefonlar) */
@media (max-width: 768px) {
    .nav-buttons { display: none; } /* Masaüstü menüyü gizle */
    
    /* Section Padding'leri azalt (Boşlukları daralt) */
    #hero, #social-proof, #nasil-calisir, #neden-biz, #pricing {
        padding: 50px 0; /* 100px'ten 50px'e düşürüldü */
    }

    .section-header { margin-bottom: 30px; }
    .section-title { font-size: 1.75rem; line-height: 1.2; }
    
    /* Hero alanı düzenlemeleri */
    .hero-title { font-size: 2rem; }
    .hero-description { font-size: 0.95rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .cta-button, .cta-button-outline { width: 100%; justify-content: center; }
    
    /* Gridleri tek kolona düşür */
    .steps-grid, .pricing-grid { grid-template-columns: 1fr; gap: 30px; }

    .pricing-card { padding: 25px; } /* Reduced padding */
    .popular-badge { font-size: 0.7rem; padding: 4px 10px; top: -12px; } /* Requested change */
    .pricing-header h3 { font-size: 1.25rem; }
    .pricing-header .price { font-size: 2.5rem; }

    .pricing-card.popular { transform: scale(1); } /* Popüler kartı büyütme efektini kaldır */

    /* Footer ve CTA Kartı Düzenlemesi */
    .final-cta-card {
        margin-top: 0;
        margin-bottom: 30px; /* Negatif margin'i kaldır */
        padding: 40px 20px;
    }
    .final-cta-card h2 { font-size: 1.5rem; }
    .final-cta-card p { font-size: 0.95rem; }
    
    footer {
        padding-top: 20px; /* Üst boşluğu azalt */
    }

    /* Checkout Sayfası Mobil */
    .create-event-main { flex-direction: column; }
    .event-visual-panel { order: -1; min-height: 250px; } /* Görseli üste al */
    .event-form-card { padding: 1.5rem; box-shadow: none; border: none; }
    
    /* Progress Bar Mobil */
    .stepper-wrapper { padding: 0; }
    .step-name { font-size: 0.7rem; }
    .step-counter { width: 32px; height: 32px; font-size: 0.9rem; }
}

/* ============================================================
   8. GİRİŞ / KAYIT / FORM SAYFALARI
   ============================================================ */
.auth-card {
    width: 100%; max-width: 450px; margin: 0 auto;
    background-color: white; padding: 40px; border-radius: 20px;
    box-shadow: var(--shadow-lg); border: 1px solid var(--border-color);
}
.auth-card h2 { font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: 10px; }
.auth-card p { text-align: center; color: var(--text-gray); margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border-radius: 10px;
    border: 1px solid var(--border-color); transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box; font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 87, 87, 0.2);
}
.auth-switch { text-align: center; margin-top: 25px; }
.user-info-banner {
    background-color: #f0f9ff; border-left: 4px solid #38bdf8;
    color: #0c4a6e; padding: 1rem; margin-bottom: 1.5rem; border-radius: 0.25rem;
}

/* ============================================================
   9. YÜKLEME (UPLOAD) SAYFASI
   ============================================================ */
.upload-card {
    width: 100%; max-width: 600px; margin: 0 auto;
    background-color: white; padding: 40px; border-radius: 20px;
    box-shadow: var(--shadow-lg); border: 1px solid var(--border-color);
}
.upload-dropzone { display: flex; align-items: center; justify-content: center; width: 100%; }
.upload-dropzone-label {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    width: 100%; height: 150px; border: 2px dashed var(--border-color);
    border-radius: 12px; cursor: pointer; background-color: var(--bg-gray);
    transition: border-color 0.2s, background-color 0.2s;
}
.upload-dropzone-label:hover { border-color: var(--primary-color); background-color: #fff5f5; }
.upload-dropzone-content { display: flex; flex-direction: column; align-items: center; padding: 1rem; color: var(--text-gray); }

.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (min-width: 640px) { .preview-grid { grid-template-columns: repeat(5, 1fr); } }

.preview-item {
    position: relative; width: 100%; padding-top: 100%;
    overflow: hidden; border-radius: 8px; background-color: var(--bg-gray);
}
.preview-item img, .preview-item video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
}
.preview-item .remove-btn {
    position: absolute; top: 5px; right: 5px;
    background-color: rgba(0, 0, 0, 0.6); color: white;
    border: none; border-radius: 50%; width: 24px; height: 24px;
    font-size: 14px; display: flex; align-items: center; justify-content: center;
    cursor: pointer;
}

/* ============================================================
   10. CREATE EVENT SAYFASI (YENİ DÜZEN)
   ============================================================ */
.create-event-body { display: flex; flex-direction: column; min-height: 100vh; background-color: var(--bg-gray); }
.create-event-main { display: flex; flex-direction: column; flex-grow: 1; }
.event-form-panel, .event-visual-panel { flex: 1; display: flex; justify-content: center; align-items: center; padding: 2rem; }
.event-form-card { width: 100%; max-width: 500px; background-color: white; padding: 2.5rem; border-radius: 1.5rem; box-shadow: var(--shadow-lg); }
.event-visual-panel {
    background-size: cover; background-position: center; position: relative;
    color: white; text-align: center; min-height: 400px;
}
.event-visual-panel::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)); z-index: 1;
}
.event-visual-text { position: relative; z-index: 2; padding: 2rem; max-width: 600px; }

@media (min-width: 768px) {
	.logo{justify-content:cent}
    .create-event-body { flex-direction: column; }
    .create-event-main { flex-direction: row; }
    .event-form-panel { order: 1; }
    .event-visual-panel { order: 2; }
}

/* ============================================================
   11. DİĞER (PAYTR, MOBİL MENÜ, ANİMASYON)
   ============================================================ */
/* PayTR Iframe */
.payment-container {
    padding: 60px 24px; text-align: center; min-height: 70vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.loading-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1); border-top: 4px solid var(--primary-color);
    border-radius: 50%; width: 50px; height: 50px; animation: spin 1s linear infinite; margin: 0 auto 20px auto;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
#iframe-wrapper {
    width: 100%; max-width: 800px; margin: 2rem auto; display: none;
    background: white; border-radius: 12px; box-shadow: var(--shadow-lg); overflow: hidden;
}

/* Mobil Menü */
.mobile-menu-button { background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.95); z-index: 1001;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transform: translateX(100%); transition: transform 0.4s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close { position: absolute; top: 30px; right: 30px; font-size: 2.5rem; color: white; background: none; border: none; cursor: pointer; }
.mobile-menu-nav { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.mobile-menu-nav a { color: white; font-size: 2rem; font-weight: 600; text-decoration: none; }

/* Animasyonlar */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   12. LOGIN VE REGISTER SAYFALARI (YENİ EKLENDİ)
   ============================================================ */
.page-auth {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6;
}

.login-card {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.brand-section {
    position: relative;
    overflow: hidden;
}

.brand-section.login-variant {
    background: linear-gradient(135deg, #ff5757 0%, #ff8080 100%);
}

.brand-section.register-variant {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.brand-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}

.brand-pattern.login-pattern {
    opacity: 0.1;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 20px 20px;
}

.brand-pattern.register-pattern {
    opacity: 0.05;
    background-image: linear-gradient(30deg, #ffffff 12%, transparent 12.5%, transparent 87%, #ffffff 87.5%, #ffffff), linear-gradient(150deg, #ffffff 12%, transparent 12.5%, transparent 87%, #ffffff 87.5%, #ffffff), linear-gradient(30deg, #ffffff 12%, transparent 12.5%, transparent 87%, #ffffff 87.5%, #ffffff), linear-gradient(150deg, #ffffff 12%, transparent 12.5%, transparent 87%, #ffffff 87.5%, #ffffff), linear-gradient(60deg, #777777 25%, transparent 25.5%, transparent 75%, #777777 75%, #777777), linear-gradient(60deg, #777777 25%, transparent 25.5%, transparent 75%, #777777 75%, #777777);
    background-size: 40px 70px;
    background-position: 0 0, 0 0, 20px 35px, 20px 35px, 0 0, 20px 35px;
}

.floating-circle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

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

.form-input:focus {
    border-color: #ff5757;
    box-shadow: 0 0 0 4px rgba(255, 87, 87, 0.1);
}

/* Register Gender Radio */
.gender-radio:checked + div {
    background-color: #fff0f0;
    border-color: #ff5757;
    color: #ff5757;
}
.gender-radio:checked + div svg {
    color: #ff5757;
}