/* Footer Styles */

.site-footer {
    margin-top: 5rem;
    padding-bottom: 3rem;
    position: relative;
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 2;
}

.footer-main-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

/* Contact Card */
.footer-contact-card {
    padding: 2.5rem;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
}

.footer-heading {
    text-align: center;
    font-family: var(--font-sf-pro);
    font-weight: var(--font-weight-bold);
    padding-bottom: 1rem;
    color: white;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-row {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
}

.text-group {
    margin-left: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.meta-label {
    font-family: var(--font-sf-pro);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-text {
    font-family: var(--font-sf-pro);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    text-decoration: none;
}

.main-text.link:hover {
    color: #a855f7;
}

.footer-separator {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.05);
}

.footer-section-heading {
    text-align: center;
    font-family: var(--font-sf-pro);
    font-weight: var(--font-weight-bold);
    color: white;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-company-data {
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1.2rem;
    background: rgba(255,255,255,0.01);
}

.company-data-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.data-value {
    font-family: monospace;
    color: white;
    font-size: 0.85rem;
}

/* FAQ Card */
.footer-faq-card {
    padding: 2.5rem;
    pointer-events: auto;
    position: relative;
}

.footer-faq-heading {
    margin-bottom: 2.5rem;
    font-family: var(--font-sf-pro);
    font-weight: var(--font-weight-bold);
    color: white;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-question {
    font-family: var(--font-sf-pro);
    font-weight: 700;
    color: white;
    font-size: 1.05rem;
}

.faq-answer {
    font-family: var(--font-sf-pro);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    text-decoration: none;
}

.highlight-white {
    color: #fff;
}

/* Branding Card */
.footer-branding-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    pointer-events: auto;
    position: relative;
    z-index: 5;
}

.footer-logo-img {
    width: 14rem;
    height: auto;
    opacity: 0.9;
}

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

.social-btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-sf-pro);
    font-weight: 800;
    font-size: 0.75rem;
    transition: 0.3s;
    text-decoration: none;
}

.social-btn:hover {
    background: #a855f7;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.copyright-text {
    opacity: 0.5;
}

.credits-highlight {
    color: white;
    font-weight: 600;
}

/* Icons */
.icon-box {
    position: absolute;
    left: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.icon-box.purple {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: #a855f7;
}

.icon-box.blue {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: #2563eb;
}

/* Responsive */
@media (min-width: 992px) {
    .footer-main-grid {
        grid-template-columns: 1fr 2fr !important;
    }
}
