/* ============================== */
/* Navigation Logo Size           */
/* ============================== */
:root {
    --app-nav-logo-height: 55px;
    --mob-app-nav-logo-height: 58px;
    --mob-dropdown-nav-logo-height: 58px;

    /* Brand Primary Color Override: #0D034A */
    --brand-primary:                    #0D034A;
    --brand-primary-lighter:            #2A1B7A;
    --brand-primary-lighter-2:          #C5BFE6;
    --brand-primary-lighter-3:          #E8E5F5;
    --brand-primary-lighter-4:          #F3F1FA;
    --brand-primary-darker:             #080230;
    --brand-primary-gradient-start:     #080230;
    --brand-primary-gradient-end:       #0D034A;
    --brand-primary-gradient-h:         linear-gradient(90deg, var(--brand-primary-gradient-end) 0%, var(--brand-primary-gradient-start) 100%);
    --brand-primary-gradient-v:         linear-gradient(180deg, var(--brand-primary-gradient-start) 0%, var(--brand-primary-gradient-end) 100%);
}

/* ============================== */
/* Domain Registration Section    */
/* ============================== */
.domain-register-section {
    width: 100%;
    max-width: 720px;
    margin: 22px auto 30px;
}

.domain-register-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #092346;
    border-radius: 20px;
    overflow: hidden;
    height: 275px;
    position: relative;
}

.domain-register-illustration {
    flex: 0 0 230px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.domain-register-illustration img {
    width: 230px;
    height: auto;
    display: block;
}

.domain-register-content {
    flex: 1;
    text-align: right;
    padding: 30px 40px 30px 20px;
    min-width: 0;
}

.domain-register-title {
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 52px;
    color: #FFFFFF;
    margin: 0 0 12px;
    white-space: nowrap;
}

.domain-register-input-wrap {
    margin-bottom: 12px;
}

.domain-register-input {
    width: 100%;
    height: 50px;
    background: #FFFFFF;
    border: none;
    border-radius: 5px;
    padding: 0 15px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    color: #333;
    direction: rtl;
    outline: none;
    box-sizing: border-box;
}

.domain-register-input::placeholder {
    color: #999;
}

.domain-register-buttons {
    display: flex;
    gap: 9px;
    direction: rtl;
}

.domain-register-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 50px;
    border: 2px solid #FFFFFF;
    border-radius: 5px;
    background: transparent;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.domain-register-btn-outline:hover {
    background: #FFFFFF;
    color: #092346;
    text-decoration: none;
}

.domain-register-btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 50px;
    background: #FFFFFF;
    border: none;
    border-radius: 5px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #2B1F51;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.domain-register-btn-solid:hover {
    background: rgba(255,255,255,0.85);
    color: #2B1F51;
    text-decoration: none;
}

/* Domain Registration Responsive */
@media (max-width: 767px) {
    .domain-register-card {
        flex-direction: column;
        height: auto;
    }
    .domain-register-illustration {
        flex: 0 0 auto;
        height: auto;
        width: 100%;
    }
    .domain-register-illustration img {
        width: 160px;
        margin: 20px auto 0;
    }
    .domain-register-content {
        text-align: center;
        padding: 20px;
    }
    .domain-register-title {
        font-size: 22px;
        line-height: 40px;
        white-space: normal;
    }
    .domain-register-buttons {
        flex-direction: row;
        gap: 10px;
    }
    .domain-register-btn-outline,
    .domain-register-btn-solid {
        flex: 1;
        width: auto;
        height: 44px;
        font-size: 14px;
    }
}

/* ==================== */
/* Custom Banner Slider */
/* ==================== */
.custom-banner-slider {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto 22px;
    overflow: hidden;
    border-radius: 20px;
}

/* Image-only banner */
.custom-banner-img-wrap {
    position: relative;
    width: 100%;
    line-height: 0;
    display: block;
    text-decoration: none;
}

.custom-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

/* Multi-slide banner */
.custom-banner-track {
    position: relative;
    width: 100%;
    aspect-ratio: 720 / 340;
    overflow: hidden;
}

.custom-banner-slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: bannerFadeIn 0.6s ease;
}

.custom-banner-slide.active {
    display: block;
}

.custom-banner-slide .custom-banner-img-wrap {
    width: 100%;
    height: 100%;
}

.custom-banner-slide .custom-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

@keyframes bannerFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.custom-banner-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.custom-banner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-banner-dot.active {
    width: 10px;
    height: 10px;
    background: #2B1F51;
}

/* Banner responsive */
@media (max-width: 767px) {
    .custom-banner-slider {
        border-radius: 12px;
    }
    .custom-banner-img {
        border-radius: 12px;
    }
}

/* ==================== */
/* Custom Tiles - 4 Service Cards */
/* ==================== */
/* Override CSS variables */
.tiles {
    --tile-min-height: 120px !important;
    --tile-stat-font-size: 28px !important;
    --tile-stat-font-weight: 600 !important;
    --tile-stat-color: #2B1F51 !important;
    --tile-title-font-size: 14px !important;
    --tile-title-font-weight: 400 !important;
    --tile-title-color: #000000 !important;
    --tile-icon-font-size: 32px !important;
    --tile-icon-color: #2B1F51 !important;
    --tile-mob-stat-font-size: 28px !important;
    --tile-mob-title-font-size: 14px !important;
    --tile-sm-stat-font-size: 28px !important;
    --tile-sm-title-font-size: 14px !important;
    --tile-sm-mob-stat-font-size: 28px !important;
    --tile-sm-mob-title-font-size: 14px !important;
    --tile-hover-transform: translateY(-4px) !important;
}

.tiles.swiper-container {
    overflow: visible !important;
}

/* Desktop tiles (992px+) */
@media (min-width: 992px) {
.tiles .swiper-wrapper {
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
    gap: 22px;
    -webkit-justify-content: center;
    justify-content: center;
    box-sizing: border-box !important;
}

.tiles .swiper-pagination {
    display: none !important;
}

.tiles .swiper-slide {
    width: 160px !important;
    min-width: 160px;
    max-width: 160px;
    -webkit-flex: 0 0 160px !important;
    flex: 0 0 160px !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.tiles .tile,
.tiles .swiper-slide .tile {
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-flex-direction: column !important;
    flex-direction: column !important;
    -webkit-align-items: flex-end !important;
    align-items: flex-end !important;
    -webkit-justify-content: flex-start !important;
    justify-content: flex-start !important;
    width: 160px;
    height: 120px;
    min-height: 120px !important;
    max-height: 120px;
    padding: 10px 15px !important;
    background: #FFFFFF !important;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.1) !important;
    border-radius: 10px !important;
    border: 1px solid #CBE6FC !important;
    position: relative;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    overflow: hidden;
    text-align: right !important;
}

.tiles .tile:hover,
.tiles .swiper-slide .tile:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15) !important;
}

/* Icon - top right */
.tiles .tile .tile-icon-absolute,
.tiles .swiper-slide .tile .tile-icon-absolute {
    position: absolute !important;
    top: 10px !important;
    right: 20px !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
}

.tiles .tile .tile-icon-absolute i {
    font-size: 32px !important;
    color: #2B1F51 !important;
    opacity: 1;
}

/* SVG icon styling - base */
.tiles .tile .tile-icon-absolute .tile-svg-icon {
    object-fit: contain;
    display: block;
}

/* Per-icon sizes matching design */
/* 1 - خدمات services: 29×36 */
.tiles .swiper-slide:nth-child(1) .tile-svg-icon {
    width: 29px !important;
    height: 36px !important;
}
/* 2 - نطاقات domains: 37×37 */
.tiles .swiper-slide:nth-child(2) .tile-svg-icon {
    width: 37px !important;
    height: 37px !important;
}
/* 3 - تذاكر tickets: 35×39 */
.tiles .swiper-slide:nth-child(3) .tile-svg-icon {
    width: 35px !important;
    height: 39px !important;
}
/* 4 - فواتير invoices: 22×32 */
.tiles .swiper-slide:nth-child(4) .tile-svg-icon {
    width: 22px !important;
    height: 32px !important;
}

/* Stat number */
.tiles .tile .tile-stat,
.tiles .swiper-slide .tile .tile-stat {
    position: absolute !important;
    top: 64px !important;
    right: 20px !important;
    left: auto !important;
    transform: none !important;
    padding: 0 !important;
    margin: 0 !important;
    order: unset !important;
    margin-left: 0 !important;
    font-family: 'Cairo', sans-serif !important;
    font-weight: 600 !important;
    font-size: 28px !important;
    line-height: 52px !important;
    color: #2B1F51 !important;
    text-align: right !important;
}

/* Title */
.tiles .tile .tile-title,
.tiles .swiper-slide .tile .tile-title {
    position: absolute !important;
    top: 92px !important;
    bottom: auto !important;
    right: 20px !important;
    left: 15px !important;
    font-family: 'Cairo', sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 26px !important;
    color: #000000 !important;
    text-align: right !important;
}
} /* end @media min-width: 992px */

/* Responsive - Tablet (768-991): 2x2 Grid */
@media (min-width: 768px) and (max-width: 991px) {
    .tiles.swiper-container {
        overflow: visible !important;
    }
    .tiles .swiper-wrapper {
        -webkit-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
        -webkit-justify-content: center;
        justify-content: center;
        gap: 16px;
    }
    .tiles .swiper-slide {
        width: calc(50% - 10px) !important;
        min-width: 0 !important;
        max-width: 200px;
        -webkit-flex: 0 0 calc(50% - 10px) !important;
        flex: 0 0 calc(50% - 10px) !important;
    }
    .tiles .tile,
    .tiles .swiper-slide .tile {
        width: 100% !important;
        height: 120px;
        min-height: 120px !important;
        max-height: 120px;
    }
    .tiles .tile .tile-icon-absolute,
    .tiles .swiper-slide .tile .tile-icon-absolute {
        position: absolute !important;
        display: block !important;
        margin: 0 !important;
    }
    .tiles .tile .tile-stat,
    .tiles .swiper-slide .tile .tile-stat {
        position: absolute !important;
        top: 64px !important;
        font-size: 28px !important;
        order: unset !important;
        margin: 0 !important;
    }
    .tiles .tile .tile-title,
    .tiles .swiper-slide .tile .tile-title {
        position: absolute !important;
        top: 92px !important;
        font-size: 14px !important;
    }
    .tiles .swiper-pagination {
        display: none !important;
    }
}

/* Responsive - Mobile (≤767px): Swiper Carousel - 2 tiles visible */
@media (max-width: 767px) {
    .tiles.swiper-container {
        overflow: visible !important;
        position: relative;
        padding-bottom: 10px !important;
    }
    .tiles .swiper-wrapper {
        overflow: visible !important;
        -webkit-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
    .tiles .swiper-slide {
        width: 50% !important;
        min-width: 50% !important;
        max-width: 50% !important;
        -webkit-flex: 0 0 50% !important;
        flex: 0 0 50% !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
    }
    .tiles .tile,
    .tiles .swiper-slide .tile {
        width: 100% !important;
        height: 190px !important;
        min-height: 190px !important;
        max-height: 190px !important;
        padding: 24px 16px 20px !important;
        border-radius: 20px !important;
        box-sizing: border-box !important;
        -webkit-tap-highlight-color: transparent;
        display: -webkit-flex !important;
        display: flex !important;
        -webkit-flex-direction: column !important;
        flex-direction: column !important;
        -webkit-align-items: center !important;
        align-items: center !important;
        -webkit-justify-content: center !important;
        justify-content: center !important;
        position: relative;
        overflow: hidden !important;
        gap: 10px;
        background: #FFFFFF !important;
        border: none !important;
        box-shadow: inset 0 0 0 1px #CBE6FC !important;
    }
    /* Icon - top center, no background */
    .tiles .tile .tile-icon-absolute,
    .tiles .swiper-slide .tile .tile-icon-absolute {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        -webkit-transform: none;
        transform: none;
        display: -webkit-flex !important;
        display: flex !important;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        width: auto !important;
        height: 50px !important;
        min-width: unset !important;
        background: none !important;
        border-radius: 0 !important;
        margin: 0 0 6px 0 !important;
        -webkit-flex-shrink: 0;
        flex-shrink: 0;
        -webkit-order: 1;
        order: 1;
    }
    /* Icon images - larger */
    .tiles .swiper-slide:nth-child(1) .tile-svg-icon,
    .tiles .swiper-slide:nth-child(2) .tile-svg-icon,
    .tiles .swiper-slide:nth-child(3) .tile-svg-icon,
    .tiles .swiper-slide:nth-child(4) .tile-svg-icon {
        width: 42px !important;
        height: 42px !important;
    }
    /* Stat number - large, light weight like design */
    .tiles .tile .tile-stat,
    .tiles .swiper-slide .tile .tile-stat {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        font-size: 48px !important;
        line-height: 1 !important;
        font-weight: 400 !important;
        color: #2d3436 !important;
        margin: 6px 0 !important;
        padding: 0 !important;
        -webkit-order: 2;
        order: 2;
        -webkit-flex-shrink: 0;
        flex-shrink: 0;
        text-align: center !important;
    }
    /* Title - bottom, 2 lines allowed */
    .tiles .tile .tile-title,
    .tiles .swiper-slide .tile .tile-title {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        right: auto !important;
        left: auto !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        line-height: 1.4 !important;
        color: #2d3436 !important;
        margin: 0 !important;
        padding: 0 !important;
        -webkit-flex-shrink: 0;
        flex-shrink: 0;
        white-space: normal !important;
        text-align: center !important;
        -webkit-order: 3;
        order: 3;
        max-width: 100%;
        word-wrap: break-word;
    }
    /* Pagination dots - hidden */
    .tiles .swiper-pagination {
        display: none !important;
    }
    /* Hide navigation arrows */
    .tiles .tiles-nav-prev,
    .tiles .tiles-nav-next {
        display: none !important;
    }
    /* Prevent ANY ancestor from clipping tiles */
    .main-content,
    .main-content > .container,
    .main-content > .container > .row,
    .main-content > .container > .row > [class*="col"] {
        overflow: visible !important;
    }
}

/* Hide nav arrows on desktop/tablet - MUST use min-width only */
@media (min-width: 768px) {
    .tiles .tiles-nav-prev,
    .tiles .tiles-nav-next {
        display: none !important;
    }
}

/* ============================
   Sidebar Balance Card
   ============================ */
.sidebar-balance-card {
    width: 100%;
    background: #fff;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 16px 20px;
    margin-top: 15px;
}

.sidebar-balance-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    margin-bottom: 8px;
}

.sidebar-balance-title {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 30px;
    text-align: right;
}

.sidebar-balance-icon {
    width: 17px;
    height: 17px;
}

.sidebar-balance-divider {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 10px;
}

.sidebar-balance-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-balance-amount {
    font-family: 'Cairo', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #000;
    line-height: 60px;
    text-align: right;
}

.sidebar-balance-topup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 22px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-family: 'Cairo', sans-serif;
    font-size: 8px;
    font-weight: 400;
    color: #000;
    text-decoration: none !important;
    transition: background 0.2s;
}

.sidebar-balance-topup-btn:hover {
    background: #f5f5f5;
    color: #000;
}

/* --- Narrow Sidebar Column --- */
.page-clientareahome .main-sidebar {
    width: 220px !important;
}
.page-clientareahome .main-sidebar + .main-content {
    max-width: calc(100% - 220px - var(--main-sidebar-spacing-h)) !important;
}

/* --- Sidebar Client Details Dark Card --- */
.panel-sidebar.panel-client-details,
.panel-sidebar.panel-sidebar-default.panel-client-details {
    background: #092346 !important;
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden;
    position: relative;
    width: 100%;
    min-height: 300px;
    height: auto;
    margin-bottom: 15px;
}

.panel-sidebar.panel-client-details::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 118px;
    height: 255px;
    background: linear-gradient(194.99deg, #1B2756 0.56%, #1C2958 39.81%);
    border-radius: 0 0 20px 0;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.panel-sidebar.panel-client-details::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 87px;
    height: 217px;
    background: linear-gradient(194.99deg, #1B2756 0.56%, #1C2958 39.81%);
    border-radius: 0 0 20px 0;
    pointer-events: none;
    z-index: 0;
}

.panel-sidebar.panel-client-details .panel-heading {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    min-height: 0 !important;
}

.panel-sidebar.panel-client-details .panel-body {
    position: relative;
    z-index: 1;
    color: #fff !important;
    font-family: 'Cairo', sans-serif;
    font-size: 11px;
    line-height: 1.6;
    text-align: right;
    padding: 15px 16px 10px;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.panel-sidebar.panel-client-details .panel-body strong,
.panel-sidebar.panel-client-details .panel-body em,
.panel-sidebar.panel-client-details .panel-body br + * {
    color: #fff !important;
}

.panel-sidebar.panel-client-details .panel-body strong {
    font-size: 12px;
}

.panel-sidebar.panel-client-details .client-avatar {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}

.panel-sidebar.panel-client-details .client-avatar img {
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.panel-sidebar.panel-client-details .panel-footer {
    position: relative;
    z-index: 1;
    background: transparent !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 10px 16px 14px;
}

.panel-sidebar.panel-client-details .panel-footer .btn {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 8px !important;
    font-family: 'Cairo', sans-serif;
}

.panel-sidebar.panel-client-details .panel-footer .btn-success {
    background: #fff !important;
    color: #092346 !important;
    border: none !important;
    font-weight: 600;
}

.panel-sidebar.panel-client-details .panel-footer .btn-outline {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    font-weight: 400;
}

/* --- Sidebar Stats Grid --- */
.sidebar-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.sidebar-stat-card {
    background: #fff;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 12px 10px;
    text-align: center;
}

.sidebar-stat-title {
    font-family: 'Cairo', sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: #000;
    line-height: 18px;
    white-space: nowrap;
}

.sidebar-stat-divider {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin: 6px 0;
}

.sidebar-stat-count {
    font-family: 'Cairo', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #000;
    line-height: 40px;
}

/* ============================
   Custom Cards Row (Tickets + News side by side)
   ============================ */
.custom-cards-row {
    margin-top: 30px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 19px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Shared card base --- */
.custom-tickets-card,
.custom-news-card {
    width: 352px;
    min-width: 0;
    flex: 1;
    height: 207px;
    background: #092346;
    border-radius: 20px;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.1);
    display: flex;
    direction: ltr;
    flex-direction: row-reverse;
    overflow: hidden;
    position: relative;
}

/* ============================
   Tickets Card
   ============================ */
.custom-tickets-illustration {
    width: 171px;
    min-width: 171px;
    height: 207px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.custom-tickets-illustration img {
    width: 171px;
    height: 207px;
    object-fit: cover;
}

.custom-tickets-content {
    flex: 1;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.custom-tickets-heading {
    font-family: 'Cairo', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 6px 0;
    line-height: 37px;
    text-align: right;
}

.custom-tickets-divider {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 6px;
}

.custom-tickets-count {
    font-family: 'Cairo', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    line-height: 67px;
    text-align: right;
    margin-bottom: 4px;
}

.custom-tickets-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border-radius: 5px;
    padding: 0 16px;
    height: 34px;
    text-decoration: none !important;
    transition: opacity 0.2s;
}

.custom-tickets-btn:hover {
    opacity: 0.85;
}

.custom-tickets-btn span {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2B1F51;
    line-height: 26px;
}

.custom-tickets-btn svg {
    flex-shrink: 0;
}

/* ============================
   News Card
   ============================ */
.custom-news-illustration {
    width: 169px;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.custom-news-illustration img {
    width: 140px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 0;
}

.custom-news-content {
    flex: 1;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-news-heading {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 8px 0;
    text-align: right;
    line-height: 30px;
}

.custom-news-divider {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
}

.custom-news-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.custom-news-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 5px;
    padding: 3px 10px;
    min-height: 28px;
    text-decoration: none !important;
    transition: opacity 0.2s;
}

.custom-news-item:hover {
    opacity: 0.85;
}

.custom-news-item-text {
    font-family: 'Cairo', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #000;
    line-height: 22px;
    width: 100%;
    text-align: right;
}

.custom-news-date {
    font-family: 'Cairo', sans-serif;
    font-size: 10px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.25);
    text-align: right;
    margin-top: 8px;
}

.custom-news-empty {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
}

/* --- Responsive: Cards Row --- */
@media (max-width: 576px) {
    .custom-cards-row {
        flex-direction: column;
        gap: 16px;
    }
    .custom-tickets-card,
    .custom-news-card {
        width: 100%;
        height: auto;
        min-height: 180px;
    }
    .custom-tickets-illustration {
        width: 130px;
        min-width: 130px;
        height: auto;
    }
    .custom-tickets-illustration img {
        width: 130px;
        height: 100%;
    }
    .custom-news-illustration {
        width: 130px;
        min-width: 110px;
    }
}

/* --- Mobile Responsive: Sidebar & Layout (tablet and below) --- */
@media (max-width: 991px) {
    /* Reset sidebar to full width on mobile */
    .page-clientareahome .main-sidebar {
        width: 100% !important;
        order: 2;
        margin-top: 20px;
    }
    .page-clientareahome .main-sidebar + .main-content {
        max-width: 100% !important;
    }

    /* Client details card full width on mobile */
    .panel-sidebar.panel-client-details,
    .panel-sidebar.panel-sidebar-default.panel-client-details {
        width: 100% !important;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Balance card full width on mobile */
    .sidebar-balance-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Cards row stacks vertically on tablet */
    .custom-cards-row {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .custom-tickets-card,
    .custom-news-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    /* Smaller cards on phone */
    .custom-tickets-card,
    .custom-news-card {
        height: auto;
        min-height: 170px;
    }
    .custom-tickets-illustration {
        width: 120px;
        min-width: 120px;
        height: auto;
        order: 2;
    }
    .custom-tickets-illustration img {
        width: 120px;
        height: 100%;
    }
    .custom-news-illustration {
        width: 120px;
        min-width: 100px;
    }

    /* Client details card decorative shapes smaller */
    .panel-sidebar.panel-client-details::before {
        width: 90px;
        height: 200px;
    }
    .panel-sidebar.panel-client-details::after {
        width: 65px;
        height: 170px;
    }
}

/* ============================== */
/* Login Page - Columns Design    */
/* ============================== */

/* Hide the default Lagom side illustration */
body.page-login .main-body-sidebar-illustration {
    display: none !important;
}

/* Full-page background with columns SVG */
body.page-login .main-body.main-body-has-sidebar-illustration {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    min-height: 100vh;
    width: 100% !important;
    max-width: 100% !important;
    background: url('/templates/lagom2/assets/img/login/login-bg.svg?v=20260313') no-repeat center top / cover;
    background-size: cover;
    padding: 0 !important;
    overflow: hidden;
}

/* Center the login form card */
body.page-login .main-body-content {
    width: 100%;
    max-width: 440px;
    z-index: 2;
    position: relative;
    padding-top: 18vh;
    background: transparent !important;
}

/* Make login div transparent (middle layer) */
body.page-login .login {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0;
}

/* Style the login-wrapper as the white card (last layer) */
body.page-login .login-wrapper {
    background: #FFFFFF !important;
    border-radius: 20px;
    box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.1);
    padding: 30px 27px 24px 27px;
}
body.page-login .login-wrapper:before {
    display: none !important;
}

/* Hide the welcome back text */
body.page-login .login-body > .text-center.text-lighter-color {
    display: none !important;
}

/* Login title */
body.page-login .login-title {
    font-family: 'Cairo', sans-serif !important;
    font-weight: 600 !important;
    font-size: 32px !important;
    line-height: 60px !important;
    color: #000000 !important;
    text-align: center !important;
    margin-bottom: 14px !important;
}

/* Hide default labels */
body.page-login .form-group > label {
    display: none !important;
}
body.page-login .form-group .d-flex.space-between {
    display: none !important;
}

/* Tighten form-group spacing */
body.page-login .form-group {
    margin-bottom: 10px !important;
}
body.page-login .checkbox.m-b-2x,
body.page-login .m-b-2x {
    margin-bottom: 6px !important;
}

/* Input icon wrapper */
body.page-login .input-icon-wrapper {
    position: relative;
    width: 100%;
}

/* Form inputs */
body.page-login .form-control {
    border: 1px solid #D9D9D9 !important;
    border-radius: 5px !important;
    height: 62px !important;
    padding: 12px 60px 12px 16px !important;
    font-family: 'Cairo', sans-serif !important;
    font-weight: 300 !important;
    font-size: 16px !important;
    line-height: 30px !important;
    color: #000000 !important;
}
body.page-login .form-control::placeholder {
    color: #C3C3C3 !important;
    font-family: 'Cairo', sans-serif !important;
    font-weight: 300 !important;
    font-size: 16px !important;
}

/* Input icon (email/password) */
body.page-login .input-icon {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%) scaleX(-1);
    width: 23px;
    height: 39px;
    opacity: 0.5;
    pointer-events: none;
}

/* Remember me checkbox */
body.page-login .checkbox {
    font-family: 'Cairo', sans-serif !important;
    font-size: 14px !important;
    color: #000000 !important;
}

/* Forgot password link - centered above button */
body.page-login .forgot-link-center {
    text-align: center;
    margin-bottom: 12px;
}
body.page-login .forgot-link-center a {
    font-family: 'Cairo', sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 26px !important;
    color: #000000 !important;
    text-decoration: none;
}
body.page-login .forgot-link-center a:hover {
    text-decoration: underline;
}

/* Login button */
body.page-login .btn-primary {
    background: #2B1F51 !important;
    border-color: #2B1F51 !important;
    border-radius: 5px !important;
    font-family: 'Cairo', sans-serif !important;
    font-weight: 600 !important;
    font-size: 20px !important;
    line-height: 37px !important;
    color: #FFFFFF !important;
    max-width: 234px;
    height: 55px;
    margin: 0 auto;
    display: block !important;
    padding: 0 !important;
}

body.page-login .btn-primary:hover {
    background: #1e163a !important;
    border-color: #1e163a !important;
}

/* Hide default login-footer inside the card */
body.page-login .login-footer {
    display: none !important;
}

/* Register link below the card */
body.page-login .login-register-link {
    text-align: center;
    margin-top: 20px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    color: #000000;
}
body.page-login .login-register-link a {
    color: #000000;
    font-weight: 700;
    text-decoration: underline;
}
body.page-login .login-register-link a:hover {
    color: #333333;
}

/* Mobile responsive */
@media (max-width: 767px) {
    body.page-login .main-body.main-body-has-sidebar-illustration {
        background-position: top center;
        background-size: cover;
        min-height: 100vh;
        min-height: 100dvh;
        align-items: flex-start !important;
    }

    body.page-login .main-body-content {
        padding-top: 6vh;
        padding-left: 16px;
        padding-right: 16px;
        max-width: 100%;
        box-sizing: border-box;
    }

    body.page-login .login {
        width: 100% !important;
        max-width: 100% !important;
    }

    body.page-login .login-wrapper {
        padding: 28px 20px 24px 20px;
        border-radius: 16px;
        width: 100%;
        box-sizing: border-box;
    }

    body.page-login .login-title {
        font-size: 24px !important;
        line-height: 44px !important;
        margin-bottom: 16px !important;
    }

    body.page-login .form-control {
        height: 52px !important;
        font-size: 14px !important;
        padding: 10px 50px 10px 14px !important;
    }

    body.page-login .form-control::placeholder {
        font-size: 14px !important;
    }

    body.page-login .input-icon {
        width: 20px;
        height: 32px;
        right: 14px;
    }

    body.page-login .btn-primary {
        max-width: 100%;
        width: 100%;
        height: 50px;
        font-size: 18px !important;
        line-height: 32px !important;
    }

    body.page-login .login-register-link {
        margin-top: 16px;
        font-size: 13px;
    }

    body.page-login .forgot-link-center a {
        font-size: 13px !important;
    }

    body.page-login .checkbox {
        font-size: 13px !important;
    }
}

/* ============================== */
/* Register Page Overrides        */
/* ============================== */

/* Full-page background for register (same as login) */
body.register-page .main-body {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    min-height: 100vh;
    width: 100% !important;
    max-width: 100% !important;
    background: url('/templates/lagom2/assets/img/login/login-bg.svg?v=20260313') no-repeat center top / cover;
    background-size: cover;
    padding: 0 !important;
    overflow: hidden;
}

/* Center the register form container */
body.register-page .main-body > .container {
    width: 100%;
    max-width: 700px;
    z-index: 2;
    position: relative;
    padding-top: 6vh;
    padding-bottom: 40px;
    background: transparent !important;
}

/* Make login div transparent */
body.register-page .login {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0;
    max-width: 100%;
}

/* Hide login header (logo) - already shown in nav */
body.register-page .login-header {
    display: none !important;
}

/* Style the login-wrapper as the white card */
body.register-page .login-wrapper {
    background: #FFFFFF !important;
    border-radius: 20px;
    box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.1);
    padding: 30px 32px 28px 32px;
}
body.register-page .login-wrapper:before {
    display: none !important;
}

/* Register title */
body.register-page .login-title {
    font-family: 'Cairo', sans-serif !important;
    font-weight: 600 !important;
    font-size: 28px !important;
    line-height: 52px !important;
    color: #000000 !important;
    text-align: center !important;
    margin-bottom: 10px !important;
}

/* Show labels on register (login hides them) */
body.register-page .form-group > label {
    display: block !important;
    font-family: 'Cairo', sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    color: #333 !important;
    margin-bottom: 4px !important;
}

/* Section titles */
body.register-page .section-title {
    font-family: 'Cairo', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    color: #2B1F51 !important;
    margin: 0 !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid #E8E8E8;
}

body.register-page .section-header {
    margin-bottom: 16px !important;
}

body.register-page .section.section-sm {
    margin-bottom: 10px !important;
}

/* Form inputs */
body.register-page .form-control {
    border: 1px solid #D9D9D9 !important;
    border-radius: 5px !important;
    height: 48px !important;
    padding: 10px 16px !important;
    font-family: 'Cairo', sans-serif !important;
    font-weight: 300 !important;
    font-size: 14px !important;
    color: #000000 !important;
}

body.register-page .form-control::placeholder {
    color: #C3C3C3 !important;
    font-family: 'Cairo', sans-serif !important;
    font-size: 14px !important;
}

/* Select dropdowns match input style */
body.register-page select.form-control {
    height: 48px !important;
    padding: 10px 16px !important;
}

/* Tighten form-group spacing */
body.register-page .form-group {
    margin-bottom: 12px !important;
}

/* Register button */
body.register-page .btn-primary {
    background: #2B1F51 !important;
    border-color: #2B1F51 !important;
    border-radius: 5px !important;
    font-family: 'Cairo', sans-serif !important;
    font-weight: 600 !important;
    font-size: 20px !important;
    line-height: 37px !important;
    color: #FFFFFF !important;
    max-width: 100%;
    width: 100%;
    height: 55px;
    display: block !important;
    padding: 0 !important;
    margin-top: 10px;
}
body.register-page .btn-primary:hover {
    background: #1e163a !important;
    border-color: #1e163a !important;
}

/* Show the login footer on register page */
body.register-page .login-footer {
    display: block !important;
    text-align: center;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #E8E8E8;
}
body.register-page .login-footer .text-center {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    color: #666;
}
body.register-page .login-footer a {
    color: #2B1F51;
    font-weight: 600;
    text-decoration: none;
}
body.register-page .login-footer a:hover {
    text-decoration: underline;
}

/* Password strength meter */
body.register-page .password-meter {
    margin-top: 4px;
}

/* Checkbox spacing */
body.register-page .checkbox {
    margin-top: 8px !important;
    font-family: 'Cairo', sans-serif !important;
    font-size: 14px !important;
    color: #000 !important;
}

/* Phone input intl-tel-input fix */
body.register-page .intl-tel-input {
    width: 100%;
    display: block;
}
body.register-page .intl-tel-input .form-control {
    padding-left: 90px !important;
    width: 100% !important;
}
body.register-page .intl-tel-input .selected-flag {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 8px 0 12px;
    border-right: 1px solid #D9D9D9;
    background: transparent;
}
body.register-page .intl-tel-input .selected-dial-code {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    color: #333;
    padding-left: 4px;
}
body.register-page .intl-tel-input .flag-container {
    height: 100%;
}
body.register-page .intl-tel-input .country-list {
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #D9D9D9;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Login divider (or / fill form below) */
body.register-page .login-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0;
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    color: #999;
}
body.register-page .login-divider span:first-child,
body.register-page .login-divider span:last-child {
    flex: 1;
    height: 1px;
    background: #E8E8E8;
}

/* Mobile responsive for register */
@media (max-width: 767px) {
    body.register-page .main-body > .container {
        max-width: 100%;
        padding-top: 3vh;
        padding-left: 16px;
        padding-right: 16px;
    }

    body.register-page .login-wrapper {
        padding: 24px 18px 20px 18px;
        border-radius: 16px;
    }

    body.register-page .login-title {
        font-size: 22px !important;
        line-height: 40px !important;
    }

    body.register-page .form-control {
        height: 44px !important;
        font-size: 13px !important;
    }

    body.register-page .section-title {
        font-size: 15px !important;
    }

    body.register-page .form-group > label {
        font-size: 13px !important;
    }

    body.register-page .btn-primary {
        height: 48px;
        font-size: 18px !important;
    }

    body.register-page .login-footer .text-center {
        font-size: 13px;
    }
}

/* ============================== */
/* Pricing / Plans Page           */
/* ============================== */

/* Sidebar panel styling (store page only, exclude client card) */
.lagom-modern .panel-sidebar:not(.panel-client-details) {
    background: #fff !important;
    padding: 20px !important;
    border: 1px solid #f2f2f2 !important;
    box-shadow: 0 3px 25px rgb(0 0 0 / 2%) !important;
    border-radius: 15px !important;
}

.lagom-modern .panel .list-group {
    display: block !important;
    margin: 0;
    border: none;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
}

.lagom-modern .main-sidebar > .panel-sidebar .list-group > a > i,
.lagom-modern .main-sidebar > .panel-sidebar .list-group > ul a i {
    background: #0D034A !important;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: #fff !important;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.lagom-modern .panel-sidebar .list-group > a.list-group-item.active > i,
.lagom-modern .panel-sidebar .list-group > a.list-group-item:focus > i,
.lagom-modern .panel-sidebar .list-group > a.list-group-item:hover > i {
    color: #0D034A !important;
}

.lagom-modern .panel-sidebar .list-group > a.list-group-item > i {
    color: #0D034A !important;
    transition: color var(--transition-base);
}

/* Price plan container */
.lagom-modern .price-plan {
    padding-bottom: 20px;
}

.lagom-modern .price-list {
    display: flex;
    justify-content: center;
    padding: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

/* Product card (list) */
.lagom-modern .price-list .list {
    background-color: #FBFBFB;
    border: 1px solid #f2f2f2 !important;
    width: calc(33.333% - 20px);
    border-radius: 8px;
    margin-bottom: 5px;
    box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.04), 0 24px 64px 0 rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

.lagom-modern .center-side p {
    text-align: right;
    direction: rtl;
}

/* Top side: name, price, button */
.lagom-modern .top-side {
    text-align: center;
    padding: 20px;
}

.lagom-modern .head-t {
    font-weight: 600;
    color: #2b1f51;
    font-size: 20px;
    margin-bottom: 17px;
    margin-top: 40px;
}

.lagom-modern .top-side .price {
    color: #2b1f51;
    font-size: 35px;
    font-weight: 900;
}

.lagom-modern .x {
    font-weight: 500;
    font-size: 20px;
}

.lagom-modern .price_discount {
    margin-top: 10px;
}

.lagom-modern .offer-price {
    font-weight: 300;
}

.lagom-modern .offer-discount {
    background-color: #fee9df;
    padding: 7px;
    border-radius: 4px;
    color: #f67a3c;
    text-transform: capitalize;
}

/* Order button */
.lagom-modern .top-side .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0px auto;
    color: #fff;
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    padding: 15px 0px;
    border-radius: 8px;
    border: none;
    background-color: #0D034A;
    text-transform: capitalize;
    transition: 0.4s ease-in-out;
}

.lagom-modern .top-side .btn:hover {
    background-color: #0d034a;
    color: #fff;
}

/* Center side: features */
.lagom-modern .center-side {
    margin-top: 20px;
}

.lagom-modern .center-side .options {
    padding: 0 25px;
}

.lagom-modern .first-span:first-of-type {
    display: flex;
    align-content: center;
}

.lagom-modern .first-span {
    display: block;
    padding: 10px 0;
}

.lagom-modern .img-lite {
    margin-top: -3px;
}

.lagom-modern .se {
    font-weight: 800;
    margin-right: 7px;
    color: rgb(51, 51, 51);
}

/* Bottom side */
.lagom-modern .list .bottom-side {
    border-top: 1px solid rgba(221, 221, 221, 0.69);
}

.lagom-modern .packages {
    text-align: center;
    font-weight: 400;
    font-size: 15px;
    text-transform: capitalize;
    color: rgb(128, 103, 204);
    margin-top: 20px;
}

.lagom-modern .list::after {
    display: block;
    content: "";
    clear: both;
}

/* Section & panel styling */
.lagom-modern .section + .section {
    margin-top: 25px !important;
}

.lagom-modern .section .section-header {
    margin-bottom: 25px !important;
}

.lagom-modern .section-hook-output .section-title,
.lagom-modern .section-hook-output > h3,
.lagom-modern .section .section-title,
.lagom-modern .section > h3 {
    color: #000 !important;
    font-size: 20px !important;
    line-height: normal !important;
}

.lagom-modern .section > :last-child {
    margin-bottom: 0 !important;
}

.lagom-modern .panel-form {
    background: #fff !important;
}

.lagom-modern .main-content .panel:not(.panel-sidebar) {
    position: relative !important;
    display: block !important;
    margin-bottom: 25px !important;
    background: #fff !important;
    border: 1px solid #fff !important;
    border-radius: 12px !important;
}

.lagom-modern .main-content .panel-body {
    padding: 25px 15px !important;
}

/* "Included with plans" features */
.lagom-modern ul.list-features {
    padding: 10px 0 0 0 !important;
    flex-direction: row !important;
    display: flex !important;
    flex-wrap: wrap !important;
}

.lagom-modern .list-info {
    padding: 0 !important;
    margin: 0 !important;
}

.lagom-modern .list-info li {
    display: flex !important;
}

.lagom-modern .list-features li {
    padding: 10px !important;
    margin: 0px 15px 8px 15px !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 4px !important;
    list-style: none !important;
    min-width: 46% !important;
    flex-grow: 1 !important;
    transition: all 0.24s ease !important;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.05) !important;
}

.lagom-modern .list-features > li i {
    margin-left: 15px !important;
    color: #0ba70e;
}

.lagom-modern .h6 {
    font-size: 16px !important;
    line-height: 23px !important;
    font-weight: bold !important;
}

.lagom-modern .list-features li:hover {
    background: #daf3e1;
    transition: all 0.24s ease;
    cursor: pointer;
}

/* ---- Responsive: Pricing on tablet ---- */
@media (max-width: 991px) {
    .lagom-modern .price-list {
        padding: 20px 10px !important;
        gap: 15px;
    }

    .lagom-modern .price-list .list {
        width: calc(50% - 15px) !important;
    }

    .lagom-modern .head-t {
        font-size: 18px;
        margin-top: 30px;
    }

    .lagom-modern .top-side .price {
        font-size: 30px;
    }
}

/* ---- Responsive: Pricing on mobile ---- */
@media (max-width: 575px) {
    .lagom-modern .price-plan {
        padding-bottom: 10px;
    }

    .lagom-modern .price-list {
        padding: 10px 5px !important;
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }

    .lagom-modern .price-list .list {
        width: 100% !important;
        max-width: 400px;
    }

    .lagom-modern .head-t {
        font-size: 17px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .lagom-modern .top-side {
        padding: 15px;
    }

    .lagom-modern .top-side .price {
        font-size: 26px;
    }

    .lagom-modern .x {
        font-size: 16px;
    }

    .lagom-modern .top-side .btn {
        font-size: 15px;
        padding: 14px 0;
        margin-top: 15px;
        min-height: 48px;
    }

    .lagom-modern .center-side .options {
        padding: 0 15px;
    }

    .lagom-modern .first-span {
        padding: 8px 0;
        font-size: 14px;
    }

    .lagom-modern .se {
        font-size: 14px;
    }

    .lagom-modern .list-features li {
        min-width: 100% !important;
        margin: 0 5px 8px 5px !important;
    }

    .lagom-modern .section .section-title,
    .lagom-modern .section > h3 {
        font-size: 18px !important;
    }

    .lagom-modern .panel-body {
        padding: 15px 10px !important;
    }
}
