:root {
    --deep-blue: #0f2554;
    --ocean-teal: #00b4d8;
    --sunset-orange: #ff6b35;
    --warm-coral: #f77f00;
    --soft-white: #fefefe;
    --light-bg: #f8f9fc;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
}

/* COMPLETELY DIFFERENT FOOTER STRUCTURE */
footer {
    background: var(--deep-blue);
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ocean-teal), var(--sunset-orange), var(--warm-coral));
}

/* CTA Section ABOVE footer content */
.footer-cta {
    background: linear-gradient(135deg, var(--ocean-teal) 0%, var(--deep-blue) 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0.75rem;
}

.cta-input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-family: 'Poppins', sans-serif;
}

.cta-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--sunset-orange), var(--warm-coral));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Footer Main - HORIZONTAL LAYOUT */
.footer-main {
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.875rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--ocean-teal);
    transform: translateY(-3px);
}

.footer-section h4 {
    color: white;
    font-weight: 600;
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transition: opacity 0.3s;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Footer Bottom - CENTERED */
.footer-bottom {
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: white;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-cta {
        padding: 3rem 1rem;
    }

    .cta-form {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

    .footer-main {
        padding: 3rem 1rem 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
}
.cta-section {
    background: linear-gradient(135deg, var(--ocean-teal) 0%, var(--deep-blue) 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button-primary {
    background: linear-gradient(135deg, var(--sunset-orange), var(--warm-coral));
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.cta-button-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}
