/* Enhanced Desktop Footer Styles */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.desktop-footer-enhanced {
    background: linear-gradient(180deg, #222222 0%, #1a1a1a 50%, #111111 100%);
    color: #ffffff;
    font-family: 'Anek Devanagari', 'Noto Sans Devanagari', sans-serif;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

/* Background Elements */
.footer-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    animation: floatSlow 15s ease-in-out infinite;
}

.bg-circle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(145deg, #F51D24, #d1191f);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(145deg, #FFD700, #ffc107);
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.bg-circle-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(145deg, #F51D24, #b01519);
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(245, 29, 36, 0.02) 40px,
        rgba(245, 29, 36, 0.02) 80px
    );
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    top: -119px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 2;
}

.wave-divider svg {
    width: 100%;
    height: 120px;
}

/* Container */
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 3;
}

/* Top Stats Section */
.footer-top {
    padding: 80px 0 60px;
    border-bottom: 2px solid rgba(245, 29, 36, 0.2);
}

.live-stats-desktop {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 29, 36, 0.1), transparent);
    transition: left 0.8s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 29, 36, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(245, 29, 36, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #F51D24, #d1191f);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.5rem;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon i {
    transform: scale(1.1);
}

.live-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #00ff00;
    border-radius: 18px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #cccccc;
    font-weight: 500;
}

/* Main Footer */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding: 50px 0px 0px 0px;
    align-items: start;
}

/* Brand Section */
.footer-brand {
    max-width: 500px;
}

.brand-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.brand-logo-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo-desktop {
    height: 80px;
    width: 300px;
    filter: drop-shadow(0 4px 12px rgba(245, 29, 36, 0.3));
}

.brand-title-desktop {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.logo-jan {
    color: #ffffff;
}

.logo-vani {
    color: #FFD700;
}

.logo-24 {
    color: #F51D24;
    font-size: 0.7em;
    vertical-align: super;
}

.brand-tagline-desktop {
    font-size: 1.3rem;
    color: #FFD700;
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

.brand-description-desktop p {
    font-size: 16px;
    line-height: 1.5;
    color: #e0e0e0;
    text-align: justify;
}

.brand-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #cccccc;
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-item i {
    color: #F51D24;
    font-size: 1rem;
    width: 20px;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
}

.column-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.column-header i {
    color: #F51D24;
    font-size: 1.3rem;
    width: 24px;
}

.column-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    position: relative;
}

.column-header h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #F51D24, #FFD700);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    margin-left: 0px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #cccccc;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    padding-left: 15px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, #F51D24, transparent);
    transition: width 0.3s ease;
    border-radius: 8px;
    opacity: 0.1;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-links a i {
    color: #F51D24;
    font-size: 0.9rem;
    width: 16px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
}

.footer-links a:hover i {
    color: #FFD700;
    transform: scale(1.2);
}

/* Category Links */
.category-link.politics:hover { border-left: 4px solid #FF6B6B; }
.category-link.sports:hover { border-left: 4px solid #4ECDC4; }
.category-link.business:hover { border-left: 4px solid #45B7D1; }
.category-link.entertainment:hover { border-left: 4px solid #F7931E; }
.category-link.technology:hover { border-left: 4px solid #9B59B6; }
.category-link.health:hover { border-left: 4px solid #2ECC71; }

/* Services List */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 29, 36, 0.3);
    transform: translateY(-3px);
}

.service-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #F51D24, #d1191f);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-wrapper i {
    color: #ffffff;
    font-size: 1.2rem;
}

.service-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.service-details p {
    font-size: 0.9rem;
    color: #aaaaaa;
    margin-bottom: 10px;
    line-height: 1.4;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #F51D24;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #FFD700;
    transform: translateX(5px);
}

.service-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Contact Column */
.contact-column {
    min-width: 300px;
}

.contact-info-desktop {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-item-desktop {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item-desktop:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 29, 36, 0.3);
    transform: translateY(-2px);
}

.contact-icon-desktop {
    width: 45px;
    height: 45px;
    background: linear-gradient(145deg, #F51D24, #d1191f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-desktop i {
    color: #ffffff;
    font-size: 1.1rem;
}

.contact-details-desktop h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 8px;
}

.contact-details-desktop p {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.contact-methods-desktop {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: #cccccc;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transform: translateX(5px);
}

.contact-method i {
    color: #F51D24;
    font-size: 1rem;
    width: 18px;
}

/* Social Section */
.social-section-desktop {
    top: -30px;
    position: relative;
    margin-top: 20px;
}

.social-section-desktop h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.social-section-desktop h4 i {
    color: #F51D24;
    font-size: 1.1rem;
}

.social-icons-desktop {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn i {
    font-size: 1.3rem;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

/* Social Platform Colors */
.social-btn.facebook i { color: #1877f2; }
.social-btn.twitter i { color: #1da1f2; }
.social-btn.youtube i { color: #ff0000; }
.social-btn.instagram i { color: #e4405f; }
.social-btn.whatsapp i { color: #25d366; }
.social-btn.telegram i { color: #0088cc; }

.social-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-btn:hover i {
    transform: scale(1.2);
    color: #ffffff;
}

/* Social Tooltip */
.social-tooltip {
    position: absolute;
    bottom: 65px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: #222222;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    transition: transform 0.3s ease;
    z-index: 10;
    border: 1px solid #F51D24;
}

.social-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #F51D24;
}

.social-tooltip.visible {
    transform: translateX(-50%) scale(1);
}

.social-stats {
    text-align: center;
    color: #aaaaaa;
    font-size: 0.9rem;
    font-weight: 500;
}

.social-stats i {
    color: #F51D24;
    margin-right: 6px;
}

/* Newsletter Section */
.newsletter-section-desktop {
    background: linear-gradient(135deg, rgba(245, 29, 36, 0.1) 0%, rgba(34, 34, 34, 0.8) 100%);
    border: 2px solid rgba(245, 29, 36, 0.2);
    border-left: none;
    border-right: none;
    margin: 50px -40px 0;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.newsletter-section-desktop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #F51D24, #FFD700, #F51D24);
    background-size: 200% 100%;
    animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.newsletter-container {
    max-width: 1320px;
    margin: 0 auto;
}

.newsletter-content-desktop {
    display: flex;
    align-items: center;
    gap: 60px;
}

.newsletter-info-desktop {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.newsletter-icon-desktop {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #FFD700, #ffc107);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-icon-desktop i {
    font-size: 2rem;
    color: #222222;
}

.newsletter-text-desktop h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.newsletter-text-desktop p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.5;
}

.newsletter-form-desktop {
    flex: 1;
    max-width: 500px;
}

.form-group-desktop {
    display: flex;
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.newsletter-form-desktop input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    font-size: 1.1rem;
    outline: none;
    color: #333;
    background: transparent;
}

.newsletter-form-desktop input::placeholder {
    color: #999;
}

.newsletter-form-desktop button {
    background: linear-gradient(145deg, #F51D24, #d1191f);
    border: none;
    padding: 18px 30px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    justify-content: center;
}

.newsletter-form-desktop button:hover {
    background: linear-gradient(145deg, #d1191f, #b01519);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 29, 36, 0.4);
}

.newsletter-form-desktop button.loading {
    background: linear-gradient(145deg, #6c757d, #5a6268);
}

.newsletter-form-desktop button.success {
    background: linear-gradient(145deg, #28a745, #20c997);
}

.newsletter-form-desktop button.error {
    background: linear-gradient(145deg, #dc3545, #c82333);
}

.newsletter-form-desktop input.error {
    border: 2px solid #dc3545;
}

.newsletter-benefits {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 500;
}

.benefit i {
    color: #28a745;
    font-size: 0.8rem;
}

/* Trust Section */
.trust-section {
    padding: 50px 0;
    border-bottom: 2px solid rgba(245, 29, 36, 0.2);
}

.trust-badges-desktop {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge-desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    min-width: 160px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.trust-badge-desktop.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.trust-badge-desktop::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 29, 36, 0.1), transparent);
    transition: left 0.8s;
}

.trust-badge-desktop:hover::before {
    left: 100%;
}

.trust-badge-desktop:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 29, 36, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(245, 29, 36, 0.2);
}

.trust-badge-desktop i {
    font-size: 2rem;
    color: #F51D24;
    transition: all 0.3s ease;
}

.trust-badge-desktop:hover i {
    color: #FFD700;
    transform: scale(1.2);
}

.trust-badge-desktop span {
    font-size: 1rem;
    color: #cccccc;
    font-weight: 600;
    text-align: center;
    transition: color 0.3s ease;
}

.trust-badge-desktop:hover span {
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom-desktop {
    display: none!important;
    background: rgba(0, 0, 0, 0.4);
    padding: 30px 0;
    border-top: 2px solid rgba(245, 29, 36, 0.3);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.copyright-desktop p {
    color: #aaaaaa;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 20px;
}

.made-in-india {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFD700;
    font-weight: 600;
}

.made-in-india i {
    color: #F51D24;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.legal-links-desktop {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.legal-links-desktop a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.legal-links-desktop a i {
    color: #F51D24;
    font-size: 0.9rem;
}

.legal-links-desktop a:hover {
    color: #ffffff;
    background: rgba(245, 29, 36, 0.1);
    transform: translateY(-2px);
}

.legal-links-desktop a:hover i {
    color: #FFD700;
}

/* Back to Top */
.back-to-top-desktop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: linear-gradient(145deg, #F51D24, #d1191f);
    color: #ffffff;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
    box-shadow: 0 8px 30px rgba(245, 29, 36, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.back-to-top-desktop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-desktop:hover {
    background: linear-gradient(145deg, #d1191f, #b01519);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(245, 29, 36, 0.5);
}

.back-to-top-desktop i {
    font-size: 1.2rem;
}

.back-to-top-desktop span {
    font-size: 0.8rem;
    white-space: nowrap;
}

/* Ripple Effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 2fr 1fr 1fr 1.2fr;
        gap: 50px;
    }
    
    .live-stats-desktop {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .newsletter-content-desktop {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .newsletter-info-desktop {
        justify-content: center;
    }
    
    .trust-badges-desktop {
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .brand-container {
        align-items: center;
    }
    
    .brand-description-desktop p {
        text-align: center;
    }
    
    .live-stats-desktop {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-icons-desktop {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .brand-title-desktop {
        font-size: 2.5rem;
    }
    
    .live-stats-desktop {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 20px;
        gap: 15px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .newsletter-section-desktop {
        margin: 30px -20px 0;
        padding: 40px 20px;
    }
    
    .newsletter-text-desktop h3 {
        font-size: 1.8rem;
    }
    
    .newsletter-text-desktop p {
        font-size: 1rem;
    }
    
    .newsletter-benefits {
        gap: 15px;
    }
    
    .trust-badges-desktop {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .legal-links-desktop {
        justify-content: center;
        gap: 20px;
    }
    
    .social-icons-desktop {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-top {
        padding: 50px 0 40px;
    }
    
    .footer-main {
        padding: 50px 0;
    }
    
    .brand-title-desktop {
        font-size: 2rem;
    }
    
    .newsletter-form-desktop {
        max-width: 100%;
    }
    
    .form-group-desktop {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .newsletter-form-desktop input,
    .newsletter-form-desktop button {
        border-radius: 0;
        padding: 15px 20px;
    }
    
    .newsletter-form-desktop input {
        border-radius: 15px 15px 0 0;
    }
    
    .newsletter-form-desktop button {
        border-radius: 0 0 15px 15px;
        min-width: auto;
    }
    
    .trust-badges-desktop {
        grid-template-columns: 1fr;
    }
    
    .legal-links-desktop {
        flex-direction: column;
        gap: 15px;
    }
    
    .back-to-top-desktop {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
    }
    
    .back-to-top-desktop span {
        font-size: 0.7rem;
    }
    
    .social-icons-desktop {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Accessibility Improvements */
.keyboard-navigation .footer-links a:focus,
.keyboard-navigation .social-btn:focus,
.keyboard-navigation .service-link:focus,
.keyboard-navigation .legal-links-desktop a:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
    border-radius: 4px;
}

.newsletter-form-desktop input:focus {
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.newsletter-form-desktop button:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .desktop-footer-enhanced {
        background: #000000 !important;
        border: 2px solid #ffffff;
    }
    
    .footer-links a,
    .legal-links-desktop a {
        color: #ffffff !important;
    }
    
    .social-btn {
        border: 2px solid #ffffff !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .desktop-footer-enhanced *,
    .desktop-footer-enhanced *::before,
    .desktop-footer-enhanced *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .bg-circle,
    .live-pulse {
        animation: none !important;
    }
}

/* Print Styles */
@media print {
    .desktop-footer-enhanced {
        background: #ffffff !important;
        color: #000000 !important;
        box-shadow: none !important;
    }
    
    .footer-bg-elements,
    .wave-divider,
    .back-to-top-desktop {
        display: none !important;
    }
    
    .social-icons-desktop,
    .newsletter-section-desktop {
        display: none !important;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

#ast-scroll-top{display: none!important;}