#visa-info {
    color: #222;
    max-width: 1140px; /* Sabit genişlik */
    margin: 0 auto; /* Yatayda ortalamak için */
    padding: 0 16px; /* Kenar boşlukları */
    margin-top: 32px;
}

.visa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    align-items: start;
}

@media (max-width: 900px) {
    .visa-grid {
        grid-template-columns: 1fr;
    }

    #visa-info {
        max-width: 100%; /* Mobilde tam genişlik */
        padding: 0 8px;
    }
}

.visa-card {
    background: #fff;
    border: 1px solid #e6e9ee;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 6px 18px rgba(18, 38, 63, 0.04);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

    .visa-card svg {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        margin-top: 2px;
    }

    .visa-card h4 {
        margin: 0 0 6px 0;
        font-size: 16px;
        color: #0f1724;
    }

    .visa-card p {
        margin: 0;
        font-size: 14px;
        line-height: 1.45;
        color: #3b4752;
    }

.visa-actions {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-ghost {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #d1d7df;
    background: transparent;
    text-decoration: none;
    font-weight: 600;
    color: #0f1724;
}

.btn-primary {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 8px;
    border: 0;
    background: #0b76ef;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* Summary panel (sağ tarafta özet için) */
.summary {
    background: linear-gradient(180deg, #fbfdff, #ffffff);
    border: 1px solid #e6eefc;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .summary .row {
        display: flex;
        justify-content: space-between;
        font-size: 14px;
        color: #263238;
    }

    .summary .total {
        font-size: 18px;
        font-weight: 700;
        color: #0b76ef;
        margin-top: 8px;
    }

/* Küçük başlık */
.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

    .section-title h3 {
        margin: 0;
        font-size: 18px;
    }

.custom-radio-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.radio-card {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
    flex: 1 1 250px;
    min-width: 200px;
}

    .radio-card:hover {
        border-color: #007bff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .radio-card input[type="radio"] {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    .radio-card .card-content {
        display: flex;
        flex-direction: column;
    }

    .radio-card .option-title {
        font-weight: bold;
        margin-bottom: 5px;
        font-size: 16px;
    }

    .radio-card .option-description {
        font-size: 14px;
        color: #555;
    }

    .radio-card .checkmark {
        position: absolute;
        top: 15px;
        right: 15px;
        height: 20px;
        width: 20px;
        border: 2px solid #ccc;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .radio-card input:checked ~ .checkmark {
        background-color: #007bff;
        border-color: #007bff;
    }

#error-msg {
    color: red;
}

#valid-msg {
    color: #00C900;
}

input.error {
    border: 1px solid #FF7C7C;
}

.hide {
    display: none;
}

.error {
    color: #ff0000;
}

.intl-tel-input {
    display: table-cell;
}

    .intl-tel-input .selected-flag {
        z-index: 4;
    }

    .intl-tel-input .country-list {
        z-index: 5;
    }

.input-group .intl-tel-input .form-control {
    border-top-left-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 0;
}


.page-container {
    width: 95%;
    max-width: 1100px;
    margin: 40px auto
}

@media (max-width:575px) {
    .page-container {
        width: 95%;
        margin: 20px auto
    }
}

/* Progress üstte */
.progress-wrapper {
    margin-bottom: 30px
}

.progress-track {
    height: 10px;
    background: #d1d5db;
    border-radius: 10px;
    position: relative;
    margin-top: 20px
}

.progress-fill {
    height: 10px;
    background: #1e66ff;
    border-radius: 10px;
    width: 0;
    transition: width .3s ease
}

/* Step indicators */
.step-indicators {
    display: flex;
    justify-content: space-between;
    margin-top: 15px
}

.step-indicator {
    text-align: center;
    flex: 1
}

.circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background: #e9ecef;
    color: #6c757d;
    margin: auto;
    border: 2px solid #cbd5e1;
    transition: all .3s ease
}

.active-step .circle {
    background: #1e66ff;
    color: #fff;
    border-color: #1e66ff
}

/* Cards kenarlıkları */
.form-card {
    border: 1px solid #d0d4dc;
    border-radius: 10px;
    padding: 28px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(20,20,50,0.06)
}

.summary-card {
    border: 1px solid #d0d4dc;
    border-radius: 10px;
    padding: 22px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(20,20,50,0.06)
}

label.required:after {
    content: " *";
    color: #d9534f
}

.fee-amount {
    font-weight: 700
}

.total-amount {
    font-size: 20px;
    color: #1e66ff;
    font-weight: 800
}

@media(min-width:992px) {
    .summary-card {
        position: sticky;
        top: 30px
    }
}

/* ===== Seyahat sigortası ürün kutusu ===== */
.insurance-product {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 20px 24px 20px 70px;
    border: 1px solid rgba(0, 123, 255, 0.25);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #eff7ff 55%, #e4f1ff 100%);
    box-shadow:
        0 8px 24px rgba(0, 123, 255, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Sol accent çubuk */
.insurance-product::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #00c6ff, #0072ff);
}

/* Kalkan ikonu */
.insurance-product::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background-color: #0072ff;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23ffffff'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M12%2022s8-4%208-10V5l-8-3-8%203v7c0%206%208%2010%208%2010z'/%3E%3Cpath%20d='M9%2012l2%202%204-4'/%3E%3C/svg%3E");
    background-size: 18px;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 5px 14px rgba(0, 114, 255, 0.35);
}

.insurance-product:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 123, 255, 0.45);
    box-shadow:
        0 14px 34px rgba(0, 123, 255, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.insurance-product-info {
    flex: 1 1 50px;
    min-width: 0;
}

.insurance-product-title {
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    color: #0b3d91;
    padding-bottom: 6px;
    position: relative;
}

/* Başlık altı accent çizgi */
.insurance-product-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
}

.insurance-product-subtitle {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #5a6b7b;
    margin-top: 10px;
}

/* Geçerlilik onay rozeti */
.insurance-product-subtitle::before {
    content: "";
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #22c55e;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23ffffff'%20stroke-width='3'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M5%2013l4%204L19%207'/%3E%3C/svg%3E");
    background-size: 9px;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 2px 6px rgba(34, 197, 94, 0.35);
}

.insurance-product-price {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
    background: linear-gradient(180deg, #00c6ff, #0072ff);
    padding: 10px 22px;
    border-radius: 12px;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(0, 114, 255, 0.30);
}

#insuranceArea.is-invalid .custom-radio-cards .radio-card {
    border-color: #e3342f;
}

#insuranceArea.is-invalid .custom-radio-cards .radio-card:hover {
    border-color: #e3342f;
}

@media (max-width: 767px) {
    .insurance-product {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px;
    }

    .insurance-product::before {
        width: 100%;
        height: 5px;
        bottom: auto;
    }

    .insurance-product::after {
        left: 14px;
        top: 14px;
        transform: none;
    }

    .insurance-product-title {
        padding-left: 44px;
        font-size: 15px;
    }

    .insurance-product-subtitle {
        margin-top: 6px;
    }

    .insurance-product-price {
        align-self: stretch;
        text-align: center;
        font-size: 19px;
        padding: 8px 16px;
    }
}

/* ===== Seyahat sigortası radyo kartları ===== */
#insuranceCards, #visaSpeedCards {
    gap: 12px;
}

#insuranceCards .radio-card, #visaSpeedCards .radio-card {
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 18px;
    background: linear-gradient(180deg, #f8fbff, #ffffff);
    box-shadow: 0 2px 10px rgba(16, 42, 87, 0.07);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

#insuranceCards .radio-card:hover, #visaSpeedCards .radio-card:hover {
    border-color: #00a3ff;
    box-shadow: 0 6px 18px rgba(0, 123, 255, 0.15);
    transform: translateY(-2px);
}

#insuranceCards .radio-card:has(input:checked), #visaSpeedCards .radio-card:has(input:checked) {
    border-color: #0072ff;
    background: linear-gradient(180deg, #e9f3ff, #ffffff);
    box-shadow: 0 8px 22px rgba(0, 114, 255, 0.20);
    transform: translateY(-2px);
}

#insuranceCards .radio-card .card-content, #visaSpeedCards .radio-card .card-content {
    padding-right: 24px;
}

#insuranceCards .radio-card .option-title, #visaSpeedCards .radio-card .option-title {
    font-size: 15px;
    color: #1f2d3d;
}

#insuranceCards .radio-card input:checked ~ .card-content .option-title, #visaSpeedCards .radio-card input:checked ~ .card-content .option-title {
    color: #0072ff;
}

#insuranceCards .radio-card .checkmark, #visaSpeedCards .radio-card .checkmark {
    border-color: #c3ccd6;
    background: #ffffff;
}

#insuranceCards .radio-card input:checked ~ .checkmark, #visaSpeedCards .radio-card input:checked ~ .checkmark {
    background-color: #0072ff;
    border-color: #0072ff;
    box-shadow: 0 2px 8px rgba(0, 114, 255, 0.45);
}

#insuranceCards .radio-card .checkmark::after, #visaSpeedCards .radio-card .checkmark::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) scale(0);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

#insuranceCards .radio-card input:checked ~ .checkmark::after, #visaSpeedCards .radio-card input:checked ~ .checkmark::after {
    transform: rotate(45deg) scale(1);
    opacity: 1;
}

@media (max-width: 767px) {
    #insuranceCards, #visaSpeedCards {
        gap: 8px;
    }

    #insuranceCards .radio-card, #visaSpeedCards .radio-card {
        flex: 1 1 100%;
        min-width: 0;
        width: 100%;
        padding: 11px 40px 11px 14px;
        display: flex;
        align-items: center;
        border-width: 1.5px;
        border-radius: 10px;
    }

    #insuranceCards .radio-card .card-content, #visaSpeedCards .radio-card .card-content {
        flex: 1;
        justify-content: center;
        text-align: center;
        padding-right: 0;
    }

    #insuranceCards .radio-card .option-title, #visaSpeedCards .radio-card .option-title {
        font-size: 13.5px;
        line-height: 1.3;
        margin-bottom: 0;
    }

    #insuranceCards .radio-card .checkmark, #visaSpeedCards .radio-card .checkmark {
        top: 50%;
        transform: translateY(-50%);
        height: 18px;
        width: 18px;
    }

    #insuranceCards .radio-card .checkmark::after, #visaSpeedCards .radio-card .checkmark::after {
        left: 5px;
        top: 3px;
        width: 5px;
        height: 8px;
    }
}