﻿/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: white;
    padding: 3rem 0 0;
    margin-top: 4rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-section h4 {
    color: #D4AF37;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.footer-logo img {
    height: 50px;
    width: 50px;
    border-radius: 8px;
    border: 2px solid #D4AF37;
}

.footer-logo h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.7;
    color: #BDC3C7;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: #BDC3C7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: #D4AF37;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: #D4AF37;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding: 1.5rem 0;
    text-align: center;
    color: #BDC3C7;
    font-size: 0.95rem;
}

/* Icons */
.icon-location::before { content: "📍 "; }
.icon-phone::before { content: "📞 "; }
.icon-email::before { content: "✉️ "; }
.icon-facebook::before { content: "f"; font-family: Arial, sans-serif; font-weight: bold; }
.icon-twitter::before { content: "t"; font-family: Arial, sans-serif; font-weight: bold; }
.icon-instagram::before { content: "ig"; font-family: Arial, sans-serif; font-weight: bold; }
.icon-youtube::before { content: "yt"; font-family: Arial, sans-serif; font-weight: bold; }

/* Mobile Styles */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-section ul li a {
        justify-content: center;
    }
}
.footer-bottom {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ecf0f1;
    padding: 25px 0;
    border-top: 4px solid #e74c3c;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

    .footer-content p {
        margin: 0;
        font-size: 15px;
        color: #bdc3c7;
        font-weight: 600;
    }

.developer-credit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.credit-text {
    color: #95a5a6;
    font-weight: 600;
}

.developer-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 20px;
    border: 2px solid #e74c3c;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: #e74c3c;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.tech-icon {
    font-size: 16px;
}

.developer-link:hover {
    background: #c0392b;
    border-color: #c0392b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .developer-credit {
        flex-direction: column;
        gap: 8px;
    }
}