@charset "UTF-8";

/* 1. DEĞİŞKENLER VE PANEL AYARLARI (GÜÇLENDİRİLMİŞ) */
:root {
    --primary-red: #dc2626;
    --soft-red: #fef2f2;
    --border-red: #fee2e2;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --success-green: #22c55e;
}

/* 2. CANLI HIZ PANELİ (SORKURYE PANEL) */
.sorkurye-hiz-paneli {
    padding: 24px !important;
    margin: 25px 0 !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    border: 1.5px solid var(--border-red) !important;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.05) !important;
    text-align: center !important;
    font-family: 'Inter', -apple-system, sans-serif !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
}

.sorkurye-hiz-paneli::before {
    content: "";
    position: absolute;
    top: 15px;
    right: 15px;
    width: 8px;
    height: 8px;
    background: var(--success-green);
    border-radius: 50%;
    animation: pulse-green 2s infinite;
    z-index: 10;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.paneli-ust-etiket {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    font-weight: 700;
    margin-bottom: 10px;
}

.ana-istatistik-ler {
    display: flex !important;
    justify-content: space-around !important;
    align-items: center !important;
    margin: 15px 0 !important;
    gap: 10px !important;
}

.istatistik-kutu {
    flex: 1;
}

.sure-buyuk {
    font-size: 48px !important;
    font-weight: 900 !important;
    color: var(--primary-red) !important;
    line-height: 1 !important;
}

.kurye-buyuk {
    font-size: 48px !important;
    font-weight: 900 !important;
    color: var(--text-dark) !important;
    line-height: 1 !important;
}

.birim-etiket {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 8px;
    display: block;
}

.ayirici-cizgi {
    width: 1px;
    height: 60px;
    background: var(--border-red);
}

.baslik-kucuk {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 15px 0 20px 0;
}

.ilce-konteynir {
    background: var(--soft-red) !important;
    padding: 15px !important;
    border-radius: 12px !important;
    margin-bottom: 10px !important;
}

.ilce-baslik {
    font-size: 12px;
    color: #991b1b;
    font-weight: 700;
    margin-bottom: 10px;
}

.rozet-grubu {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.rozet-item {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 8px;
    background: #ffffff;
    color: var(--primary-red);
    border: 1px solid var(--border-red);
}



/* CTA CONTAINER */
.cta-wrap {
    display: flex;
    gap: 12px;
    padding: 0 16px;
    margin: 16px 0 26px;
}

/* ORTAK BUTON */
.cta-btn {
    flex: 1;
    /* her zaman yan yana */
    height: 56px;
    /* ↑ büyük, stabil */
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

/* PRIMARY – Kurye Çağır */
.cta-red {
    background-color: #dc2626;
    /* kırmızı */
    color: #ffffff;
}

/* SECONDARY – Fiyat Hesapla */
.cta-turquoise {
    background-color: #06b6d4;
    /* turkuaz */
    color: #ffffff;
}

/* HOVER – sadece desktop */
@media (hover: hover) {
    .cta-btn:hover {
        transform: translateY(-2px);
        background-color: #000;
    }
}

/* 4. WHATSAPP FLOAT & ANIMATION */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    height: 50px;
    left: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    border-radius: 50%;
}

.wa-main-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.wa-animation {
    animation: wa-pulse 2.5s infinite;
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 25px rgba(37, 211, 102, 0);
        transform: scale(1.03);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

.agent-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 38px;
    height: 38px;
    background: #fff;
    border: 2px solid #25d366;
    border-radius: 50%;
    overflow: hidden;
}

/* 5. FAQ (SIKÇA SORULAN SORULAR) */
.faq-container {
    max-width: 700px;
    margin: 0 auto;
    border-top: 1px solid #ddd;
}

.faq-question {
    background: white;
    color: #1a0dab;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
    font-size: 15px;
    color: #202124;
}

.faq-item.active .faq-answer {
    max-height: 300px !important;
    padding: 15px 20px !important;
}

/* 6. WHATSAPP FORM VE EKSTRALAR */
.sorkurye-whatsapp-form-wrapper {
    max-width: 450px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #e3e3e3;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.sorkurye-whatsapp-btn {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    background: #25d366;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.mv-strip-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 32px;
    background: rgba(220, 38, 38, 0.02);
    border-top: 1px dashed var(--border-red);
    pointer-events: none;
}

.mv-item-panel {
    position: absolute;
    bottom: 0;
    height: 28px;
    left: -150px;
    will-change: transform;
}

/* 7. MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .sorkurye-default-header h1 {
        font-size: 40px !important;
    }

    .whatsapp-float {
        bottom: 75px;
        left: 15px;
    }

    .wa-main-img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {

    .sure-buyuk,
    .kurye-buyuk {
        font-size: 40px !important;
    }

    .sorkurye-hiz-paneli {
        padding: 15px !important;
    }
}

.hero-title {
    text-align: center;
}

.hero-title h1 {
    margin: 0;
}

.hero-title .line-main {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    color: #d60000;
}

.hero-title .line-sub {
    display: block;
}

.hero-title .sub-strong {
    display: block;
    font-size: 30px;
    font-weight: 600;
    /* daha güçlü */
    line-height: 1.0;
    color: #222;
}

.hero-title .sub-light {
    display: block;
    font-size: 28px;
    /* bir tık daha küçük */
    font-weight: 500;
    /* daha ince */
    line-height: 1.0;
    margin-top: -2px;
    /* yakın dursun */
    color: #333;
}