@import url('variables.css');
@import url('flexbox.css');
@import url('styles.css');

/* Aeonik Font */
@font-face {
    font-family: 'Aeonik';
    src: url('../fonts/Aeonik-Regular.woff2') format('woff2'),
         url('../fonts/Aeonik-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Aeonik';
    src: url('../fonts/Aeonik-Medium.woff2') format('woff2'),
         url('../fonts/Aeonik-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Aeonik';
    src: url('../fonts/Aeonik-Bold.woff2') format('woff2'),
         url('../fonts/Aeonik-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* Satoshi Font */
@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Regular.woff2') format('woff2'),
         url('../fonts/Satoshi-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Medium.woff2') format('woff2'),
         url('../fonts/Satoshi-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Bold.woff2') format('woff2'),
         url('../fonts/Satoshi-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* ==================================
            FAQ - ENHANCED
===================================== */

/* Header Styles */
.faq-header-main {
    width: 70%;
    display: flex;
    justify-content: center;
}

.faq-header-content {
    padding: 34px 16px 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.faq-title {
    font-family: 'Aeonik', sans-serif;
    white-space: nowrap;
    text-align: center;
    margin: 0 auto 16px auto;
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
}

.faq-subtitle {
    font-family: 'Satoshi', sans-serif;
    margin: 0 auto 24px auto;
    font-size: 1.2rem;
    color: black;
    line-height: 1.6;
    max-width: 600px;
}

/* FAQ Badges */
.faq-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f0f9ff;
    border: 1px solid #0384C7;
    border-radius: 20px;
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0384C7;
}

.faq-badge-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .faq-badge-icon img {
        width: 17px;
        height: auto;
        display: block;
    }


/* Main Content Layout */
.body {
    margin-top: 20px;
    font-family: 'Satoshi', sans-serif;
    color: #1e293b;
    display: flex;
    justify-content: center;
    padding: 60px 20px 0 20px;
    min-height: calc(100vh - 200px);
}

.faq-container {
    max-width: 1200px;
    width: 100%;
    position: relative;
    margin-bottom: 80px;
}

/* Hero Section */
.faq-hero-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    margin-bottom: 80px;
    background: linear-gradient(135deg, #fff3d1 0%, #ffe9a8 100%);
    padding: 30px 60px 20px 60px;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.17), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.faq-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 90%;
}

.faq-hero-title {
    font-family: 'Aeonik', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #212b38;
    margin: 0;
    line-height: 1.2;
}

.faq-hero-description {
    font-size: 1.1rem;
    color: black;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

.faq-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.faq-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fffae3; 
    border-radius: 12px;
    padding: 20px 24px;
    min-width: 100px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .faq-stat:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }


.faq-stat-number {
    font-family: 'Aeonik', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #212b38;
    margin-bottom: 4px;
}

.faq-stat-label {
    font-size: 0.9rem;
    color: #737373;
    font-weight: 500;
}

.faq-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 300px;
}

.faq-hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* FAQ Categories */
.faq-categories-section {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 80px;
}

.faq-tab span {
    font-family: 'Aeonik', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: black;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.faq-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

    .faq-item.active {
        box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3), 0 4px 6px -2px rgba(37, 99, 235, 0.2);
    }

.faq-tabs {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    position: relative;
    margin-bottom: 0;
}
.faq-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: #33A2DA;
    color: #0f172a;
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    cursor: pointer;
    position: relative;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.05);
    transition: padding 0.6s cubic-bezier(0.4, 0, 0.2, 1), font-size 0.6s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, color 0.3s ease;
}

    .faq-tab:hover {
        background: #2e96c9;
    }

    .faq-tab.active {
        background: #DDF3FF;
        color: #1e3a8a;
        font-weight: 600;
        padding-top: 20px;
        padding-bottom: 20px;
        font-size: 1.1rem;
        z-index: 2;
    }

.faq-tab-icon {
    background: #FBC840;
    border-radius: 50%;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

    .faq-tab-icon svg {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }

.faq-tab .faq-tab-icon {
    display: none;
}

.faq-tab.active .faq-tab-icon {
    display: flex;
}

.faq-tab:not(.active) span {
    color: white;
}

.faq-tab.active .faq-tab-icon svg {
    fill: black;
}

.faq-questions-container {
    background: #DDF3FF;
    border-radius: 0 10px 10px 10px;
    padding: 24px 24px 10px 24px;
}

.faq-question {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-item.active .faq-question {
    background: #f6faff;
    border-bottom: 1px solid #e2e8f0;
}

.faq-question h3 {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: black;
    margin: 0;
    flex: 1;
}

.faq-toggle-icon {
    width: 20px;
    height: 20px;
    color: #33A2DA;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 28px 24px 28px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: black;
    margin: 16px 0;
    text-align: justify;
}

.faq-answer ul {
    margin: 16px 0;
    padding-left: 20px;
}

.faq-answer li {
    font-size: 1rem;
    line-height: 1.6;
    color: black;
    margin: 10px 0;
    text-align: justify;
}

/* Contact Section */
.faq-contact-section {
    margin: 80px 0;
    padding: 60px 40px;
    background: linear-gradient(135deg, #0384C7 0%, #0089D1 100%);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(3, 132, 199, 0.3);
    text-align: center;
    color: white;
}

.faq-contact-content {
    display: flex;
    flex-direction: column;
}

.faq-contact-title {
    font-family: 'Aeonik', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-top: -10px;
    margin-bottom: 16px;
    color: white;
}

.faq-contact-description {
    font-family: 'Satoshi', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 36px;
    opacity: 0.9;
    color: white;
    line-height: 1.3;
    text-align: center;
}

.faq-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

    .faq-contact-buttons .button-primary {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 16px 32px;
        background: #F4B425;
        color: #1a1a1a;
        text-decoration: none;
        border-radius: 12px;
        font-weight: 600;
        font-family: 'Satoshi', sans-serif;
        font-size: 16px;
        box-shadow: 0 4px 12px rgba(244, 180, 37, 0.3);
        transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    }

.faq-contact-buttons .button-primary:hover {
    background: #E5A020;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 180, 37, 0.4);
    color: white;
}

.faq-contact-buttons .button-secondary-style {
    background: #F4B425;
    color: #1a1a1a;
    border: 2px solid #F4B425;
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(244, 180, 37, 0.3);
}

.faq-contact-buttons .button-secondary-style:hover {
    background: #E5A020;
    color: #1a1a1a;
    border-color: #E5A020;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 180, 37, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .faq-hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .faq-hero-stats {
        justify-content: center;
    }
    
    .faq-contact-section {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .body {
        padding: 40px 20px 0 20px;
    }

    .faq-container {
        margin-bottom: 40px;
    }

    .faq-header-main {
        width: 100%;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1.1rem;
    }

    .faq-badges {
        gap: 16px;
    }

    .faq-hero-section {
        padding: 30px;
        margin-bottom: 60px;
    }

    .faq-hero-title {
        font-size: 2rem;
    }

    .faq-hero-stats {
        gap: 24px;
    }

    .faq-stat-number {
        font-size: 1.5rem;
    }

    .faq-category h2 {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 20px 24px;
    }

    .faq-question h3 {
        font-size: 1.05rem;
    }

    .faq-answer {
        padding: 0 24px;
    }

    .faq-item.active .faq-answer {
        padding: 0 24px 20px 24px;
    }

    .faq-contact-section {
        padding: 30px;
    }

    .faq-contact-title {
        font-size: 1.75rem;
    }

    .faq-contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .faq-contact-buttons .button-primary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .body {
        padding: 30px 15px 0 15px;
    }

    .faq-container {
        margin-bottom: 30px;
    }

    .faq-title {
        white-space: initial;
        font-size: 40px;
        line-height: 1.2;
    }

    .faq-subtitle {
        font-size: 16px;
        line-height: 1.2;
    }

    .faq-hero-section {
        padding: 24px;
    }

    .faq-hero-title {
        font-size: 25px;
        line-height: 1.2;
    }

    .faq-hero-stats {
        gap: 16px;
    }

    .faq-stat-number {
        font-size: 1.25rem;
    }

    .faq-contact-section {
        padding: 24px;
    }

    .faq-question {
        padding: 16px 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 16px 20px;
    }

    .faq-toggle-icon {
        width: 18px;
        height: 18px;
        margin-left: 12px;
    }

    .faq-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .faq-badge {
        width: 85%;
        font-size: 0.8rem;
    }

    .faq-contact-buttons .button-primary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .faq-hero-section {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px 30px 30px 30px;
        margin-bottom: 40px;
    }

    .faq-hero-visual {
        justify-content: center;
        align-items: center;
        display: flex;
    }

    .faq-hero-image-wrapper {
        max-width: 250px;
        width: 100%;
    }

        .faq-hero-image-wrapper img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            display: block;
            object-fit: contain;
        }

    .faq-hero-content {
        gap: 16px;
        width: 100%;
    }

    .faq-hero-title {
        font-size: 22px;
        text-align: center;
    }

    .faq-hero-description {
        font-size: 14px;
        text-align: justify;
    }

    .faq-hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .faq-stat {
        width: 100%;
        max-width: 220px;
    }

    .faq-tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .faq-tab {
        justify-content: center;
        padding: 12px;
    }

    .faq-questions-container {
        padding: 20px 16px 10px 16px;
        overflow-x: hidden;
    }

    .faq-question {
        align-items: flex-start;
    }

    .faq-toggle-icon {
        margin-left: auto;
        margin-top: 8px;
    }
}

/* Enhanced smooth accordion animation */
.faq-answer {
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover .faq-toggle-icon {
    transform: scale(1.1);
}

.faq-item.active .faq-question:hover .faq-toggle-icon {
    transform: rotate(180deg) scale(1.1);
} 