/* Footer Section Styles */
.main-footer {
    margin: 40px 16px 16px 16px;
    border-radius: 0;
    overflow: visible;
    animation: slideUp 0.8s ease-out;
}

/* Footer Statistics Section */
.footer-stats {
    background: transparent;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.temple-illustration {
    position: relative;
    flex-shrink: 0;
}

.footer-temple-img {
    width: 280px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 4px solid white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.stats-badge {
    position: absolute;
    top: -10px;
    right: -20px;
    background: linear-gradient(135deg, #d84315 0%, #ff5722 100%);
    color: white;
    padding: 16px 20px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(216, 67, 21, 0.4);
    border: 4px solid white;
    width: 100px;
    height: 100px;
}

.stats-badge .material-icons {
    font-size: 32px;
    margin-bottom: 4px;
}

.stats-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
}

.stats-text strong {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.footer-title {
    flex-grow: 1;
}

.footer-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #d84315;
    margin: 0 0 16px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.visitor-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    color: #5d4037;
}

.visitor-stats .material-icons {
    font-size: 32px;
    color: #d84315;
}

.visitor-stats strong {
    color: #d84315;
    font-weight: 700;
}

/* Footer Content Section */
.footer-content {
    background: transparent;
    padding: 50px 10px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    color: #5d4037;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #d84315;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #5d4037;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: #d84315;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-contact .material-icons {
    font-size: 20px;
    color: #d84315;
    flex-shrink: 0;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(216, 67, 21, 0.1);
    border: 2px solid rgba(216, 67, 21, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d84315;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background: rgba(216, 67, 21, 0.2);
    border-color: #d84315;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(216, 67, 21, 0.3);
}

.social-icon .material-icons {
    font-size: 20px;
}

/* Footer Bottom */
.footer-bottom {
    background: transparent;
    padding: 20px 40px;
    text-align: center;
    color: #5d4037;
    border-top: 1px solid rgba(93, 64, 55, 0.2);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-stats {
        flex-direction: column;
        text-align: center;
    }

    .footer-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-temple-img {
        width: 200px;
        height: 130px;
    }

    .stats-badge {
        width: 80px;
        height: 80px;
    }
}