﻿:root{
            --p1:#7d39b8;
            --p2:#51c0c4;
            --p3:#97dcea;
            --ink:#0f172a;
            --muted:#475569;
            --bg:#f7f7fb;
            --card:#ffffff;
            --border:rgba(15,23,42,.10);
            --shadow:0 10px 30px rgba(15,23,42,.10);
            --radius:18px;
        }

        *{ box-sizing:border-box; }
        html{ scroll-behavior:smooth; }
        body{
            margin:0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
            color:var(--ink);
            background:
                radial-gradient(900px 600px at 10% -10%, rgba(125,57,184,.18), transparent 60%),
                radial-gradient(900px 600px at 90% 0%, rgba(81,192,196,.18), transparent 60%),
                radial-gradient(900px 600px at 50% 110%, rgba(151,220,234,.20), transparent 60%),
                var(--bg);
        }

        a{ color:inherit; text-decoration:none; }
        .container{ width:min(1100px, 92%); margin:0 auto; }

        /* Header / Nav */
        .topbar{
            position:sticky; top:0; z-index:50;
            background: rgba(255,255,255,.75);
            backdrop-filter: blur(10px);
            border-bottom:1px solid var(--border);
        }
        .topbar-inner{
            display:flex; align-items:center; justify-content:space-between;
            padding:12px 0;
            gap:16px;
        }
        .brand{
            display:flex; align-items:center; gap:12px;
            min-width:220px;
        }
        .brand .logo{
            width:44px; height:44px; border-radius:12px;
            background: linear-gradient(135deg, rgba(125,57,184,.20), rgba(81,192,196,.18));
            border:1px solid var(--border);
            display:flex; align-items:center; justify-content:center;
            overflow:hidden;
        }
        .brand .logo img{
            width:100%; height:100%; object-fit:contain;
            background:#fff;
        }
        .brand .title{
            line-height:1.1;
        }
        .brand .title strong{ display:block; font-size:14px; letter-spacing:.2px; }
        .brand .title span{ display:block; font-size:12px; color:var(--muted); }

        /* ===== MENU (UPDATED - RESPONSIVE) ===== */
        .nav-wrap{
            display:flex;
            align-items:center;
            gap:10px;
        }

        .nav{
            display:flex; align-items:center; gap:8px;
            flex-wrap:wrap;
            justify-content:flex-end;
        }
        .nav a{
            padding:10px 12px;
            border-radius:12px;
            color:var(--muted);
            border:1px solid transparent;
            transition: all .15s ease;
            font-size:14px;
            white-space:nowrap;
        }
        .nav a:hover{
            color:var(--ink);
            background: rgba(81,192,196,.10);
            border-color: rgba(81,192,196,.25);
        }
        .nav a.active{
            color:var(--ink);
            background: rgba(125,57,184,.10);
            border-color: rgba(125,57,184,.25);
        }

        /* Hamburger button (hidden on desktop) */
        .nav-toggle{
            display:none;
            width:44px; height:44px;
            border-radius:14px;
            border:1px solid var(--border);
            background: rgba(255,255,255,.70);
            cursor:pointer;
            align-items:center;
            justify-content:center;
            padding:0;
            transition: all .15s ease;
        }
        .nav-toggle:hover{
            border-color: rgba(81,192,196,.35);
            background: rgba(81,192,196,.07);
        }
        .nav-toggle .bars{
            width:18px; height:12px; position:relative;
        }
        .nav-toggle .bars span{
            position:absolute; left:0; right:0;
            height:2px; border-radius:99px;
            background: rgba(15,23,42,.70);
            transition: all .15s ease;
        }
        .nav-toggle .bars span:nth-child(1){ top:0; }
        .nav-toggle .bars span:nth-child(2){ top:5px; }
        .nav-toggle .bars span:nth-child(3){ top:10px; }

        /* Mobile menu panel */
        .nav-panel{
            display:none;
            position:absolute;
            right:0;
            top:calc(100% + 10px);
            width:min(320px, 92vw);
            background: rgba(255,255,255,.92);
            border:1px solid var(--border);
            box-shadow: var(--shadow);
            border-radius: 18px;
            padding:10px;
            backdrop-filter: blur(10px);
        }
        .nav-panel a{
            display:flex;
            padding:12px 12px;
            border-radius:14px;
            border:1px solid transparent;
            color:var(--muted);
            font-size:14px;
        }
        .nav-panel a:hover{
            color:var(--ink);
            background: rgba(81,192,196,.10);
            border-color: rgba(81,192,196,.25);
        }
        .nav-panel a.active{
            color:var(--ink);
            background: rgba(125,57,184,.10);
            border-color: rgba(125,57,184,.25);
        }

        .nav-mobile{
            position:relative;
        }
        .nav-mobile.open .nav-panel{
            display:block;
        }
        .nav-mobile.open .nav-toggle .bars span:nth-child(1){
            transform: translateY(5px) rotate(45deg);
        }
        .nav-mobile.open .nav-toggle .bars span:nth-child(2){
            opacity:0;
        }
        .nav-mobile.open .nav-toggle .bars span:nth-child(3){
            transform: translateY(-5px) rotate(-45deg);
        }

        /* Sections */
        .section{ padding:70px 0px 25px 0px; }
        .hero{
            padding:52px 0 25px;
        }
        .hero-grid{
            display:grid;
            grid-template-columns: 1.25fr .75fr;
            gap:22px;
            align-items:stretch;
        }
        .card{
            background: rgba(255,255,255,.85);
            border:1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .hero-left{ padding:28px; }
        .kicker{
            display:inline-flex; align-items:center; gap:10px;
            padding:8px 12px;
            border-radius:999px;
            background: linear-gradient(90deg, rgba(125,57,184,.12), rgba(81,192,196,.10));
            border:1px solid rgba(125,57,184,.18);
            color:var(--muted);
            font-size:13px;
        }
        .headline{
            margin:14px 0 10px;
            font-size:30px;
            letter-spacing:-.5px;
        }
        .lead{
            margin:0;
            font-size:16px;
            line-height:1.7;
            color:var(--muted);
        }
        .cta-row{
            display:flex; gap:10px; flex-wrap:wrap;
            margin-top:18px;
        }
        .btn{
            display:inline-flex; align-items:center; justify-content:center;
            padding:12px 14px;
            border-radius:14px;
            border:1px solid transparent;
            font-weight:600;
            font-size:14px;
            cursor:pointer;
            transition: all .15s ease;
            user-select:none;
        }
        .btn-primary {
            color: #fff;
            background: #7d39b8;
            box-shadow: 0 10px 24px rgba(125,57,184,.18);
        }
            .btn-primary:hover {
                transform: translateY(-1px);
                background: #51c0c4
            }
        .btn-ghost{
            color:var(--ink);
            background: rgba(255,255,255,.7);
            border-color: var(--border);
        }
        .btn-ghost:hover{ border-color: rgba(81,192,196,.35); background: rgba(81,192,196,.07); }

        .hero-right{
            padding:22px;
            position:relative;
            overflow:hidden;
        }
        .mini-title{ margin:0 0 12px; font-size:14px; color:var(--muted); font-weight:700; letter-spacing:.2px; }
        .feature{
            display:flex; gap:12px;
            padding:12px;
            border-radius:16px;
            border:1px solid var(--border);
            background: rgba(255,255,255,.65);
            margin-bottom:10px;
        }
        .dot{
            width:14px; height:14px; border-radius:99px; margin-top:4px;
            background: linear-gradient(135deg, var(--p2), var(--p3));
            box-shadow: 0 8px 18px rgba(81,192,196,.25);
        }
        .feature b{ display:block; font-size:14px; margin-bottom:4px; }
        .feature p{ margin:0; font-size:13px; color:var(--muted); line-height:1.5; }

        /* Content blocks */
        .section h2{
            margin:0 0 12px;
            font-size:26px;
            letter-spacing:-.3px;
        }
        .section .sub{
            margin:0 0 18px;
            color:var(--muted);
            line-height:1.7;
        }

        .grid-2{
            display:grid;
            grid-template-columns: 1fr 1fr;
            gap:18px;
        }
        .pad{ padding:22px; }
        .list{
            margin:12px 0 0; padding-left:18px;
            color:var(--muted);
            line-height:1.8;
        }

        /* Contact */
        .contact-wrap{
            display:grid;
            grid-template-columns: .9fr 1.1fr;
            gap:18px;
            align-items:start;
        }
        .info-line{
            display:flex; gap:10px; align-items:flex-start;
            padding:12px;
            border-radius:16px;
            border:1px solid var(--border);
            background: rgba(255,255,255,.65);
            margin-bottom:10px;
        }
        .badge{
            min-width:34px; height:34px;
            border-radius:12px;
            display:flex; align-items:center; justify-content:center;
            border:1px solid rgba(125,57,184,.18);
            background: linear-gradient(135deg, rgba(125,57,184,.12), rgba(81,192,196,.08));
            color:var(--ink);
            font-weight:800;
        }
        .info-line b{ display:block; font-size:13px; margin-bottom:2px; }
        .info-line span{ font-size:13px; color:var(--muted); }

        .form-row{
            display:grid;
            grid-template-columns: 1fr 1fr;
            gap:12px;
            margin-bottom:12px;
        }
        label{ display:block; font-size:13px; color:var(--muted); margin:0 0 6px; }
        .in{
            width:100%;
            padding:12px 12px;
            border-radius:14px;
            border:1px solid rgba(15,23,42,.14);
            background: rgba(255,255,255,.85);
            outline:none;
            font-size:14px;
            transition: all .12s ease;
        }
        .in:focus{
            border-color: rgba(81,192,196,.60);
            box-shadow: 0 0 0 4px rgba(81,192,196,.15);
        }
        .hint{ margin-top:10px; font-size:12px; color:var(--muted); line-height:1.5; }

        .msg {
            margin-top: 12px;
            margin-bottom: 12px;
            padding: 12px 14px;
            border-radius: 14px;
            border: 1px solid rgba(81,192,196,.30);
            background: rgba(81,192,196,.10);
            color: var(--ink);
            font-size:13px;
        }

        .msg-error {
            margin-top: 12px;
            margin-bottom: 12px;
            padding: 12px 14px;
            border-radius: 14px;
            border: 1px solid rgba(204, 34, 40, .35);
            background: rgba(204, 34, 40, .10);
            color: #8B1E22;
            font-size:13px;
        }
        

        /* Footer */
        footer{
            margin-top:36px;
            padding:28px 0;
            border-top:1px solid var(--border);
            background: rgba(255,255,255,.55);
            backdrop-filter: blur(8px);
        }
        .foot-grid{
            display:grid;
            grid-template-columns: 1.2fr .8fr 1fr;
            gap:16px;
            align-items:start;
        }
        .foot h4{ margin:0 0 10px; font-size:14px; letter-spacing:.2px; }
        .foot a{
            display:block;
            color:var(--muted);
            padding:6px 0;
            font-size:13px;
        }
        .foot a:hover{ color:var(--ink); }
        .copy{
            margin-top:14px;
            color:var(--muted);
            font-size:12px;
        }
        .justify {
            text-align: justify;
        }

        /* Responsive */
        @media (max-width: 920px){
            .hero-grid{ grid-template-columns: 1fr; }
            .grid-2{ grid-template-columns: 1fr; }
            .contact-wrap{ grid-template-columns: 1fr; }
        }

        /* ===== MENU + FOOTER RESPONSIVE ONLY (UPDATED) ===== */
        @media (max-width: 760px){
            /* Menu: hide desktop links, show hamburger */
            .nav{ display:none; }
            .nav-toggle{ display:inline-flex; }
            .topbar-inner{ align-items:flex-start; }
        }
        @media (max-width: 560px){
            .headline{ font-size:30px; }
            .form-row{ grid-template-columns: 1fr; }
            .brand{ min-width: unset; }

            /* Footer: stack columns */
            .foot-grid{
                grid-template-columns: 1fr;
                gap:12px;
            }
            .foot{
                padding:12px 0;
                border-top:1px solid rgba(15,23,42,.08);
            }
            .foot:first-child{
                border-top:none;
            }
            footer .container.copy{
                margin-top:10px;
            }
        }    
.copy-big{font-size:13px}
.captcha-image{width:100px!important;height:35px!important;}
.captcha-text-box {
    width: 100px !important;
    height: 35px !important;
    margin-top: 0px !important
}
.captcha-text-box {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,.14);
    background: rgba(255,255,255,.85);
    outline: none;
    font-size: 14px;
    transition: all .12s ease;
}
    .captcha-text-box:focus {
        border-color: rgba(81,192,196,.60);
        box-shadow: 0 0 0 4px rgba(81,192,196,.15);
    }
.RadCaptcha p{margin-top:4px!important}

/* Wrapper */
.captcha-wrapper {
    text-align: right;
}

/* Ana tablo */
.captcha-main-table {
    width: 100%;
    border-collapse: collapse;
}

/* Sol alan */
.captcha-left-cell {
    width: 100px !important;
}

.captcha-box {
    width: 100px !important;
}

/* Sağ alan */
.captcha-right-cell {
    width: 100%;
    vertical-align: bottom;
}

/* Üst label */
.captcha-label-top {
    text-align: left;
    padding-left: 10px;
    padding-top: 10px;
}

/* İç tablo */
.captcha-inner-table {
    width: 100%;
    border-collapse: collapse;
}

/* Açıklama alanı */
.captcha-instruction-cell {
    text-align: left;
    padding-left: 10px;
    white-space: nowrap;padding-bottom:10px;
}

/* El işareti */
.captcha-hand-icon {
    font-size: 25px;
    padding-bottom: 8px;
}

/* Yazı ortalama */
.captcha-instruction-text {
    vertical-align: middle;
}

/* Buton hizalama */
.captcha-button-cell {
    text-align: right;
}

/* Buton alt boşluk */
.captcha-button {
    margin-bottom: 17px;
}
