/* --- FAQ Section Styles --- */
.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0efff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 101, 189, 0.05);
    border-color: var(--primary-color);
}

.faq-question {
    padding: 20px 25px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.1rem;
    transition: background 0.3s;
}

.faq-item.active .faq-question {
    background: #f8fbff;
    color: var(--primary-color);
}

.faq-toggle-icon {
    width: 25px;
    height: 25px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
    content: '';
    position: absolute;
    background: var(--primary-color);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.faq-toggle-icon::before {
    width: 100%;
    height: 3px;
}

.faq-toggle-icon::after {
    width: 3px;
    height: 100%;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 25px;
    background: #f8fbff;
}

.faq-answer p {
    padding: 15px 0 25px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* --- CTA Section Styles --- */
.cta-section {
    padding: 80px 0;
    position: relative;
    margin-top: 50px;
}

.cta-wrapper {
    /* Premium Dark Navy Gradient */
    background: linear-gradient(135deg, #0b2341, #1d4e89);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 20px 50px rgba(11, 35, 65, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, #e0efff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #b0c4de;
    /* Lite steel blue for text */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-white {
    background: white;
    color: #0b2341;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
    background: #f0f7ff;
}

/* Decorative Modern Mesh/Glow for CTA */
.cta-circle {
    position: absolute;
    filter: blur(60px);
    border-radius: 50%;
    opacity: 0.6;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
    background: #00a8ff;
}

.circle-2 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    right: -50px;
    background: #0065bd;
}

/* --- Back To Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 100px;
    /* Above WhatsApp button */
    right: 30px;
    width: 45px;
    height: 45px;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .cta-wrapper {
        padding: 40px 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .back-to-top {
        right: 20px;
        bottom: 80px;
    }
}