/* Global Footer Styles */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand h3 {
    margin-bottom: 1rem;
    color: var(--yellow);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand h3::before {
    content: '✈';
    font-size: 1.8rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 193, 7, 0.3);
}

.footer-links h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--yellow);
    border-radius: 2px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    margin-left: -0.75rem;
    width: calc(100% + 1.5rem);
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--yellow);
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--yellow);
    background: rgba(255, 193, 7, 0.1);
    padding-left: 1.25rem;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-social-section h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.footer-social a:hover::before {
    width: 300px;
    height: 300px;
}

.footer-social a:hover {
    background: var(--yellow);
    color: var(--dark-blue);
    transform: translateY(-8px) scale(1.1);
    border-color: var(--yellow);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.footer-social a:active {
    transform: translateY(-4px) scale(1.05);
}

/* Individual social button colors */
.footer-social a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.footer-social a[aria-label="YouTube"]:hover {
    background: #FF0000;
    color: var(--white);
}

.footer-social a[aria-label="Facebook"]:hover {
    background: #1877F2;
    color: var(--white);
}

.footer-social a[aria-label="Twitter"]:hover {
    background: #000000;
    color: var(--white);
}

.footer-social a[aria-label="LinkedIn"]:hover {
    background: #0077B5;
    color: var(--white);
}

.footer-social a[aria-label="Email"]:hover {
    background: var(--yellow);
    color: var(--dark-blue);
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-legal h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 193, 7, 0.3);
}

.footer-legal h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--yellow);
    border-radius: 2px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    margin-left: -0.75rem;
    width: calc(100% + 1.5rem);
}

.footer-legal a::before {
    content: '•';
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    color: var(--yellow);
    font-size: 1.2rem;
    margin-right: 0.25rem;
}

.footer-legal a:hover {
    color: var(--yellow);
    background: rgba(255, 193, 7, 0.1);
    padding-left: 1.25rem;
    transform: translateX(5px);
}

.footer-legal a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    position: relative;
    display: inline-block;
    margin: 0 0.25rem;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-bottom a:hover {
    color: var(--yellow);
    background: rgba(255, 193, 7, 0.1);
}

.footer-bottom a:hover::after {
    width: 80%;
}

/* CTA Banner Component */
.cta-banner {
    background: var(--dark-blue);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-banner-content {
    position: relative;
    z-index: 1;
}

.cta-banner-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-banner-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-banner-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-banner-primary {
    background: var(--yellow);
    color: var(--dark-blue);
    padding: 3rem 2rem;
}

.cta-banner-secondary {
    background: var(--light-gray);
    color: var(--text-dark);
    padding: 3rem 2rem;
}

.cta-banner-secondary .cta-banner-title {
    color: var(--text-dark);
}

.cta-banner-secondary .cta-banner-subtitle {
    color: var(--text-light);
}

/* Section Heading Component */
.section-heading-wrapper {
    text-align: center;
    margin-bottom: 4rem;
}

.section-heading-main {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-heading-main::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--yellow);
}

.section-heading-main.light {
    color: var(--white);
}

.section-heading-main.light::after {
    background: var(--yellow);
}

.section-heading-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    line-height: 1.8;
}

.section-heading-subtitle.light {
    color: rgba(255, 255, 255, 0.9);
}

/* Button Variants */
.btn-outline {
    background: transparent;
    border: 2px solid var(--yellow);
    color: var(--yellow);
}

.btn-outline:hover {
    background: var(--yellow);
    color: var(--dark-blue);
}

.btn-dark {
    background: var(--dark-blue);
    color: var(--white);
}

.btn-dark:hover {
    background: #0f1a2d;
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--dark-blue);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links,
    .footer-legal {
        align-items: center;
    }

    .footer-links a,
    .footer-legal a {
        justify-content: center;
        margin-left: 0;
        width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-social a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .footer-links h4,
    .footer-legal h4 {
        justify-content: center;
        border-bottom: 2px solid rgba(255, 193, 7, 0.3);
    }

    .footer-links h4::before,
    .footer-legal h4::before {
        display: none;
    }

    .footer-brand h3 {
        justify-content: center;
    }

    .footer-brand h3::before {
        animation: none;
    }

    .cta-banner-title {
        font-size: 2rem;
    }

    .cta-banner-subtitle {
        font-size: 1.1rem;
    }

    .cta-banner-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-banner-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-heading-main {
        font-size: 2rem;
    }

    .section-heading-subtitle {
        font-size: 1.1rem;
    }
}
