/* ===========================
   ULTRA MODERN FOOTER STİLLERİ
   =========================== */

/* ===========================
   HERO SECTION - ULTRA MODERN
   =========================== */

.footer-hero-section {
    background: linear-gradient(135deg, #0a1628 0%, #162236 25%, #1a2844 50%, #0d1b2a 75%, #1a365d 100%);
    position: relative;
    padding: 50px 0 40px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title i {
    color: #00d4ff;
    margin-right: 15px;
    animation: pulse 2s infinite;
}

.gradient-text {
    background: linear-gradient(135deg, #00d4ff, #00f2ea, #64ffda);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 3s ease infinite;
    background-size: 200% 100%;
}

@keyframes gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-premium, .btn-demo {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-premium {
    background: linear-gradient(135deg, #00d4ff, #00f2ea);
    color: #0a1628;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.btn-demo {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-demo:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00d4ff;
    color: #00d4ff;
    transform: translateY(-3px);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.stat-icon {
    color: rgba(0, 212, 255, 0.3);
    font-size: 1.5rem;
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00d4ff;
    border-radius: 50%;
    animation: float 6s infinite linear;
}

.hero-particles .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.hero-particles .particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.hero-particles .particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.hero-particles .particle:nth-child(4) { left: 70%; animation-delay: 3s; }
.hero-particles .particle:nth-child(5) { left: 80%; animation-delay: 4s; }
.hero-particles .particle:nth-child(6) { left: 90%; animation-delay: 5s; }

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(0, 212, 255, 0.2);
    animation: floating 4s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) { top: 20%; left: 15%; }
.floating-icon:nth-child(2) { top: 60%; left: 85%; }
.floating-icon:nth-child(3) { top: 80%; left: 20%; }
.floating-icon:nth-child(4) { top: 30%; left: 75%; }
.floating-icon:nth-child(5) { top: 70%; left: 65%; }

@keyframes floating {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* ===========================
   NEWSLETTER & PROMO SECTION
   =========================== */

.newsletter-promo-section {
    background: linear-gradient(135deg, #1a2844 0%, #2d3748 100%);
    padding: 35px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.newsletter-content h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.newsletter-content h3 i {
    color: #00d4ff;
    font-size: 1.8rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
}

.form-group {
    display: flex;
    gap: 0;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    overflow: hidden;
}

.form-group input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    font-size: 16px;
    border-radius: 50px 0 0 50px;
    outline: none;
}

.form-group input::placeholder {
    color: rgba(51, 51, 51, 0.6);
}

.form-group button {
    padding: 18px 30px;
    background: linear-gradient(135deg, #00d4ff, #00f2ea);
    border: none;
    color: #0a1628;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0 50px 50px 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group button:hover {
    background: linear-gradient(135deg, #00f2ea, #00d4ff);
    transform: translateX(3px);
}

.form-features {
    display: flex;
    gap: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.form-features span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-features i {
    color: #00d4ff;
}

/* Promo Card */
.promo-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    animation: rotate 4s linear infinite;
}

.promo-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg, #1a2844, #2d3748);
    border-radius: 23px;
    z-index: 1;
}

.promo-card > * {
    position: relative;
    z-index: 2;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.promo-badge {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.promo-badge span {
    font-size: 2rem;
    display: block;
}

.promo-badge small {
    font-size: 0.8rem;
    opacity: 0.9;
}

.promo-card h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.promo-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.promo-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.promo-features li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-features i {
    color: #00d4ff;
}

.promo-btn {
    background: linear-gradient(135deg, #00d4ff, #00f2ea);
    color: #0a1628;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

/* ===========================
   ENHANCED COPYRIGHT SECTION
   =========================== */

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.copyright-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.copyright-main p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.company-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.company-name {
    color: #00d4ff;
    font-weight: 600;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer-tagline {
    background: rgba(0, 212, 255, 0.1);
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    text-align: center;
}

.footer-tagline i {
    color: #00d4ff;
    margin-right: 8px;
}

.tagline-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #00d4ff;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 1024px) {
    .hero-grid,
    .newsletter-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-hero-section {
        padding: 40px 0 30px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-premium,
    .btn-demo {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .newsletter-promo-section {
        padding: 25px 0;
    }
    
    .newsletter-content h3 {
        font-size: 1.5rem;
    }
    
    .form-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .form-group input {
        border-radius: 15px;
        margin-bottom: 10px;
    }
    
    .form-group button {
        border-radius: 15px;
        justify-content: center;
    }
    
    .form-features {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .promo-card {
        padding: 30px 20px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .floating-icon {
        font-size: 1.5rem;
    }
    
    .newsletter-content h3 {
        font-size: 1.3rem;
    }
}

/* Container */
.footer-modern .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

/* Footer Ana Container */
.footer-modern {
    position: relative;
    background: linear-gradient(180deg, #0a1628 0%, #162236 50%, #1a2844 100%);
    color: #ffffff;
    overflow: hidden;
    clear: both;
    margin-top: 0;
    padding-top: 0;
}

/* Üst Gradient Band - Türkuaz */
.footer-gradient-band {
    height: 4px;
    background: linear-gradient(90deg, #00d4ff 0%, #00f2ea 50%, #00d4ff 100%);
    animation: gradient-shift 5s ease infinite;
    background-size: 200% 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* İletişim Kartları - Gizle */
.footer-contact-section {
    display: none;
}

/* Ana Footer İçerik */
.footer-main {
    padding: 35px 0 25px;
    position: relative;
    z-index: 5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 25px;
}

/* Footer Kolonlar */
.footer-column {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #00d4ff;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
}

/* Şirket Bilgisi */
.footer-about {
    padding-right: 20px;
}

.footer-logo-section {
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 160px;
    height: auto;
    filter: brightness(1);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: none;
    letter-spacing: 0.5px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 13px;
    margin-bottom: 25px;
}

/* Sosyal Medya */
.footer-social {
    margin-top: 25px;
}

.footer-social h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #00d4ff;
    color: #0a1628;
    border-color: #00d4ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

/* Footer Linkler */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '◦';
    color: #00d4ff;
    opacity: 0.5;
    transition: all 0.25s ease;
}

.footer-links a:hover {
    color: #00d4ff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Footer Alt Kısım */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 5;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    margin: 3px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* Ödeme İkonları */
.footer-payment {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 400;
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icons i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: #00d4ff;
    transform: translateY(-2px);
}

/* Yukarı Çık Butonu */
.footer-back-to-top {
    position: relative;
}

.back-to-top-btn {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-to-top-btn:hover {
    background: #00d4ff;
    color: #0a1628;
    border-color: #00d4ff;
    transform: translateY(-2px);
}

.back-to-top-btn i {
    font-size: 14px;
}

/* ===========================
   RESPONSIVE TASARIM
   =========================== */

/* Tablet ve Küçük Ekranlar */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .footer-modern {
        padding-top: 40px;
    }
    
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-column-title {
        font-size: 15px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-payment {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .footer-modern .container {
        padding: 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-logo {
        max-width: 140px;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .footer-description {
        font-size: 12px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .footer-copyright p {
        font-size: 12px;
    }
    
    .back-to-top-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* AOS Animasyonları için */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Print için */
@media print {
    .footer-modern {
        background: white;
        color: black;
    }
    
    .footer-gradient-band,
    .social-link,
    .back-to-top-btn,
    .footer-scroll-top {
        display: none;
    }
}

/* ===========================
   YENİ MODERN FOOTER EKLEMELERİ
   =========================== */

/* Özellik Listesi */
.footer-features {
    margin: 20px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.feature-item i {
    color: #00d4ff;
    font-size: 14px;
    width: 16px;
}

.feature-item:hover {
    color: #ffffff;
    transform: translateX(3px);
    transition: all 0.3s ease;
}

/* Sosyal Medya Geliştirmeleri */
.social-link {
    position: relative;
    overflow: hidden;
}

.social-link span {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #00d4ff;
    color: #0a1628;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.social-link:hover span {
    opacity: 1;
    bottom: -30px;
}

/* Sertifikalar Bölümü */
.footer-certificates {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.certificate-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    background: rgba(0, 212, 255, 0.05);
    padding: 8px 12px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.certificate-item i {
    color: #00d4ff;
    font-size: 14px;
}

.certificate-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

/* Ödeme İkonları Geliştirmeleri */
.payment-icon {
    width: 45px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-icon::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-icon:hover::before {
    left: 100%;
}

.payment-icon:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.payment-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.payment-icon:hover i {
    color: #00d4ff;
}

/* Scroll to Top Butonu */
.footer-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff, #00f2ea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a1628;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.footer-scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.footer-scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

/* Footer Title İkonları */
.footer-title i,
.footer-copyright i,
.footer-tagline i,
.payment-text i,
.footer-social h4 i {
    margin-right: 8px;
    color: #00d4ff;
}

/* Responsive düzeltmeler */
@media (max-width: 768px) {
    .footer-certificates {
        justify-content: center;
        gap: 10px;
    }
    
    .certificate-item {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .payment-icon {
        width: 40px;
        height: 28px;
    }
    
    .footer-scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
    }
    
    .footer-features {
        margin: 15px 0;
    }
    
    .feature-item {
        font-size: 12px;
    }
}
