/* idagloballtdsti - Mobil uyumlu, Türkçe UTF-8 */
@charset "UTF-8";

:root {
    --bg-light-blue: #e3f2fd;
    --map-opacity: 0.30;
    --card-bg: #fff;
    --primary: #1565c0;
    --primary-hover: #0d47a1;
    --radius: 16px;
    --shadow: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.12);
}



* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg-light-blue);
    color: #1a1a1a;
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Tüm sayfalarda tam sayfa %30 opak dünya haritası arka planı */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--bg-light-blue);
    z-index: -2;
}
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/world-map.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: var(--map-opacity);
    pointer-events: none;
    z-index: -1;
}

.content-wrap {
    position: relative;
    flex: 1;
    padding: 2rem 1rem 3rem;
    display: flex;
    flex-direction: column;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.site-header {
    position: relative;
    z-index: 10;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: visible;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}
.site-header .logo {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
}
.site-header .logo img {
    width: 280px;
    height: 66px;
    max-width: 100%;
    display: block;
    object-fit: contain;
}
.site-header .logo:hover img {
    opacity: 0.85;
}
.header-nav {
    display: flex;
    gap: 1.5rem;
    overflow: visible;
}
.header-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}
.header-nav a:hover,
.header-nav a.active {
    color: var(--primary);
}

/* Google Translate - Ana Sayfa'nın 10px sağında, Google kendi iframe/dropdown yapısı */
.header-translate-wrap {
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 9999;
    overflow: visible;
}
#google_translate_element {
    overflow: visible;
    position: relative;
    z-index: 9999;
}
.header-translate-wrap .goog-te-combo,
#google_translate_element .goog-te-combo {
    padding: 0.4rem 1.75rem 0.4rem 0.5rem;
    font-size: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fff;
    color: #333;
    cursor: pointer;
    min-height: 36px;
}
.header-translate-wrap .goog-te-combo:focus,
#google_translate_element .goog-te-combo:focus {
    outline: none;
    border-color: var(--primary);
}
/* Dil seçicideki ">" / ok işaretini gizle */
#google_translate_element .goog-te-gadget-simple a.goog-te-menu-value span:last-child,
#google_translate_element .goog-te-gadget span[style*="color"],
#google_translate_element div.goog-te-gadget-simple > span:last-child {
    display: none !important;
}
/* Google dropdown iframe menüsü üstte görünsün */
.goog-te-menu-frame,
.goog-te-balloon-frame {
    z-index: 10001 !important;
}
div.goog-te-menu2 {
    z-index: 10001 !important;
}

/* Google Translate üst bar/banner tamamen gizli */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
#goog-gt-tt,
.skiptranslate.goog-te-banner-frame,
body > div.skiptranslate,
body > div[class*="skiptranslate"]:first-of-type {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    pointer-events: none !important;
}
body {
    top: 0 !important;
    position: static !important;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231565c0'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 6h16M4 12h16M4 18h16'/%3E%3C/svg%3E") center/24px no-repeat;
    cursor: pointer;
    padding: 0;
}

/* Mobil panel: kapatma butonu ve panel logosu (masaüstünde gizli) */
.nav-close,
.nav-panel-logo {
    display: none;
}
.nav-panel-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
/* Bize Ulaşın sadece mobil menüde görünsün, masaüstü header'da olmasın */
.nav-link-iletisim {
    display: none;
}
.nav-panel-call {
    display: none;
}

/* Footer */
.site-footer {
    position: relative;
    z-index: 10;
    margin-top: auto;
    background: #fff;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
    padding: 1.5rem 1rem;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}
.footer-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}
.footer-links a:hover {
    text-decoration: underline;
}
.footer-copy {
    font-size: 0.9rem;
    color: #666;
}

/* Mobil: sabit arama çubuğu (sadece küçük ekran) */
.mobile-call-bar {
    display: none;
}
@media (max-width: 768px) {
    body {
        padding-bottom: calc(52px + env(safe-area-inset-bottom, 0px));
    }
    .mobile-call-bar {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.65rem;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
        background: #a10d2d;
        color: #fff;
        text-decoration: none;
        z-index: 950;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    }
    .mobile-call-bar:active {
        background: #0a3d8a;
    }
    .mobile-call-bar__icon {
        display: flex;
        flex-shrink: 0;
        color: #fff;
    }
    .mobile-call-bar__icon svg {
        display: block;
    }
    .mobile-call-bar__label {
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }
    .mobile-call-bar__num {
        font-size: 1.5rem;
        font-weight: 700;
        letter-spacing: 0.02em;
    }
}

/* Çerez bildirimi */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(21,101,192,0.98);
    color: #fff;
    padding: 1rem 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.cookie-consent[hidden] {
    display: none !important;
}
.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.cookie-text {
    flex: 1;
    min-width: 260px;
    font-size: 0.95rem;
    margin: 0;
}
.cookie-text a {
    color: #bbdefb;
    text-decoration: underline;
}
.cookie-actions .btn-primary {
    background: #fff;
    color: var(--primary);
}
.cookie-actions .btn-primary:hover {
    background: #e3f2fd;
}

/* Ana sayfa: İDA GLOBAL - header ile arasında 80px, Vize Başvuru İşlemleri ile aynı font ve ortalı */
.site-brand {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--primary);
    margin-top: 80px;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
    font-family: inherit;
}

/* Başlık */
.page-title {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
}
.page-title.first-after-brand {
    margin-top: 0;
}

/* Flip kartlar - yan yana, 30px aralık, ortalı */
.cards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin: 2rem 0;
}

.flip-card {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4/3;
    perspective: 1000px;
    flex-shrink: 0;
}

/* 800px ve üzeri: iki kutu yan yana, ortalı */
@media (min-width: 801px) {
    .cards-row {
        flex-wrap: nowrap;
        justify-content: center;
    }
    .cards-row .flip-card {
        width: 320px;
        max-width: 320px;
    }
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s ease;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    text-align: center;
}

.flip-card-front {
    background: linear-gradient(145deg, #fff 0%, #f0f7ff 100%);
    border: 1px solid rgba(21,101,192,0.2);
}

/* Ön yüz: başlığın üstünde flat bayrak */
.flip-card-flag {
    width: 56px;
    height: 36px;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.flag-italy {
    background: linear-gradient(90deg, #009246 0%, #009246 33.33%, #fff 33.33%, #fff 66.66%, #ce2b37 66.66%, #ce2b37 100%);
}
.flag-germany {
    background: linear-gradient(180deg, #000 0%, #000 33.33%, #dd0000 33.33%, #dd0000 66.66%, #ffcc00 66.66%, #ffcc00 100%);
}

.flip-card-back {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #fff;
    transform: rotateY(180deg);
    overflow: hidden;
}

/* Arka yüz: %30 opak arka plan görseli, kutu tam kaplar */
.flip-card-back--italy::before,
.flip-card-back--germany::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.30;
    z-index: 0;
    border-radius: inherit;
}
.flip-card-back--italy::before {
    background-image: url('../images/Italya.jpg');
}
.flip-card-back--germany::before {
    background-image: url('../images/Almanya.jpg');
}
.flip-card-back--italy h3,
.flip-card-back--italy p,
.flip-card-back--germany h3,
.flip-card-back--germany p {
    position: relative;
    z-index: 1;
}

.flip-card-front h3,
.flip-card-back h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.flip-card-front p,
.flip-card-back p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Link tüm kartı kaplar; metin görünmez, sadece kutu tıklanabilir */
.flip-card a {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: transparent;
    font-size: 0;
    overflow: hidden;
}

/* Ana sayfa: kutuların altındaki danışmanlık notu */
.home-disclaimer {
    margin-top: 50px;
    padding: 1rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}
.home-disclaimer p {
    margin: 0;
}

/* Form sayfası ortak */
.form-page .container {
    padding: 1rem;
}

.form-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
}

.form-step {
    display: none;
}
.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(21,101,192,0.2);
}

/* Başvuru sahibi bilgileri: masaüstünde 2 sütun */
@media (min-width: 769px) {
    .form-page .form-card {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }
    .form-step-2-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem 1.75rem;
    }
    .form-step-2-grid .form-group-full {
        grid-column: 1 / -1;
    }
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(21,101,192,0.15);
}

/* Doğum tarihi: masaüstünde takvim, mobilde manuel gg.aa.yyyy */
.dob-text {
    display: none;
}
@media (max-width: 768px) {
    .dob-date {
        display: none !important;
    }
    .dob-text {
        display: block !important;
    }
}

/* Seçim kutusu - tek seçim zorunlu */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-option:hover {
    border-color: var(--primary);
    background: rgba(21,101,192,0.04);
}

.radio-option input {
    width: 20px;
    height: 20px;
    margin-right: 1rem;
    accent-color: var(--primary);
}

/* Turistik vize info ikonu + tooltip */
.info-icon-wrap {
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}
.info-icon {
    cursor: help;
    width: 14px;
    height: 14px;
    min-width: 14px;
    min-height: 14px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
}
.info-tooltip {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 8px;
    white-space: normal;
    width: 280px;
    max-width: min(280px, calc(100vw - 2rem));
    padding: 10px 12px;
    background: #000;
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 20;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.info-icon-wrap:hover .info-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Mobilde tooltip sayfada ortada, soldan ve sağdan 10px boşluk */
@media (max-width: 768px) {
    .info-icon-wrap {
        position: static;
    }
    .info-tooltip {
        position: fixed;
        left: 10px;
        right: 10px;
        width: auto;
        max-width: none;
        margin: 0;
        top: 50%;
        transform: translateY(-50%);
        box-sizing: border-box;
    }

    .site-header .logo {
        margin-left: 20px;
      }
}

.radio-option input:checked + span {
    font-weight: 600;
    color: var(--primary);
}

.radio-option.selected {
    border-color: var(--primary);
    background: rgba(21,101,192,0.08);
}

/* Banka / Ücret alanı */
.fee-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 25px;
}

.fee-box h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.fee-box .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d47a1;
}

.fee-box .fee-kur {
    font-size: 12px;
    font-weight: 400;
}

.bank-details {
    margin-top: 1rem;
    padding: 1rem;
    background: #f5f5f5;
    border-radius: 10px;
    font-size: 0.95rem;
}

.bank-details p {
    margin-bottom: 0.5rem;
}

/* Ödeme onay popup */
.payment-confirm-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
}
.payment-confirm-modal[hidden] {
    display: none;
}
.payment-confirm-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}
.payment-confirm-box {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 1.75rem;
    max-width: 400px;
    width: 100%;
}
.payment-confirm-title {
    margin: 0 0 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    line-height: 1.4;
}
.payment-confirm-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.payment-confirm-actions .btn {
    min-width: 100px;
}

.payment-notice {
    margin-top: 1.25rem;
    font-weight: 700;
    color: #c62828;
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: rgba(21,101,192,0.08);
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    transition: background 0.3s;
}

.step-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.step-dot.done {
    background: #2e7d32;
}

/* Breadcrumb / geri link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 1rem;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

/* Mesajlar */
.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.alert-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* Hukuki sayfalar (KVKK, Gizlilik) */
.legal-page {
    background: rgba(255,255,255,0.95);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
}
.legal-page .page-title {
    text-align: left;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(21,101,192,0.2);
}
.legal-section {
    margin-bottom: 2rem;
}
.legal-section h2 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.legal-section p,
.legal-section li {
    margin-bottom: 0.6rem;
    color: #333;
}
.legal-section ul {
    margin: 0.5rem 0 1rem 1.5rem;
    padding: 0;
}
.legal-section a {
    color: var(--primary);
    text-decoration: underline;
}
.legal-update {
    font-size: 0.9rem;
    color: #666;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

/* İletişim sayfası: sol iletişim bilgileri, sağ mesaj formu (form daha geniş) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: start;
    margin-top: 1.5rem;
}
.contact-info-card,
.contact-form-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
}
.contact-info-title,
.contact-form-title {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(21,101,192,0.2);
}
.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}
.contact-info-item:last-child {
    margin-bottom: 0;
}
.contact-info-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #666;
}
.contact-info-value {
    font-size: 1rem;
    color: #333;
}
.contact-info-link {
    color: var(--primary);
    text-decoration: none;
}
.contact-info-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}
.contact-form .form-group {
    margin-bottom: 1.25rem;
}
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.2s;
}
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(21,101,192,0.15);
}
.contact-form .btn {
    margin-top: 0.5rem;
}
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }
}

/* Mobil menü overlay: sadece menü dışındaki alanı kaplar, menüye tıklanabilir kalır */
.nav-overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99;
    pointer-events: none;
}
.nav-overlay.is-open {
    display: block;
    pointer-events: auto;
}
@media (max-width: 768px) {
    .nav-overlay.is-open {
        right: 260px;
        left: 0;
        top: 0;
        bottom: 0;
        width: auto;
    }
}

/* Mobil */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .nav-panel-call {
        display: block;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 260px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: center;
        padding: 0 1.5rem 2rem;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 100;
    }
    .header-nav.is-open {
        transform: translateX(0);
    }
    /* Kapatma ikonu: sağ üst 5px boşluk */
    .nav-close {
        display: block;
        position: absolute;
        top: 5px;
        right: 5px;
        width: 40px;
        height: 40px;
        border: none;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E") center/22px no-repeat;
        background-color: transparent;
        cursor: pointer;
        padding: 0;
        z-index: 2;
    }
    .nav-close:hover {
        opacity: 0.7;
    }
    /* Logo: yukarıdan 50px, ortalı, 20px sola kaydırılmış */
    .nav-panel-logo {
        display: block;
        margin-top: 80px;
        text-decoration: none;
        text-align: center;
    }
    .nav-panel-logo img {
        width: 280px;
        height: 66px;
        max-width: 100%;
        object-fit: contain;
        display: inline-block;
    }
    .nav-panel-logo:hover img {
        opacity: 0.85;
    }
    /* Menü: logonun 40px altında, ortalı, 22px bold */
    .nav-panel-menu {
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
        width: 100%;
        text-align: center;
    }
    .nav-panel-menu a,
    .nav-panel-menu .header-translate-wrap {
        font-size: 22px;
        font-weight: 700;
    }
    .nav-panel-menu .nav-link-iletisim {
        display: block;
        margin-top: 10px;
    }
    .nav-panel-menu .header-translate-wrap .goog-te-combo,
    .header-nav .goog-te-combo {
        font-size: 18px !important;
        padding: 0.5rem 2rem 0.5rem 0.6rem !important;
        min-height: 44px !important;
    }
    .nav-panel-call {
        margin-top: 50px;
        width: 100%;
        text-align: center;
    }
    .nav-panel-call-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--primary);
        margin: 0 0 10px;
    }
    .nav-panel-call-phone {
        display: block;
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--primary);
        text-decoration: none;
    }
    .nav-panel-call-phone:hover {
        text-decoration: underline;
    }
    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-actions .btn {
        width: 100%;
    }
    .content-wrap {
        padding: 1rem 0.75rem 2rem;
    }
    /* Başvuru formu sayfalarında soldan ve sağdan 10px, tüm aşamalar geniş */
    .form-page .content-wrap {
        padding-left: 10px;
        padding-right: 10px;
    }
    .form-page .container {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
        box-sizing: border-box;
    }
    .form-page .form-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .form-page .form-step-2-grid {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .form-card {
        padding: 1.25rem;
    }
    .fee-box .fee-kur {
        display: block;
        margin-top: 0.35rem;
    }
    .cards-row {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    .flip-card {
        max-width: 100%;
    }
    .form-actions {
        flex-direction: column;
    }
    .form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
}
