/* ===== SERVICES PAGE — v0.8 ===== */

/* ---------- Guest page overrides ---------- */
.svc-search-row-guest {
    top: 0;
    border-radius: 14px;
    background: #fff;
}

.svc-search-row-guest.svc-stuck {
    border-radius: 0 0 16px 16px;
}

/* Fix: modal must be above landing header (z-index:9999) */
#descriptionModal.modal {
    z-index: 10010 !important;
}

.modal-backdrop {
    z-index: 10000 !important;
}

body.modal-open .svc-search-row-guest {
    position: relative !important;
    z-index: auto !important;
}

/* Guest modal — rounded corners */
#descriptionModal .modal-content {
    border-radius: 16px;
    overflow: hidden;
}

#descriptionModal .modal-header {
    border-radius: 16px 16px 0 0;
}

/* Reduce hero area height on services page */
.page-title-area {
    padding-top: 80px !important;
    padding-bottom: 30px !important;
}

.page-title-area .d-table {
    height: auto !important;
}

.page-title-area h2 {
    font-size: 24px !important;
    margin-bottom: 0 !important;
}

.ptb-80 {
    padding-top: 30px !important;
}

/* ---------- Hero ---------- */
.svc-hero {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 24px;
}

.svc-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #7239EA 0%, #5b21b6 40%, #4c1d95 70%, #7c3aed 100%);
    background-size: 200% 200%;
    animation: svcHeroShift 8s ease infinite;
    z-index: 0;
}

@keyframes svcHeroShift {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

.svc-hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 65%);
    animation: svcOrb1 6s ease-in-out infinite;
}

.svc-hero-bg::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 50%;
    height: 180%;
    background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 55%);
    animation: svcOrb2 8s ease-in-out infinite;
}

@keyframes svcOrb1 {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(-20px, 15px); }
}

@keyframes svcOrb2 {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(15px, -10px); }
}

/* Floating decorative shapes */
.svc-hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.svc-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
}

.svc-shape-1 {
    width: 120px;
    height: 120px;
    top: -20px;
    right: 60px;
    animation: svcFloat 7s ease-in-out infinite;
}

.svc-shape-2 {
    width: 60px;
    height: 60px;
    bottom: 10px;
    right: 200px;
    animation: svcFloat 5s ease-in-out infinite 1s;
}

.svc-shape-3 {
    width: 80px;
    height: 80px;
    top: 30px;
    right: 300px;
    border-radius: 16px;
    transform: rotate(45deg);
    animation: svcFloat 9s ease-in-out infinite 2s;
}

@keyframes svcFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

.svc-hero-content {
    position: relative;
    z-index: 1;
    padding: 36px 40px 32px;
}

.svc-hero-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.svc-hero-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.svc-hero-icon i {
    font-size: 28px;
    color: #fff !important;
}

.svc-hero-text h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 6px;
    letter-spacing: -.3px;
}

.svc-hero-text p {
    color: rgba(255,255,255,.8);
    font-size: 15px;
    margin: 0;
    font-weight: 400;
}

/* Stats row */
.svc-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.svc-stat-card {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 14px;
    padding: 18px 26px;
    min-width: 140px;
    transition: all .25s ease;
    cursor: default;
}

.svc-stat-card:hover {
    background: rgba(255,255,255,.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.svc-stat-value {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
}

.svc-stat-label {
    color: rgba(255,255,255,.7);
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ---------- Search + Type Filter Row ---------- */
.svc-search-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: stretch;
    position: sticky;
    top: var(--bs-app-header-height, 74px);
    z-index: 50;
    background: #fff;
    padding: 12px 0;
    transition: box-shadow .25s ease;
}

.svc-search-row.svc-stuck {
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0 0 16px 16px;
}

[data-bs-theme="dark"] .svc-search-row {
    background: transparent;
}

[data-bs-theme="dark"] .svc-search-row.svc-stuck {
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
}

.svc-search-wrap {
    position: relative;
    flex: 1;
}

.svc-type-filter {
    position: relative;
    flex-shrink: 0;
}

.svc-type-select {
    height: 100%;
    padding: 12px 16px 12px 40px;
    border: 2px solid #e0e3ec;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    background: #fff;
    color: #3f4254;
    outline: none;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
    -webkit-appearance: none;
    min-width: 160px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237239EA' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.svc-type-select:focus {
    border-color: #7239EA;
    box-shadow: 0 0 0 4px rgba(114,57,234,.1), 0 4px 16px rgba(114,57,234,.08);
}

.svc-type-filter-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #7239EA;
    font-size: 14px;
    pointer-events: none;
}

.svc-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #7239EA;
    font-size: 18px;
    pointer-events: none;
    z-index: 2;
}

.svc-search-input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border: 2px solid #e0e3ec;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    background: #fff;
    color: #3f4254;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}

.svc-search-input:focus {
    border-color: #7239EA;
    box-shadow: 0 0 0 4px rgba(114,57,234,.1), 0 4px 16px rgba(114,57,234,.08);
}

.svc-search-input::placeholder {
    color: #b5b5c3;
    font-weight: 400;
}

/* ---------- Guest Currency Picker ---------- */
.svc-currency-picker {
    position: relative;
    flex-shrink: 0;
}

.svc-currency-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e3ec;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    background: #fff;
    color: #3f4254;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
    white-space: nowrap;
}

.svc-currency-btn:hover {
    border-color: #7239EA;
}

.svc-currency-btn:focus {
    border-color: #7239EA;
    box-shadow: 0 0 0 4px rgba(114,57,234,.1);
    outline: none;
}

.svc-currency-btn-icon {
    color: #F59E0B;
    font-size: 16px;
}

.svc-currency-chevron {
    font-size: 10px;
    color: #7239EA;
    transition: transform .2s;
}

.svc-currency-chevron-open {
    transform: rotate(180deg);
}

.svc-currency-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border: 1px solid #e8e8ef;
    border-radius: 12px;
    padding: 6px;
    min-width: 160px;
    max-height: 320px;
    overflow-y: auto;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    z-index: 100;
    animation: svc-popup-in .15s ease;
}

.svc-currency-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #3f4254;
    transition: background .15s;
}

.svc-currency-item:hover {
    background: #f4f0ff;
}

.svc-currency-item.active {
    background: #7239EA;
    color: #fff;
}

.svc-currency-item-code {
    font-weight: 700;
}

.svc-currency-item-symbol {
    font-size: 15px;
    opacity: .7;
}

.svc-currency-item.active .svc-currency-item-symbol {
    opacity: 1;
}

/* Dark mode */
[data-bs-theme="dark"] .svc-currency-btn {
    background: #1e1e2d;
    border-color: rgba(255,255,255,.1);
    color: #e4e6ef;
}

[data-bs-theme="dark"] .svc-currency-dropdown {
    background: #1e1e2d;
    border-color: #2d2d3f;
    box-shadow: 0 8px 30px rgba(0,0,0,.4);
}

[data-bs-theme="dark"] .svc-currency-item {
    color: #e4e6ef;
}

[data-bs-theme="dark"] .svc-currency-item:hover {
    background: rgba(114,57,234,.15);
}

[data-bs-theme="dark"] .svc-currency-item.active {
    background: #7239EA;
    color: #fff;
}

/* ---------- Category Groups Grid ---------- */
.svc-groups {
    margin-bottom: 24px;
    padding: 20px;
    background: #f8f9fc;
    border-radius: 20px;
    border: 1px solid #eef0f7;
}

.svc-groups-inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 14px;
}

.svc-group-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 12px 18px;
    border-radius: 18px;
    border: 2px solid transparent;
    background: #fff;
    cursor: pointer;
    text-align: center;
    min-height: 108px;
    transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.svc-group-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(114,57,234,.1), 0 2px 6px rgba(0,0,0,.05);
    border-color: rgba(114,57,234,.15);
}

.svc-group-card.active {
    border-color: #7239EA;
    background: linear-gradient(135deg, rgba(114,57,234,.06), rgba(114,57,234,.02));
    box-shadow: 0 4px 20px rgba(114,57,234,.15);
}

.svc-group-icon {
    font-size: 38px;
    margin-bottom: 12px;
    color: #7239EA;
    transition: transform .2s ease;
    line-height: 1;
}
#svc-groups .svc-group-icon i {
    font-size: 38px !important;
}

/* Brand-specific icon colors — !important to override parent color inheritance */
.svc-group-icon .fa-tiktok { color: #000000 !important; }
.svc-group-icon .fa-facebook { color: #1877F2 !important; }
.svc-group-icon .fa-youtube { color: #FF0000 !important; }
.svc-group-icon .fa-instagram { color: #E4405F !important; }
.svc-group-icon .fa-at { color: #000000 !important; }
.svc-group-icon .fa-threads { color: #000000 !important; }
.svc-group-icon .fa-twitter { color: #1DA1F2 !important; }
.svc-group-icon .fa-line { color: #06C755 !important; }
.svc-group-icon .fa-telegram-plane { color: #26A5E4 !important; }
.svc-group-icon .fa-discord { color: #5865F2 !important; }
.svc-group-icon .fa-twitch { color: #9146FF !important; }
.svc-group-icon .fa-spotify { color: #1DB954 !important; }
.svc-group-icon .fa-headset { color: #53FC18 !important; }
.svc-group-icon .fa-chart-line { color: #F59E0B !important; }
.svc-group-icon .fa-crown { color: #F59E0B !important; }
.svc-group-icon .fa-key { color: #F59E0B !important; }
.svc-group-icon .fa-globe { color: #3B82F6 !important; }
.svc-group-icon .fa-flag { color: #EF4444 !important; }
.svc-group-icon .fa-video { color: #EE4D2D !important; }
.svc-group-icon .fa-shopping-bag { color: #EE4D2D !important; }
.svc-group-icon .fa-gem { color: #8B5CF6 !important; }

.svc-group-card:hover .svc-group-icon {
    transform: scale(1.1);
}

.svc-group-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 6px;
}

.svc-group-name {
    font-size: 13px;
    font-weight: 700;
    color: #3f4254;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.svc-group-card.active .svc-group-name {
    color: #7239EA;
}

/* ---------- Category cards ---------- */
.svc-card {
    border: 1px solid #eef0f7;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    overflow: visible;
    margin-bottom: 18px;
    background: #fff;
    animation: svcCardIn .4s ease both;
}
.svc-card .table-overflow {
    overflow: visible !important;
}

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

.svc-card .card-header {
    border-left: 5px solid #7239EA;
    padding: 18px 24px;
    background: linear-gradient(90deg, rgba(114,57,234,.03), transparent);
    border-bottom: 1px solid #eef0f7;
}

.svc-card .card-header .card-title {
    margin: 0;
}

.svc-card .card-header .card-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #3f4254;
}

.svc-card .card-header .card-label i {
    color: #7239EA !important;
    font-size: 20px;
}

.svc-card .card-header .card-label img {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    object-fit: cover;
    vertical-align: middle;
}

.svc-cat-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #7239EA;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    min-width: 28px;
    margin-left: 4px;
}

.svc-card .card-body {
    padding: 0;
}

/* ---------- Table ---------- */
.svc-table {
    width: 100%;
    border-collapse: collapse;
}

/* Override Bootstrap's thick 2px border between thead/tbody */
.svc-table > :not(:first-child) {
    border-top: none;
}

.svc-table thead th {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #8b8fa3;
    padding: 10px 12px;
    border-bottom: 2px solid #eef0f7;
    white-space: nowrap;
    background: #fafbfd;
}

.svc-table tbody tr {
    transition: background .15s ease, box-shadow .15s ease;
}

.svc-table tbody tr:hover {
    background: rgba(114,57,234,.03) !important;
}

.svc-table tbody td {
    padding: 10px 12px;
    border-bottom: 1px solid #f0f2f8;
    font-size: 13px;
    color: #5e6278;
    vertical-align: middle;
}

.svc-table tbody tr:last-child td {
    border-bottom: none;
}

/* ID column — !important needed to override _tables.scss padding-left:0 */
.svc-table tbody td:first-child {
    padding-left: 24px !important;
}

.svc-table thead th:first-child {
    padding-left: 24px !important;
}

.svc-id-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.svc-id-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7239EA, #5b21b6);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 8px;
    min-width: 48px;
    box-shadow: 0 2px 6px rgba(114,57,234,.25);
}

/* Heart (favourite) */
.svc-heart {
    font-size: 16px;
    cursor: pointer;
    transition: transform .15s, color .15s;
    color: #c4c4d4;
}

.svc-heart:hover {
    transform: scale(1.25);
    color: #ef4444;
}

.svc-heart.is-favourite {
    color: #ef4444 !important;
    filter: drop-shadow(0 0 4px rgba(239,68,68,.4));
}

.svc-heart.svc-heart-pop {
    animation: svcHeartPop .4s cubic-bezier(.17,.67,.4,1.3);
}

@keyframes svcHeartPop {
    0%   { transform: scale(1); }
    25%  { transform: scale(1.4); }
    50%  { transform: scale(.85); }
    75%  { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* Service name */
.svc-name {
    font-weight: 600;
    color: #3f4254;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Min/Max */
.svc-minmax {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #6c7293;
    font-size: 12px;
    font-weight: 600;
    background: #f0f2f8;
    padding: 3px 10px;
    border-radius: 6px;
}

/* Type badge */
.svc-type-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    letter-spacing: .3px;
    background: rgba(114,57,234,.08);
    color: #7239EA;
}

/* Feature indicators */
.svc-features {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}

.svc-feat {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.svc-feat-refill {
    background: rgba(5,150,105,.1);
    color: #059669;
}

.svc-feat-cancel {
    background: rgba(220,38,38,.1);
    color: #dc2626;
}

.svc-feat-drip {
    background: rgba(8,145,178,.1);
    color: #0891b2;
}

/* Rate */
.svc-rate {
    font-weight: 800;
    font-size: 15px;
    color: #059669;
}

.svc-currency {
    font-weight: 700;
    font-size: 12px;
    opacity: .7;
    margin-right: 1px;
}

/* ---------- Comparison Pricing Bar ---------- */
/* Rate wrap — relative container for hover popup */
.svc-rate-wrap {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}
.svc-rate-original {
    font-size: 11px;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: line-through;
    line-height: 1;
    margin-bottom: 2px;
}
[data-bs-theme="dark"] .svc-rate-original {
    color: #6b7280;
}

/* Comparison popup — hidden by default, shown on hover */
.svc-compare-popup {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #e8e8ef;
    border-radius: 10px;
    padding: 10px 14px;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    z-index: 50;
    white-space: nowrap;
}

/* Arrow pointing down */
.svc-compare-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #fff;
}

.svc-compare-popup::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: #e8e8ef;
}

.svc-rate-wrap:hover .svc-compare-popup {
    display: block;
    animation: svc-popup-in .15s ease;
}

@keyframes svc-popup-in {
    from { opacity: 0; transform: translateX(-50%) translateY(4px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.svc-compare-title {
    font-size: 11px;
    font-weight: 700;
    color: #7239EA;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f0f0f5;
    text-align: center;
}

.svc-compare-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 4px;
    margin-bottom: 2px;
    border-bottom: 1px solid #f0f0f5;
}
.svc-compare-header-label {
    font-size: 9px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: right;
}
.svc-compare-header > :first-child { min-width: 80px; }
.svc-compare-header > :nth-child(2) { min-width: 70px; text-align: right; }
.svc-compare-header > :nth-child(3) { min-width: 70px; text-align: right; }
.svc-compare-header > :last-child { min-width: 40px; }

.svc-compare-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 0;
    font-size: 12px;
    color: #5e6278;
    transition: opacity 0.15s;
}

.svc-compare-row + .svc-compare-row {
    border-top: 1px dashed #f0f0f5;
}

/* Below user level = dimmed */
.svc-compare-row-below {
    opacity: 0.4;
}

/* Current level = highlighted */
.svc-compare-row-active {
    color: #7239EA;
    font-weight: 700;
    background: rgba(114,57,234,0.06);
    margin: 0 -10px;
    padding: 5px 10px;
    border-radius: 6px;
}

.svc-compare-row-active .svc-compare-name::after {
    content: ' ★';
    font-size: 9px;
}

/* Above user level = aspirational */
.svc-compare-row-above .svc-compare-discount {
    color: #10b981;
    background: rgba(16,185,129,0.12);
}

.svc-compare-name {
    font-weight: 600;
    min-width: 80px;
}

.svc-compare-original {
    font-size: 11px;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: line-through;
    font-variant-numeric: tabular-nums;
    min-width: 70px;
    text-align: right;
}

.svc-compare-price {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    min-width: 70px;
    text-align: right;
}

.svc-compare-discount {
    font-size: 10px;
    font-weight: 700;
    color: #50cd89;
    background: rgba(80,205,137,.1);
    padding: 1px 6px;
    border-radius: 4px;
    min-width: 40px;
    text-align: center;
}
.svc-compare-discount-zero {
    color: #9ca3af;
    background: rgba(156,163,175,0.1);
}

/* Icon fallback */
.svc-group-icon-fallback {
    font-size: inherit;
    color: inherit;
}

/* Average delivery */
.svc-avg {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: #6c7293;
}

.svc-avg-icon {
    color: #7239EA;
    font-size: 12px;
}

.svc-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #059669, #10b981);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: 0 2px 8px rgba(5,150,105,.3);
}

/* Action buttons */
.svc-actions {
    display: flex;
    gap: 6px;
}

.svc-btn-order {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #7239EA, #5b21b6);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 2px 8px rgba(114,57,234,.25);
}

.svc-btn-order:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 18px rgba(114,57,234,.4);
    color: #fff;
}

.svc-btn-desc {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #e0e3ec;
    background: #f8f9fc;
    color: #7239EA;
    font-size: 15px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.svc-btn-desc:hover {
    background: rgba(114,57,234,.1);
    border-color: #7239EA;
    transform: translateY(-2px);
}

/* Force icons to inherit color (override _text.scss var(--bs-text-muted) on i[class*="fa-"]) */
.svc-btn-order i,
.svc-btn-desc i,
.svc-badge-new i,
.svc-feat i,
.svc-avg i,
.svc-id-cell i {
    color: inherit !important;
}

/* ---------- Description Modal ---------- */
#descriptionModal .modal-header {
    background: linear-gradient(135deg, #7239EA, #5b21b6);
    padding: 22px 28px;
    border-bottom: none;
}

#descriptionModal .modal-title {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 700;
}

#descriptionModal .modal-title .badge {
    background: rgba(255,255,255,.2);
    font-size: 13px;
    padding: 5px 14px;
    border-radius: 8px;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

#descriptionModal .btn-close {
    filter: brightness(0) invert(1);
    opacity: .8;
}

#descriptionModal .btn-close:hover {
    opacity: 1;
}

#descriptionModal .modal-body {
    padding: 28px;
    font-size: 14px;
    line-height: 1.7;
    color: #5e6278;
    max-height: 70vh;
    overflow-y: auto;
}

#descriptionModal .modal-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

#descriptionModal .modal-body iframe {
    max-width: 100%;
}

/* ---------- Skeleton ---------- */
.svc-skeleton .card-header {
    border-left: 5px solid #e0e3ec;
    background: #fff;
}

.svc-skeleton .skeleton-block {
    background: linear-gradient(90deg, #eef0f7 25%, #dfe1ea 50%, #eef0f7 75%);
    background-size: 200% 100%;
    animation: svcShimmer 1.3s ease infinite;
    border-radius: 6px;
}

@keyframes svcShimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ---------- No results ---------- */
.svc-empty {
    text-align: center;
    padding: 80px 20px;
}

.svc-empty-icon {
    font-size: 56px;
    color: #d1d5db;
    margin-bottom: 20px;
}

.svc-empty h3 {
    font-size: 18px;
    color: #6c7293;
    font-weight: 700;
    margin-bottom: 8px;
}

.svc-empty p {
    font-size: 14px;
    color: #a1a5b7;
}

/* ---------- Mobile labels (hidden on desktop) ---------- */
.svc-mobile-label {
    display: none;
}

/* ==========================================================
   DARK MODE
   ========================================================== */

[data-bs-theme="dark"] .svc-hero-bg {
    background: linear-gradient(135deg, #5b21b6 0%, #3b0764 40%, #1e0538 70%, #4c1d95 100%);
    background-size: 200% 200%;
}

[data-bs-theme="dark"] .svc-shape {
    background: rgba(255,255,255,.03);
    border-color: rgba(255,255,255,.05);
}

[data-bs-theme="dark"] .svc-search-input {
    background: #1e1e2d;
    border-color: rgba(255,255,255,.1);
    color: #e4e6ef;
}

[data-bs-theme="dark"] .svc-search-input:focus {
    border-color: #7239EA;
    box-shadow: 0 0 0 4px rgba(114,57,234,.2), 0 4px 16px rgba(114,57,234,.12);
}

[data-bs-theme="dark"] .svc-search-input::placeholder {
    color: #6c7293;
}

[data-bs-theme="dark"] .svc-search-icon {
    color: #9b74f0;
}

[data-bs-theme="dark"] .svc-type-select {
    background-color: #1e1e2d;
    border-color: rgba(255,255,255,.1);
    color: #e4e6ef;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239b74f0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

[data-bs-theme="dark"] .svc-type-select:focus {
    border-color: #7239EA;
    box-shadow: 0 0 0 4px rgba(114,57,234,.2), 0 4px 16px rgba(114,57,234,.12);
}

[data-bs-theme="dark"] .svc-type-filter-icon {
    color: #9b74f0;
}

[data-bs-theme="dark"] .svc-groups {
    background: transparent;
    border-color: rgba(255,255,255,.04);
}

[data-bs-theme="dark"] .svc-group-card {
    background: rgba(255,255,255,.04);
    box-shadow: 0 1px 4px rgba(0,0,0,.15);
}

[data-bs-theme="dark"] .svc-group-card:hover {
    box-shadow: 0 8px 20px rgba(114,57,234,.12), 0 2px 6px rgba(0,0,0,.2);
    border-color: rgba(114,57,234,.25);
}

[data-bs-theme="dark"] .svc-group-card.active {
    border-color: #7239EA;
    background: linear-gradient(135deg, rgba(114,57,234,.12), rgba(114,57,234,.04));
    box-shadow: 0 4px 20px rgba(114,57,234,.2);
}

[data-bs-theme="dark"] .svc-group-icon {
    color: #9b74f0;
}

/* Dark mode: lighten dark brand icons */
[data-bs-theme="dark"] .svc-group-icon .fa-tiktok { color: #e4e6ef !important; }
[data-bs-theme="dark"] .svc-group-icon .fa-at { color: #e4e6ef !important; }

[data-bs-theme="dark"] .svc-group-name {
    color: #e4e6ef;
}

[data-bs-theme="dark"] .svc-group-card.active .svc-group-name {
    color: #c4b5fd;
}

[data-bs-theme="dark"] .svc-card {
    background: rgba(255,255,255,.02);
    border-color: rgba(255,255,255,.08);
    box-shadow: 0 2px 12px rgba(0,0,0,.15);
}

[data-bs-theme="dark"] .svc-card .card-header {
    background: linear-gradient(90deg, rgba(114,57,234,.06), transparent);
    border-bottom-color: rgba(255,255,255,.06);
    border-left-color: #7239EA;
}

[data-bs-theme="dark"] .svc-card .card-header .card-label {
    color: #e4e6ef;
}

[data-bs-theme="dark"] .svc-cat-count {
    background: rgba(114,57,234,.3);
    color: #c4b5fd;
}

[data-bs-theme="dark"] .svc-table thead th {
    background: rgba(255,255,255,.02);
    color: #6c7293;
    border-bottom-color: rgba(255,255,255,.06);
}

[data-bs-theme="dark"] .svc-table tbody td {
    border-bottom-color: rgba(255,255,255,.04);
    color: #a1a5b7;
}

[data-bs-theme="dark"] .svc-table tbody tr:hover {
    background: rgba(114,57,234,.06) !important;
}

[data-bs-theme="dark"] .svc-name {
    color: #e4e6ef;
}

[data-bs-theme="dark"] .svc-id-badge {
    background: linear-gradient(135deg, rgba(114,57,234,.35), rgba(91,33,182,.35));
    color: #c4b5fd;
    box-shadow: 0 2px 6px rgba(114,57,234,.15);
}

[data-bs-theme="dark"] .svc-rate {
    color: #34d399;
}

[data-bs-theme="dark"] .svc-compare-popup {
    background: #1e1e2d;
    border-color: #2d2d3f;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
}

[data-bs-theme="dark"] .svc-compare-popup::after {
    border-top-color: #1e1e2d;
}

[data-bs-theme="dark"] .svc-compare-popup::before {
    border-top-color: #2d2d3f;
}

[data-bs-theme="dark"] .svc-compare-title {
    color: #c4b5fd;
    border-bottom-color: #2d2d3f;
}

[data-bs-theme="dark"] .svc-compare-header {
    border-bottom-color: #2d2d3f;
}
[data-bs-theme="dark"] .svc-compare-header-label {
    color: #6b7280;
}

[data-bs-theme="dark"] .svc-compare-row {
    color: #a1a5b7;
}

[data-bs-theme="dark"] .svc-compare-row + .svc-compare-row {
    border-top-color: #2d2d3f;
}

[data-bs-theme="dark"] .svc-compare-row-active {
    color: #c4b5fd;
    background: rgba(114,57,234,0.15);
}

[data-bs-theme="dark"] .svc-compare-original {
    color: #6b7280;
}

[data-bs-theme="dark"] .svc-compare-discount {
    background: rgba(80,205,137,.15);
    color: #6ee7a8;
}
[data-bs-theme="dark"] .svc-compare-discount-zero {
    color: #6b7280;
    background: rgba(107,114,128,0.15);
}

[data-bs-theme="dark"] .svc-heart {
    color: #4b5563;
}

[data-bs-theme="dark"] .svc-heart:hover {
    color: #ef4444;
}

[data-bs-theme="dark"] .svc-heart.is-favourite {
    filter: drop-shadow(0 0 6px rgba(239,68,68,.5));
}

[data-bs-theme="dark"] .svc-minmax {
    background: rgba(255,255,255,.06);
    color: #8b8fa3;
}

[data-bs-theme="dark"] .svc-type-badge {
    background: rgba(114,57,234,.15);
    color: #c4b5fd;
}

[data-bs-theme="dark"] .svc-feat-refill {
    background: rgba(5,150,105,.15);
    color: #34d399;
}

[data-bs-theme="dark"] .svc-feat-cancel {
    background: rgba(220,38,38,.15);
    color: #f87171;
}

[data-bs-theme="dark"] .svc-feat-drip {
    background: rgba(8,145,178,.15);
    color: #22d3ee;
}

[data-bs-theme="dark"] .svc-btn-order {
    box-shadow: 0 2px 8px rgba(114,57,234,.3);
}

[data-bs-theme="dark"] .svc-btn-desc {
    background: rgba(114,57,234,.18);
    border-color: rgba(114,57,234,.35);
    color: #c4b5fd;
    box-shadow: 0 2px 6px rgba(114,57,234,.15);
}

[data-bs-theme="dark"] .svc-btn-desc:hover {
    background: rgba(114,57,234,.3);
    border-color: rgba(114,57,234,.5);
    color: #e9d5ff;
    box-shadow: 0 4px 12px rgba(114,57,234,.25);
}

[data-bs-theme="dark"] .svc-badge-new {
    background: rgba(5,150,105,.2);
    color: #34d399;
    box-shadow: 0 2px 8px rgba(5,150,105,.15);
}

[data-bs-theme="dark"] .svc-avg {
    color: #8b8fa3;
}

[data-bs-theme="dark"] .svc-avg-icon {
    color: #9b74f0;
}

[data-bs-theme="dark"] #descriptionModal .modal-content {
    background: #1e1e2d;
    border: 1px solid rgba(255,255,255,.1);
}

[data-bs-theme="dark"] #descriptionModal .modal-body {
    color: #a1a5b7;
}

/* Dark mode skeleton */
[data-bs-theme="dark"] .svc-skeleton .card-header {
    border-left-color: rgba(255,255,255,.1);
    background: transparent;
}

[data-bs-theme="dark"] .svc-skeleton .skeleton-block {
    background: linear-gradient(90deg, rgba(255,255,255,.04) 25%, rgba(255,255,255,.08) 50%, rgba(255,255,255,.04) 75%);
    background-size: 200% 100%;
    animation: svcShimmer 1.3s ease infinite;
}

[data-bs-theme="dark"] .svc-empty-icon {
    color: #4b5563;
}

[data-bs-theme="dark"] .svc-empty h3 {
    color: #a1a5b7;
}

[data-bs-theme="dark"] .svc-empty p {
    color: #6c7293;
}

/* Dark mode: override table-striped */
[data-bs-theme="dark"] .svc-table.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-striped-bg: transparent !important;
    background: transparent !important;
}

/* ==========================================================
   MOBILE (<=768px)
   ========================================================== */
@media (max-width: 768px) {
    /* Comparison popup mobile — align right */
    .svc-compare-popup {
        left: auto;
        right: 0;
        transform: none;
    }
    .svc-compare-popup::after,
    .svc-compare-popup::before {
        left: auto;
        right: 16px;
        transform: none;
    }
    .svc-rate-wrap:hover .svc-compare-popup {
        animation: svc-popup-in-mobile .15s ease;
    }
    @keyframes svc-popup-in-mobile {
        from { opacity: 0; transform: translateY(4px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    /* Hero */
    .svc-hero-content {
        padding: 24px 20px 20px;
    }

    .svc-hero-top {
        gap: 14px;
        margin-bottom: 20px;
    }

    .svc-hero-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .svc-hero-icon i {
        font-size: 20px;
    }

    .svc-hero-text h2 {
        font-size: 20px;
    }

    .svc-hero-text p {
        font-size: 12px;
    }

    .svc-hero-shapes {
        display: none;
    }

    .svc-stats {
        gap: 10px;
    }

    .svc-stat-card {
        padding: 14px 16px;
        min-width: 0;
        flex: 1;
    }

    .svc-stat-value {
        font-size: 20px;
    }

    .svc-stat-label {
        font-size: 10px;
    }

    /* Search + type filter (sticky on mobile too) */
    .svc-search-row {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }

    .svc-search-row.svc-stuck {
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .svc-search-input {
        padding: 14px 16px 14px 44px;
        font-size: 14px;
    }

    .svc-type-select {
        width: 100%;
        min-width: 0;
        padding: 12px 36px 12px 40px;
    }

    .svc-currency-btn {
        width: 100%;
        justify-content: center;
    }

    .svc-currency-dropdown {
        left: 0;
        right: 0;
    }

    /* Category groups grid */
    .svc-groups {
        padding: 14px;
        margin-bottom: 16px;
    }

    .svc-groups-inner {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 8px;
    }

    .svc-group-card {
        padding: 14px 6px 12px;
        min-height: 76px;
        border-radius: 14px;
    }

    .svc-group-icon {
        font-size: 26px;
        margin-bottom: 6px;
    }
    #svc-groups .svc-group-icon i {
        font-size: 26px !important;
    }

    .svc-group-icon img {
        width: 30px;
        height: 30px;
    }

    .svc-group-name {
        font-size: 10px;
    }

    /* Category cards */
    .svc-card {
        border-radius: 12px;
        margin-bottom: 14px;
        border: none;
        box-shadow: none;
    }

    .svc-card .card-header {
        padding: 14px 16px;
        border-left: none;
        border-bottom: none;
        background: none;
        border-radius: 12px;
        margin-bottom: 4px;
    }

    .svc-card .card-body {
        padding: 0;
    }

    .svc-card .card-header .card-label {
        font-size: 14px;
        gap: 10px;
    }

    .svc-cat-count {
        font-size: 10px;
        padding: 2px 8px;
    }

    /* Mobile labels visible */
    .svc-mobile-label {
        display: inline-block;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .4px;
        color: #8b8fa3;
        margin-right: 6px;
    }

    [data-bs-theme="dark"] .svc-mobile-label {
        color: #6c7293;
    }

    /* Table → card layout */
    .svc-table thead {
        display: none;
    }

    .svc-table,
    .svc-table tbody {
        display: block !important;
        width: 100% !important;
    }

    .svc-table tbody tr {
        display: flex;
        flex-wrap: wrap;
        gap: 6px 12px;
        padding: 16px !important;
        margin: 0 12px 12px;
        border: none;
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 2px 12px rgba(0,0,0,.08), 0 0 0 1px rgba(0,0,0,.03);
        transition: box-shadow .2s;
    }

    .svc-table tbody tr:hover {
        background: #fff !important;
    }

    .svc-table tbody td {
        display: block;
        padding: 0 !important;
        border: none;
        font-size: 13px;
        background: transparent !important;
        --bs-table-striped-bg: transparent !important;
        --bs-table-active-bg: transparent !important;
        --bs-table-hover-bg: transparent !important;
    }

    /* Row 1: Heart + ID + Rate */
    .svc-table tbody td:nth-child(1) {
        order: 1;
    }

    .svc-table tbody td:nth-child(5) {
        order: 2;
        margin-left: auto;
    }

    /* Row 2: Name (full width) */
    .svc-table tbody td:nth-child(2) {
        order: 3;
        width: 100%;
        flex-basis: 100%;
        margin-top: 6px;
        padding-bottom: 6px;
        border-bottom: 1px solid #f0f2f8;
    }

    /* Row 3: Min/Max + Type */
    .svc-table tbody td:nth-child(3) {
        order: 4;
        margin-top: 6px;
    }

    .svc-table tbody td:nth-child(4) {
        order: 5;
        margin-top: 6px;
    }

    /* Row 4: Average + Actions */
    .svc-table tbody td:nth-child(6) {
        order: 6;
        margin-top: 6px;
    }

    .svc-table tbody td:nth-child(7) {
        order: 7;
        margin-left: auto;
        margin-top: 6px;
    }

    .svc-name {
        -webkit-line-clamp: 3;
        font-size: 13px;
    }

    .svc-features {
        margin-top: 3px;
    }

    /* Dark mode mobile cards */
    [data-bs-theme="dark"] .svc-table tbody tr {
        background: rgba(255,255,255,.04) !important;
        border: none !important;
        box-shadow: 0 2px 12px rgba(0,0,0,.25), 0 0 0 1px rgba(255,255,255,.05);
    }

    [data-bs-theme="dark"] .svc-table tbody tr > td {
        background: transparent !important;
        --bs-table-striped-bg: transparent !important;
    }

    [data-bs-theme="dark"] .svc-table tbody td:nth-child(2) {
        border-bottom-color: rgba(255,255,255,.06);
    }

    /* Skeleton mobile */
    .svc-skeleton .card-body {
        padding: 12px;
    }
}

/* ---------- SMALL MOBILE (<=480px) ---------- */
@media (max-width: 480px) {
    .svc-hero-content {
        padding: 20px 16px 18px;
    }

    .svc-stat-card {
        padding: 10px 12px;
    }

    .svc-stat-value {
        font-size: 16px;
    }

    .svc-groups-inner {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 6px;
    }

    .svc-group-card {
        padding: 10px 4px 8px;
        min-height: 64px;
    }

    .svc-group-icon {
        font-size: 18px;
    }

    .svc-group-name {
        font-size: 9px;
    }

    .svc-table tbody tr {
        margin: 0 8px 10px;
        padding: 14px !important;
    }

}

/* ==========================================================
   GUEST PAGE — GREEN LANDING THEME OVERRIDES
   Scoped to .guest-services so dashboard stays purple
   ========================================================== */

/* --- Search & Filter focus --- */
.guest-services .svc-search-input:focus {
    border-color: #44ce6f;
    box-shadow: 0 0 0 4px rgba(68,206,111,.1), 0 4px 16px rgba(68,206,111,.08);
}

.guest-services .svc-search-icon {
    color: #44ce6f;
}

.guest-services .svc-type-select:focus {
    border-color: #44ce6f;
    box-shadow: 0 0 0 4px rgba(68,206,111,.1), 0 4px 16px rgba(68,206,111,.08);
}

.guest-services .svc-type-filter-icon {
    color: #44ce6f;
}

.guest-services .svc-type-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2344ce6f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

/* --- Currency picker --- */
.guest-services .svc-currency-btn:hover,
.guest-services .svc-currency-btn:focus {
    border-color: #44ce6f;
}

.guest-services .svc-currency-btn:focus {
    box-shadow: 0 0 0 4px rgba(68,206,111,.1);
}

.guest-services .svc-currency-chevron {
    color: #44ce6f;
}

.guest-services .svc-currency-item:hover {
    background: #edfbf0;
}

.guest-services .svc-currency-item.active {
    background: #44ce6f;
}

/* --- Category group cards --- */
.guest-services .svc-group-card:hover {
    box-shadow: 0 8px 20px rgba(68,206,111,.1), 0 2px 6px rgba(0,0,0,.05);
    border-color: rgba(68,206,111,.2);
}

.guest-services .svc-group-card.active {
    border-color: #44ce6f;
    background: linear-gradient(135deg, rgba(68,206,111,.06), rgba(68,206,111,.02));
    box-shadow: 0 4px 20px rgba(68,206,111,.15);
}

/* Default icon: dark navy (landing theme) for non-brand icons */
.guest-services .svc-group-icon {
    color: #0e314c;
}

.guest-services .svc-group-card.active .svc-group-name {
    color: #0e314c;
}

/* --- Category cards --- */
.guest-services .svc-card .card-header {
    border-left-color: #44ce6f;
    background: linear-gradient(90deg, rgba(68,206,111,.04), transparent);
}

.guest-services .svc-cat-count {
    background: #44ce6f;
}

/* --- Table --- */
.guest-services .svc-table tbody tr:hover {
    background: rgba(68,206,111,.04) !important;
}

/* ID badge — green */
.guest-services .svc-id-badge {
    background: linear-gradient(135deg, #44ce6f, #2fa856);
    box-shadow: 0 2px 6px rgba(68,206,111,.25);
}

/* Type badge — neutral gray (not colored) */
.guest-services .svc-type-badge {
    background: #f0f2f8;
    color: #5e6278;
}

/* Avg delivery icon — neutral */
.guest-services .svc-avg-icon {
    color: #6c7293;
}

/* Description button — neutral with green hover */
.guest-services .svc-btn-desc {
    color: #6c7293;
}

.guest-services .svc-btn-desc:hover {
    background: rgba(68,206,111,.1);
    border-color: #44ce6f;
    color: #44ce6f;
}

/* Skeleton */
.guest-services .svc-skeleton .card-header {
    border-left-color: #c3e6cb;
}

/* --- Modal — green header + smaller font --- */
.guest-services #descriptionModal .modal-header {
    background: linear-gradient(135deg, #44ce6f, #2fa856);
}

#descriptionModal .modal-body {
    font-size: 13px;
    line-height: 1.6;
}

#descriptionModal .modal-body h1,
#descriptionModal .modal-body h2,
#descriptionModal .modal-body h3 {
    font-size: 16px;
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 8px;
}

#descriptionModal .modal-body h4,
#descriptionModal .modal-body h5,
#descriptionModal .modal-body h6 {
    font-size: 14px;
    font-weight: 700;
    margin-top: 12px;
    margin-bottom: 6px;
}

#descriptionModal .modal-body p {
    margin-bottom: 8px;
}

#descriptionModal .modal-body ul,
#descriptionModal .modal-body ol {
    padding-left: 20px;
    margin-bottom: 8px;
}

#descriptionModal .modal-body li {
    margin-bottom: 4px;
}
