/* =========================================================================
   QUICK CONTACT BANNER COMPONENT (template-parts/banner-quick-contact.php)
   Architecture: BEM Scoped & GPU-Accelerated Micro-Interactions
   ========================================================================= */

.quick-contact-banner {
    background-color: var(--fogya-orange, #f16b4e);
    padding: 32px 0;
    width: 100% !important;
    box-sizing: border-box;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.quick-contact-container {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.quick-contact-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* TIPOGRAFİ STACK */
.quick-contact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.quick-contact-seo-meta {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.quick-contact-heading {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.quick-contact-tagline {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* AKSİYON GRUBU */
.quick-contact-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
}

.quick-contact-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 20px;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.quick-contact-phone:hover {
    transform: scale(1.03);
}

/* Mikro-Etkileşim Animasyonu */
.quick-contact-wobble-icon {
    font-size: 20px;
    animation: quickContactWobble 2.5s ease-in-out infinite;
}

.quick-contact-btn {
    display: inline-block;
    padding: 12px 28px;
    border: 1.5px solid #ffffff;
    background-color: transparent;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.quick-contact-btn:hover {
    background-color: #ffffff;
    color: var(--fogya-orange, #f16b4e) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* GPU Katmanında Pürüzsüz Animasyon */
@keyframes quickContactWobble {
    0%, 100% { transform: rotate(0deg); }
    90% { transform: rotate(0deg); }
    93% { transform: rotate(-12deg); }
    96% { transform: rotate(12deg); }
    98% { transform: rotate(-6deg); }
}

/* RESPONSIVE ADAPTATION */
@media (max-width: 991px) {
    .quick-contact-banner {
        padding: 20px 0 !important; 
    }
    
    .quick-contact-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .quick-contact-content {
        align-items: center;
        gap: 4px;
    }
    
    .quick-contact-actions {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .quick-contact-heading {
        font-size: 20px;
    }
    
    .quick-contact-phone {
        justify-content: center;
        font-size: 18px;
    }

    .quick-contact-btn {
        width: 100%;
        max-width: 280px;
        padding: 10px 24px;
        text-align: center;
        box-sizing: border-box;
    }
}