/* ===========================
   FAQ HERO SECTION
   =========================== */

.faq-hero {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #1E41AF 0%, #1E41AF 100%);
    color: white;
    overflow: hidden;
}

.faq-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
}

.faq-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.faq-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: white;
    top: -150px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}

.faq-shape.shape-2 {
    width: 250px;
    height: 250px;
    background: white;
    bottom: -80px;
    left: 5%;
    animation: float 10s ease-in-out infinite reverse;
}

.faq-shape.shape-3 {
    width: 180px;
    height: 180px;
    background: white;
    top: 40%;
    right: 15%;
    animation: float 9s ease-in-out infinite;
}

.faq-shape.shape-4 {
    width: 120px;
    height: 120px;
    background: white;
    bottom: 20%;
    left: 20%;
    animation: float 11s ease-in-out infinite 1s;
}

.faq-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.faq-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.faq-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease 0.1s both;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-subtitle {
    font-size: 18px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.faq-subtitle a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

.faq-subtitle a:hover {
    opacity: 1;
    border-bottom-color: white;
}

.faq-search {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 14px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 500px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.faq-search i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.faq-search input {
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    width: 100%;
    outline: none;
}

.faq-search input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* ===========================
   RESPONSIVE STYLES
   =========================== */

/* Tablet Styles */
@media (max-width: 768px) {
    .faq-hero {
        padding: 80px 0;
    }

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

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

/* Mobile Styles */
@media (max-width: 480px) {
    .faq-hero {
        padding: 60px 0;
    }

    .faq-hero-badge {
        font-size: 12px;
        padding: 10px 16px;
    }

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

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

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

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

/* ===========================
   ANIMATIONS
   =========================== */

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

