/* Ultra-Modern Hero Slider Design */
/* Inspired by Apple, Stripe, and Linear - Premium UI/UX */

.domain-transfer-hero {
    position: relative;
    background: linear-gradient(135deg, #0f0828 0%, #160f3e 50%, #1f1654 100%);
    padding: 80px 0 80px;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
}

/* Animated Gradient Background */
.domain-transfer-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle,
        rgba(249, 189, 6, 0.15) 0%,
        rgba(249, 189, 6, 0.05) 30%,
        transparent 70%);
    border-radius: 50%;
    animation: floatGlow 20s ease-in-out infinite;
    filter: blur(60px);
}

.domain-transfer-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
        rgba(138, 43, 226, 0.2) 0%,
        rgba(138, 43, 226, 0.08) 40%,
        transparent 70%);
    border-radius: 50%;
    animation: floatGlow 15s ease-in-out infinite reverse;
    filter: blur(50px);
}

@keyframes floatGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, -30px) scale(1.1);
    }
}

/* Decorative Grid Pattern */
.domain-transfer-hero .container {
    position: relative;
    z-index: 2;
}

.domain-transfer-hero .container::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(249, 189, 6, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 189, 6, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

/* Transfer Badge - Ultra Modern */
.transfer-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 189, 6, 0.2);
    border-radius: 100px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.transfer-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(249, 189, 6, 0.1) 50%,
        transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.transfer-badge:hover::before {
    transform: translateX(100%);
}

.transfer-badge i {
    color: #f9bd06;
    font-size: 16px;
    animation: rotate360 3s linear infinite;
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.transfer-badge span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Hero Title - Gradient Text */
.transfer-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.02em;
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.transfer-hero-title .highlight {
    background: linear-gradient(135deg, #f9bd06 0%, #ffd84d 50%, #f9bd06 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    position: relative;
    display: inline-block;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Description */
.transfer-hero-description {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 540px;
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

/* Transfer Benefits - Card Style */
.transfer-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.benefit-item {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Glassmorphism hover effect */
.benefit-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(249, 189, 6, 0.1) 0%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f9bd06 0%, #ffd84d 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover::after {
    transform: scaleX(1);
}

.benefit-item:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 189, 6, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(249, 189, 6, 0.15);
}

/* Benefit Icon - 3D Effect */
.benefit-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #f9bd06 0%, #ffd84d 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 6px 20px rgba(249, 189, 6, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.benefit-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #f9bd06, #ffd84d);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.4s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(-5deg);
}

.benefit-item:hover .benefit-icon::before {
    opacity: 0.8;
}

.benefit-icon i {
    font-size: 24px;
    color: #160f3e;
    position: relative;
    z-index: 1;
}

/* Benefit Text */
.benefit-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.benefit-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .transfer-hero-title {
        font-size: 56px;
    }

    .transfer-hero-description {
        font-size: 18px;
    }
}

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

    .transfer-hero-title {
        font-size: 48px;
    }

    .transfer-hero-description {
        font-size: 17px;
        margin-bottom: 40px;
    }

    .transfer-benefits {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-item {
        padding: 24px 20px;
    }
}

@media (max-width: 767px) {
    .domain-transfer-hero {
        padding: 80px 0 60px;
    }

    .transfer-hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .transfer-hero-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .transfer-badge {
        padding: 8px 20px;
        margin-bottom: 24px;
    }

    .transfer-badge i {
        font-size: 14px;
    }

    .transfer-badge span {
        font-size: 12px;
    }

    .benefit-icon {
        width: 56px;
        height: 56px;
    }

    .benefit-icon i {
        font-size: 24px;
    }

    .benefit-title {
        font-size: 15px;
    }

    .benefit-text {
        font-size: 12px;
    }
}

/* Parallax scroll effect */
@media (min-width: 992px) {
    .transfer-hero-content {
        animation: fadeInUp 1s ease;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Stagger animation for benefits */
.benefit-item:nth-child(1) {
    animation: slideUpFade 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.benefit-item:nth-child(2) {
    animation: slideUpFade 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.benefit-item:nth-child(3) {
    animation: slideUpFade 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.7s both;
}

/* ========================================
   TRANSFER HERO VISUAL - SLIDING ICONS
   ======================================== */

.transfer-hero-visual {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Ana Transfer İkonu */
.transfer-main-icon {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.main-icon-inner {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f9bd06 0%, #ffd84d 50%, #f9bd06 100%);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    box-shadow: 
        0 20px 60px rgba(249, 189, 6, 0.4),
        0 0 80px rgba(249, 189, 6, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.main-icon-inner i {
    font-size: 42px;
    color: #160f3e;
    animation: iconRotate 8s linear infinite;
}

@keyframes iconRotate {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-10deg); }
    100% { transform: rotate(0deg); }
}

/* Glowing Effect */
.icon-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(249, 189, 6, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Rotating Rings */
.icon-ring {
    position: absolute;
    border: 2px dashed rgba(249, 189, 6, 0.3);
    border-radius: 50%;
}

.ring-1 {
    width: 160px;
    height: 160px;
    animation: ringRotate 15s linear infinite;
}

.ring-2 {
    width: 220px;
    height: 220px;
    border-color: rgba(249, 189, 6, 0.2);
    animation: ringRotate 20s linear infinite reverse;
}

.ring-3 {
    width: 280px;
    height: 280px;
    border-color: rgba(249, 189, 6, 0.1);
    animation: ringRotate 25s linear infinite;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 5;
}

.floating-element i {
    font-size: 20px;
    color: #f9bd06;
}

.floating-element:hover {
    transform: scale(1.2) !important;
    background: rgba(249, 189, 6, 0.2);
    border-color: rgba(249, 189, 6, 0.5);
    box-shadow: 0 10px 40px rgba(249, 189, 6, 0.3);
}

/* Floating Positions & Animations */
.el-1 {
    top: 20px;
    left: 50px;
    animation: float1 6s ease-in-out infinite;
}

.el-2 {
    top: 60px;
    right: 30px;
    animation: float2 7s ease-in-out infinite;
}

.el-3 {
    bottom: 100px;
    right: 60px;
    animation: float3 5s ease-in-out infinite;
}

.el-4 {
    bottom: 40px;
    left: 80px;
    animation: float4 8s ease-in-out infinite;
}

.el-5 {
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    animation: float5 6s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -15px) rotate(5deg); }
    50% { transform: translate(-5px, -25px) rotate(-3deg); }
    75% { transform: translate(-15px, -10px) rotate(3deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, 15px) rotate(-5deg); }
    66% { transform: translate(10px, 20px) rotate(5deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-15px, -20px); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -10px) rotate(-3deg); }
    75% { transform: translate(-10px, 15px) rotate(3deg); }
}

@keyframes float5 {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(20px); }
}

/* Sliding Domain Cards */
.sliding-cards {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 8;
}

.domain-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateX(50px);
    animation: slideCard 0.6s ease forwards;
    transition: all 0.3s ease;
}

.domain-card:hover {
    background: rgba(249, 189, 6, 0.15);
    border-color: rgba(249, 189, 6, 0.4);
    transform: translateX(-10px) !important;
}

.card-1 { animation-delay: 0.8s; }
.card-2 { animation-delay: 1s; }
.card-3 { animation-delay: 1.2s; }

@keyframes slideCard {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.domain-ext {
    font-size: 16px;
    font-weight: 800;
    color: #f9bd06;
    letter-spacing: 0.5px;
}

.domain-status {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Connection Lines SVG */
.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.line {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawLine 3s ease-in-out infinite;
}

.line-1 {
    animation-delay: 0s;
}

.line-2 {
    animation-delay: 1.5s;
}

@keyframes drawLine {
    0%, 100% { stroke-dashoffset: 300; opacity: 0; }
    50% { stroke-dashoffset: 0; opacity: 1; }
}

/* Responsive - Transfer Hero Visual */
@media (max-width: 991px) {
    .transfer-hero-visual {
        height: 350px;
        margin-top: 60px;
    }
    
    .main-icon-inner {
        width: 80px;
        height: 80px;
        border-radius: 22px;
    }
    
    .main-icon-inner i {
        font-size: 32px;
    }
    
    .ring-1 { width: 120px; height: 120px; }
    .ring-2 { width: 170px; height: 170px; }
    .ring-3 { width: 220px; height: 220px; }
    
    .floating-element {
        width: 42px;
        height: 42px;
    }
    
    .floating-element i {
        font-size: 16px;
    }
    
    .sliding-cards {
        right: 0;
    }
    
    .domain-card {
        padding: 10px 16px;
    }
}

@media (max-width: 767px) {
    .transfer-hero-visual {
        height: 280px;
        margin-top: 40px;
    }
    
    .main-icon-inner {
        width: 70px;
        height: 70px;
        border-radius: 18px;
    }
    
    .main-icon-inner i {
        font-size: 28px;
    }
    
    .ring-1 { width: 100px; height: 100px; }
    .ring-2 { width: 140px; height: 140px; }
    .ring-3 { width: 180px; height: 180px; }
    
    .floating-element {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    
    .floating-element i {
        font-size: 14px;
    }
    
    .el-1 { top: 10px; left: 30px; }
    .el-2 { top: 30px; right: 20px; }
    .el-3 { bottom: 60px; right: 30px; }
    .el-4 { bottom: 20px; left: 40px; }
    .el-5 { left: 5px; }
    
    .sliding-cards {
        right: -10px;
        gap: 8px;
    }
    
    .domain-card {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .domain-ext {
        font-size: 13px;
    }
    
    .domain-status {
        font-size: 10px;
    }
}
