/* =========================================
   TSE ANKET SAYFASI
========================================= */

body
{
    background: #f4f7fb;
}

/* HERO */

.survey-hero
{
    padding: 70px 0 40px;
}

.survey-hero-card
{
    background: linear-gradient(135deg, #071a52 0%, #0b2b84 100%);
    border-radius: 28px;
    padding: 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.10);
}

.survey-hero-card::before
{
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

.survey-top-badge
{
    display: inline-block;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.survey-main-title
{
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.survey-main-text
{
    font-size: 1.08rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.88);
    max-width: 900px;
}

.survey-info-box
{
    margin-top: 40px;
}

.survey-mini-card
{
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    padding: 22px;
    height: 100%;
}

.survey-mini-card strong
{
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
}

.survey-mini-card span
{
    font-size: 0.93rem;
    color: rgba(255,255,255,0.80);
}

/* FORM */

.survey-form-section
{
    padding-bottom: 80px;
}

.survey-form-card
{
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 12px 45px rgba(0,0,0,0.06);
}

.survey-section-title
{
    font-size: 1.5rem;
    font-weight: 700;
    color: #071a52;
    margin-bottom: 35px;
    padding-bottom: 16px;
    border-bottom: 2px solid #eef2f7;
}

.form-label
{
    display: inline-block;
    font-weight: 700;
    color: #a11919;
    margin-bottom: 14px;
    font-size: 1.03rem;
    line-height: 1.6;
}

.form-control,
.form-select
{
    min-height: 56px;
    border-radius: 14px;
    border: 1px solid #dbe3ee;
    padding-left: 16px;
    font-size: 15px;
    transition: all .2s ease;
}

textarea.form-control
{
    min-height: 140px;
    padding-top: 14px;
}

.form-control:focus,
.form-select:focus
{
    border-color: #0b2b84;
    box-shadow: 0 0 0 0.20rem rgba(11,43,132,.12);
}

/* MOBILE */

@media (max-width: 991px)
{
    .survey-hero
    {
        padding-top: 40px;
    }

    .survey-hero-card
    {
        padding: 34px 26px;
        border-radius: 22px;
    }

    .survey-main-title
    {
        font-size: 1.9rem;
    }

    .survey-main-text
    {
        font-size: 1rem;
        line-height: 1.7;
    }

    .survey-form-card
    {
        padding: 30px 22px;
        border-radius: 20px;
    }

    .survey-section-title
    {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px)
{
    .survey-main-title
    {
        font-size: 1.65rem;
    }

    .survey-top-badge
    {
        font-size: 12px;
    }
}
/* =========================================
   RADIO / CHECKBOX OPTIONS
========================================= */

.survey-divider
{
    height: 1px;
    background: #eef2f7;
    margin: 55px 0;
}

.survey-option-group
{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.survey-option
{
    position: relative;
    cursor: pointer;
}

.survey-option input
{
    position: absolute;
    opacity: 0;
}

.survey-option span
{
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid #d9e2ef;
    background: #fff;
    font-weight: 500;
    transition: all .2s ease;
}

.survey-option input:checked + span
{
    background: #0b2b84;
    color: #fff;
    border-color: #0b2b84;
    box-shadow: 0 10px 25px rgba(11,43,132,.16);
}

.survey-option:hover span
{
    border-color: #0b2b84;
}

@media (max-width: 576px)
{
    .survey-option
    {
        width: 100%;
    }

    .survey-option span
    {
        width: 100%;
    }
}
/* =========================================
   CHECKBOX GRID
========================================= */

.survey-checkbox-grid
{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.survey-checkbox-option
{
    position: relative;
    cursor: pointer;
}

.survey-checkbox-option input
{
    position: absolute;
    opacity: 0;
}

.survey-checkbox-option span
{
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid #d9e2ef;
    background: #fff;
    transition: all .2s ease;
    font-weight: 500;
}

.survey-checkbox-option:hover span
{
    border-color: #0b2b84;
}

.survey-checkbox-option input:checked + span
{
    background: #0b2b84;
    color: #fff;
    border-color: #0b2b84;
    box-shadow: 0 10px 25px rgba(11,43,132,.16);
}

@media (max-width: 991px)
{
    .survey-checkbox-grid
    {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   QUESTION EMPHASIS
========================================= */

.survey-section-title
{
    position: relative;
}

.survey-section-title::before
{
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 90px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #dc3545 0%, #0b2b84 100%);
}

.survey-option-group,
.survey-checkbox-grid
{
    margin-top: 6px;
}

textarea.form-control
{
    line-height: 1.7;
}
/* =========================================
   KVKK & SUBMIT
========================================= */

.survey-kvkk-box
{
    background: #f8fafc;
    border: 1px solid #e7edf5;
    border-radius: 18px;
    padding: 24px;
}

.form-check-label
{
    line-height: 1.7;
    color: #374151;
}

.survey-submit-btn
{
    min-width: 280px;
    min-height: 62px;
    border-radius: 16px;
    border: 0;
    background: linear-gradient(135deg, #071a52 0%, #0b2b84 100%);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(11,43,132,.18);
    transition: all .25s ease;
}

.survey-submit-btn:hover
{
    transform: translateY(-2px);
    color: #fff;
}

.survey-submit-note
{
    font-size: 0.92rem;
    color: #6b7280;
}

@media (max-width: 576px)
{
    .survey-submit-btn
    {
        width: 100%;
        min-width: 100%;
    }
}
/* =========================================
   THANK YOU PAGE
========================================= */

.thankyou-section
{
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.thankyou-card
{
    background: #fff;
    border-radius: 28px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.thankyou-icon
{
    width: 110px;
    height: 110px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #071a52 0%, #0b2b84 100%);
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 45px rgba(11,43,132,.18);
}

.thankyou-title
{
    font-size: 2.3rem;
    font-weight: 800;
    color: #071a52;
    margin-bottom: 22px;
}

.thankyou-text
{
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 18px;
}

.thankyou-subtext
{
    color: #6b7280;
    line-height: 1.8;
}

.thankyou-btn
{
    min-width: 240px;
    min-height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, #071a52 0%, #0b2b84 100%);
    color: #fff;
    font-weight: 700;
    border: 0;
    transition: all .25s ease;
}

.thankyou-btn:hover
{
    transform: translateY(-2px);
    color: #fff;
}

@media (max-width: 576px)
{
    .thankyou-card
    {
        padding: 40px 24px;
    }

    .thankyou-title
    {
        font-size: 1.8rem;
    }

    .thankyou-text
    {
        font-size: 1rem;
    }
}