/* ===========================
   ULTRA MODERN FOOTER STİLLERİ
   =========================== */

/* ===========================
   GLOBAL ANIMATIONS
   =========================== */

@keyframes gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===========================
   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%;
}

.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;
    }
}

/* ===========================
   MODERN NEWS & ARTICLES SECTION
   =========================== */

.news-articles-modern-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.1) 0%, rgba(93, 173, 226, 0.05) 100%);
    border-radius: 30px;
    border: 2px solid rgba(93, 173, 226, 0.2);
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(93, 173, 226, 0.1);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #0a1628;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    letter-spacing: -1px;
}

.section-title i {
    color: #5DADE2;
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.6;
}

.header-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #5DADE2, #87CEEB);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(93, 173, 226, 0.2);
}

.news-articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .news-articles-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.news-column,
.articles-column {
    position: relative;
}

.column-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(93, 173, 226, 0.2);
}

.column-header h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #0a1628;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.column-header h3 i {
    color: #5DADE2;
    font-size: 1.6rem;
}

.view-all-link {
    color: #5DADE2;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 10px 18px;
    border-radius: 25px;
    background: rgba(93, 173, 226, 0.08);
    border: 1.5px solid rgba(93, 173, 226, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-size: 0.85rem;
}

.view-all-link:hover {
    background: rgba(93, 173, 226, 0.12);
    border-color: rgba(93, 173, 226, 0.4);
    gap: 12px;
}

.view-all-link i {
    font-size: 0.8rem;
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.article-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border: 2px solid rgba(93, 173, 226, 0.15);
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    padding: 20px;
    position: relative;
    box-shadow: 0 8px 25px rgba(93, 173, 226, 0.08);
}

.article-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(93, 173, 226, 0.15);
    border-color: rgba(93, 173, 226, 0.3);
}

.card-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    height: 100px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(93, 173, 226, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.article-date {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-date i {
    color: #5DADE2;
    font-size: 0.75rem;
}

.article-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #0a1628;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.article-title a {
    color: #0a1628;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: #5DADE2;
}

.article-excerpt {
    margin: 8px 0 0 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.read-more {
    color: #5DADE2;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.read-more:hover {
    gap: 10px;
}

.read-more i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* News Card Specific Styling */
.news-card {
    border-left: 4px solid #FF6B6B;
}

.news-card:hover {
    border-left-color: #FF8C8C;
}

.news-card .card-badge {
    background: rgba(255, 107, 107, 0.9);
}

/* Blog Card Specific Styling */
.blog-card {
    border-left: 4px solid #4ECDC4;
}

.blog-card:hover {
    border-left-color: #6FE0D9;
}

.blog-card .card-badge {
    background: rgba(78, 205, 196, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-articles-modern-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title i {
        font-size: 1.8rem;
    }
    
    .column-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .view-all-link {
        width: 100%;
        justify-content: center;
    }
    
    .article-card {
        grid-template-columns: 110px 1fr;
        padding: 15px;
        gap: 15px;
    }
    
    .card-image {
        height: 80px;
    }
    
    .article-title {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .news-articles-grid {
        gap: 30px;
    }
    
    .section-title {
        font-size: 1.5rem;
        flex-direction: column;
    }
    
    .article-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .card-image {
        height: 150px;
        width: 100%;
    }
    
    .article-excerpt {
        -webkit-line-clamp: 2;
    }
}

/* ===========================
   ULTRA MODERN WHY US SECTION
   =========================== */

.why-us-ultra-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-us-ultra-modern::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(93, 173, 226, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-us-ultra-modern::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-us-wrapper {
    position: relative;
    z-index: 2;
}

.why-us-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-us-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    letter-spacing: -1px;
}

.why-us-title strong {
    background: linear-gradient(135deg, #5DADE2, #87CEEB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #5DADE2, #87CEEB);
    border-radius: 20px;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 10px 30px rgba(93, 173, 226, 0.3);
    animation: float 3s ease-in-out infinite;
}

.why-us-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.8;
    font-weight: 400;
}

.subtitle-divider {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, transparent, #5DADE2, transparent);
    margin: 0 auto;
    border-radius: 3px;
}

/* Features Grid */
.why-us-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 80px;
}

.why-us-feature-card {
    background: white;
    border-radius: 25px;
    padding: 45px 30px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(93, 173, 226, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 380px;
}

.feature-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.05), rgba(135, 206, 235, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.why-us-feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(93, 173, 226, 0.3);
    box-shadow: 0 30px 60px rgba(93, 173, 226, 0.15);
}

.why-us-feature-card:hover .feature-card-bg {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5DADE2, #87CEEB);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(93, 173, 226, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    z-index: 1;
}

.why-us-feature-card:hover .feature-icon-wrapper {
    transform: scale(1.15) rotateY(360deg);
    box-shadow: 0 20px 50px rgba(93, 173, 226, 0.3);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.1), rgba(135, 206, 235, 0.1));
    color: #5DADE2;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(93, 173, 226, 0.2);
    transition: all 0.3s ease;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-us-feature-card:hover .feature-badge {
    background: linear-gradient(135deg, #5DADE2, #87CEEB);
    color: white;
    border-color: #5DADE2;
}

/* Stats Section */
.why-us-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    background: linear-gradient(135deg, #5DADE2, #87CEEB);
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(93, 173, 226, 0.2);
    position: relative;
    overflow: hidden;
}

.why-us-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1), transparent),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05), transparent);
    pointer-events: none;
}

.stats-item {
    text-align: center;
    position: relative;
    z-index: 1;
    color: white;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.stats-item:hover {
    transform: scale(1.1);
}

.stats-number {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    letter-spacing: -1px;
}

.stats-label {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-us-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .why-us-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 50px 40px;
    }
    
    .why-us-title {
        font-size: 2.5rem;
    }
    
    .title-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .why-us-ultra-modern {
        padding: 60px 0;
    }
    
    .why-us-header {
        margin-bottom: 60px;
    }
    
    .why-us-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 60px;
    }
    
    .why-us-feature-card {
        padding: 35px 25px;
        min-height: auto;
    }
    
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .feature-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .why-us-title {
        font-size: 2rem;
        gap: 15px;
        flex-direction: column;
    }
    
    .title-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .why-us-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .why-us-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 40px 30px;
    }
    
    .stats-number {
        font-size: 2rem;
    }
    
    .stats-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .why-us-ultra-modern {
        padding: 40px 0;
    }
    
    .why-us-header {
        margin-bottom: 40px;
    }
    
    .why-us-features-grid {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .why-us-feature-card {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .why-us-title {
        font-size: 1.6rem;
        gap: 10px;
    }
    
    .title-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .why-us-subtitle {
        font-size: 0.95rem;
    }
    
    .why-us-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 30px 20px;
    }
    
    .stats-number {
        font-size: 1.8rem;
    }
    
    .stats-label {
        font-size: 0.85rem;
    }
}

.carousel-section {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 30px;
}

.header-left h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #0a1628;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-left h3 i {
    color: #5DADE2;
    font-size: 1.8rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2.5px solid #5DADE2;
    background: white;
    color: #5DADE2;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 16px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(93, 173, 226, 0.1);
    flex-shrink: 0;
}

.carousel-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #5DADE2, #87CEEB);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.carousel-btn:hover:not(:disabled) {
    background: #5DADE2;
    color: white;
    transform: scale(1.12) translateY(-2px);
    box-shadow: 0 8px 25px rgba(93, 173, 226, 0.3);
    border-color: #5DADE2;
}

.carousel-btn:hover:not(:disabled)::before {
    opacity: 1;
}

.carousel-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.carousel-btn:disabled,
.carousel-btn.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    border-color: #ddd;
    color: #999;
    box-shadow: none;
}

.view-all-link {
    color: #5DADE2;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(93, 173, 226, 0.05);
    border: 1px solid rgba(93, 173, 226, 0.2);
    flex-shrink: 0;
}

.view-all-link:hover {
    background: rgba(93, 173, 226, 0.15);
    border-color: #5DADE2;
    gap: 12px;
    transform: translateY(-2px);
}

.view-all-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.view-all-link:hover i {
    transform: translateX(3px);
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    gap: 25px;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: #5DADE2 rgba(93, 173, 226, 0.1);
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    -webkit-user-select: none;
}

.carousel-track::-webkit-scrollbar {
    height: 8px;
}

.carousel-track::-webkit-scrollbar-track {
    background: rgba(93, 173, 226, 0.05);
    border-radius: 10px;
}

.carousel-track::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #5DADE2, #87CEEB);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(93, 173, 226, 0.2);
}

.carousel-track::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #4A90E2, #5DADE2);
    box-shadow: 0 0 10px rgba(93, 173, 226, 0.4);
}

.carousel-track.grabbing {
    cursor: grabbing;
    scroll-behavior: auto;
}

.carousel-slide {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    background: white;
    border: 1.5px solid rgba(93, 173, 226, 0.15);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    padding: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    min-height: 420px;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(93, 173, 226, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.carousel-slide:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(93, 173, 226, 0.2);
    border-color: rgba(93, 173, 226, 0.3);
}

.carousel-slide:hover::before {
    opacity: 1;
}

.carousel-slide .card-image {
    width: 100%;
    height: 180px;
    flex-shrink: 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5, #e9e9e9);
}

.carousel-slide .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.carousel-slide:hover .card-image img {
    transform: scale(1.12) rotate(1deg);
}

.carousel-slide .card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.carousel-slide .card-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.carousel-slide .article-date {
    font-size: 0.8rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.carousel-slide .article-date i {
    color: #5DADE2;
    font-size: 0.7rem;
}

.carousel-slide .article-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0a1628;
    line-height: 1.4;
    margin: 0;
}

.carousel-slide .article-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.carousel-slide .article-title a:hover {
    color: #5DADE2;
}

.carousel-slide .article-excerpt {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    flex-grow: 1;
}

.carousel-slide .read-more {
    color: #5DADE2;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-top: auto;
    padding-top: 12px;
}

.carousel-slide .read-more:hover {
    gap: 10px;
    color: #4A90E2;
}

.carousel-slide .read-more i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.carousel-slide .read-more:hover i {
    transform: translateX(4px);
}

/* News Card Specific Styling */
.news-card {
    border-top: 5px solid #FF6B6B;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 107, 107, 0.02) 100%);
}

.news-card:hover {
    border-top-color: #FF8C8C;
}

.news-card .card-badge {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.95), rgba(255, 140, 140, 0.95));
    color: white;
}

/* Blog Card Specific Styling */
.blog-card {
    border-top: 5px solid #4ECDC4;
    background: linear-gradient(180deg, #fff 0%, rgba(78, 205, 196, 0.02) 100%);
}

.blog-card:hover {
    border-top-color: #6FE0D9;
}

.blog-card .card-badge {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.95), rgba(111, 224, 217, 0.95));
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .carousel-slide {
        flex: 0 0 280px;
    }
    
    .carousel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .carousel-controls {
        width: 100%;
        justify-content: space-between;
    }
    
    .header-left h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .carousel-section {
        margin-bottom: 60px;
    }
    
    .carousel-slide {
        flex: 0 0 250px;
    }
    
    .carousel-slide .card-image {
        height: 150px;
    }
    
    .carousel-slide .card-content {
        padding: 18px;
    }
    
    .header-left h3 {
        font-size: 1.3rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .carousel-slide .article-title {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .carousel-section {
        margin-bottom: 40px;
    }
    
    .carousel-slide {
        flex: 0 0 220px;
    }
    
    .carousel-slide .card-image {
        height: 130px;
    }
    
    .carousel-slide .card-content {
        padding: 15px;
    }
    
    .carousel-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .carousel-controls {
        order: -1;
        justify-content: space-between;
        width: 100%;
    }
    
    .header-left h3 {
        font-size: 1.1rem;
    }
    
    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }
    
    .view-all-link {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}

/* Software Card Base */
.software-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e8f1f8;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 8px 24px rgba(93, 173, 226, 0.08);
}

.software-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    transition: left 0.5s ease;
    z-index: 1;
}

.software-card:hover::before {
    left: 100%;
}

.software-card:hover {
    transform: translateY(-12px) scale(1.01);
    border-color: #5DADE2;
    box-shadow: 0 16px 48px rgba(93, 173, 226, 0.2);
}

/* Software Badge */
.software-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #5DADE2 0%, #3498DB 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(93, 173, 226, 0.3);
}

/* Software Image */
.software-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f1f8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.software-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.software-card:hover .software-image img {
    transform: scale(1.05);
}
