:root {
    --main-color: #13183E;
    --main2-color: #281E5D;
    --gold-color: #FFDD00;
    --white-color: #fff;
    --bg-greay-color: #fafafa;
    --content-color: #303133;
    --bg-grey: #f5f7fb;

}

.padding1 {
    padding: 40px;
}

.bamika-orbit-section {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(to bottom, #2b2400, #0f0f0f);
    overflow: hidden;
    color: #fff;
}

/* SVG */
.orbit-svg {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    stroke: rgba(255, 215, 0, 0.35);
    fill: none;
    stroke-width: 1.2;
}

.orbit-core {
    fill: var(--gold-color);
    stroke: none;
}

.currency {
    font-size: 44px;
    fill: var(--gold-color);
    text-anchor: middle;
    dominant-baseline: middle;
    opacity: 0.4;
}

/* Blinking animation */
@keyframes blink {

    0%,
    100% {
        opacity: 0.1;
    }

    50% {
        opacity: 1;
    }
}

.blink-1 {
    animation: blink 3s infinite;
}

.blink-2 {
    animation: blink 4s infinite;
}

.blink-3 {
    animation: blink 3.5s infinite;
}

.blink-4 {
    animation: blink 4.2s infinite;
}

/* Layout */
.orbit-container {
    position: relative;
    z-index: 2;
    display: flex;
}

.orbit-content {
    max-width: 700px;
    text-align: right;
}

.orbit-content h1 {
    /* font-size: 40px; */
    margin-bottom: 18px;
    color: var(--gold-color);
}

.orbit-content p {
    font-size: 16px;
    line-height: 2;
}

/* Mobile */
@media (max-width: 768px) {

    .bamika-orbit-section {
        padding: 100px 20px;
    }

    .orbit-svg {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 420px;
        height: 420px;
        opacity: 0.35;
    }

    .orbit-container {
        justify-content: center;
    }

    .orbit-content {
        text-align: center;
        background: rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(12px);
        padding: 30px;
        border-radius: 20px;
    }

    .orbit-content h2 {
        font-size: 30px;
    }
}

/* end service header=============== */
.bamika-breadcrumb {
    padding: 20px 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;

}

/* breadcrumb */
.breadcrumb-wrapper {
    display: flex;
    justify-content: center;
}

.bamika-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    direction: rtl;
    flex-wrap: wrap;
}

.bamika-breadcrumb-list .breadcrumb-item {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.bamika-breadcrumb-list .breadcrumb-item a {
    color: var(--main-color);
    text-decoration: none;
    transition: color .25s ease;
}

.bamika-breadcrumb-list .breadcrumb-item a:hover {
    color: var(--gold-color);
    text-decoration: none;
}

.bamika-breadcrumb-list .breadcrumb-item.active {
    color: var(--content-color);
}

/* separator */
.breadcrumb-separator svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold-color);
    stroke-width: 3;
    fill: none;
}

/* social */
.breadcrumb-social-wrapper {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 14px;
}

.social-icon {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    padding: 5px;
}

/* .social-icon svg {
    width: 18px;
    height: 18px;
    fill: #13183E;
} */

.social-icon:hover {
    background: #13183E;
}

.social-icon:hover svg {
    fill: #FFDD00;
}

/* desktop */
@media (min-width: 992px) {
    .bamika-breadcrumb .container {
        display: flex;
        justify-content: space-between;
        align-items: center;

    }

    .breadcrumb-wrapper {
        justify-content: flex-start;
    }

    .breadcrumb-social-wrapper {
        margin-top: 0;
    }
}

@media (max-width: 992px) {
    .breadcrumb-social-wrapper {
        display: none;
    }
}

/* end =============== */



/* ===============================
   bamika-steps Section
================================ */
.bamika-steps {
    position: relative;
    overflow: hidden;
}

.bamika-steps::before {
    content: "";
    position: absolute;
    bottom: -180px;
    left: -180px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle at bottom left,
            rgba(255, 221, 0, 0.61),
            rgba(255, 221, 0, 0.12),
            transparent 65%);
}

.bamika-steps-title {
    color: var(--main-color);
    margin-bottom: 20px;
}

.bamika-step-card {
    background: #fff;
    border-radius: 22px;
    padding: 20px 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 8px rgba(19, 24, 62, 0.07);
    transition: all 0.4s ease;
}

.bamika-step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 6px 10px rgba(19, 24, 62, 0.14);
}

/* ===============================
   Icon
================================ */
.bamika-step-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 28px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top left,
            rgba(255, 221, 0, 0.35),
            rgba(255, 221, 0, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
}

.bamika-step-icon svg {
    width: 84px;
    height: 84px;
    stroke: var(--main-color);
    stroke-width: 1.4;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}



.bamika-step-icon .step-svg * {
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ===============================
   Text
================================ */
.bamika-step-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 14px;
}

.bamika-step-card p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--content-color);
}

/* ===============================
   Premium Arrow
================================ */

/* Desktop */
@media (min-width: 992px) {
    .bamika-step-arrow {
        position: absolute;
        top: 50%;
        left: -60px;
        transform: translateY(-50%);
        margin: 0;
    }

    .bamika-steps-row>div {
        position: relative;
    }

    .bamika-steps-row>div:last-child .bamika-step-arrow {
        display: none;
    }
}

/* Mobile */
@media (max-width: 991px) {
    .bamika-step-arrow {
        margin: 15px auto;
    }
}

.bamika-steps-title {
    position: relative;
    display: inline-block;
}

.title-market-line {
    display: block;
    margin: 14px auto 0;
    width: 280px;
    height: 22px;
}



/* cat section======================= */

.cta-section {
    font-family: inherit;
}

/* Card */
.cta-card {
    background: var(--gold-color);
    border-radius: 22px;
    padding: 40px 40px;
    box-shadow: 0 20px 60px rgba(19, 24, 62, 0.08);
}

/* SVG Background */
.cta-bg-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    fill: var(--main-color);
    opacity: 0.06;
    animation: svgFloat 8s ease-in-out infinite;
}

/* SVG animation */
@keyframes svgFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }

    100% {
        transform: translateY(0);
    }
}

.cta-content {
    z-index: 2;
}

/* Text */
.cta-title {

    color: var(--main-color);
    margin-bottom: 10px;
}

.cta-desc {
    color: var(--content-color);
    font-size: 1rem;
    margin-bottom: 18px;
    line-height: 1.8;
}

/* Timer */
.cta-timer {
    font-size: 0.95rem;
}

.timer-label {
    color: var(--content-color);
}

.timer-box {
    background: var(--main-color);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Button */
.cta-whatsapp-btn {
    background: linear-gradient(135deg, var(--main-color), #06a530);
    color: #fff;
    padding: 14px 26px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 40px rgba(19, 24, 62, 0.25);
    transition: all 0.35s ease;
}

.cta-whatsapp-btn svg {
    fill: #fff;
}

.cta-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(19, 24, 62, 0.35);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-card {
        padding: 30px 25px;
    }

    .btn-cat-whatsapp {
        text-align: center;
    }

    .cta-title {
        font-size: 1.6rem;
    }
}

@media (min-width: 992px) {
    .btn-cat-whatsapp {
        text-align: left !important;
    }

}

.cta-main-bg {
    background: linear-gradient(135deg,
            var(--main-color),
            #0f0f0f);

}

/* why - section ============================== */

.why-bamika-grid {
    /* background: #f9fafb; */
}

.why-title {
    color: var(--main-color);
}

.why-subtitle {
    color: var(--content-color);
    margin-top: 10px;
}

/* Box */
.why-box {
    background: #f3f4f6;
    border-radius: 10px;
    padding: 15px 15px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.why-box:hover {
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 4px 5px rgba(15, 23, 42, 0.12);
}

/* Icon */
.why-box svg {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
    fill: none;
    stroke: var(--main-color);
    stroke-width: 2.5;
}

/* Text */
.why-box span {
    display: block;
    font-weight: 700;
    font-size: 1.05rem;
}

/* ====================================bamika-countries */

.bamika-countries {
    position: relative;
    /* padding: 120px 0; */
    overflow: hidden;
    background: linear-gradient(135deg,
            var(--main2-color) 0%,
            var(--main-color) 100%);
}

.countries-glow {
    position: absolute;
    left: -300px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
            rgba(255, 221, 0, 0.25) 0%,
            rgba(255, 221, 0, 0.12) 40%,
            transparent 70%);
    filter: blur(130px);
    z-index: 0;
}

.countries-lines {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    z-index: 0;
}

.section-head h2 {
    color: var(--gold-color);
}

.section-head p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    margin-top: 15px;
}

.country-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* min-height: 200px; */
    position: relative;
}

.country-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 221, 0, 0.35);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.country-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.flag-badge {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 221, 0, 0.12);
    font-size: 26px;
}

.flag-badge img {
    width: 50px;
    height: 50px;
    /* border-radius: 14px; */

}

.country-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.country-card p {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.flags-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.flags-inner {
    width: 75%;
    overflow: hidden;
}

.proFlags .swiper-wrapper {
    transition-timing-function: linear !important;
}

.proFlags .swiper-slide {
    width: auto !important;
}

.flag-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-item img {
    height: 55px;
    width: auto;
    margin: 0 12px;
    display: block;
    transition: 0.3s ease;
}

.flag-item img:hover {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .bamika-countries {
        padding: 80px 0;
    }

    .section-head h2 {
        font-size: 24px;
    }

    .country-card {
        min-height: auto;
    }
}

/* ====================================== transfer-time*/

.transfer-time {
    background: var(--bg-greay-color);

}

.transfer-text h2 {
    color: var(--main-color);
    margin-bottom: 18px;
}

.transfer-text p {
    color: var(--content-color);
    line-height: 1.9;
    font-size: 16px;
}

.transfer-text .muted {
    font-size: 14px;
    opacity: .7;
    margin-top: 10px;
}

.accent {
    color: var(--gold-color);
    font-weight: 600;
}

.trust-pill {
    margin-top: 25px;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 40px;
    background: linear-gradient(135deg, var(--main-color), var(--main2-color));
    color: var(--white-color);
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(19, 24, 62, .15);
}

/* VISUAL BOX */

.transfer-visual-box {
    border: 1px solid var(--gold-color);
    border-radius: 10px;
    /* padding:12px; */
    overflow: hidden;
}

.flow-svg {
    width: 100%;
    height: auto;
}

.core {
    fill: var(--main-color);
}

.ring {
    fill: none;
    stroke: var(--main2-color);
    stroke-width: 2;
    opacity: .5;
}

.pulse {
    fill: none;
    stroke: var(--gold-color);
    stroke-width: 2;
    opacity: .6;
    animation: pulseRing 2.5s ease-out infinite;
}

.flow-line {
    fill: none;
    stroke: var(--main2-color);
    stroke-width: 2;
    stroke-dasharray: 8 8;
    animation: flowMove 6s linear infinite;
}

.flow-line.slow {
    animation-duration: 9s;
    opacity: .5;
}

.arrow {
    fill: var(--gold-color);
}

.money-flow-svg {
    width: 100%;
    height: auto;
    max-height: 320px;
}

.clock-ring {
    fill: none;
    stroke: var(--main2-color);
    stroke-width: 2;
    opacity: .25;
}

.clock-inner {
    fill: none;
    stroke: var(--gold-color);
    stroke-width: 2;
    opacity: .4;
}

.phone {
    fill: #fff;
    stroke: var(--main-color);
    stroke-width: 2;
}

.phone-screen {
    fill: var(--bg-grey);
}

.money-path {
    fill: none;
    stroke: var(--gold-color);
    stroke-width: 2;
    stroke-dasharray: 6 6;
    opacity: .6;
}

.money-symbol {
    font-size: 28px;
    fill: var(--gold-color);
    font-weight: bold;
}

.clock-hand {
    stroke: var(--main-color);
    stroke-width: 3;
    stroke-linecap: round;
    transform-origin: 300px 175px;
    animation: rotateClock 6s linear infinite;
}

.clock-center {
    fill: var(--main-color);
}


@keyframes rotateClock {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes flowMove {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -200;
    }
}

@keyframes pulseRing {
    0% {
        r: 70;
        opacity: .6;
    }

    100% {
        r: 100;
        opacity: 0;
    }
}

/* ========================================= */

.fee-section {
    background: #fff;
}

.fee-header {
    max-width: 760px;
    position: relative;
    margin-bottom: 40px;
}

.fee-header h2 {
    margin-bottom: 14px
}

.fee-header p {
    line-height: 1.9
}

.fee-decor {
    position: absolute;
    top: -40px;
    right: -60px;
    width: 220px;
    opacity: .08;
}

.fee-decor path {
    fill: none;
    stroke: #000;
    stroke-width: 4;
}

.fee-card {
    background: #f5f7fb;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.fee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media(max-width:992px) {
    .fee-grid {
        grid-template-columns: 1fr
    }
}

/* FIELD */

.field label {
    font-size: 13px;
    margin-bottom: 6px;
    display: block;
}

/* SELECT */

.custom-select {
    position: relative
}

.select-trigger {
    width: 100%;
    height: 46px;
    background: #fff;
    border-radius: 12px;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    cursor: pointer;
}

.select-trigger img {
    width: 22px;
    height: 16px;
    border-radius: 3px;
}

.arrow {
    margin-right: auto;
    width: 18px;
    stroke: #555;
    stroke-width: 2;
    fill: none;
    transition: .15s;
}

.custom-select.active .arrow {
    transform: rotate(180deg);
}

.select-options {
    position: absolute;
    top: 105%;
    right: 0;
    left: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: .15s ease;
    z-index: 10;
}

.custom-select.active .select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.select-options li {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.select-options li:hover {
    background: #f1f3f9
}

.select-options img {
    width: 22px;
    height: 16px;
}
.amount-box {
    display: flex;
    background: #fff;
    border-radius: 12px;
    padding: 0 14px;
}

.amount-box span {
    line-height: 46px
}

.amount-box input {
    border: none;
    outline: none;
    width: 100%;
}
.fee-result {
    margin-top: 22px;
    background: #b8f5d6;
    border-radius: 12px;
    padding: 16px;
    font-size: 14px;
    line-height: 1.9;
}

/* ================================> */

.bamika-more-wrapper{
    box-shadow:0 4px 8px rgba(0,0,0,.06);
    overflow:hidden;
}

/* TOGGLE */

.bamika-more-toggle{
    width:100%;
    background:none;
    border:none;
    padding:18px 22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
}

.bamika-more-left{
    display:flex;
    align-items:center;
    gap:12px;
}

.bamika-more-icon{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#eef2ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
}

.bamika-more-title{
    font-size:15px;
    font-weight:600;
    color:var(--main-color);
}

/* ARROW */

.bamika-more-arrow{
    width:20px;
    stroke:var(--main-color);
    stroke-width:2;
    fill:none;
    transition:transform .3s ease;
}

.bamika-more-wrapper.active .bamika-more-arrow{
    transform:rotate(180deg);
}

/* CONTENT */

.bamika-more-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease, opacity .3s ease;
    opacity:0;
}

.bamika-more-wrapper.active .bamika-more-content{
    max-height:900px;
    opacity:1;
}

.bamika-more-inner{
    padding:0 22px 22px;
    font-size:14px;
    line-height:1.9;
    color:var(--content-color);
}

/* RULES */

.bamika-rules{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
    margin:18px 0;
}

.rule{
    background:#fff;
    border-radius:14px;
    padding:14px 16px;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.rule.highlight{
    border:1px solid #ffd6d6;
    background:#fff6f6;
}

.badge{
    display:inline-block;
    font-size:12px;
    padding:6px 12px;
    border-radius:20px;
    margin-bottom:6px;
}

.badge.foreign{background:#eef5ff;color:#2f5fff}
.badge.reverse{background:#f0fdf4;color:#0f5132}
.badge.cash{background:#fff0f0;color:#a61b1b}

/* NOTE */

.bamika-note{
    margin-top:16px;
    padding:14px;
    border-radius:12px;
    background:#f5f7fb;
    font-size:13px;
}

/* ============================ ================================*/

/* ===============================
   DOCUMENTS – ULTRA FINTECH
================================ */

.documents-section {
    background: var(--white-color);
    position: relative;
}

/* subtle right gradient effect */
.documents-section::after {
    content: "";
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle,
        rgba(19,24,62,0.06) 0%,
        rgba(19,24,62,0) 70%);
    z-index: 0;
}

.documents-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* BADGE */
.documents-badge {
    display: inline-block;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 40px;
    background: var(--bg-grey);
    color: var(--main-color);
    margin-bottom: 18px;
}

/* TITLE */
.documents-title {
    font-size: 28px;
    line-height: 1.6;
    margin-bottom: 18px;
    color: var(--main-color);
}

/* DESC */
.documents-desc {
    color: var(--content-color);
    line-height: 1.9;
    margin-bottom: 36px;
    font-size: 15.5px;
    max-width: 540px;
}

/* LIST */
.documents-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.documents-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
    font-size: 15px;
    color: var(--content-color);
}

/* ICON */
.doc-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(
        145deg,
        var(--bg-grey),
        #ffffff
    );
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.doc-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--main-color);
    fill: none;
    stroke-width: 1.6;
}

/* VISUAL CARD */
.documents-visual {
    position: relative;
}

.doc-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 7px rgba(0,0,0,0.08);
}

.doc-card img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

/* DECOR SVG */
.documents-decor {
    position: absolute;
    top: -190px;
    right: -40px;
    width: 260px;
    z-index: 5;
    opacity: 0.04;
}

.documents-decor path {
    fill: none;
    stroke: var(--main-color);
    stroke-width: 4;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .documents-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .documents-section {
       
    }

    .documents-title {
        font-size: 22px;
    }
}
/* ===================================================faq section start */

.bamika-faq-section{
    padding:80px 0;
    background:linear-gradient(180deg,#f8faff,#ffffff);
}

/* HEADER */

.bamika-faq-header{
    text-align:center;
    max-width:680px;
    margin:0 auto 50px;
    position:relative;
}

.bamika-faq-header h2{
    font-size:28px;
    color:var(--main-color);
    margin-bottom:12px;
}

.bamika-faq-header p{
    font-size:15px;
    color:var(--content-color);
    line-height:1.9;
}

.faq-decor{
    position:absolute;
    top:-30px;
    right:50%;
    transform:translateX(50%);
    width:160px;
    stroke:var(--gold-color);
    fill:none;
    stroke-width:2;
    opacity:.25;
}

/* LIST */

.bamika-faq-list{
    max-width:820px;
    margin:0 auto;
}

/* ITEM */

.bamika-faq-item{
    background:#fff;
    border-radius:18px;
    box-shadow:0 4px 6px rgba(0,0,0,.06);
    margin-bottom:16px;
    overflow:hidden;
}

/* QUESTION */

.bamika-faq-question{
    width:100%;
    border:none;
    background:none;
    padding:18px 22px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.bamika-faq-question h3{
    font-size:15px;
    font-weight:600;
    color:var(--main-color);
    text-align:right;
}

/* ICON */

.faq-icon{
    width:32px;
    height:32px;
    border-radius:50%;
    background:#eef2ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    color:var(--main-color);
    transition:transform .3s ease;
}

/* ANSWER */

.bamika-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease, opacity .3s ease;
    opacity:0;
}

.bamika-faq-answer p{
    padding:0 22px 20px;
    font-size:14px;
    line-height:1.9;
    color:var(--content-color);
}

/* ACTIVE */

.bamika-faq-item.active .bamika-faq-answer{
    max-height:400px;
    opacity:1;
}

.bamika-faq-item.active .faq-icon{
    transform:rotate(45deg);
}

/* MOBILE */

@media(max-width:768px){
    .bamika-faq-header h2{font-size:24px}
    .bamika-faq-question h3{font-size:14px}
}
