/* ══════════════════════════════════════════
   ZELQAR — Shared Styles
══════════════════════════════════════════ */
html { scroll-behavior: smooth; }

/* ── Fade Animations ── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}
.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Marquee Animations ── */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
@keyframes scroll-reverse {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}
.logo-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scroll 40s linear infinite;
}
.logo-track:hover { animation-play-state: paused; }
.logo-track-reverse {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scroll-reverse 40s linear infinite;
}
.logo-track-reverse:hover { animation-play-state: paused; }

/* ── Integration Badges ── */
.int-badge-wrapper {
    position: relative;
    padding: 1.5px;
    border-radius: 9999px;
    overflow: hidden;
    background: rgba(21, 54, 104, 0.1);
    flex-shrink: 0;
}
.int-badge-wrapper::before {
    content: "";
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(transparent, transparent 70%, #C9A96E 100%);
    animation: border-spin 4s linear infinite;
}
@keyframes border-spin { 100% { transform: rotate(360deg); } }
.int-badge-content {
    position: relative;
    background: #f0e6d3;
    color: #153668;
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* ── Testimonial Scroll ── */
.testimonial-track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: scroll-testimonials 60s linear infinite;
}
.testimonial-track:hover { animation-play-state: paused; }
@keyframes scroll-testimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.test-card {
    width: 400px;
    flex-shrink: 0;
    background: #e8d9c0;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(21, 54, 104, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.test-card::before {
    content: '"';
    position: absolute;
    top: 20px; left: 30px;
    font-size: 80px;
    line-height: 1;
    color: rgba(201, 169, 110, 0.2);
    font-family: serif;
}
.test-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: #c9a96e;
}

/* ── FAQ Accordion ── */
.faq-item { border-bottom: 1px solid rgba(25, 56, 104, 0.1); }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px 0;
    cursor: pointer;
    border: none;
    background: none;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
    color: #193868;
    transition: color 0.2s;
}
.faq-question:hover { color: #c9a96e; }
.faq-question .material-icons { transition: transform 0.3s; font-size: 20px; color: #c9a96e; }
.faq-item.open .faq-question .material-icons { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: rgba(25, 56, 104, 0.8);
    line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 24px; }

/* ── Active Nav Link ── */
.nav-active { color: #c9a96e !important; }
