/* ========================================
   MODERN FOOTER SECTION - NO CONFLICTS
   Prefix: mdft- (MD Footer)
   ======================================== */

.mdft-footer {
    position: relative;
    background: linear-gradient(135deg, #0f1419 0%, #1a1a1a 50%, #0f1419 100%);
    color: #fff;
    overflow: hidden;
    margin-top: 0px;
}

.mdft-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a961, transparent);
    opacity: 0.5;
}

/* Animated background shapes */
.mdft-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    animation: mdftFloat 20s ease-in-out infinite;
}

.mdft-bg-shape-1 {
    width: 400px;
    height: 400px;
    background: #c9a961;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.mdft-bg-shape-2 {
    width: 300px;
    height: 300px;
    background: #2f7d32;
    bottom: -50px;
    right: -50px;
    animation-delay: 5s;
}

@keyframes mdftFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.mdft-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 20px 30px;
    position: relative;
    z-index: 2;
}

.mdft-top {
    display: grid;
    /*grid-template-columns: 1.2fr 1fr 1.3fr 1fr;*/
    /*grid-template-columns: 0.8fr 0.8fr 1.5fr 1.4fr;*/
    grid-template-columns: 0.6fr 0.7fr 0.7fr 1.3fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: mdftFadeUp 1s ease forwards;
}

@keyframes mdftFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo & About Section */
.mdft-about {
    animation-delay: 0.1s;
}

.mdft-logo {
    margin-bottom: 25px;
    display: block;
    transition: transform 0.3s ease;
}

.mdft-logo:hover {
    transform: scale(1.05);
}

.mdft-logo img {
    height: 110px;
    width: auto;
    filter: drop-shadow(0 8px 20px rgba(201, 169, 97, 0.3));
}

.mdft-about p {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
}

.mdft-social {
    display: flex;
    gap: 12px;
}

.mdft-social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mdft-social-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #c9a961, #2f7d32);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mdft-social-icon i {
    position: relative;
    z-index: 1;
}

.mdft-social-icon:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.4);
    border-color: transparent;
}

.mdft-social-icon:hover::before {
    opacity: 1;
}

/* Section Titles */
.mdft-section h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.mdft-section h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #c9a961;
    /*background: linear-gradient(90deg, #c9a961, #2f7d32);*/
    border-radius: 10px;
}

/* Quick Links */
.mdft-links {
    animation-delay: 0.2s;
}

.mdft-links ul {
    list-style: none;
}

.mdft-links li {
    margin-bottom: 14px;
}

.mdft-links a {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.mdft-links a::before {
    content: "→";
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #c9a961;
}

.mdft-links a:hover {
    color: #c9a961;
    padding-left: 15px;
    transform: translateX(5px);
}

.mdft-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info */
.mdft-contact {
    animation-delay: 0.3s;
}

.mdft-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.mdft-contact-item:hover {
    transform: translateX(5px);
}

.mdft-contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #c9a961;
    /*background: linear-gradient(135deg, #c9a961, #d4af37);*/
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
    transition: all 0.3s ease;
}

.mdft-contact-item:hover .mdft-contact-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(201, 169, 97, 0.5);
}

.mdft-contact-info {
    flex: 1;
}

.mdft-contact-label {
    font-family: 'League Spartan', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.mdft-contact-text {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.mdft-contact-text a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mdft-contact-text a:hover {
    color: #c9a961;
    /*text-decoration: underline;*/
}

/* Store Location */
.mdft-location {
    animation-delay: 0.4s;
}

.mdft-map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.mdft-map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.mdft-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.3) brightness(0.9);
    transition: filter 0.3s ease;
}

.mdft-map-container:hover iframe {
    filter: grayscale(0) brightness(1);
}

.mdft-map-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(17, 35, 48, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mdft-map-overlay i {
    color: #c9a961;
}

/* Bottom Bar */
.mdft-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.mdft-copyright {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.mdft-copyright a {
    color: #c9a961;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mdft-copyright a:hover {
    color: #fff;
}

.mdft-made-with {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mdft-heart {
    color: #c9a961;
    /*animation: mdftHeartbeat 1.5s ease-in-out infinite;*/
}


.mdft-made-with a {
    color: #c9a961;
    font-weight: 600;
}

.mdft-made-with a:hover {
    color: #fff;
}

@keyframes mdftHeartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.2);
    }
    20%, 40% {
        transform: scale(1.1);
    }
}

/* Back to Top Button */
.mdft-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #c9a961;
    /*background: linear-gradient(135deg, #c9a961, #2f7d32);*/
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mdft-back-to-top.mdft-visible {
    opacity: 1;
    visibility: visible;
}

.mdft-back-to-top:hover {
    transform: translateY(-5px);
    background: #1a1a1a;
    color: #fff;
    box-shadow: 0 12px 35px rgba(201, 169, 97, 0.6);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .mdft-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .mdft-location {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .mdft-container {
        padding: 50px 20px 20px;
    }
    
    .mdft-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mdft-location {
        grid-column: span 1;
    }
    
    .mdft-section h3 {
        font-size: 20px;
    }
    
    .mdft-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .mdft-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .mdft-logo img {
        height: 80px;
    }
    
    .mdft-map-container {
        height: 200px;
    }
    
    .mdft-contact-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 18px;
    }
}

.mdft-social-contact {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.mdft-social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mdft-social-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #c9a961;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mdft-social-btn i {
    position: relative;
    z-index: 1;
}

/* Hover Effects */
.mdft-social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.4);
}

.mdft-social-btn:hover::before {
    opacity: 1;
}
/*
.mdft-social-btn:nth-child(1):hover { background:#1877f2; }
.mdft-social-btn:nth-child(2):hover { background:#e4405f; }
.mdft-social-btn:nth-child(3):hover { background:#25d366; }*/