:root {

    --navy: #201c5a;
    --navy2: #17134b;
    --text: #273052;
    --muted: #667091;
    --gold: #d7b45f;
    --gold-soft: #fff8e7;
    --line: #e7e9f2;
    --soft: #f7f8fc;
    --soft-blue: #eef6fb;
    --green: #4aa77a;
    --red: #d95c5c;
    --blue: #7EC2E5;
    --shadow: 0 18px 50px rgba(20, 26, 70, .09);
    --shadow-soft: 0 10px 28px rgba(20, 26, 70, .06);
    --radius: 18px;

}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.55
}

a {
    text-decoration: none;
    color: inherit
}

.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.container {
    max-width: 1180px;
    margin: auto;
    padding: 0 22px
}

.topbar {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 40
}

.nav {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px
}

/* MOBILE MENU */
.mobile-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 11px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--navy);
    border-radius: 999px;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(16, 24, 40, .55);
    opacity: 0;
    visibility: hidden;
    transition: .25s;
    z-index: 98;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 99;
    transition: .3s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,.12);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px;
    border-bottom: 1px solid var(--line);
}

.mobile-close {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    color: var(--navy);
    font-size: 18px;
}

.mobile-links {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-links a {
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 700;
    color: var(--text);
    border: 1px solid transparent;
    transition: .2s ease;
}

/* NORMAL MENU LINKS ONLY */
.mobile-links a:not(.btn):hover {
    background: var(--soft);
    border-color: var(--line);
    color: var(--navy);
}

/* BUTTON */
.mobile-links .btn {
    margin-top: 10px;
    color: #fff;
}

/* BUTTON HOVER */
.mobile-links .btn:hover {
    background: #2b2670;
    color: #fff;
}

@media (max-width: 560px) {

    .logo-text {
        display: none;
    }

}

/* MOBILE */
@media (max-width: 960px) {

    .mobile-toggle {
        display: flex;
    }

    .links {
        display: none;
    }

}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-weight: 600;
    font-size: 19px;
    white-space: nowrap
}

.logo-badge {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--navy);
    color: #fff;
    display: grid;
    place-items: center
}

.links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #34405f;
    font-size: 14px;
    font-weight: 700
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 12px;
    padding: 13px 20px;
    background: var(--navy);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 10px 22px rgba(32, 28, 90, .18);
    cursor: pointer;
    text-align: center
}

.btn.gold {
    background: var(--gold)
}

.btn.green {
    background: #28c76f
}

.btn.outline {
    background: #fff;
    color: var(--navy);
    border: 1px solid #cfd3e5;
    box-shadow: none
}

.btn.soft {
    background: #f1efff;
    color: var(--navy);
    box-shadow: none
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fbf7ef 0%, #fff 82%);
    border-bottom: 1px solid var(--line);
    padding: 62px 0 46px
}

.hero:before {
    content: "";
    position: absolute;
    left: -140px;
    top: 80px;
    width: 360px;
    height: 360px;
    background: rgba(126, 194, 229, .13);
    border-radius: 50%;
    filter: blur(8px)
}

.hero:after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 420px;
    height: 420px;
    background: rgba(215, 180, 95, .14);
    border-radius: 50%;
    filter: blur(8px)
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:1.03fr .97fr;
    gap: 48px;
    align-items: center
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-soft);
    color: #8a681e;
    border: 1px solid #f1dfac;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px
}

h1 {
    color: var(--navy);
    font-size: 56px;
    line-height: 1.03;
    letter-spacing: -.055em;
    margin: 0 0 18px
}

.hero p {
    color: var(--muted);
    font-size: 18px;
    max-width: 660px;
    margin: 0 0 24px
}

.search-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 12px;
    display: grid;
    grid-template-columns:1.1fr .85fr auto;
    gap: 10px;
    max-width: 720px
}

.search-panel input, .search-panel select {
    border: 1px solid #dfe3ef;
    border-radius: 12px;
    padding: 14px;
    font-size: 15px;
    color: var(--text);
    width: 100%
}

.hero-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px
}

.micro {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700
}

.micro i {
    color: var(--green)
}

.hero-room-frame {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 16px;
    box-shadow: var(--shadow)
}

.therapy-room-visual {
    min-height: 370px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fbfd 0%, #eef4f8 100%);
}

.wall {
    position: absolute;
    inset: 0 0 38%;
    background: linear-gradient(180deg, #f8fbfd, #edf4f8)
}

.floor {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 42%;
    background: linear-gradient(180deg, #ede5d8, #dfd2c3)
}

.window {
    position: absolute;
    left: 34px;
    top: 34px;
    width: 130px;
    height: 160px;
    background: linear-gradient(180deg, #ffffff, #dff2fb);
    border: 10px solid #fff;
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(32, 28, 90, .08)
}

.window:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #fff
}

.window:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: #fff
}

.plant {
    position: absolute;
    right: 58px;
    bottom: 92px;
    width: 76px;
    height: 120px
}

.pot {
    position: absolute;
    bottom: 0;
    left: 22px;
    width: 36px;
    height: 40px;
    background: #d7b45f;
    border-radius: 8px 8px 14px 14px
}

.leaf {
    position: absolute;
    background: #86b897;
    border-radius: 80% 0 80% 0;
    transform-origin: bottom center
}

.leaf.one {
    width: 34px;
    height: 60px;
    left: 6px;
    bottom: 38px;
    transform: rotate(-28deg)
}

.leaf.two {
    width: 38px;
    height: 70px;
    left: 27px;
    bottom: 38px;
    transform: rotate(20deg)
}

.leaf.three {
    width: 28px;
    height: 50px;
    left: 20px;
    bottom: 60px;
    transform: rotate(-3deg)
}

.chair {
    position: absolute;
    left: 68px;
    bottom: 72px;
    width: 160px;
    height: 120px
}

.chair-back {
    position: absolute;
    left: 20px;
    top: 0;
    width: 115px;
    height: 95px;
    background: #d8eaf3;
    border-radius: 28px 28px 20px 20px;
    box-shadow: 0 16px 26px rgba(32, 28, 90, .10)
}

.chair-seat {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 155px;
    height: 55px;
    background: #c9deeb;
    border-radius: 24px
}

.chair-leg {
    position: absolute;
    bottom: -36px;
    width: 8px;
    height: 42px;
    background: #9ba9b8;
    border-radius: 999px
}

.chair-leg.left {
    left: 32px
}

.chair-leg.right {
    right: 32px
}

.sofa {
    position: absolute;
    right: 138px;
    bottom: 72px;
    width: 185px;
    height: 112px
}

.sofa-back {
    position: absolute;
    left: 10px;
    top: 0;
    width: 155px;
    height: 84px;
    background: #fff;
    border: 1px solid #e7e9f2;
    border-radius: 24px 24px 14px 14px;
    box-shadow: 0 18px 34px rgba(32, 28, 90, .09)
}

.sofa-seat {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 185px;
    height: 56px;
    background: #fefefe;
    border: 1px solid #e7e9f2;
    border-radius: 18px;
    box-shadow: 0 10px 22px rgba(32, 28, 90, .08)
}

.table {
    position: absolute;
    left: 250px;
    bottom: 86px;
    width: 85px;
    height: 48px;
    background: #d8c2a6;
    border-radius: 50%;
    box-shadow: 0 12px 18px rgba(32, 28, 90, .08)
}

.table-leg {
    position: absolute;
    left: 288px;
    bottom: 42px;
    width: 8px;
    height: 50px;
    background: #b0997b;
    border-radius: 999px
}

.room-card-overlay {
    text-decoration: none;
    display: block;
    transition: .25s ease;
}

.room-card-overlay:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(32, 28, 90, .16);
}

.room-card-overlay {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 16px 34px rgba(32, 28, 90, .12)
}



.room-card-overlay h3 {
    margin: 0 0 5px;
    color: var(--navy)
}

.room-card-overlay p {
    font-size: 13px;
    color: var(--muted);
    margin: 0 0 10px
}

.badges, .tags {
    display: flex;
    gap: 7px;
    flex-wrap: wrap
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 999px;
    background: var(--soft-blue);
    border: 1px solid #d9ecf8;
    color: #34506f;
    padding: 5px 9px;
    font-size: 12px;
    font-weight: 900
}

.badge.gold {
    background: var(--gold-soft);
    border-color: #f1dfac;
    color: #8a681e
}

.badge.green {
    background: #edf8f2;
    border-color: #d3eddd;
    color: #347553
}

.badge.navy {
    background: #f1efff;
    border-color: #dcd8ff;
    color: #40368e
}

.stats-strip {
    background: var(--navy2);
    color: #fff;
    padding: 24px 0
}

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

.stat {
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 16px;
    padding: 18px;
    text-align: center
}

.stat strong {
    display: block;
    font-size: 30px;
    line-height: 1
}

.stat span {
    color: #d8d7ff;
    font-size: 13px
}

.section {
    padding: 62px 0
}

.section.alt {
    background: var(--soft)
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 28px
}

.section h2 {
    color: var(--navy);
    font-size: 36px;
    line-height: 1.14;
    letter-spacing: -.04em;
    margin: 0 0 10px
}

.lead {
    color: var(--muted);
    max-width: 760px;
    margin: 0;
    font-size: 16px
}

.grid3 {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 22px
}

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

.two-col {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px;
    align-items: start
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden
}

.card-body {
    padding: 22px
}

.card h3 {
    color: var(--navy);
    margin: 0 0 8px
}

.card-body h3 {
    min-height: 52px;
}

.tags {
    min-height: 32px;
}

.card p {
    color: var(--muted);
    margin: 0;
    font-size: 14px
}

.real-room-img {
    padding: 0;
    overflow: hidden;
}

.real-room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-img {
    height: 192px;
    background: linear-gradient(135deg, #e7edf4, #fff);
    display: grid;
    place-items: center;
    color: rgba(32, 28, 90, .24);
    font-size: 28px;
    font-weight: 900
}

.room-img.room-a {
    background: linear-gradient(135deg, #eef6fb, #fff8e7)
}

.room-img.room-b {
    background: linear-gradient(135deg, #f1efff, #ffffff)
}

.room-img.room-c {
    background: linear-gradient(135deg, #edf8f2, #ffffff)
}

.room-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    color: var(--muted);
    font-size: 13px;
    margin: 10px 0
}

.price {
    color: var(--navy);
    font-weight: 900
}

.process-card, .category-card, .review-card {
    padding: 24px
}

.step-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #f1efff;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 14px
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: var(--soft-blue);
    color: var(--navy);
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 14px
}

.owner-band {
    background: linear-gradient(135deg, var(--navy), #40368e);
    color: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 38px;
    display: grid;
    grid-template-columns:1fr 320px;
    gap: 32px;
    align-items: center
}

.owner-band h2 {
    color: #fff !important;
    margin: 0 0 12px
}

.owner-band p {
    color: #e7e6ff;
    margin: 0 0 20px;
    max-width: 720px
}

.owner-box {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 20px;
    padding: 18px
}

.owner-box .row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    padding: 10px 0;
    color: #e7e6ff;
    font-size: 14px
}

.owner-box .row:last-child {
    border-bottom: 0
}

.list {
    display: grid;
    gap: 12px
}

.list-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px
}

.list-item i {
    color: var(--gold);
    font-size: 20px;
    margin-top: 3px
}

.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #f1efff;
    color: var(--navy);
    display: grid;
    place-items: center;
    font-weight: 900
}

.stars {
    color: #f4a62a;
    font-weight: 900
}

.category-card i {
    color: var(--navy);
    font-size: 25px;
    margin-bottom: 12px
}

.cta {
    text-align: center;
    padding: 62px 0;
    background: #fff
}

.cta h2 {
    margin-bottom: 10px
}

.cta p {
    margin: 0 auto 24px;
    color: var(--muted);
    max-width: 720px
}

.footer {
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 44px 0 20px
}

.footer-subtitle {
    margin-top: 22px !important;
}

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

.footer h4 {
    color: var(--navy);
    margin: 0 0 12px
}

.footer a {
    display: block;
    color: #5d6682;
    font-size: 14px;
    margin: 8px 0
}

.copy {
    border-top: 1px solid var(--line);
    margin-top: 30px;
    padding-top: 18px;
    color: #9aa2b9;
    font-size: 13px
}

@media (max-width: 960px) {
    .links {
        display: none
    }

    .hero-grid, .grid3, .grid4, .two-col, .owner-band, .footgrid {
        grid-template-columns:1fr
    }

    h1 {
        font-size: 40px
    }

    .search-panel {
        grid-template-columns:1fr
    }

    .section-head {
        display: block
    }

    .stats-grid {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 560px) {
    .container {
        padding: 0 14px
    }

    .hero {
        padding: 38px 0 34px
    }

    h1 {
        font-size: 32px
    }

    .section {
        padding: 42px 0
    }

    .section h2 {
        font-size: 27px
    }

    .btn {
        width: 100%
    }

    .hero-links {
        display: grid
    }

    .stats-grid {
        grid-template-columns:1fr
    }

    .owner-band {
        padding: 24px
    }

    .therapy-room-visual {
        min-height: 310px
    }

    .sofa {
        display: none
    }

    .chair {
        left: 35px
    }

    .plant {
        right: 35px
    }

    .room-card-overlay {
        left: 14px;
        right: 14px
    }
}

.category-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: .25s ease;
}

.category-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: #d9ecf8;
}

.category-link:hover h3 {
    color: var(--navy);
}

.sticky-card {
    position: sticky;
    top: 100px;
}
.real-room-img {
    padding: 0;
    overflow: hidden;
}

.real-room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.process-card {
    transition: .25s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.marketplace-stats {
    background: var(--navy2);
    color: #fff;
    padding: 24px 0;
}

.marketplace-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.marketplace-stats .stat {
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .04);
    border-radius: 16px;
    padding: 18px;
    text-align: center;
}

.marketplace-stats .stat strong {
    display: block;
    font-size: 30px;
    line-height: 1;
    color: #fff;
}

.marketplace-stats .stat span {
    display: block;
    margin-top: 7px;
    color: #d8d7ff;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 960px) {
    .marketplace-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .marketplace-stats .stats-grid {
        grid-template-columns: 1fr;
    }
}


/* Sample Lead Popup */
.sample-lead-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.sample-lead-card h3 {
    color: var(--navy);
    margin: 0;
    padding: 18px 20px;
    background: var(--soft);
    border-bottom: 1px solid var(--line);
    font-size: 20px;
    font-weight: 600;
}

.sample-row {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 15px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--line);
}

.sample-row:last-child {
    border-bottom: 0;
}

.sample-row span {
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
}

.sample-row strong {
    color: var(--navy);
    font-weight: 600;
    line-height: 1.45;
}

.popup-actions {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: flex-end;
}

/* Popup Buttons */
.popupBody .btn {
    min-width: 170px;
}

/* Mobile */
@media (max-width: 767px) {
    .ontop {
        padding: 16px 12px;
    }

    #popup {
        max-width: 100%;
        margin-bottom: 24px;
        border-radius: 18px;
    }

    .popupHeader {
        padding: 20px 62px 20px 20px;
    }

    .popupContainer .popupHeader .header_title {
        font-size: 20px;
    }

    .popup-close {
        right: 14px;
        top: 14px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    #popup .popupBody {
        padding: 20px !important;
    }

    .sample-row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 14px 16px;
    }

    .popup-actions {
        display: grid;
    }

    .popup-actions .btn {
        width: 100%;
    }
}

/* Popup Css End */
.whatspp-float-btn {
    position: fixed;
    width: 64px;
    height: 64px;
    bottom: 28px;
    right: 28px;
    background: linear-gradient(135deg, #25d366 0%, #1ebe5d 100%);
    color: #fff !important;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 30px;
    box-shadow:
            0 14px 34px rgba(37, 211, 102, .34),
            0 4px 10px rgba(0,0,0,.12);
    z-index: 999;
    transition: .25s ease;
    border: 3px solid rgba(255,255,255,.92);
    overflow: hidden;
}

.whatspp-float-btn:hover {
    transform: translateY(-4px) scale(1.04);
    color: #fff !important;
    box-shadow:
            0 20px 42px rgba(37, 211, 102, .42),
            0 8px 18px rgba(0,0,0,.16);
}

.whatspp-float-btn:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(
            circle at top left,
            rgba(255,255,255,.28),
            transparent 55%
    );
    pointer-events: none;
}

.my-whatspp-float-btn {
    line-height: 1;
    position: relative;
    z-index: 2;
}

/* Pulse Animation */
.whatspp-float-btn:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(37, 211, 102, .45);
    animation: whatsappPulse 2.2s infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: .7;
    }
    70% {
        transform: scale(1.45);
        opacity: 0;
    }
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .whatspp-float-btn {
        width: 58px;
        height: 58px;
        right: 16px;
        bottom: 18px;
        font-size: 27px;
    }
}

.cus-alert-element {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999999;
    width: min(420px, calc(100% - 32px));
    pointer-events: none;
}

.cus-alert-element .cus-alert {
    position: relative;
    display: grid;
    grid-template-columns: 34px 1fr 34px;
    gap: 12px;
    align-items: start;
    width: 100%;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 18px 48px rgba(20, 26, 70, .18);
    color: var(--navy);
    pointer-events: auto;
    overflow: hidden;
}

.cus-alert-element .cus-alert:before {
    content: '';
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: block;
    grid-column: 1;
    grid-row: 1;
}

.cus-alert-element .cus-alert:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 100%;
    animation: alertTimer 5s linear forwards;
}

.cus-alert-element .cus-alert span {
    grid-column: 2;
    color: var(--text);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 800;
    padding-top: 4px;
}

.cus-alert-element .notice-success {
    border-color: rgba(34, 197, 94, .24);
}

.cus-alert-element .notice-success:before {
    background:
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2322c55e' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/18px no-repeat,
            rgba(34, 197, 94, .12);
}

.cus-alert-element .notice-success:after {
    background: #22c55e;
}

.cus-alert-element .notice-danger {
    border-color: rgba(220, 38, 38, .24);
}

.cus-alert-element .notice-danger:before {
    background:
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23dc2626' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 18L18 6M6 6l12 12'/%3E%3C/svg%3E") center/17px no-repeat,
            rgba(220, 38, 38, .10);
}

.cus-alert-element .notice-danger:after {
    background: #dc2626;
}

.cus-alert-element .close {
    grid-column: 3;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 12px;
    background: var(--soft);
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    line-height: 34px;
    text-align: center;
    cursor: pointer;
    opacity: 1;
    padding: 0;
    transition: .2s ease;
}

.cus-alert-element .close:hover {
    background: var(--navy);
    color: #fff;
}

@keyframes alertTimer {
    from { width: 100%; }
    to { width: 0%; }
}

@keyframes trAlertIn {
    from {
        opacity: 0;
        transform: translateY(-12px) translateX(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

@keyframes trAlertOut {
    from {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px) translateX(12px);
    }
}

.cus-alert-element .fadeInDown {
    animation: trAlertIn .28s ease forwards;
}

.cus-alert-element .fadeOutUp {
    animation: trAlertOut .28s ease forwards;
}

@media (max-width: 767px) {
    .cus-alert-element {
        top: 14px;
        right: 16px;
        left: 16px;
        width: auto;
    }

    .cus-alert-element .cus-alert {
        grid-template-columns: 30px 1fr 32px;
        padding: 14px;
        border-radius: 16px;
    }

    .cus-alert-element .cus-alert:before {
        width: 30px;
        height: 30px;
    }

    .cus-alert-element .close {
        width: 32px;
        height: 32px;
        line-height: 32px;
    }
}

/* ===========================
   Pagination
=========================== */

.pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin:50px 0 20px;
    flex-wrap:wrap;
}

.pagination .page{
    min-width:46px;
    height:46px;
    padding:0 16px;
    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff;
    color:var(--navy,#201c5a);

    border:1px solid #e6e9f2;
    border-radius:14px;

    font-size:15px;
    font-weight:700;
    text-decoration:none;

    transition:all .25s ease;
    box-shadow:0 4px 12px rgba(20,26,70,.05);
}

.pagination .page:hover{
    background:#f6f8fc;
    border-color:#d4d9e8;
    color:var(--navy,#201c5a);
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(20,26,70,.10);
}

.pagination .page.active,
.pagination .page.current{
    background:var(--navy,#201c5a);
    color:#fff;
    border-color:var(--navy,#201c5a);
    box-shadow:0 10px 22px rgba(32,28,90,.22);
    cursor:default;
}

.pagination .page.active:hover,
.pagination .page.current:hover{
    transform:none;
}

.pagination .page.disabled{
    opacity:.45;
    pointer-events:none;
}

@media (max-width:768px){

    .pagination{
        gap:8px;
        margin:35px 0;
    }

    .pagination .page{
        min-width:40px;
        height:40px;
        border-radius:12px;
        font-size:14px;
        padding:0 14px;
    }

}

/* =========================================
   REVIEW POPUP
========================================= */


/* Popup Css Start */

.ontop {
    z-index: 999999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    position: fixed;
    background: rgba(20, 26, 70, .58);
    color: var(--text);
    opacity: 1;
    overflow: auto;
    padding: 30px 14px;
}

.popupContainer {
    width: 100%;
    background: #fff;
}

.popupHeader {
    padding: 22px 70px 22px 26px;
    color: var(--navy);
    background: linear-gradient(135deg, #fff, var(--soft));
    border-bottom: 1px solid var(--line);
    position: relative;
    display: block;
    width: 100%;
}

.popupContainer .popupHeader .header_title {
    width: 100%;
    text-align: left;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -.03em;
}

.popup-close:hover {
    background: var(--navy);
    color: #fff !important;
    transform: translateY(-2px);
}

.popup-close span {
    line-height: 1;
}

#popup .popupBody {
    width: 100% !important;
    padding: 26px !important;
    display: block !important;
}

.user_portfolio {
    color: var(--text);
}

.user_portfolio p,
#txt-success-message {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

.formMain {
    margin: 0;
    display: inline-block;
    width: 100%;
}

.header_title .has-photo {
    background-size: 40px auto;
    background-repeat: no-repeat;
    padding-top: 0;
    vertical-align: middle;
    position: relative;
    display: inline-block;
    line-height: 50px;
}

.header_title .has-photo img {
    height: 50px;
    border: 1px solid var(--line);
    padding: 2px;
    width: 50px;
    border-radius: 12px;
}

.popupBody textarea {
    min-height: 150px;
}


/* Popup background overlay */
.ontop {
    position: fixed;
    inset: 0;
    z-index: 99999;
    overflow-y: auto;
    padding: 35px 18px;
    background: rgba(23, 19, 75, .68);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Popup position */
.ontop #popup {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    min-height: 100%;
}

/* Main popup card */
#confirmpop.popupContainer {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: auto;
    overflow: hidden;
    border: 1px solid rgba(231, 233, 242, .9);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(20, 26, 70, .22);
}

/* =========================================
   POPUP HEADER
========================================= */

#confirmpop .popupHeader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    padding: 20px 70px 20px 28px;
    border-bottom: 1px solid var(--line);
    background:
            linear-gradient(
                    135deg,
                    rgba(238, 246, 251, .95),
                    rgba(255, 248, 231, .75)
            );
}

#confirmpop .header_title {
    color: var(--navy);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.3px;
}

#confirmpop .popup-close {
    position: absolute;
    top: 50%;
    right: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    transform: translateY(-50%);
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #ffffff;
    color: var(--muted);
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(20, 26, 70, .06);
    transition:
            color .2s ease,
            background-color .2s ease,
            border-color .2s ease,
            transform .2s ease;
}

#confirmpop .popup-close:hover {
    border-color: rgba(217, 92, 92, .25);
    background: rgba(217, 92, 92, .08);
    color: var(--red);
    transform: translateY(-50%) rotate(90deg);
}

/* =========================================
   FORM AREA
========================================= */

#confirmpop .popupBody {
    padding: 30px 28px 12px;
    background: #ffffff;
}

#confirmpop .user_portfolio {
    width: 100%;
}

/* Fix Bootstrap negative row margins inside popup */
#confirmpop .user_portfolio > .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -8px;
    margin-left: -8px;
}

#confirmpop .user_portfolio > .row > [class*="col-"] {
    padding-right: 8px;
    padding-left: 8px;
}

#confirmpop .mb-e-20 {
    margin-bottom: 20px;
}

/* Form labels */
#confirmpop .field-label {
    display: block;
    margin: 0 0 8px;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

#confirmpop .field-label.w-100 {
    width: 100%;
}

/* Text input and textarea */
#confirmpop .form-control {
    width: 100%;
    height: 50px;
    padding: 12px 15px;
    border: 1px solid var(--line);
    border-radius: 12px;
    outline: none;
    background: var(--soft);
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    line-height: 1.45;
    box-shadow: none;
    transition:
            border-color .2s ease,
            background-color .2s ease,
            box-shadow .2s ease;
}

#confirmpop .form-control:hover {
    border-color: #d8dbea;
    background: #ffffff;
}

#confirmpop .form-control:focus {
    border-color: var(--blue);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(126, 194, 229, .18);
}

#confirmpop textarea.form-control {
    display: block;
    min-height: 135px;
    height: 135px;
    padding: 15px;
    resize: vertical;
}

#confirmpop .form-control::placeholder {
    color: #9ca3ba;
}

/* Optional error styling */
#confirmpop .form-control.error,
#confirmpop .form-control.is-invalid {
    border-color: var(--red);
    background: rgba(217, 92, 92, .035);
    box-shadow: 0 0 0 4px rgba(217, 92, 92, .1);
}

/* =========================================
   STAR RATING
========================================= */

#confirmpop .inputrating.rating {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    min-height: 50px;
    margin: 0;
    padding: 7px 13px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--gold-soft);
}

/* Hide radio buttons */
#confirmpop .rating input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* Empty stars */
#confirmpop .rating label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 34px;
    margin: 0;
    cursor: pointer;
    color: #d8d9df;
    font-size: 31px;
    line-height: 1;
    transition:
            color .15s ease,
            transform .15s ease;
}

/* Hovered and selected stars */
#confirmpop .rating label:hover,
#confirmpop .rating label:hover ~ label,
#confirmpop .rating input[type="radio"]:checked ~ label {
    color: var(--gold);
}

#confirmpop .rating label:hover {
    transform: translateY(-2px) scale(1.08);
}

#confirmpop .rating input[type="radio"]:focus + label {
    border-radius: 5px;
    outline: 3px solid rgba(126, 194, 229, .3);
}

/* =========================================
   CAPTCHA
========================================= */

#confirmpop .g-recaptcha {
    display: inline-block;
    max-width: 100%;
}

#confirmpop center {
    display: block;
    width: 100%;
}

/* =========================================
   SUBMIT BUTTON
========================================= */

#confirmpop #review-submit.btn {
    min-width: 165px;
    min-height: 50px;
    padding: 13px 28px;
    border: 1px solid var(--navy);
    border-radius: 12px;
    outline: none;
    background: var(--navy);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .1px;
    box-shadow: 0 10px 22px rgba(32, 28, 90, .18);
    cursor: pointer;
    transition:
            background-color .2s ease,
            border-color .2s ease,
            box-shadow .2s ease,
            transform .2s ease;
}

#confirmpop #review-submit.btn:not(:disabled):hover {
    border-color: var(--navy2);
    background: var(--navy2);
    box-shadow: 0 13px 28px rgba(32, 28, 90, .24);
    transform: translateY(-2px);
}

#confirmpop #review-submit.btn:not(:disabled):active {
    box-shadow: 0 6px 14px rgba(32, 28, 90, .18);
    transform: translateY(0);
}

/* Disabled until reCAPTCHA is completed */
#confirmpop #review-submit.btn:disabled {
    border-color: #d8dbea;
    background: #e8eaf1;
    color: #969db3;
    box-shadow: none;
    cursor: not-allowed;
    opacity: 1;
}

/* =========================================
   MODAL FOOTER
========================================= */

#confirmpop .modal-footer {
    display: block;
    padding: 20px 28px 24px;
    border-top: 1px solid var(--line);
    background: var(--soft);
    text-align: left;
}

#confirmpop .modal-footer p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

#confirmpop .modal-footer p:last-child {
    margin-bottom: 0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767px) {
    .ontop {
        padding: 15px 10px;
    }

    #confirmpop.popupContainer {
        border-radius: 16px;
    }

    #confirmpop .popupHeader {
        min-height: 68px;
        padding: 17px 60px 17px 20px;
    }

    #confirmpop .header_title {
        font-size: 19px;
    }

    #confirmpop .popup-close {
        right: 17px;
        width: 35px;
        height: 35px;
    }

    #confirmpop .popupBody {
        padding: 23px 18px 8px;
    }

    #confirmpop .modal-footer {
        padding: 18px;
    }

    #confirmpop .user_portfolio > .row {
        margin-right: 0;
        margin-left: 0;
    }

    #confirmpop .user_portfolio > .row > [class*="col-"] {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }

    #confirmpop .inputrating.rating {
        width: 100%;
        justify-content: center;
    }

    #confirmpop #review-submit.btn {
        width: 100%;
    }
}

@media (max-width: 380px) {
    #confirmpop .rating label {
        width: 28px;
        font-size: 28px;
    }

    /* Keeps normal reCAPTCHA inside a small screen */
    #confirmpop .g-recaptcha {
        transform: scale(.88);
        transform-origin: center top;
        margin-bottom: -8px;
    }
}

/* =========================================
   REVIEW FORM
========================================= */

#confirmpop .review-form {
    display: block;
    width: 100%;
    margin: 0;
}

#confirmpop .review-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
    width: 100%;
}

#confirmpop .review-field {
    min-width: 0;
    margin: 0;
}

#confirmpop .review-field-full {
    grid-column: 1 / -1;
}

#confirmpop .review-form .hidden {
    display: none !important;
}

/* Labels */

#confirmpop .review-form .field-label {
    display: block;
    width: 100%;
    margin: 0 0 8px;
    padding: 0;
    border: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

/* Inputs */

#confirmpop .review-form .form-control {
    display: block;
    width: 100%;
    height: 52px;
    margin: 0;
    padding: 12px 15px;
    border: 1px solid #dde1ec;
    border-radius: 12px;
    outline: none;
    background: #fff;
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    line-height: 1.45;
    box-shadow: 0 1px 2px rgba(20, 26, 70, .03);
    transition:
            border-color .2s ease,
            box-shadow .2s ease,
            background-color .2s ease;
}

#confirmpop .review-form .form-control:hover {
    border-color: #cdd3e2;
}

#confirmpop .review-form .form-control:focus {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(126, 194, 229, .18);
}

#confirmpop .review-form textarea.form-control {
    height: 140px;
    min-height: 140px;
    padding: 14px 15px;
    resize: vertical;
}

#confirmpop .review-form .form-control::placeholder {
    color: #9ca4b8;
}

/* Rating section */

#confirmpop .review-rating-field {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

#confirmpop .review-rating-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 54px;
}

#confirmpop .inputrating.rating {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    min-height: 52px;
    margin: 0;
    padding: 7px 13px;
    border: 1px solid rgba(215, 180, 95, .42);
    border-radius: 12px;
    background: var(--gold-soft);
}

#confirmpop .rating input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

#confirmpop .rating label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    color: #d6d9e2;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    transition:
            color .15s ease,
            transform .15s ease;
}

#confirmpop .rating label:hover,
#confirmpop .rating label:hover ~ label,
#confirmpop .rating input[type="radio"]:checked ~ label {
    color: var(--gold);
}

#confirmpop .rating label:hover {
    transform: translateY(-2px) scale(1.06);
}

#confirmpop .rating input[type="radio"]:focus + label {
    border-radius: 5px;
    outline: 3px solid rgba(126, 194, 229, .28);
}

#confirmpop .review-rating-hint {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

/* Form actions */

#confirmpop .review-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding-top: 2px;
}

#confirmpop .review-recaptcha {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 304px;
}

#confirmpop .review-recaptcha .g-recaptcha {
    display: inline-block;
}

#confirmpop .review-submit-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Submit button */

#confirmpop #review-submit.btn {
    width: auto;
    min-width: 180px;
    min-height: 52px;
    margin: 0;
    padding: 13px 26px;
    border: 1px solid var(--navy);
    border-radius: 12px;
    outline: none;
    background: var(--navy);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(32, 28, 90, .18);
    transition:
            background-color .2s ease,
            border-color .2s ease,
            box-shadow .2s ease,
            transform .2s ease;
}

#confirmpop #review-submit.btn:not(:disabled):hover {
    border-color: var(--navy2);
    background: var(--navy2);
    box-shadow: 0 14px 28px rgba(32, 28, 90, .24);
    transform: translateY(-2px);
}

#confirmpop #review-submit.btn:not(:disabled):active {
    transform: translateY(0);
}

#confirmpop #review-submit.btn:disabled {
    border-color: #dce0ea;
    background: #e8eaf1;
    color: #929ab0;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 1;
}

/* Display-name switch */

#confirmpop .checkbox-switch {
    position: relative;
    display: inline-flex;
}

#confirmpop .switch-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

#confirmpop .switch-label {
    position: relative;
    display: block;
    width: 52px;
    height: 28px;
    margin: 0;
    border-radius: 20px;
    background: #dfe2eb;
    cursor: pointer;
    transition: background-color .2s ease;
}

#confirmpop .switch-label::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(20, 26, 70, .18);
    transition: transform .2s ease;
}

#confirmpop .switch-input:checked + .switch-label {
    background: var(--green);
}

#confirmpop .switch-input:checked + .switch-label::after {
    transform: translateX(24px);
}

/* Accessible hidden text */

#confirmpop .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Mobile */

@media (max-width: 680px) {
    #confirmpop .review-form-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    #confirmpop .review-field-full {
        grid-column: 1;
    }

    #confirmpop .review-rating-wrap {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    #confirmpop .inputrating.rating {
        width: 100%;
        justify-content: center;
    }

    #confirmpop .review-form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    #confirmpop .review-recaptcha,
    #confirmpop .review-submit-wrap {
        justify-content: center;
        width: 100%;
        min-width: 0;
    }

    #confirmpop #review-submit.btn {
        width: 100%;
    }
}

@media (max-width: 380px) {
    #confirmpop .review-recaptcha .g-recaptcha {
        margin-bottom: -8px;
        transform: scale(.88);
        transform-origin: center top;
    }

    #confirmpop .rating label {
        width: 31px;
        font-size: 29px;
    }
}

/* =========================================
   HELP POPUP BODY
========================================= */

.help-popup-body {
    padding: 32px 28px 30px !important;
    background: #ffffff;
}

.help-popup-content {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Main icon */

.help-popup-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    border: 1px solid rgba(126, 194, 229, .35);
    border-radius: 18px;
    background: var(--soft-blue);
    color: var(--navy);
    font-size: 27px;
    box-shadow: var(--shadow-soft);
}

/* Introductory text */

.help-popup-intro {
    max-width: 520px;
    margin: 0 auto 22px !important;
    color: var(--muted) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}

/* Section heading */

.help-popup-heading {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

/* Action links */

.help-popup-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    text-align: left;
}

.help-popup-action {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 78px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
    color: var(--text);
    text-decoration: none !important;
    box-shadow: 0 6px 18px rgba(20, 26, 70, .04);
    transition:
            border-color .2s ease,
            background-color .2s ease,
            box-shadow .2s ease,
            transform .2s ease;
}

.help-popup-action:hover {
    color: var(--text);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(20, 26, 70, .09);
}

/* Action icon */

.help-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 13px;
    font-size: 20px;
}

/* Action text */

.help-action-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.help-action-content strong {
    margin-bottom: 3px;
    color: var(--navy);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
}

.help-action-content small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
    font-weight: 400;
}

/* Arrow */

.help-action-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 20px;
    transition:
            color .2s ease,
            transform .2s ease;
}

.help-popup-action:hover .help-action-arrow {
    color: var(--navy);
    transform: translateX(3px);
}

/* Questionnaire option */

.help-popup-questionnaire {
    border-color: rgba(126, 194, 229, .38);
    background: linear-gradient(
            135deg,
            rgba(238, 246, 251, .75),
            #ffffff
    );
}

.help-popup-questionnaire .help-action-icon {
    background: var(--soft-blue);
    color: var(--navy);
}

.help-popup-questionnaire:hover {
    border-color: var(--blue);
}

/* WhatsApp option */

.help-popup-whatsapp {
    border-color: rgba(74, 167, 122, .32);
    background: linear-gradient(
            135deg,
            rgba(74, 167, 122, .08),
            #ffffff
    );
}

.help-popup-whatsapp .help-action-icon {
    background: rgba(37, 211, 102, .12);
    color: #159447;
}

.help-popup-whatsapp:hover {
    border-color: #25d366;
}

.help-popup-whatsapp:hover .help-action-content strong,
.help-popup-whatsapp:hover .help-action-arrow {
    color: #12803b;
}

/* Mobile */

@media (max-width: 600px) {
    .help-popup-body {
        padding: 26px 18px 24px !important;
    }

    .help-popup-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 16px;
        font-size: 24px;
    }

    .help-popup-intro {
        margin-bottom: 20px !important;
        font-size: 14px !important;
    }

    .help-popup-action {
        grid-template-columns: 44px minmax(0, 1fr) 20px;
        gap: 11px;
        min-height: 74px;
        padding: 13px;
    }

    .help-action-icon {
        width: 44px;
        height: 44px;
        font-size: 19px;
    }

    .help-action-content strong {
        font-size: 14px;
    }

    .help-action-content small {
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .help-popup-action {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .help-action-arrow {
        display: none;
    }
}