/* ============================================ */
/* IYZICO PAYMENT SECTION - Premium Glass UI */
/* ============================================ */

.iyzico-ad-section {
    background: linear-gradient(135deg, rgba(11, 25, 44, 0.95) 0%, rgba(6, 17, 25, 0.98) 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

/* Animated Background Gradient */
.iyzico-ad-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 210, 93, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(96, 101, 212, 0.03) 0%, transparent 50%);
    animation: bgPulse 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes bgPulse {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-2%, 2%) rotate(1deg); }
}

/* Top & Bottom Glow Lines */
.iyzico-ad-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 210, 93, 0.3) 20%, 
        rgba(255, 210, 93, 0.5) 50%, 
        rgba(255, 210, 93, 0.3) 80%, 
        transparent 100%);
}

.iyzico-ad-section .section-border-bottom {
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(96, 101, 212, 0.3) 20%, 
        rgba(96, 101, 212, 0.5) 50%, 
        rgba(96, 101, 212, 0.3) 80%, 
        transparent 100%);
}

/* Main Container - Glassmorphism */
.iyzico-ad-container {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.03) 0%, 
        rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Gradient Border Effect */
.iyzico-ad-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, 
        rgba(255, 210, 93, 0.2) 0%, 
        rgba(96, 101, 212, 0.1) 50%,
        rgba(255, 210, 93, 0.2) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.iyzico-ad-container:hover::before {
    opacity: 1;
}

.iyzico-ad-container:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 40px -10px rgba(0, 0, 0, 0.3),
        0 0 60px -20px rgba(255, 210, 93, 0.15);
    border-color: rgba(255, 255, 255, 0.12);
}

/* Content Layout */
.iyzico-ad-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Iyzico Info Section */
.iyzico-info-section {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
}

/* Iyzico Logo with Glow */
.iyzico-logo {
    flex-shrink: 0;
    position: relative;
    padding: 12px 20px;
    background: linear-gradient(135deg, #1A73E8 0%, #0D47A1 100%);
    border-radius: 14px;
    box-shadow: 
        0 4px 15px rgba(26, 115, 232, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.iyzico-logo::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.5), rgba(13, 71, 161, 0.3));
    filter: blur(8px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.iyzico-logo:hover::after {
    opacity: 1;
}

.iyzico-logo:hover {
    transform: scale(1.03);
    box-shadow: 
        0 8px 25px rgba(26, 115, 232, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.iyzico-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

/* Iyzico Text */
.iyzico-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.iyzico-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.iyzico-highlight {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Payment Methods - Card Style */
.payment-methods {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: center;
}

.payment-method {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 44px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Shimmer Effect */
.payment-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: left 0.5s ease;
}

.payment-method:hover::before {
    left: 100%;
}

.payment-method:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.2);
}

.payment-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.85;
}

.payment-method:hover .payment-logo {
    opacity: 1;
    transform: scale(1.05);
}

/* CTA Button - Premium Style */
.iyzico-cta {
    flex-shrink: 0;
}

.iyzico-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    white-space: nowrap;
}

/* Button Gradient Border on Hover */
.iyzico-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, #FFD25D 0%, #fb923c 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.iyzico-cta-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 210, 93, 0.1) 0%, rgba(251, 146, 60, 0.05) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.iyzico-cta-btn:hover {
    color: #FFD25D;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(255, 210, 93, 0.3);
}

.iyzico-cta-btn:hover::before,
.iyzico-cta-btn:hover::after {
    opacity: 1;
}

.iyzico-cta-btn span {
    position: relative;
    z-index: 1;
}

/* Shield Icon */
.iyzico-cta-btn .shield-icon {
    width: 16px;
    height: 16px;
    position: relative;
    z-index: 1;
}

/* ============================================ */
/* RESPONSIVE DESIGN */
/* ============================================ */

@media (max-width: 991px) {
    .iyzico-ad-container {
        padding: 28px 30px;
    }
    
    .iyzico-ad-content {
        gap: 24px;
    }
    
    .payment-methods {
        gap: 10px;
    }
    
    .payment-method {
        width: 56px;
        height: 40px;
    }
    
    .payment-logo {
        height: 20px;
    }
}

@media (max-width: 768px) {
    .iyzico-ad-section {
        padding: 40px 0;
    }
    
    .iyzico-ad-container {
        padding: 24px 20px;
        border-radius: 20px;
    }
    
    .iyzico-ad-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .iyzico-info-section {
        flex-direction: column;
        gap: 16px;
    }
    
    .iyzico-logo {
        padding: 10px 18px;
    }
    
    .iyzico-logo-img {
        height: 28px;
    }

    .payment-methods {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .payment-method {
        width: 52px;
        height: 36px;
        border-radius: 8px;
    }
    
    .payment-logo {
        height: 18px;
    }

    .iyzico-cta-btn {
        width: 100%;
        max-width: 220px;
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .iyzico-highlight {
        font-size: 18px;
    }
    
    .iyzico-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .iyzico-ad-section {
        padding: 30px 0;
    }
    
    .iyzico-ad-container {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .payment-methods {
        gap: 6px;
    }

    .payment-method {
        width: 48px;
        height: 32px;
        border-radius: 6px;
    }

    .payment-logo {
        height: 16px;
    }
    
    .iyzico-highlight {
        font-size: 16px;
    }
}
