/* New Footer & CTA Section */

/* CTA Section */
.cta-section {
    background-color: #050a08;
    /* Very dark green/black from image */
    padding: 100px 0;
    text-align: center;
    color: #fff;
    position: relative;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
}

.cta-title {
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
    /* Reduced line spacing */
}

.cta-desc {
    color: #888;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--secondary-color);
    /* Purple background */
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    background-color: var(--secondary-color);
    /* Brand Purple on hover */
    transform: translateY(-3px);
}

.cta-arrow {
    font-size: 1.2rem;
    transform: rotate(-45deg);
}

/* Main Footer */
.footer-main {
    background-color: #050a08;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    margin-bottom: 20px;
    /* Slight gap from very bottom */
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 80px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
}

.footer-about-text {
    color: #888;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-extra-logos {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-extra-logos img {
    height: 60px;
    /* Increased from 40px */
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s;
}

.footer-extra-logos img:last-child {
    height: 90px;
    /* Increased from 60px */
}

.footer-extra-logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

/* Contact Info Column */
.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    color: #888;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 5px;
}

/* Socials */
.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #1e3a2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.1rem;
}

.social-icon.linkedin {
    background-color: #0077b5;
    /* LinkedIn Brand Blue */
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.social-icon.linkedin:hover {
    background-color: #0084c9;
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .cta-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cta-title {
        font-size: 2.5rem;
    }
}