/*
 * ══════════════════════════════════════════════════════════
 *   FINDINGUNI — SYNTARA TECHNOLOGIES BRANDING
 *   Developed & maintained by Syntara Technologies Pvt Ltd
 *   https://syntaratechnologies.com
 * ══════════════════════════════════════════════════════════
 */

/* ============================================
   ICONIC FOOTER STYLES
   Copy this CSS into your stylesheet
   ============================================ */

/* Footer Styles */
footer {
    position: relative;
    /* overflow: hidden; */
    font-family: 'Open Sans', sans-serif;
    background: #000000;
}


/* Decorative accent elements */
.footer-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    background: transparent;
    z-index: 2;
}

.footer-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    background: transparent;
    z-index: 2;
}

/* Back to Top Button Container */
.back-to-top-container {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.back-to-top {
    background: var(--orange);
    color: #ffffff;
    border: 2px solid var(--orange);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-5px);
    border-color: var(--orange2);
    background: var(--orange2);
}

.back-to-top svg {
   width: 1.5rem;
    height: 1.5rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Footer Content */
.footer-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Brand Section */
.brand-section {
    grid-column: span 1;
}

.brand-logo,
.fooer-brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fooer-logo-image {
    display: block;
    width: min(180px, 100%);
    height: auto;
    max-height: 72px;
    object-fit: contain;
    object-position: left center;
}

.fooer-logo-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fooer-logo-icon svg {
    width: 2rem;
    height: 2rem;
    fill: white;
}

.fooer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fooer-brand-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Column Headings */
.footer-column h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9375rem;
    display: inline-block;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.footer-link:hover::after {
    width: 0;
}

/* Social & Newsletter Section */
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 2rem 0 0 0;
}

.social-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1rem 0 1.5rem;
}

.social-section {
    text-align: left;
}

.social-section h4 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.1);
}

.social-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

/* Newsletter */
.newsletter-section h4 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: right;
}

.newsletter-form {
    display: flex;
    max-width: 28rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem 0 0 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    border-color: rgba(255, 255, 255, 0.6);
}

.newsletter-button {
    padding: 0.75rem 1.5rem;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 0 0.5rem 0.5rem 0;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-button:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Bottom Bar */
.bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: white;
}

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

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

    .social-newsletter {
        flex-direction: column;
        text-align: center;
    }

    .social-section,
    .newsletter-section {
        width: 100%;
    }

    .newsletter-section h4 {
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
    }

    .bottom-bar {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 3rem 1rem;
    }

    .back-to-top {
        width: 4rem;
        height: 4rem;
    }

    .back-to-top svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        border-radius: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .newsletter-button {
        border-radius: 0.5rem;
        width: 100%;
    }
}
