/* Footer CSS */
.main-footer {
    position: relative;
    background: linear-gradient(135deg, #2c0a0a 0%, #4a1515 100%);
    color: var(--white);
    padding: 80px 0 0;
    margin-top: auto;
    overflow: hidden;
    border-top: 5px solid var(--primary-saffron);
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 153, 51, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Decorative Elements */
.footer-decorative {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-float-icon {
    position: absolute;
    opacity: 0.1;
    animation: floatFooter 10s infinite ease-in-out;
}

.footer-float-icon.footer-om {
    font-size: 8rem;
    top: 10%;
    right: 5%;
    color: var(--primary-saffron);
}

.footer-float-icon.footer-diya {
    font-size: 6rem;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.footer-float-icon.footer-flower {
    font-size: 4rem;
    top: 40%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes floatFooter {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.main-footer .container {
    position: relative;
    z-index: 2;
}

.footer-content.footer-bento-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    margin-bottom: 60px;
}

/* Bento Card Common Styles */
.footer-bento-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.footer-bento-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: rgba(255, 153, 51, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-bento-card h3 {
    color: var(--primary-saffron);
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-bento-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-saffron);
}

/* Brand Card */
.footer-brand-card {
    grid-column: 1;
    grid-row: 1;
}

.footer-trust-badges {
    display: flex;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-trust-badges span {
    font-size: 0.85rem;
    color: var(--primary-saffron);
    background: rgba(255, 153, 51, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
}

/* Links Card */
.footer-links-card {
    grid-column: 2;
    grid-row: 1;
}

/* Contact Card */
.footer-contact-card {
    grid-column: 1 / -1;
    grid-row: 2;
}

.footer-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info-grid li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 153, 51, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    color: var(--primary-saffron);
}

.footer-info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-info-text .footer-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-info-text span,
.footer-info-text a {
    color: var(--white);
    font-size: 0.95rem;
    text-decoration: none;
    line-height: 1.4;
}

.footer-info-text a:hover {
    color: var(--primary-saffron);
}

/* Brand Section Styles */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

/* Logo Image Styles */
.footer-logo-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-saffron);
    box-shadow: 0 0 15px rgba(255, 153, 51, 0.3);
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 153, 51, 0.5);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.footer-logo .footer-tagline {
    font-family: 'Tiro Devanagari Hindi', serif;
    font-size: 0.9rem;
    color: var(--primary-saffron);
    display: block;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Links Styles */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-links a span {
    color: var(--primary-saffron);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links a:hover span {
    transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-made-with .footer-heart {
    color: #ff4d4d;
    animation: heartbeat 1.5s infinite;
    display: inline-block;
}

.footer-made-with .footer-bhakti {
    display: inline-block;
}

.footer-psp {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-psp a {
    color: var(--primary-saffron);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-psp a:hover {
    color: var(--white);
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .footer-contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content.footer-bento-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand-card,
    .footer-links-card,
    .footer-contact-card {
        grid-column: 1;
        grid-row: auto;
    }

    .footer-contact-info-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Responsive logo size */
    .footer-logo-img {
        width: 60px;
        height: 60px;
    }

    .footer-logo h2 {
        font-size: 1rem;
    }

    .footer-logo .footer-tagline {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer-logo-img {
        width: 50px;
        height: 50px;
    }
}