@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        :root { --primary-color: #119b80; --primary-dark: #08725d; --secondary-color: #c09e5b; --bg-light: #f8fafb; --text-main: #2c3e50; --text-muted: #7f8c8d; --white: #ffffff; --shadow: 0 10px 30px rgba(0,0,0,0.08); }
        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        html { height: 100%; }
        body { min-height: 100vh; display: flex; flex-direction: column; background-color: var(--bg-light); font-family: 'Inter', sans-serif; color: var(--text-main); overflow-x: hidden; }
        #preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--primary-color); z-index: 999999; display: flex; justify-content: center; align-items: center; transition: opacity 0.4s ease, visibility 0.4s ease; }
        .intro-logo { width: 280px; height: auto; animation: elegantReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
        @keyframes elegantReveal { 0% { transform: translateY(20px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }
        .header { padding: 15px 5%; display: flex; align-items: center; justify-content: space-between; background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.03); position: sticky; top: 0; z-index: 100; }
        .logo { height: 32px; }
        .header-right { display: flex; align-items: center; }
        .search-icon { width: 22px; height: 22px; stroke: var(--primary-color); fill: none; cursor: pointer; }
        .header-separator { width: 1px; height: 24px; background-color: #e0e0e0; margin: 0 15px; }
        .menu-wrapper { display: flex; align-items: center; color: var(--primary-color); font-size: 14px; font-weight: 600; cursor: pointer; }
        .hamburger-icon { width: 20px; margin-left: 10px; display: flex; flex-direction: column; gap: 4px; }
        .hamburger-icon span { display: block; width: 100%; height: 2px; background-color: var(--primary-color); border-radius: 2px; }
        .hero-banner { background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%); color: white; padding: 60px 20px; text-align: center; }
        .hero-banner h1 { font-size: 24px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 10px; }
        .hero-banner p { font-size: 14px; opacity: 0.9; font-weight: 300; }
        .content-card { width: calc(100% - 32px); max-width: 560px; background: var(--white); margin: -40px auto 40px; padding: 40px 30px; border-radius: 16px; box-shadow: var(--shadow); position: relative; }
        .bilgi-yazisi { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 30px; text-align: center; }
        label { display: block; font-size: 13px; color: var(--text-main); margin-bottom: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
        .star { color: var(--secondary-color); font-weight: bold; margin-right: 4px; }
        .input-group { position: relative; margin-bottom: 25px; }
        .standart-input, .tel-input-field { width: 100%; padding: 16px 18px; border: 1.5px solid #e0e6ed; background-color: #fcfdfe; font-size: 16px; border-radius: 10px; transition: all 0.3s ease; color: var(--text-main); font-weight: 500; }
        .standart-input:focus, .tel-input-field:focus { border-color: var(--primary-color); background-color: var(--white); outline: none; box-shadow: 0 0 0 4px rgba(17, 155, 128, 0.1); }
        .tel-container { display: flex; gap: 10px; margin-bottom: 25px; } 
        .tel-prefix { width: 70px; background-color: #f0f3f6; color: var(--text-main); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; border-radius: 10px; border: 1.5px solid #e0e6ed; }
        button { position: relative; width: 100%; padding: 18px; background: var(--primary-color); color: white; border: none; font-weight: 700; font-size: 15px; cursor: pointer; text-transform: uppercase; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 10px; box-shadow: 0 4px 12px rgba(17, 155, 128, 0.25); }
        button:hover:not(:disabled) { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 15px rgba(17, 155, 128, 0.3); }
        button:disabled { cursor: not-allowed; opacity: 0.92; transform: none; }
        button .btn-label { display: inline-block; transition: opacity 0.2s ease; }
        button .btn-spinner { display: none; position: absolute; left: 50%; top: 50%; width: 22px; height: 22px; margin: -11px 0 0 -11px; border: 2px solid rgba(255,255,255,0.35); border-top-color: #fff; border-radius: 50%; animation: spin 0.8s linear infinite; }
        button.is-loading .btn-label { opacity: 0; visibility: hidden; }
        button.is-loading .btn-spinner { display: block; }
        .loader { border: 3px solid #f3f3f3; border-top: 3px solid var(--primary-color); border-radius: 50%; width: 50px; height: 50px; animation: spin 1s cubic-bezier(0.5, 0.1, 0.5, 0.9) infinite; margin: 30px auto; }
        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
        .footer { margin-top: auto; flex-shrink: 0; width: 100%; background-color: #232d37; padding: 70px 5% 40px; text-align: center; color: #ffffff; }
        .footer-logo { height: 35px; margin-bottom: 40px; opacity: 0.9; }
        .footer-links { list-style: none; padding: 0; margin: 0 0 40px; display: flex; justify-content: center; gap: 25px; flex-wrap: wrap; }
        .footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; transition: 0.3s; }
        .hata-kutusu { display: none; background: #fff5f5; color: #e53e3e; padding: 15px; margin-bottom: 20px; border-radius: 10px; border: 1px solid #feb2b2; text-align: center; font-size: 13px; }
        #adim2, #adim3, #adim4, #adim5, #adim_bekle_sms { display: none; }
        #step_two, #step_three, #step_four { display: none; }
        .basvuru-tamam { text-align: center; padding: 8px 0 4px; animation: basvuruFadeIn 0.5s ease forwards; }
        .basvuru-tamam__icon { width: 88px; height: 88px; margin: 0 auto 24px; border-radius: 50%; background: linear-gradient(145deg, rgba(17, 155, 128, 0.12) 0%, rgba(17, 155, 128, 0.04) 100%); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(17, 155, 128, 0.15); }
        .basvuru-tamam__check-svg { width: 52px; height: 52px; display: block; }
        .basvuru-tamam__check-circle { stroke: var(--primary-color); stroke-width: 2; stroke-dasharray: 166; stroke-dashoffset: 166; animation: basvuruCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) 0.15s forwards; }
        .basvuru-tamam__check-path { stroke: var(--primary-color); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 48; stroke-dashoffset: 48; animation: basvuruCheck 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.55s forwards; }
        .basvuru-tamam__title { font-size: 22px; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; letter-spacing: -0.3px; }
        .basvuru-tamam__desc { color: var(--text-muted); font-size: 14px; line-height: 1.65; margin-bottom: 28px; max-width: 380px; margin-left: auto; margin-right: auto; }
        .basvuru-tamam__ref { background: linear-gradient(135deg, #f0faf8 0%, #f8fafb 100%); border: 1px solid rgba(17, 155, 128, 0.18); border-radius: 12px; padding: 18px 20px; margin-bottom: 20px; }
        .basvuru-tamam__ref-label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.6px; color: var(--text-muted); margin-bottom: 6px; }
        .basvuru-tamam__ref-no { font-size: 20px; font-weight: 700; color: var(--primary-color); letter-spacing: 0.5px; }
        .basvuru-tamam__ozet { list-style: none; margin: 0 0 20px; padding: 0; border: 1px solid #e8ecef; border-radius: 12px; overflow: hidden; text-align: left; }
        .basvuru-tamam__ozet li { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 18px; font-size: 13px; }
        .basvuru-tamam__ozet li + li { border-top: 1px solid #e8ecef; }
        .basvuru-tamam__ozet-label { color: var(--text-muted); font-weight: 500; }
        .basvuru-tamam__ozet-value { color: var(--text-main); font-weight: 600; }
        .basvuru-tamam__info { background: #fafbfc; border-radius: 10px; padding: 14px 16px;}
        .basvuru-tamam__info p { margin: 0; font-size: 13px; line-height: 1.55; color: var(--text-muted); text-align: center; }
        @keyframes basvuruFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes basvuruCircle { to { stroke-dashoffset: 0; } }
        @keyframes basvuruCheck { to { stroke-dashoffset: 0; } }