/* ============================================
   INDITAP HOMEPAGE FIXES
   - Floating Action Buttons (Desktop: Email + Get Card, Mobile: WhatsApp + Phone + Get Card)
   - FAQ Accordion Plus Signs
   ============================================ */
/* Floating action buttons - DISABLED */
.floating-action-buttons,
.fabs {
    display: none !important;
}
/* ============================================
   FAQ ACCORDION STYLING
   ============================================ */
.faq-section {
    background: #f0fdf4;
    padding: 80px 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 40px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0;
    padding-right: 20px;
    flex: 1;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-toggle svg {
    width: 20px;
    height: 20px;
    color: white;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: #059669;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    color: #374151;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Mobile FAQ Adjustments */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 15px;
    }
    
    .faq-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 16px 18px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 15px;
    }
    
    .faq-toggle {
        width: 28px;
        height: 28px;
    }
    
    .faq-toggle svg {
        width: 18px;
        height: 18px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 18px 16px 18px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
}

/* ============================================
   ADDITIONAL POLISH
   ============================================ */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Remove default focus outline and add custom one */
.floating-action-buttons a:focus,
.faq-question:focus {
    outline: 3px solid #10b981;
    outline-offset: 2px;
}

/* Accessibility: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
