/* Footer Styles */
.trust-footer {
    background: #7B2C2C;
    color: #FFFFFF;
    padding: 56px 0 28px;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.trust-footer h5 {
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.trust-footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #F28C28;
    /* Saffron */
}

.footer-section {
    margin-bottom: 30px;
}

/* Footer Logo */
.footer-logo-img {
    max-width: 120px;
    height: auto;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-contact-info p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

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

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

.footer-links a {
    color: #F0F0F0;
    text-decoration: none;
    transition: color 0.2s ease, padding 0.2s ease;
    font-size: 0.95rem;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #F28C28;
    text-decoration: none;
    padding-left: 5px;
}

/* Newsletter Form */
.footer-newsletter-form {
    margin-top: 15px;
}

.footer-newsletter-form .form-control {
    border: none;
    border-radius: 30px 0 0 30px;
    padding: 10px 15px;
    font-size: 0.9rem;
}

.footer-newsletter-form .btn-subscribe {
    background-color: #F28C28;
    /* Saffron */
    color: #7B2C2C;
    /* Dark maroon */
    border: none;
    border-radius: 0 30px 30px 0;
    font-weight: 600;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.footer-newsletter-form .btn-subscribe:hover {
    background-color: #FFFFFF;
    color: #7B2C2C;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-block;
    color: #F28C28;
    font-size: 20px;
    margin-right: 15px;
    margin-bottom: 10px;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: #FFFFFF;
    background-color: #F28C28;
    transform: translateY(-2px);
}

/* Footer Middle Section */
.footer-middle-section {
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Stats */
.footer-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #F28C28;
    /* Saffron */
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Footer Bottom Section */
.footer-bottom-section {
    margin-top: 30px;
}

.copyright-text {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.registration-info {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 0;
}

.legal-links {
    margin-top: 10px;
}

.legal-links a {
    color: #E0E0E0;
    text-decoration: none;
    margin: 0 10px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.legal-links a:hover {
    color: #F28C28;
    /* Saffron */
    text-decoration: underline;
}

.developer-credit {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
}

.developer-credit a {
    color: #F28C28;
    /* Saffron */
    text-decoration: none;
    transition: all 0.3s ease;
}

.developer-credit a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Divider */
.footer-divider {
    height: 1px;
    background-color: #F28C28;
    /* Saffron */
    margin: 30px 0;
    opacity: 0.3;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #F28C28;
    /* Saffron */
    color: #7B2C2C;
    /* Dark maroon */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background-color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:focus {
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}

.scroll-to-top.show {
    display: flex;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .trust-footer {
        padding: 50px 0 25px;
    }

    .footer-middle-section {
        margin: 30px 0;
        padding: 20px 0;
    }

    .stat-item {
        min-width: 70px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .social-links a {
        font-size: 18px;
        width: 35px;
        height: 35px;
        margin-right: 12px;
    }
}

@media (max-width: 768px) {
    .trust-footer {
        padding: 40px 0 20px;
    }

    .footer-section {
        margin-bottom: 25px;
    }

    .trust-footer h5 {
        margin-bottom: 15px;
        text-align: center;
    }

    .trust-footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-description,
    .footer-contact-info {
        text-align: center;
    }

    .social-links {
        display: flex;
        justify-content: center;
    }

    .footer-stats {
        justify-content: center;
    }

    .stat-item {
        min-width: 60px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .legal-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .legal-links a {
        margin: 5px 8px;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .trust-footer {
        padding: 30px 0 15px;
    }

    .footer-section {
        margin-bottom: 20px;
        text-align: center;
    }

    .footer-logo-img {
        max-width: 100px;
        margin: 0 auto;
    }

    .footer-newsletter-form .input-group {
        flex-direction: column;
    }

    .footer-newsletter-form .form-control {
        border-radius: 30px;
        margin-bottom: 10px;
    }

    .footer-newsletter-form .btn-subscribe {
        border-radius: 30px;
        width: 100%;
    }

    .footer-stats {
        gap: 15px;
    }

    .stat-item {
        min-width: 50px;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .copyright-text,
    .registration-info {
        text-align: center;
    }

    .legal-links a {
        margin: 5px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-float:focus {
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 75px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 22px;
        bottom: 70px;
        right: 15px;
    }
}