﻿
.footer-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.footer-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.footer-bg-svg {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;

}

.footer-bg-top {
    top: 0;
    z-index: 1;
}

.footer-bg-bottom {
    bottom: 0;
    z-index: 2;
}

.footer-section {
    position: relative;
    z-index: 3;
    padding: 70px 10px 10px; /* added more top & bottom space */
}


.max-w-7xl {
    max-width: 1280px;
    margin: 0 auto;
}

/* Main Grid Layout */
.footer-main-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* equal four columns */
    gap: 40px;
    align-items: start;
    margin-bottom: 20px;
    padding: 0px 30px 0px;
}


/* Logo Section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    margin-top:50px;

}

.footer-logo {
    width: 120px;
    height: auto;
}

/* Menu Section - Keeping original structure */
.footer-menu-section {
    display: flex;
    justify-content: center;
    align-items: center;
   
}

.footer-section-menu {
    width: 100%;
}
.footer-menu-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* adds space between items */
    list-style: none; /* optional – removes bullets */
    padding: 0;
    margin: 25px 0;
}

    .footer-section-menu li {
        margin: 0;
    }

.footer-section-menu a {
    color: #378663 !important; /* SoulSukh green */
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: color 0.3s ease;
}

        .footer-section-menu a:hover {
            color: #4f46e5 !important; /* text-indigo-600 */
        }

/* Contact Section */
.footer-contact-section {
    display: flex;
    flex-direction: column;
    margin-top:100px;
}

.contact-heading {
    color: #378663;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-email, .contact-person {
    color: #378663;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin: 0;
}

/* Email Section */
.footer-email-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 90px;
}

.footer-section-search1 {
    width: 100%;
}

.footer-section-search {
    width: 100%;
}

.input-group {
    display: flex;
    width: 100%;
}

/* Email Input Field */
.form-control {
    flex: 1;
    border: 1px solid #d1d5db;
    border-right: none;
    border-radius: 25px 0 0 25px; /* more rounded corners */
    padding: 0.6rem 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;

}

    .form-control:focus {
        border-color: #FEC107; /* matches the arrow color */
        box-shadow: 0 0 0 2px rgba(254, 193, 7, 0.25);
    }

/* Arrow Button */
.footer-btn {
    background: #FEC107; /* gold/yellow color */
    border: none;
    border-radius: 0 25px 25px 0; /* rounded corners on the right side */
    padding: 0 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .footer-btn:hover {
        background: #e0ad06; /* slightly darker on hover */
        transform: scale(1.05); /* subtle pop effect */
    }

    /* Arrow icon inside the button */
    .footer-btn img {
        width: 16px;
        height: 16px;
    }


/* Social Icons Tint */
.social-follow img,
.footer-logo-section ul li a img {
    filter: brightness(0) saturate(100%) invert(47%) sepia(14%) saturate(1223%) hue-rotate(99deg) brightness(90%) contrast(85%);
    transition: all 0.3s ease;
}

    /* On hover, make them darker green */
    .social-follow img:hover,
    .footer-logo-section ul li a img:hover {
        filter: brightness(0) saturate(100%) invert(32%) sepia(19%) saturate(1052%) hue-rotate(105deg) brightness(80%) contrast(90%);
    }

/* Copyright Section */
.footer-section-copy {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(55, 134, 99, 0.3);
}

    .footer-section-copy p {
        color: #378663;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        margin: 0;
    }
.app-download {
    text-align: left;
    margin-top: 1.5rem;
    white-space: nowrap;
}

    .app-download p {
        font-size: 1rem;
        color: #378663; /* 🔹 accent color for title */
        font-weight: 700;
        margin-bottom: .5rem;
    }
/* Disabled App Store Button */
.disabled-btn {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
}

/* Tooltip Styling */
.coming-soon-tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /*background: rgba(0, 0, 0, 0.7);*/ /* translucent dark background */
    color: #fff;
    background-color:black;
    font-size: 0.85rem;
    padding: 4px 18px;
    border-radius: 6px;
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    z-index: 10;
}


    /* Small triangle below tooltip */
    .coming-soon-tooltip::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 5px;
        border-style: solid;
        border-color: #000 transparent transparent transparent;
    }

/* Show tooltip on hover */
.disabled-btn:hover .coming-soon-tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}


.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: #fff;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: .9rem;
    font-weight: 500;
    text-decoration: none;
    transition: .2s;
    white-space: nowrap;
}


.app-btn:hover {
    transform: scale(1.05);
    background: #1a1a1a;
}

.app-icon {
    width: 22px;
    height: 22px;
    color: #fff;
}

.small-icon {
    width: 18px;
    height: 18px;
}
.footer-bottom-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #378663;
}

.footer-link {
    color: #378663;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-link:hover {
        color: #4f46e5; /* indigo hover */
    }

@media(max-width:640px) {
    .app-btn {
        font-size: .85rem;
        padding: 7px 12px;
    }

    .app-icon {
        width: 20px;
        height: 20px;
    }

    .small-icon {
        width: 16px;
        height: 16px;
    }
}

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

    .footer-menu-section {
        grid-column: 1 / -1;
        order: 3;
    }

    .footer-section-menu ul {
        justify-content: center;
    }
}

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

    .footer-menu-section {
        order: 2;
    }

    .footer-section-menu ul {
        justify-content: center;
        gap: 0.75rem 1.5rem;
    }

    .footer-logo-section {
        align-items: center;
        text-align: center;
    }

    .footer-contact-section {
        text-align: center;
    }

    .footer-email-section {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 60px 15px 15px;
    }

    .footer-section-menu ul {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}


