:root {
    /* Brand */
    --primary: #199675;
    --primary-dark: #0f5c46;
    --primary-accent: #5eead4;

    /* Neutrals */
    --dark: #1e293b;
    --body-bg: #ffffff;
    --section-bg: #f8fafc;
    --card-bg: #ffffff;

    /* Text */
    --heading: #1e293b;
    --text: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    /* Borders */
    --border: #e2e8f0;
    --border-soft: #f1f5f9;

    /* Footer */
    --footer-bg-start: #0f172a;
    --footer-bg-end: #1e293b;
    --footer-text: #cbd5e1;

    /* Status */
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;

    --nav-bg: rgba(255, 255, 255, 0.65);
}
html { overflow-x: hidden; }
body { font-family: 'Tajawal', sans-serif; background: #fff; margin: 0; padding: 0; overflow-x: hidden; }

header {
    position: fixed;
    top: 25px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.container-nav {
    width: 100%;
    max-width: 1100px;
    background: var(--nav-bg);
    backdrop-filter: blur(15px);
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 35px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo img { height: 40px; }
.nav-links { display: flex; gap: 35px; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 700; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }
.btn-start { background: var(--primary); color: #fff; padding: 10px 30px; border-radius: 50px; text-decoration: none; font-weight: 700; transition: 0.3s; border: none; display: inline-flex; align-items: center; gap: 4px; }
.btn-start:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(25,150,117,0.3); opacity: 0.9; color: #fff; }

/* Nav user dropdown ========================================== */
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-user-btn {
    background: rgba(25, 150, 117, 0.08);
    border: 1px solid rgba(25, 150, 117, 0.18);
    color: var(--dark);
    border-radius: 50px;
    padding: 5px 14px 5px 5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}
.nav-user-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.nav-user-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--primary); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; overflow: hidden; flex-shrink: 0;
    font-size: 0.95rem;
}
.nav-user-avatar img { width: 100%; height: 100%; object-fit: cover; }
.nav-user-name { font-size: 0.92rem; max-width: 120px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav-user-menu {
    border-radius: 14px;
    border: 1px solid #eef2f7;
    box-shadow: 0 14px 30px rgba(15,23,42,0.1);
    padding: 8px;
    min-width: 220px;
    margin-top: 8px;
}
.nav-user-menu .dropdown-item {
    padding: 9px 14px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #475569;
    width: 100%;
    background: none;
    border: none;
    text-align: start;
}
.nav-user-menu .dropdown-item i { color: var(--primary); font-size: 1.05rem; }
.nav-user-menu .dropdown-item:hover { background: rgba(25,150,117,0.08); color: var(--primary); }
.nav-user-menu .dropdown-item.text-danger:hover { background: rgba(239,68,68,0.08); color: #ef4444 !important; }
.nav-user-menu .dropdown-item.text-danger:hover i { color: #ef4444; }

.hero {
    height: 100vh;
    background: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.5)), url('https://images.unsplash.com/photo-1614200179396-2bdb77ebf81b?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}
.hero h1 { 
    font-size: 5rem; 
    font-weight: 900; 
    margin: 0 auto 25px; 
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-width: 900px;
}
.hero p { 
    font-size: 1.5rem; 
    margin: 0 auto 45px; 
    max-width: 800px; 
    line-height: 1.6; 
    opacity: 0.9;
    font-weight: 500;
}
.hero-btns { display: flex; gap: 20px; justify-content: center; margin: 0 auto; }
.btn-outline { border: 2px solid #fff; color: #fff; padding: 10px 35px; border-radius: 50px; text-decoration: none; font-weight: 700; transition: 0.3s; }
.btn-outline:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

@media (max-width: 991px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.8rem; }
    .container-nav { padding: 0 20px; border-radius: 20px; }
}

.features-section { padding: 100px 0; background: #fbfbfb; }
.header-line { width: 80px; height: 4px; background: var(--primary); border-radius: 10px; margin-top: 15px; }

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards ease-out;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(25, 150, 117, 0.1);
    color: var(--primary);
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto 25px;
    transition: 0.4s;
}

.feature-card:hover .feature-icon-box {
    background: var(--primary);
    color: #fff;
    transform: rotateY(180deg);
}

/* Feature Card v2 — circular icon ========================== */
.feature-card-v2 {
    background: #fff;
    border-radius: 22px;
    padding: 36px 26px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
    border: 1px solid #eef2f7;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.7s forwards ease-out;
}

.feature-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.feature-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.feature-card-v2:hover::before { transform: scaleX(1); }

.feature-thumb {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(25, 150, 117, 0.1);
    margin: 0 auto 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(25, 150, 117, 0.18);
}

.feature-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card-v2:hover .feature-thumb {
    border-color: var(--primary);
    box-shadow: 0 10px 26px rgba(25, 150, 117, 0.32);
}

.feature-card-v2:hover .feature-thumb img { transform: scale(1.08); }

.feature-thumb-fallback {
    color: var(--primary);
    font-size: 2.4rem;
    line-height: 1;
}

.feature-card-v2:hover .feature-thumb-fallback { color: var(--primary); }

.feature-body h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 10px;
    line-height: 1.45;
}

.feature-body p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 575px) {
    .feature-card-v2 { padding: 28px 22px 24px; }
    .feature-thumb { width: 92px; height: 92px; }
}

.feature-card h3 { font-size: 1.5rem; font-weight: 800; color: var(--dark); margin-bottom: 15px; }
.feature-card p { color: #64748b; font-size: 1rem; line-height: 1.7; margin: 0; }

.col-lg-3:nth-child(1) .feature-card { animation-delay: 0.1s; }
.col-lg-3:nth-child(2) .feature-card { animation-delay: 0.3s; }
.col-lg-3:nth-child(3) .feature-card { animation-delay: 0.5s; }
.col-lg-3:nth-child(4) .feature-card { animation-delay: 0.7s; }

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

.how-it-works { 
    padding: 120px 0; 
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); 
    position: relative;
    overflow: hidden;
}

.how-it-works::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(25, 150, 117, 0.08);
    border-radius: 50%;
    filter: blur(120px);
}

.steps-wrapper { position: relative; padding-right: 20px; }

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 45px;
    position: relative;
    transition: 0.3s;
}

.step-number {
    min-width: 65px;
    height: 65px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    font-size: 1.6rem;
    font-weight: 900;
    transition: 0.4s;
}

.step-item:hover .step-number {
    background: var(--primary);
    color: #fff;
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 10px 25px rgba(25, 150, 117, 0.4);
}

.step-content h3 { color: #fff; font-size: 1.7rem; font-weight: 800; margin-bottom: 12px; }
.step-content p { color: #cbd5e1; font-size: 1.15rem; line-height: 1.7; margin: 0; }

.app-mockup {
    width: 110%;
    max-width: none;
    filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6));
    animation: float-angled 8s ease-in-out infinite;
    mix-blend-mode: screen;
    transform: scale(1.2);
}

@keyframes float-angled {
    0%, 100% { transform: translateY(0px) scale(1.2) rotate(0deg); }
    50% { transform: translateY(-40px) scale(1.2) rotate(2deg); }
}

@media (max-width: 991px) {
    .how-it-works { padding: 80px 0; }
    .steps-wrapper { text-align: center; padding-right: 0; margin-top: 50px; }
    .step-item { flex-direction: column; align-items: center; text-align: center; }
}

.achievements-white {
    padding: 100px 0;
    background: #f9fafb;
    position: relative;
}

.premium-stat-card {
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 35px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    position: relative;
    z-index: 1;
}

.premium-stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(25, 150, 117, 0.12);
    border-color: rgba(25, 150, 117, 0.2);
}

.stat-icon-circle {
    width: 85px;
    height: 85px;
    background: #f0fdfa;
    color: var(--primary);
    font-size: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
    transition: 0.5s;
}

.premium-stat-card:hover .stat-icon-circle {
    background: var(--primary);
    color: #fff;
    transform: rotateY(180deg);
}

.stat-big-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-big-value span {
    color: var(--primary);
}

.stat-sub-title {
    color: #64748b;
    font-size: 1.15rem;
    font-weight: 700;
}

@media (max-width: 991px) {
    .stat-big-value { font-size: 2.6rem; }
}

.testimonials-3d { background: #f1f5f9; padding: 120px 0; overflow: hidden; }

.swiper-container-premium {
    padding: 50px 0 100px;
    margin: 0 -15px;
}

.testimonials-v4 { padding: 40px 10px 80px !important; }

.v4-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 40px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.4;
    transform: scale(0.85);
    border: 1px solid rgba(0,0,0,0.03);
    text-align: center;
}

.swiper-slide-active .v4-card {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 40px 90px rgba(25, 150, 117, 0.15);
    border-color: rgba(25, 150, 117, 0.2);
    z-index: 2;
}

.v4-quote {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 28px;
    margin: 0 auto 30px;
}

.v4-card p {
    font-size: 1.3rem;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 500;
}

.v4-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
}

.v4-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.v4-info h5 { margin: 0; font-weight: 800; color: #1e293b; font-size: 1.1rem; }
.v4-stars { color: #fbbf24; font-size: 0.8rem; margin-top: 3px; display: flex; gap: 2px; }

.swiper-pagination-v4 {
    bottom: 20px !important;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.swiper-pagination-v4 .swiper-pagination-bullet {
    width: 30px;
    height: 6px;
    border-radius: 10px;
    background: #cbd5e1;
    opacity: 1;
    transition: 0.4s;
    margin: 0 !important;
}
.swiper-pagination-v4 .swiper-pagination-bullet-active {
    width: 60px;
    background: var(--primary);
}

.faq-premium { background: #f1f5f9; padding: 100px 0; }

.custom-faq-accordion .accordion-item {
    border: none;
    background: #ffffff;
    border-radius: 20px !important;
    overflow: hidden;
    transition: 0.3s;
}

.custom-faq-accordion .accordion-item:hover {
    transform: scale(1.01);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.custom-faq-accordion .accordion-button {
    padding: 25px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    background: transparent;
    box-shadow: none;
    border: none;
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: #fff;
}

.custom-faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2364748b'%3E%3Cpath d='M11 11V5H13V11H19V13H13V19H11V13H5V11H11Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    transition: 0.4s;
}

.custom-faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23199675'%3E%3Cpath d='M5 11V13H19V11H5Z'%3E%3C/path%3E%3C/svg%3E");
    transform: rotate(180deg);
}

.custom-faq-accordion .accordion-body {
    padding: 0 30px 30px;
    color: #64748b;
    line-height: 1.8;
    font-size: 1.1rem;
}

.footer-wave-container {
    background: #f1f5f9;
    line-height: 0;
    margin-top: -1px;
}
.footer-wave-container svg {
    display: block;
    width: 100%;
    height: 100px;
}

.footer-premium {
    background: linear-gradient(rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: #94a3b8;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: right;
    position: relative;
}

.footer-desc {
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-title {
    color: #fff;
    font-weight: 800;
    margin-bottom: 30px;
    font-size: 1.2rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(-5px);
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
    transition: 0.4s;
    text-decoration: none;
}

.footer-socials a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(25, 150, 117, 0.3);
}

.app-store-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    max-width: 200px;
}

.app-store-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--primary);
    color: #fff;
}

.app-store-btn i { font-size: 1.8rem; }
.app-store-btn small { display: block; font-size: 0.65rem; opacity: 0.7; margin-bottom: -2px; }
.app-store-btn span { font-weight: 700; font-size: 1rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 40px;
}

.copyright-text { font-size: 0.9rem; }

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-bottom-links a:hover { color: #fff; }

@media (max-width: 991px) {
    .footer-premium .container-fluid {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .footer-title {
        margin-top: 10px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-premium {
        text-align: center !important;
    }
    .footer-title::after {
        right: 50% !important;
        left: auto !important;
        transform: translateX(50%) !important;
    }
    .footer-socials, .footer-apps, .footer-bottom-links {
        justify-content: center !important;
    }
    .footer-bottom-links {
        margin-top: 15px;
    }
    .copyright-text {
        text-align: center !important;
    }
    .footer-logo img {
        margin: 0 auto;
    }
    .footer-links a:hover {
        transform: translateX(0); /* Disable shift on mobile to avoid layout jump */
    }
}

/* App store buttons (footer) ================================ */
.app-group { display: flex; flex-direction: column; gap: 8px; }

.app-group-label {
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.app-group-label i {
    color: var(--primary);
    background: rgba(25,150,117,0.15);
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    padding: 9px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    border: 1px solid rgba(255,255,255,0.12);
    transition: 0.3s;
    min-width: 145px;
}

.app-store-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(25,150,117,0.35);
}

.app-store-btn i {
    font-size: 1.7rem;
    line-height: 1;
}

.app-store-btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    gap: 2px;
}

.app-store-btn small {
    font-size: 0.65rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* FAQ Pagination & Loader =================================== */
.faq-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}

.faq-page-numbers {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-page-btn {
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: var(--dark);
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.faq-page-btn:hover:not(:disabled):not(.active) {
    background: rgba(25, 150, 117, 0.08);
    color: var(--primary);
    border-color: rgba(25, 150, 117, 0.3);
}

.faq-page-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(25, 150, 117, 0.3);
}

.faq-page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.faq-page-btn i { font-size: 1.2rem; line-height: 1; }

.faq-loader {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.faq-loader.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.faq-spinner {
    width: 44px;
    height: 44px;
    border: 4px solid rgba(25, 150, 117, 0.18);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: faqSpin 0.8s linear infinite;
}

@keyframes faqSpin {
    to { transform: rotate(360deg); }
}
