/* ===================================
   COMPACT FOOTER STYLES - PROFESSIONAL LAYOUT
   =================================== */

.footer {
    background-color: #B2ABEF;
    color: var(--color-near-black);
    position: relative;
    overflow: hidden;
}

/* Questions Bar - Full Width */
.footer-questions-bar {
    padding: 20px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 16px;
}

.questions-text {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.questions-links {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    word-spacing: 3px;
    text-align: right;
}

.questions-links a {
    color: var(--color-near-black);
    background-color: #b8e6b8;
    padding: 1px 2px;
    text-decoration-thickness: 1px;
    font-weight: 500;
    text-transform: uppercase; /* Ensure uppercase is applied to links */
}

/* Bottom Info Bar - Full Width with Social Icons */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--color-near-black);
}

.footer-social-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.footer-social-compact span {
    font-weight: 400;
}

.social-link-compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease;
}

.social-link-compact:hover {
    background-color: rgba(0, 0, 0, 0.15);
}

.social-link-compact svg {
    width: 18px;
    height: 18px;
    fill: var(--color-near-black);
}

.footer-copyright {
    text-align: center;
}

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

.footer-design a {
    color: var(--color-near-black);
    text-decoration: underline;
}

/* Large Footer Title - Separate Grid Section */
.footer-large-title {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    height: 160px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    padding: 0;
}


.large-title-text {
    font-family: var(--font-margest);
    font-size: clamp(70px, 11vw, 110px);
    font-weight: 800;
    line-height: 0.8;
    margin: 0;
    color: var(--color-near-black);
    opacity: 0;
    white-space: nowrap;
}

/* GULLAK - align to left edge */
.large-title-text:nth-child(1) {
    text-align: left;
    padding-left: 40px;
    transform: translateX(-100%);
}

/* STUDIOS - align to right edge */
.large-title-text:nth-child(2) {
    text-align: right;
    padding-right: 40px;
    transform: translateX(100%);
}

/* Animation triggered by intersection observer */
.footer-large-title.animate .large-title-text:nth-child(1) {
    animation: slideInFromLeft 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

.footer-large-title.animate .large-title-text:nth-child(2) {
    animation: slideInFromRight 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* WhatsApp Floating Button - Left Side */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;  /* Changed from right to left */
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: floatUp 0.6s ease-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-questions-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 15px 20px;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 15px 20px;
    }
    
    .footer-social-compact,
    .footer-copyright,
    .footer-design {
        text-align: center;
    }
    
    .large-title-text {
        font-size: clamp(50px, 10vw, 80px);
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .footer-large-title {
        height: 120px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}