/* Section: Orange waving gradient */
.opportunities {
    background: linear-gradient(
        135deg,
        rgba(255, 127, 0, 0.15),
        rgba(255, 156, 51, 0.15)
    );
    position: relative;
    overflow: hidden;
}

/* Decorative wave (no image!) */
.opportunities::before {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    border-radius: 50%;
}

/* Cards styling */
.opp-card {
    border: 1px solid #f1f1f1;
    transition: all 0.25s ease-in-out;
}

.opp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Images rectangle */
.opp-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 8px;
}

.opp-image img {
    transition: 0.3s ease;
}

.opp-card:hover .opp-image img {
    transform: scale(1.05);
}

/* Orange button styling */
.btn-orange {
    background-color: #ff7f00;
    border: none;
    color: #fff;
    transition: .2s;
    border-radius: 6px;
}

.btn-orange:hover {
    background-color: #e56f00;
}

/* Small badge */
.payment-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ff7f00;
    background: rgba(255,127,0,0.12);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

/* ==========================
   Payments Section (scoped)
   ========================== */
.payments-section{
    position: relative;
    overflow: hidden;
}

/* subtle orange “halo” blobs (still a white section) */
.payments-section::before,
.payments-section::after{
    content:"";
    position:absolute;
    z-index:0;
    border-radius: 999px;
    filter: blur(0px);
    pointer-events:none;
    opacity: .9;
}

.payments-section::before{
    width: 520px;
    height: 520px;
    top: -240px;
    left: -220px;
    background: radial-gradient(circle,
        rgba(255,127,0,.10),
        rgba(255,127,0,0) 60%);
}

.payments-section::after{
    width: 520px;
    height: 520px;
    bottom: -260px;
    right: -240px;
    background: radial-gradient(circle,
        rgba(255,156,51,.10),
        rgba(255,156,51,0) 60%);
}

.payments-section > .container{
    position: relative;
    z-index: 1;
}

.payments-lead{
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Payment card enhancements (ONLY inside payments section) */
.payments-section .payment-card{
    position: relative;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 10px 26px rgba(0,0,0,.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* orange top accent bar */
.payments-section .payment-card::before{
    content:"";
    position:absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff7f00, #ff9c33);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

/* hover = orange glow, not gray */
.payments-section .payment-card:hover{
    transform: translateY(-8px);
    border-color: rgba(255,127,0,.35);
    box-shadow: 0 16px 34px rgba(255,127,0,.16);
}

/* icon: slightly bigger + ring */
.payments-section .payment-icon{
    width: 72px;
    height: 72px;
    margin: 10px auto 18px;
    background: rgba(255,127,0,0.10);
    border: 1px solid rgba(255,127,0,0.18);
    box-shadow: inset 0 0 0 6px rgba(255,127,0,0.06);
}

.payments-section .payment-icon svg{
    width: 34px;
    height: 34px;
}

/* badge: pinned top center, cleaner */
.payments-section .payment-badge{
    position: relative;
    display: inline-block;
    margin-top: 4px;
    margin-bottom: 10px;
    background: rgba(255,127,0,0.12);
    border: 1px solid rgba(255,127,0,0.18);
}

.payments-section .payment-badge--secure{
    color: #1f7a4a;
    background: rgba(31,122,74,0.10);
    border-color: rgba(31,122,74,0.18);
}

/* nicer list bullets (orange checks) */
.payments-section .payment-list{
    list-style: none;
    padding-left: 0;
    color: rgba(0,0,0,.65);
}

.payments-section .payment-list li{
    position: relative;
    padding-left: 28px;
    margin: 10px 0;
}

.payments-section .payment-list li::before{
    content:"";
    position:absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: rgba(255,127,0,.12);
    border: 1px solid rgba(255,127,0,.22);
}

.payments-section .payment-list li::after{
    content:"";
    position:absolute;
    left: 6px;
    top: 10px;
    width: 7px;
    height: 4px;
    border-left: 2px solid #ff7f00;
    border-bottom: 2px solid #ff7f00;
    transform: rotate(-45deg);
}

/* =========================================
   HARD RESET for payment icons (scoped)
   Put this at the END of your CSS file
   ========================================= */

/* Reset any theme rules that may hide it */
.payments-section .payment-icon{
    all: unset;                  /* nukes conflicting theme styles */
    display: flex !important;     /* bring it back */
    width: 72px !important;
    height: 72px !important;
    margin: 10px auto 18px !important;

    align-items: center !important;
    justify-content: center !important;

    background: rgba(255,127,0,0.10) !important;
    border: 1px solid rgba(255,127,0,0.18) !important;
    border-radius: 50% !important;
    box-shadow: inset 0 0 0 6px rgba(255,127,0,0.06) !important;

    position: relative !important;
    z-index: 2 !important;

    color: #ff7f00 !important;
    font-size: 34px !important;   /* makes emoji visible too */
    line-height: 1 !important;
    overflow: visible !important;
}

/* Force SVG to show regardless of theme rules */
.payments-section .payment-icon svg{
    display: block !important;
    width: 34px !important;
    height: 34px !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
}

/* Force strokes to render */
.payments-section .payment-icon svg *{
    stroke: #ff7f00 !important;   /* explicit color: avoids currentColor issues */
    fill: none !important;
    stroke-width: 1.8 !important;
}

/* ==========================
   FAQ Section (scoped)
   ========================== */
.faq-section{
    position: relative;
}

.faq-lead{
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.faq-accordion{
    max-width: 820px;
}

/* Individual FAQ cards */
.faq-item{
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,.05);
}

/* Button */
.faq-button{
    font-weight: 600;
    color: #2c2c2c;
    background: #fff;
    padding: 18px 20px;
}

.faq-button:not(.collapsed){
    color: #ff7f00;
    background: rgba(255,127,0,0.05);
}

/* Remove default Bootstrap arrow & replace feel */
.accordion-button::after{
    filter: brightness(0.5);
}

/* Body */
.faq-item .accordion-body{
    color: rgba(0,0,0,.75);
    line-height: 1.6;
    padding: 18px 20px 22px;
}