* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000000;
    color: #ffffff;
}

/* Demo content to show footer in context */
.demo-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.demo-content h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.demo-content p {
    font-size: 1.2rem;
    color: #aaaaaa;
}

/* FOOTER STYLES */
.footer {
    background: #000000;
    border-top: 2px solid #333333;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* Footer Sections */
.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #aaaaaa;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

/* Contact Info */
.contact-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item span {
    font-size: 1.1rem;
}

.contact-item a {
    font-weight: 600;
}

/* Quick Links */
.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 0.8rem;
}

.quick-links a {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.quick-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #222222;
    border: 1px solid #444444;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.social-link:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}

/* Marco Quote */
.footer-quote {
    background: #111111;
    padding: 2rem;
    border: 1px solid #333333;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.footer-quote::before {
    content: '"';
    font-size: 4rem;
    color: #333333;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: Georgia, serif;
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.quote-author {
    font-size: 1rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* CTA Section */
.footer-cta {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-cta h3 {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.footer-cta p {
    color: #aaaaaa;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.footer-btn {
    background: #ffffff;
    color: #000000;
    padding: 1.2rem 3rem;
    border: none;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border-radius: 0;
}

.footer-btn:hover {
    background: #cccccc;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-bottom-left {
    text-align: left;
}

.footer-bottom-right {
    text-align: right;
}

.footer-bottom p {
    color: #666666;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #888888;
    text-decoration: none;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .quick-links a:hover {
        padding-left: 0;
    }
}

/* Animations */
.footer-section {
    transition: all 0.3s ease;
}

.footer-section:hover {
    transform: translateY(-2px);
}