/* ========================================
   FAQ PAGE STYLES
   Airport Cars - FAQ Page
   ======================================== */

/* ========================================
   PAGE BANNER
   ======================================== */
.page-banner {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(8, 7, 6, 0.9), rgba(8, 7, 6, 0.7)), url('../images/contact_us.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(8, 7, 6, 0.5) 100%);
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.page-banner-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.page-banner-breadcrumb a {
    color: #deaf25;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-banner-breadcrumb a:hover {
    color: #f0c840;
}

.page-banner-breadcrumb i {
    font-size: 12px;
}

.page-banner h1 {
    font-size: 48px;
    color: #fff;
    font-weight: 700;
    margin: 0 0 15px 0;
    animation: faqFadeInUp 0.8s ease;
}

.page-banner-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    animation: faqFadeInUp 0.8s ease 0.2s backwards;
}

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

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(8, 7, 6, 0.95), rgba(222, 175, 37, 0.03));
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(222, 175, 37, 0.1);
    border: 1px solid rgba(222, 175, 37, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    color: #deaf25;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-title {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #deaf25, transparent);
    margin: 0 auto 20px;
    border-radius: 3px;
}

.faq-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 20px;
    margin-top: 50px;
    align-items: start;
}

.faq-item {
    background: rgba(22, 22, 22, 0.8);
    border: 2px solid rgba(222, 175, 37, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(222, 175, 37, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(222, 175, 37, 0.05);
}

.faq-question i {
    font-size: 20px;
    color: #deaf25;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-question h3 {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

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

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

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   FAQ SUPPORT SECTION
   ======================================== */
.faq-support-section {
    padding: 0 0 80px;
    background: linear-gradient(135deg, rgba(8, 7, 6, 0.95), rgba(222, 175, 37, 0.03));
}

.faq-support-card {
    background: linear-gradient(135deg, rgba(22, 22, 22, 0.98), rgba(12, 12, 12, 0.98));
    border: 2px solid rgba(222, 175, 37, 0.15);
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: center;
}

.faq-support-text h2 {
    font-size: 34px;
    color: #fff;
    margin: 0 0 15px;
}

.faq-support-text p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 25px;
    max-width: 560px;
}

.faq-support-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.faq-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 22px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-contact-link.primary {
    background: linear-gradient(135deg, #deaf25, #f0c840);
    color: #000;
    box-shadow: 0 8px 24px rgba(222, 175, 37, 0.28);
}

.faq-contact-link.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(222, 175, 37, 0.36);
    text-decoration: none;
    color: #000;
}

.faq-contact-link.secondary {
    background: rgba(222, 175, 37, 0.08);
    border: 2px solid rgba(222, 175, 37, 0.2);
    color: #fff;
}

.faq-contact-link.secondary:hover {
    background: rgba(222, 175, 37, 0.14);
    border-color: rgba(222, 175, 37, 0.4);
    transform: translateY(-3px);
    text-decoration: none;
    color: #fff;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media screen and (max-width: 1024px) {
    .page-banner {
        height: 350px;
    }

    .page-banner h1 {
        font-size: 40px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-support-card {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }

    .faq-support-actions {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .page-banner {
        height: 300px;
        margin-top: 60px;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    .page-banner-subtitle {
        font-size: 15px;
    }

    .faq-section {
        padding: 50px 0;
    }

    .faq-support-section {
        padding: 0 0 50px;
    }

    .faq-title {
        font-size: 28px;
    }
}

@media screen and (max-width: 425px) {
    .page-banner {
        height: 260px;
    }

    .page-banner h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .page-banner-subtitle {
        font-size: 13px;
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-support-section {
        padding: 0 0 40px;
    }

    .faq-header {
        margin-bottom: 35px;
    }

    .faq-badge {
        padding: 6px 15px;
        font-size: 11px;
    }

    .faq-title {
        font-size: 22px;
    }

    .faq-title-underline {
        width: 60px;
        margin-bottom: 15px;
    }

    .faq-subtitle {
        font-size: 14px;
    }

    .faq-grid {
        gap: 15px;
        margin-top: 30px;
    }

    .faq-question {
        padding: 20px 18px;
        gap: 12px;
    }

    .faq-question i {
        font-size: 16px;
    }

    .faq-question h3 {
        font-size: 14px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 20px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .faq-support-card {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .faq-support-text h2 {
        font-size: 24px;
    }

    .faq-support-text p {
        font-size: 14px;
    }

    .faq-contact-link {
        width: 100%;
        padding: 14px 18px;
        font-size: 14px;
    }
}
