/* =========================================
   Footer Styles
   ========================================= */

footer {
    background: #ffffff;
    color: #000000;
    padding: 60px 0 30px 0;
}

/* Footer CTA Section - Full Width */
.footer-cta-section {
    background: var(--primary-orange);
    width: 100%;
    padding: 70px 0;
    margin: 0;
}

.footer-cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer-cta-content h3 {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.footer-cta-content p {
    font-size: 1.2em;
    color: var(--white);
    margin-bottom: 40px;
    opacity: 0.95;
}

.footer-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
}

.footer-cta-primary,
.footer-cta-secondary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 40px;
    font-size: 1.15em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 280px;
    text-align: center;
    position: relative;
}

.cta-button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.cta-main-text {
    display: inline-block;
}

.footer-cta-primary {
    background: var(--white);
    color: var(--primary-orange);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-cta-primary:hover {
    background: #f8f8f8;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: var(--primary-orange);
}

.footer-cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-cta-secondary:hover {
    background: var(--white);
    color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--white);
}

.cta-subtext {
    display: block;
    font-size: 0.85em;
    font-weight: 400;
    margin-top: 6px;
    opacity: 0.9;
}

.footer-cta-primary .cta-subtext {
    color: rgba(155, 35, 53, 0.8);
}

.footer-cta-primary:hover .cta-subtext {
    color: rgba(155, 35, 53, 0.9);
}

.footer-cta-secondary .cta-subtext {
    color: rgba(255, 255, 255, 0.9);
}

.footer-cta-secondary:hover .cta-subtext {
    color: rgba(155, 35, 53, 0.9);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding-top: 20px;
}

.footer-section h4 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.25);
    color: #ffffff;
    opacity: 0.8;
}

.footer-logo {
    height: 40px;
    width: auto;
    max-width: 180px;
    margin-bottom: 10px;
}

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

.footer-contact a {
    color: #ffffff;
    transition: opacity 0.3s;
}

.footer-contact a:hover {
    opacity: 1 !important;
    color: #ffffff;
}

.footer-contact span {
    color: #ffffff;
}

.footer-contact .fa-icon {
    fill: currentColor;
    opacity: 0.8;
}

/* Responsive Footer Styles */
@media (max-width: 768px) {
    .footer-cta-section {
        padding: 50px 0;
    }
    
    .footer-cta-section .container {
        padding: 0 20px;
    }
    
    .footer-cta-content h3 {
        font-size: 1.8em;
    }
    
    .footer-cta-content p {
        font-size: 1.1em;
    }
    
    .footer-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .footer-cta-primary,
    .footer-cta-secondary {
        min-width: 100%;
        width: 100%;
    }
    
    .footer-logo {
        height: 35px;
        max-width: 150px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    footer {
        padding: 40px 0 30px 0;
    }
    
    .footer-content {
        padding-top: 20px;
    }
}

/* -------------------------------------------------- */

footer {
    background-image: url(../images/footer/Footer.webp);
    color: #ffffff;
    padding: 60px 0 30px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}