/* ==========================================================================
   DOMAIN TRANSFER HERO SECTION - FULL CSS
   ========================================================================== */

.domain-transfer-hero {
    position: relative;
    overflow: hidden;
    background: #3e3a84;
    min-height: 300px;
    padding: 110px 0 35px 0; /* Üst boşluğu 35px'ten 80px'e çıkardık */
    display: flex;
    align-items: center;
    justify-content: center;
}

.transfer-content {
    position: relative;
    z-index: 5;
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.transfer-top-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 36px;
    padding: 0 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, .15);
}

.transfer-content h1 {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.transfer-content p {
    color: rgba(255, 255, 255, .65);
    font-size: 15px;
    max-width: 620px;
    margin: 0 auto 20px;
}

/* --- ARAMA KUTUSU (BEYAZ ANA GÖVDE) --- */
.transfer-search-box {
    width: 100%;
    max-width: 740px;
    background: #fff;
    border-radius: 50px;
    padding: 5px;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .18);
    margin: 0 auto;
}

.transfer-search-box input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    height: 48px;
    padding: 0 24px;
    font-size: 15px;
    color: #1e293b;
}

.transfer-search-box input::placeholder {
    color: #94a3b8;
}

/* --- ENTEGRE EDİLEN SELECT BOX'LAR --- */
.transfer-select-tld,
.transfer-select-year {
    border: none;
    outline: none;
    background: transparent;
    height: 48px;
    font-size: 14px;
    font-weight: 700;
    color: #4f46e5;
    cursor: pointer;
    padding: 0 12px;
}

/* Seçim alanları arasına şık bölücü çizgiler */
.transfer-select-tld {
    border-left: 1px solid #e2e8f0;
}

.transfer-select-year {
    border-left: 1px solid #e2e8f0;
    margin-right: 10px;
}

/* --- BUTON --- */
.transfer-search-box button {
    border: none;
    min-width: 155px;
    height: 48px;
    border-radius: 45px;
    background: #4f46e5;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    transition: .3s;
}

.transfer-search-box button:hover {
    background: #4338ca;
}

/* --- EPP KODU ALANI (HERO İÇİNDEKİ YENİ KUTU) --- */
.transfer-epp-container {
    width: 100%;
    max-width: 740px;
    margin: 15px auto 0;
    display: flex;
    justify-content: center;
}

.transfer-epp-box {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 0 20px;
    height: 42px;
    width: 100%;
    max-width: 400px;
    transition: 0.3s;
}

.transfer-epp-box:focus-within {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.transfer-epp-box i {
    color: rgba(255, 255, 255, 0.6);
    margin-right: 10px;
    font-size: 14px;
}

.transfer-epp-box input {
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 13px;
    width: 100%;
    font-weight: 500;
    height: 100%;
    padding: 0;
}

.transfer-epp-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* --- BAĞLANTILAR (ALT LİNKLER) --- */
.transfer-links {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    width: 100%;
}

.transfer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    opacity: .9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.transfer-links a:hover {
    opacity: 1;
}

.transfer-links i {
    font-size: 15px;
}

/* --- DEKORATİF ARKA PLAN GEOMETRİK ŞEKİLLERİ --- */
.transfer-shape-red {
    position: absolute;
    width: 400px;
    height: 400px;
    right: -90px;
    top: 40px;
    background: #ef4444;
    border-radius: 50%;
    opacity: .95;
}

.transfer-shape-right {
    position: absolute;
    width: 300px;
    height: 300px;
    right: -160px;
    top: 130px;
    background: #5b57a6;
    border-radius: 50%;
}

.transfer-shape-left {
    position: absolute;
    width: 220px;
    height: 220px;
    left: -120px;
    bottom: -80px;
    background: #5b57a6;
    border-radius: 50%;
}

.transfer-shape-left::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: #ef4444;
    border-radius: 50%;
    left: 40px;
    top: 40px;
}

/* ==========================================================================
   RESPONSIVE MEDYA SORGULARI (MOBİL UYUMLULUK)
   ========================================================================== */

@media(max-width:991px) {
    .domain-transfer-hero {
        min-height: auto;
        padding: 55px 20px;
    }

    .transfer-content h1 {
        font-size: 28px;
    }

    .transfer-content p {
        font-size: 14px;
    }

    /* Mobil cihazlarda form dikey dizilime geçer */
    .transfer-search-box {
        flex-direction: column;
        border-radius: 20px;
        padding: 12px;
    }

    .transfer-search-box input {
        width: 100%;
        text-align: center;
        height: 46px;
        padding: 0 15px;
    }

    .transfer-select-tld,
    .transfer-select-year {
        width: 100%;
        text-align: center;
        border-left: none;
        border-top: 1px solid #e2e8f0;
        height: 44px;
        margin-right: 0;
        text-align-last: center; /* Seçenekleri ortalar */
    }

    .transfer-search-box button {
        width: 100%;
        margin-top: 8px;
        height: 46px;
    }

    .transfer-epp-container {
        padding: 0 10px;
    }

    .transfer-epp-box {
        max-width: 100%;
        height: 46px;
    }

    .transfer-links {
        gap: 14px;
    }

    .transfer-links a {
        font-size: 13px;
    }

    /* Mobilde arka plan objelerini gizleyerek taşmaları önlüyoruz */
    .transfer-shape-red,
    .transfer-shape-right,
    .transfer-shape-left {
        display: none;
    }
}

/* ==========================================================================
   yenii css 
   ========================================================================== */
   
   .domain-transfer-info{
    padding:60px 0;
    background:#fff;
}

.domain-transfer-info .container{
    max-width:1150px;
    margin:auto;
    padding:0 40px;
}

/* Başlık */

.transfer-title{
    text-align:center;
    margin-bottom:45px;
}

.transfer-title h2{
    font-size:42px;
    font-weight:800;
    color:#1d2433;
    margin:0;
}

/* Adımlar */

.transfer-steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-bottom:60px;
}

.step-card{
    background:#fff;
    border:1px solid #eceef5;
    border-radius:16px;
    padding:22px;
    box-shadow:0 10px 25px rgba(0,0,0,.04);
    transition:.3s;
}

.step-card:hover{
    transform:translateY(-4px);
}

.step-number{
    width:46px;
    height:46px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    margin-bottom:18px;
}

.step-purple{
    background:#ecebff;
    color:#4338ca;
}

.step-red{
    background:#ffe3e3;
    color:#dc2626;
}

.step-yellow{
    background:#fff4cf;
    color:#d97706;
}

.step-green{
    background:#dcfce7;
    color:#16a34a;
}

.step-card h4{
    font-size:20px;
    line-height:1.3;
    font-weight:700;
    color:#2e2d75;
    margin-bottom:12px;
}

.step-card p{
    font-size:14px;
    line-height:1.7;
    color:#5d6478;
    margin:0;
}

/* Genel içerik alanları */

.transfer-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:55px;
    margin-bottom:70px;
}

.transfer-content{
    flex:1;
}

.transfer-content h3{
    font-size:32px;
    font-weight:800;
    color:#2e2d75;
    margin-bottom:16px;
}

.transfer-content p{
    font-size:15px;
    line-height:1.9;
    color:#5f6677;
}

.transfer-image{
    flex:1;
    text-align:center;
}

.transfer-image img{
    width:100%;
    max-width:360px;
}

/* Buton */

.transfer-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:22px;
    padding:12px 20px;
    border-radius:10px;
    background:#3f3b8f;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.transfer-btn:hover{
    background:#312d7a;
    color:#fff;
}

/* Checklist */

.transfer-checks{
    list-style:none;
    padding:0;
    margin:20px 0;
}

.transfer-checks li{
    position:relative;
    padding-left:28px;
    margin-bottom:12px;
    color:#5f6677;
    font-size:15px;
}

.transfer-checks li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    font-weight:700;
    color:#7c3aed;
}

/* Banner */

.transfer-banner{
    background:#f7f8fc;
    border-radius:18px;
    padding:45px 60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    margin-bottom:70px;
}

.banner-content{
    flex:1;
}

.banner-content h3{
    font-size:34px;
    font-weight:800;
    color:#202736;
    margin-bottom:12px;
}

.banner-content p{
    color:#666d80;
    font-size:15px;
    line-height:1.8;
}

.banner-image img{
    width:100%;
    max-width:220px;
}

/* Son bölüm */

.advantages{
    margin-bottom:0;
}

/* Tablet */

@media(max-width:991px){

    .domain-transfer-info{
        padding:50px 0;
    }

    .domain-transfer-info .container{
        padding:0 20px;
    }

    .transfer-title h2{
        font-size:30px;
    }

    .transfer-steps{
        grid-template-columns:repeat(2,1fr);
    }

    .transfer-row,
    .transfer-banner{
        flex-direction:column;
        text-align:center;
        gap:30px;
    }

    .transfer-content h3{
        font-size:26px;
    }

    .transfer-image img{
        max-width:260px;
    }

    .banner-image img{
        max-width:200px;
    }
}

/* Mobil */

@media(max-width:767px){

    .transfer-steps{
        grid-template-columns:1fr;
    }

    .transfer-title{
        margin-bottom:35px;
    }

    .transfer-title h2{
        font-size:26px;
        line-height:1.2;
    }

    .step-card{
        padding:18px;
    }

    .step-card h4{
        font-size:18px;
    }

    .step-card p{
        font-size:14px;
    }

    .transfer-content h3{
        font-size:24px;
    }

    .transfer-content p{
        font-size:14px;
    }

    .transfer-banner{
        padding:30px 25px;
    }

    .banner-content h3{
        font-size:24px;
    }

    .banner-content p{
        font-size:14px;
    }

    .transfer-btn{
        width:100%;
        justify-content:center;
    }

    .transfer-image img{
        max-width:220px;
    }
}
