/* Footer Styling for K Manu & Associates */

.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 80px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Footer Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 30px;
}

.footer-column h3,
.footer-column h4 {
    margin: 0 0 20px 0;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.footer-title {
    font-size: 1.3rem;
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.footer-heading {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #d4af37;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Footer Lists */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: #d4af37;
    transform: translateX(5px);
}

/* Contact Information */
.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0 0 15px 0;
}

.footer-contact strong {
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
}

.footer-contact a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ffffff;
}

/* Email Subscription */
.footer-subscribe {
    padding: 30px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 25px;
    text-align: center;
}

.subscribe-heading {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.subscribe-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
}

.subscribe-form input[type="email"] {
    flex: 1;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-right: none;
    border-radius: 6px 0 0 6px;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.subscribe-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-form input[type="email"]:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: #d4af37;
}

.subscribe-form button {
    padding: 12px 20px;
    background: #d4af37;
    border: 1px solid #d4af37;
    border-radius: 0 6px 6px 0;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe-form button:hover {
    background: #c19a2e;
    transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 20px 0 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }

    .site-footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .subscribe-form {
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .site-footer {
        padding: 30px 0 15px;
        margin-top: 40px;
    }

    .footer-grid {
        gap: 25px;
        padding-bottom: 30px;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-heading {
        font-size: 0.9rem;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
    }

    .footer-social a svg {
        width: 16px;
        height: 16px;
    }

    .subscribe-heading {
        font-size: 1rem;
    }

    .subscribe-form input[type="email"],
    .subscribe-form button {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}
