/* ===================================
   MODERN FOOTER STYLES
   =================================== */

.site-footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Footer Widgets */
.footer-widgets {
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.footer-widgets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.footer-widget-column {
    animation: fadeInUp 0.6s ease-out both;
}

.footer-widget-column:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-widget-column:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-widget-column:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-widget-column:nth-child(4) {
    animation-delay: 0.4s;
}

.footer-widget-column .widget-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.footer-widget-column .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-gradient);
    border-radius: var(--radius-sm);
}

.footer-widget-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-widget-column a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-widget-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget-column ul li {
    margin-bottom: var(--spacing-sm);
    padding-left: 20px;
    position: relative;
}

.footer-widget-column ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    transition: transform var(--transition-fast);
}

.footer-widget-column ul li:hover::before {
    transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-copyright p {
    margin: 0;
}

.footer-copyright a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.footer-copyright a:hover {
    color: white;
}

.footer-navigation .footer-menu {
    display: flex;
    gap: var(--spacing-md);
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-navigation .footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-navigation .footer-menu a:hover {
    color: var(--accent-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
    background: var(--secondary-gradient);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-widgets {
        padding: var(--spacing-2xl) 0 var(--spacing-lg);
    }

    .footer-widgets-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }

    .footer-navigation .footer-menu {
        justify-content: center;
    }

    .back-to-top {
        right: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Elementor Footer Compatibility */
.ele-footer {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, var(--bg-white), var(--bg-light));
}

.ele-footer .elementor-widget-heading .elementor-heading-title {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.ele-footer p {
    color: var(--text-secondary);
    margin: 0 0 var(--spacing-sm);
    line-height: 1.7;
}

.ele-footer .elementor-widget-nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ele-footer .elementor-widget-nav-menu li {
    margin-bottom: var(--spacing-xs);
}

.ele-footer .elementor-widget-nav-menu li a {
    color: var(--text-primary);
    display: block;
    padding: var(--spacing-xs) 0;
    transition: all var(--transition-fast);
}

.ele-footer .elementor-widget-nav-menu li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .ele-footer .elementor-column {
        width: 100% !important;
        margin-bottom: var(--spacing-lg);
    }
}

/* --- GLOBAL CTA SECTION --- */
.nakliyat-cta-section {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 60px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nakliyat-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: rotate 60s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.cta-desc {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-quote {
    background: #fff;
    color: #e74c3c;
    border: 2px solid #fff;
}

.btn-quote:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-call {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-call:hover {
    background: #fff;
    color: #e74c3c;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: 2px solid #25D366;
    box-shadow: none;
}

.btn-whatsapp:hover {
    background: transparent;
    border-color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .nakliyat-cta-section {
        padding: 40px 0;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-desc {
        font-size: 1rem;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        gap: 15px;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}