/* Footer Main */
.footer-main {
    background: #1d1d1f;
    min-height: 50vh;
    color: #f5f5f7;
    display: flex;
    align-items: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px 40px;
    width: 100%;
}

/* Footer Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: 3fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 60px;
}

/* Company Section */
.footer-company {
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 100px;
    height: 86px;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
}

.footer-description {
    color: #a1a1a6;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Navigation Links */
.footer-section h3 {
    color: #f5f5f7;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: #a1a1a6;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
    display: block;
    padding: 4px 0;
}

.footer-links a:hover {
    color: #d8aa2b;
}

/* Contact Information */
.footer-contact h3 {
    margin-bottom: 32px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    color: #d8aa2b;
    font-size: 1.1rem;
    margin-top: 2px;
    width: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #f5f5f7;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-details p {
    color: #a1a1a6;
    font-size: 0.95rem;
    margin: 0;
}

.contact-details a {
    color: #a1a1a6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-details a:hover {
    color: #d8aa2b;
}

/* Social Media */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(216, 170, 43, .2);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #2d2d30;
    border-radius: 50%;
    color: #a1a1a6;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #d8aa2b;
    color: #1d1d1f;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
}

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

.footer-copyright {
    color: #86868b;
    font-size: 0.9rem;
}

.footer-copyright a {
    color: #d8aa2b;
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #d8aa2b;
    color: #1d1d1f;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(216, 170, 43, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #c49726;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(216, 170, 43, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .footer-company {
        grid-column: 1 / -1;
        max-width: none;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 60px 20px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        justify-content: center;
        gap: 40px;
        margin-bottom: 40px;
        text-align: center;
    }

    .footer-company {
        grid-column: auto;
        margin-bottom: 0;
    }

    .footer-social {
        gap: 20px;
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .contact-info {
        align-items: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
    }

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

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 40px 15px 20px;
    }

    .footer-description {
        font-size: 1rem;
    }

    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

