/* Footer Call to Action */
.footer-cta {
    background-color: #FFE8E0;
    padding: 60px 0;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-text h2 {
    font-size: 36px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0;
}

.bell-icon {
    width: 40px;
    height: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: #FF5C00;
    color: white;
    padding: 14px 32px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline {
    background: white;
    color: #1A1A1A;
    padding: 14px 32px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Main Footer */
.main-footer {
    background-color: #FFFFFF;
    padding: 80px 0;
    border-top: 1px solid #E8E8E8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 60px;
}

.footer-brand {
    position: relative;
    padding-bottom: 30px;
}

.footer-brand h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.footer-brand h5 {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
.footer-brand h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #FF5C00;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A1A1A;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.social-links a:hover {
    background: #FF5C00;
    color: white;
    transform: translateY(-3px);
}

.social-links a:hover::before {
    left: 100%;
}


.social-links i {
    font-size: 18px;
    position: relative;
    z-index: 2;
}
.footer-contact h4,
.footer-links h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 24px;
}

.footer-contact p,
.footer-contact a {
    color: #666666;
    margin-bottom: 12px;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #FF5C00;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF5C00;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        text-align: center;
        padding-bottom: 20px;
    }

    .footer-brand h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }
}

/* Tablet & Mobile Responsive */
@media (max-width: 768px) {
    /* Footer CTA Section */
    .footer-cta {
        padding: 40px 0;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .cta-text {
        justify-content: center;
        flex-direction: column;
    }

    .cta-text h2 {
        margin-bottom: 15px;
        font-size: 30px;
    }

    .bell-icon {
        width: 35px;
        margin-bottom: 10px;
    }

    .cta-buttons {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 12px;
    }

    .btn-primary,
    .btn-outline {
        padding: 12px 24px;
        font-size: 15px;
        text-align: center;
        display: block;
        width: 100%;
    }

    /* Footer Grid Layout */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 0 20px;
    }

    .footer-brand,
    .footer-contact,
    .footer-links {
        text-align: center;
        padding: 0 15px;
    }

    .footer-contact {
        border-top: 1px solid #eee;
        padding-top: 35px;
    }

    .footer-links {
        border-top: 1px solid #eee;
        padding-top: 35px;
    }

    .footer-contact p,
    .footer-contact a,
    .footer-links ul {
        max-width: 280px;
        margin: 0 auto;
    }

    .footer-links ul li {
        margin-bottom: 15px;
    }

    .footer-links a {
        display: inline-block;
        padding: 5px 0;
    }

    .social-links {
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }

    .social-links a {
        width: 45px;
        height: 45px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .footer-cta {
        padding: 30px 0;
    }

    .cta-content {
        gap: 20px;
    }

    .cta-text h2 {
        font-size: 26px;
    }

    .bell-icon {
        width: 30px;
    }

    .btn-primary,
    .btn-outline {
        padding: 10px 20px;
        font-size: 14px;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-brand h3 {
        font-size: 24px;
    }

    .footer-contact h4,
    .footer-links h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-contact p,
    .footer-contact a,
    .footer-links a {
        font-size: 14px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }
}