/* Footer - Exact Screenshot Layout */
footer {
    background: #0a0a0a;
    min-height: 100vh; /* Full viewport height like in screenshot */
    display: flex;
    flex-direction: column;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 80px 50px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Top Section */
.footer-top {
    flex: 0;
}

.footer-top h2 {
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #e0e0e0 10%,
        #cccccc 20%,
        #b3b3b3 30%,
        #999999 40%,
        #808080 50%,
        #999999 60%,
        #b3b3b3 70%,
        #cccccc 80%,
        #e0e0e0 90%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-top h2 .highlight-orange {
    background: linear-gradient(
        180deg,
        #FF7107 0%,
        #FF8C42 20%,
        #FF7107 40%,
        #FF5500 50%,
        #FF7107 60%,
        #FF8C42 80%,
        #FF7107 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-contact h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 10px 0;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    display: block;
}

.footer-buttons {
    display: flex;
    gap: 20px;
}

.ctafooter-button {
    padding: 12px 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.ctafooter-button:hover {
    background: #FF7107;
    border-color: #FF7107;
}

.footer-legal {
    display: flex;
    gap: 40px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #FF7107;
}

.footer-bottom-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: right;
}

.footer-bottom-right a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: #FF7107;
}

/* Responsive */
@media (max-width: 768px) {
    footer {
        min-height: auto;
    }
    
    .footer-container {
        padding: 60px 30px;
    }
    
    .footer-top h2 {
        font-size: 42px;
        margin-bottom: 60px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }
    
    .footer-bottom-right {
        text-align: left;
    }
}