/* footer.css - Footer and CTA Styles */

/* Call to Action Section */
.cta-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-variant) 100%);
    padding: var(--space-6xl) var(--space-7xl);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-container {
    max-width: 1280px;
    width: 100%;
    padding: var(--space-6xl) 160px;
    border-radius: 44px;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6xl);
    text-align: center;
}

.cta-heading {
    color: var(--text-dark-gray);
    font-size: var(--fs-6xl);
    font-family: var(--font-heading);
    font-weight: var(--fw-semibold);
    line-height: 72.8px;
    margin: 0;
    max-width: 960px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Footer Section */
.footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-variant) 100%);
    padding: var(--space-5xl) var(--space-7xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3xl);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
}

.footer-logo {
    display: flex;
    align-items: center;
    max-width: 422px;
}

.footer-logo img {
    height: var(--space-4xl);
    width: auto;
}

.footer-links {
    display: flex;
    gap: var(--space-6xl);
    flex: 1;
    justify-content: flex-start;
    margin-left: var(--space-6xl);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.footer-right {
    align-items: flex-end;
    text-align: right;
    margin-left: auto;
}

.footer-title {
    color: white;
    font-size: var(--fs-base);
    font-family: var(--font-primary);
    font-weight: var(--fw-normal);
    line-height: 16px;
    margin: 0;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-link {
    color: var(--text-light-gray);
    font-size: 14.1px;
    font-family: var(--font-primary);
    font-weight: var(--fw-normal);
    line-height: 18.3px;
    text-decoration: none;
    transition: var(--transition-normal);
}

.footer-link:hover {
    color: var(--text-white);
}

.footer-contact {
    color: rgba(246, 134, 47, 0.6);
}

.footer-contact:hover {
    color: var(--secondary-orange);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footer-copyright {
    color: var(--text-light-gray);
    font-size: var(--fs-xs);
    font-family: var(--font-primary);
    font-weight: var(--fw-normal);
    line-height: 12px;
    text-align: center;
    margin: 0;
}