:root {
    --maroon: #7b1020;
    --maroon-dk: #4a0a12;
    --maroon-lt: #b8172c;
    --maroon-pale: #fdf1f2;
    --maroon-glow: rgba(123, 16, 32, 0.2);
    --navy: #0b2545;
    --navy-md: #12325a;
    --navy-lt: #1a4a82;
    --sky: #2a7fd4;
    --warm-md: #ede9e0;
    --black: #080c12;
    --warm-dk: #d8d2c4;
    --warm: #f8f6f1;
    --sky-pale: #ebf4ff;
    --white: #ffffff;
    --ivory: #fdfcf9;
    --stone: #f5f3ee;
    --stone-md: #ebe7dc;
    --stone-dk: #d8d1c3;
    --ink: #18120c;
    --ink-md: #3a3028;
    --ink-lt: #6a6055;
    --ink-pale: #a49a8e;
    --border: #e8e2d8;
    --border-md: #d5cdbe;
    --green: #1a7a4a;
    --green-pale: #edfbf3;
    --amber: #c47a1a;
    --amber-pale: #fff8ec;
    --gold: #c9963a;
    --accent: #c17f3e;
    --accent-light: #f5ead8;
    --shadow-xs: 0 1px 4px rgba(24, 18, 12, 0.05);
    --shadow-sm: 0 3px 12px rgba(24, 18, 12, 0.08);
    --shadow-md: 0 8px 28px rgba(24, 18, 12, 0.11);
    --shadow-lg:
        0 20px 54px rgba(24, 18, 12, 0.14), 0 4px 14px rgba(24, 18, 12, 0.06);
    --shadow-xl: 0 32px 80px rgba(24, 18, 12, 0.17);
    --tw-shadow:
        0 2px 6px -2px rgba(0, 0, 16, 0.05), 0 2px 6px -2px rgba(0, 0, 16, 0.03);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --r-sm: 8px;
    --r: 14px;
    --r-lg: 20px;
    --r-xl: 28px;

    /* Role colors */
    --org-primary: #7b1020;
    --org-pale: #fdf1f2;
    --org-accent: #b8172c;
    --att-primary: #0b2545;
    --att-pale: #ebf4ff;
    --att-accent: #2a7fd4;
    --gray-200: #e5e7eb;
    --gray-100: #f4f4f5;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.location_area .account-selection__option {
    border-width: 2px;
    height: 86px;
}

.location_area .account-selection__input:checked ~ .account-selection__icon {
    font-size: 16px;
}

.location_area .account-selection__text {
    font-size: 20px;
}

.account-selection__option {
    display: block;
    padding: 9px 12px;
    border: 1px solid #eee;
    border-radius: 0.375rem;
    cursor: pointer;
    position: relative;
}

.user-dashboard-box
    .ck-rounded-corners
    .ck.ck-editor__main
    > .ck-editor__editable,
.ck.ck-editor__main > .ck-editor__editable.ck-rounded-corners {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

.user-dashboard-box
    .ck-rounded-corners
    .ck.ck-editor__top
    .ck-sticky-panel
    .ck-sticky-panel__content {
    border-radius: 0.375rem;
}

.account-selection__input {
    position: absolute;
    opacity: 0;
}

.account-selection__input:checked + .account-selection__text {
    color: #0d6efd;
    font-weight: bold;
}

.account-selection__input:checked ~ .account-selection__icon {
    display: block;
    color: #0d6efd;
}

.account-selection__icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

/* Validation Styles */
.is-invalid {
    border-color: #dc3545 !important;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.invalid-feedback.d-block {
    display: block;
}

.select2-container .select2-selection.is-invalid {
    border-color: #dc3545 !important;
}

button#addTicket,
button#addFaq,
button#addPerformer {
    max-width: 20%;
}

.user-dashboard-box button.remove-faq,
button.remove-performer,
button.remove-ticket {
    max-width: 10%;
}

.user-dashboard-box div#step4Btns {
    width: 100%;
}

.user-dashboard-box button#prevBtn {
    max-width: 20%;
}

.user-dashboard-box .progress-wrapper {
    margin-bottom: 3rem;
}

.user-dashboard-box .progress-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 10px;
}

/* Background line */
.user-dashboard-box .progress-container::before {
    content: "";
    background: #e2e8f0;
    position: absolute;
    top: 25px;
    /* Aligned to center of circles */
    left: 0;
    height: 4px;
    width: 100%;
    z-index: 1;
}

.user-dashboard-box .progress-indicator {
    background: var(--bs-primary);
    position: absolute;
    top: 25px;
    left: 0;
    height: 4px;
    width: 0%;
    z-index: 1;
    transition: 0.4s ease;
}

.user-dashboard-box .step-item {
    z-index: 2;
    text-align: center;
    width: 100px;
    position: relative;
}

.user-dashboard-box .dashCaption {
    padding-top: 1em !important;
}

.user-dashboard-box .circle {
    background: #fff;
    color: var(--text-dim);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #e2e8f0;
    transition: 0.4s ease;
    margin: 0 auto 8px;
}

.user-dashboard-box .circle svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Label names below icons */
.user-dashboard-box .step-name {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: 0.4s;
    position: absolute;
    width: 200px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2em;
}

/* Active/Finished States */
.user-dashboard-box .step-item.active .circle {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
    box-shadow: 0 0 15px rgba(128, 0, 0, 0.2);
    background: var(--bs-primary);
}

.user-dashboard-box .step-item.active .circle i {
    color: var(--bs-white);
}

.user-dashboard-box .step-item.active .circle svg {
    fill: var(--bs-white);
}

.user-dashboard-box .step-item.active .step-name {
    color: var(--navyblue);
}

.user-dashboard-box .step-item.finished .circle {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
}

.user-dashboard-box .step-item.finished .step-name {
    color: var(--bs-primary);
}

/* --- Form Steps --- */
.user-dashboard-box .form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.user-dashboard-box .form-step.active {
    display: block;
}

.user-dashboard-box h2 {
    color: var(--navyblue);
    margin: 0 0 0.5rem;
}

.user-dashboard-box p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.user-dashboard-box .crated_form_ui .input-group {
    margin-bottom: 0;
}

.user-dashboard-box .input-group {
    margin-bottom: 1.2rem;
}

.user-dashboard-box label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--navyblue);
}

.user-dashboard-box .crated_form_ui label.labelTitle {
    color: #333;
}

.user-dashboard-box input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 16px;
}

.user-dashboard-box input:focus {
    outline: none;
    border-color: var(--navyblue);
}

.user-dashboard-box .btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.user-dashboard-box .btn.remove-banner i {
    margin-right: 0;
}

.user-dashboard-box .btn.remove-banner:hover {
    background: var(--navyblue);
    color: white;
    opacity: 0.9;
    transform: translateY(-2px);
}

.user-dashboard-box .btn.remove-banner {
    background: var(--bs-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 20px;
}

.user-dashboard-box .btn {
    height: 41px;
}

.user-dashboard-box .form-group {
    margin-bottom: 0;
}

.user-dashboard-box .footer-btn .btn {
    width: 100%;
    max-width: 20%;
    font-weight: 500;
    font-size: 17px;
}

.user-dashboard-box .footer-btn .btn-success:hover {
    background-color: var(--navyblue) !important;
}

.user-dashboard-box .btn-next {
    background: var(--bs-primary);
    color: white;
}

.user-dashboard-box .btn-prev {
    background: #f1f5f9;
    color: var(--navyblue);
}

.user-dashboard-box button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.user-dashboard-box button:disabled {
    background: var(--bs-primary-bg-dark);
    cursor: not-allowed;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 575px) {
    .user-dashboard-box .step-item {
        width: 80px;
    }

    .user-dashboard-box .circle {
        width: 50px;
        height: 50px;
    }

    .user-dashboard-box .circle i {
        font-size: 20px;
    }

    .user-dashboard-box .step-name {
        font-size: 11px;
    }
}

.ai-generate-btn {
    color: #f57c00;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.ai-generate-btn:hover {
    background: #ffe0b2;
}

/* Rich Profile Dropdown Styles */
.profile-rich-dropdown {
    min-width: 280px !important;
    padding: 20px !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #edf2f7 !important;
    background: #fff !important;
}

.dropdown-header-subtitle {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    display: block;
    padding: 0 8px;
}

.dropdown-user-details {
    display: flex;
    align-items: center;
    padding: 10px 8px;
    margin-bottom: 15px;
    text-decoration: none !important;
    color: inherit !important;
    transition: all 0.2s;
    border-radius: 10px;
}

.dropdown-user-details:hover {
    background: #f8fafc;
}

.user-avatar-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-right: 12px;
    overflow: hidden;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
}

.user-avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-meta-info {
    flex: 1;
}

.user-meta-info h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.2;
}

.user-meta-info span {
    font-size: 11px;
    color: #64748b;
}

.rich-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rich-menu-list li a {
    display: flex;
    align-items: center;
    padding: 10px 10px;
    color: #475569 !important;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.2s;
    text-decoration: none !important;
}

.rich-menu-list li a:hover {
    background: #f1f5f9 !important;
    color: var(--bs-primary) !important;
}

.rich-menu-list li a i {
    font-size: 18px;
    margin-right: 12px;
    color: #64748b;
    width: 20px;
    text-align: center;
}

.dropdown-divider-line {
    height: 1px;
    background: #f1f5f9;
    margin: 15px 0;
}

.badge-new-pill {
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: auto;
}

.logout-container-rich a {
    text-decoration: none !important;
    padding: 8px !important;
}

.logout-email-subtext {
    font-size: 11px;
    color: #64748b;
    display: block;
    margin-top: -2px;
    font-weight: 400;
}

.logout-label-text {
    font-weight: 600;
    font-size: 14px;
    color: #1e293b;
    display: block;
}

.progress-area {
    position: relative;
    transition: all 0.3s ease;
}

.progress-area.change {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 99;
    background: #fff;
    padding: 5px 0 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.user-dashboard-box .progress-area.change .progress-wrapper.p-xl-5 {
    padding: 0 3rem !important;
    margin-bottom: 1.3rem;
}

.progress-area.change .progress-wrapper {
    padding: 0rem 3rem 0 3rem !important;
}

.progress-area .progress-wrapper {
    padding: 1rem 3rem 0 3rem !important;
}

.address__areabox textarea.form-control {
    height: 42px !important;
}

.upload-container .drop-zone {
    padding: 20px 20px;
    border-radius: 10px;
    min-height: 125px;
}

.upload-container .drop-zone:hover .icon-box {
    background: var(--bs-white);
}

.upload-container .icon-box {
    border: 1px solid #d0d5dd;
    color: #344054;
    background: #fff;
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.drop-zone span {
    color: #62636b;
}

#heroSearchForm .search-wrap .search-suggestions-box {
    position: absolute;
    top: 100%;
    left: -80px;
    /* Offset to align with the search wrap start */
    right: -10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    margin-top: 15px;
    display: none;
    overflow: hidden;
    border: 1px solid #eee;
    text-align: left;
}

@media (max-width: 767px) {
    #heroSearchForm .search-wrap .search-suggestions-box {
        left: -50px;
        right: -10px;
    }
}

.suggestion-section {
    padding: 20px;
}

.suggestion-section:not(:last-child) {
    border-bottom: 1px solid #f8f9fa;
}

.suggestion-title {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280 !important;
    margin-bottom: 15px;
    text-transform: none;
}

.tag-pill {
    display: inline-block;
    padding: 8px 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    border-radius: 50px;
    font-size: 13px;
    margin-right: 8px;
    margin-bottom: 10px;
    transition: all 0.2s;
    text-decoration: none;
}

.tag-pill:hover {
    background: #eff6ff;
    border-color: #3b82f6;
    color: #3b82f6;
}

.recent-search-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.recent-search-item i {
    margin-right: 12px;
    color: #9ca3af;
    font-size: 14px;
}

.recent-search-item:hover {
    color: #3b82f6;
}

.match-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #374151;
    text-decoration: none;
    transition: background 0.2s;
    border-radius: 8px;
}

.match-item:hover {
    background: #f8fafc;
    color: #3b82f6;
}

.match-item i {
    margin-right: 12px;
    font-size: 14px;
    color: #9ca3af;
}

.event-suggestion-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: #1f2937;
    border-radius: 8px;
    transition: background 0.2s;
    margin-bottom: 5px;
}

.event-suggestion-item:hover {
    background: #f0f7ff;
}

.event-suggestion-img {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 15px;
    background: #eee;
}

.event-suggestion-info {
    flex-grow: 1;
    min-width: 0;
}

.event-suggestion-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-truncate: ellipsis;
    display: block;
}

.event-suggestion-meta {
    font-size: 12px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 12px;
}

.event-suggestion-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.suggestion-loader {
    padding: 30px;
    text-align: center;
    color: #9ca3af;
}

.faq_box {
    border-bottom: 1px solid #ced4da;
    padding-bottom: 1em;
}

.select2-container--bootstrap-5 .select2-selection.is-invalid {
    border-color: #dc3545 !important;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.select2-container--bootstrap-5 .select2-selection.is-invalid:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25) !important;
}

.performer-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    margin: 0 -0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
}

.performer-col {
    flex: 0 0 auto;
}

.performer-card {
    min-width: 140px;
    border: 1px solid #eef1f3;
    padding: 12px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(18, 38, 63, 0.03);
}

.performer-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 8px;
}

.performer-card h6 {
    font-size: 0.95rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 576px) {
    .performer-card {
        min-width: 110px;
    }
}

/*search section*/
.search-hero {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.search-hero::before {
    content: "";
    position: absolute;
    inset: 0;
}

.search-hero .container {
    position: relative;
    z-index: 2;
}

/* ── Back Button ── */
.back-btn {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0rem;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0px;
}

.back-btn i {
    font-size: 1rem;
}

.back-btn:hover {
    color: #fff;
}

.hero-search-bar {
    background: #fff;
    border-radius: 50px;
    padding: 8px 8px 8px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.hero-search-bar input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a2e;
    background: transparent;
    font-family: var(--body-other-family);
}

.hero-search-bar input::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.hero-search-bar .city-sep {
    width: 1px;
    height: 28px;
    background: #e0e0e0;
    flex-shrink: 0;
}

.hero-search-bar .city-sel {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    padding: 0 10px;
    font-size: 0.9rem;
}

.hero-search-bar .city-sel i {
    color: var(--bs-primary);
}

.hero-search-bar .search-submit-btn {
    background: var(--navyblue);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.hero-search-bar .search-submit-btn:hover {
    background: var(--bs-primary);
}

.filter-pills-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.filter-pill {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    text-decoration: none;
}

.filter-pill:hover,
.filter-pill.active {
    background: #fff;
    color: var(--navyblue);
    border-color: #fff;
}

.filter-pill i {
    font-size: 0.75rem;
}

/* ── Results Area ── */
.results-section {
    background: #f8f9fc;
    min-height: 60vh;
    padding: 36px 0 60px;
}

.results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.results-header .nav.nav-pills {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.results-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
}

.results-title span {
    color: var(--bs-primary);
}

.results-count {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ── Active Filter Tags ── */
.active-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.filter-tag {
    background: #e8f0fe;
    color: var(--navyblue);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.filter-tag a {
    color: inherit;
    text-decoration: none;
    font-size: 0.9rem;
}

.clear-all-btn {
    color: #dc3545;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 50px;
    border: 1px solid #dc3545;
    transition: all 0.2s;

    display: flex;
    align-items: center;
}

.clear-all-btn:hover {
    background: #dc3545;
    color: #fff;
}

/* ── Category Browse Tags (mobile — unchanged) ── */
.category-browse {
    margin-bottom: 24px;
}

.category-browse-title {
    font-size: 0.82rem;
    color: #6b7280;
    margin-bottom: 10px;
    font-weight: 600;
}

.cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #374151;
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    margin: 3px 2px;
}

.cat-badge:hover,
.cat-badge.selected {
    background: var(--navyblue);
    border-color: var(--navyblue);
    color: #fff;
}

/* ── Category Dropdown (desktop redesign) ── */
.cat-dropdown.search-cat-dropdown {
    min-width: 600px;
}

.cat-dropdown {
    min-width: 480px;
    border-radius: 18px !important;
    overflow: hidden;
}

.cat-dd-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.3rem 0.9rem;
    background: linear-gradient(
        135deg,
        var(--maroon-dk) 0%,
        var(--maroon-lt) 100%
    );
    gap: 1rem;
}

.cat-dd-eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.15rem;
}

.cat-dd-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.cat-dd-clear {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 3px 11px;
    white-space: nowrap;
    transition: all 0.18s;
    flex-shrink: 0;
}

.cat-dd-clear:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.cat-dd-body {
    padding: 1rem 1.1rem 1.1rem;
    background: #fff;
}

/* All Categories row */
.cat-dd-all {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
    background: #f4f6fb;
    border: 2px solid #e8ebf5;
    border-radius: 12px;
    padding: 0.65rem 0.9rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 0.85rem;
    text-align: left;
}

.cat-dd-all:hover {
    border-color: var(--bs-primary);
    background: #eef2ff;
    color: var(--bs-primary);
}

.cat-dd-all.active {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
}

.cat-dd-all__icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--bs-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background 0.2s;
}

.cat-dd-all.active .cat-dd-all__icon {
    background: rgba(255, 255, 255, 0.22);
}

/* Category grid */
.cat-dd-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    max-height: 280px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #e5e7eb transparent;
}

.cat-dd-grid::-webkit-scrollbar {
    width: 4px;
}

.cat-dd-grid::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 4px;
}

.search-cat-dropdown .cat-dd-item {
    padding: 0.7rem 0.3rem 0.6rem;
}

.cat-dd-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    background: #f8f9fc;
    border: 0px solid #ebebf3;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.search-cat-dropdown .cat-dd-item:hover {
    border-color: var(--bs-primary);
    background: #cccccc;
    transform: translateY(-2px);
}

.search-cat-dropdown .cat-dd-item.active {
    border: 2px solid var(--bs-primary);
    background: #cccccc;
}

.cat-dd-item__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--bs-primary);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.2s;
}

.search-cat-dropdown .cat-dd-item.active .cat-dd-item__icon {
    background: rgba(255, 255, 255, 1);
    color: var(--maroon);
    box-shadow: none;
}

.cat-dd-item__name {
    font-size: 0.68rem;
    font-weight: 700;
    color: #374151;
    line-height: 1.2;
    word-break: break-word;
    transition: color 0.2s;
}

.search-cat-dropdown .cat-dd-item.active .cat-dd-item__name {
    color: var(--bs-primary);
}

.cat-dd-item .control {
    font-family: arial;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 0px;
    margin-bottom: 5px;
    padding: 0.7rem 0.3rem 0.6rem;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cat-dd-item .form-check {
    padding: 0;
    margin-right: 0;
    width: 100%;
    height: 100%;
}

.cat-dd-item .control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.cat-dd-item .control_indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 100%;
    width: 100%;
    background: #f8f9fc;
    border: 2px solid #ebebf3;
    border-radius: 12px;
    z-index: 0;
}

.dropdown-menu .cat-dd-item .form-check .cat-dd-item__name,
.dropdown-menu .cat-dd-item .form-check .cat-dd-item__icon {
    position: relative;
    z-index: 1;
}

.cat-dd-item .control:hover input ~ .control_indicator,
.cat-dd-item .control input:focus ~ .control_indicator {
    background: #cccccc;
}

.cat-dd-item .control input:checked ~ .control_indicator {
    border-color: var(--bs-primary);
    background: #cccccc;
}

.cat-dd-item .control:hover input:not([disabled]):checked ~ .control_indicator,
.cat-dd-item .control input:checked:focus ~ .control_indicator {
    background: #0e6647d;
}

.cat-dd-item .control input:disabled ~ .control_indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}

.cat-dd-item .control_indicator:after {
    box-sizing: unset;
    content: "";
    position: absolute;
    display: none;
}

.cat-dd-item .control input:checked ~ .control_indicator:after {
    display: block;
}

.cat-dd-item .control-checkbox .control_indicator:after {
    left: 8px;
    top: 4px;
    width: 3px;
    height: 8px;
    border: solid var(--bs-primary);
    border-width: 0 0px 0px 0;
    transform: rotate(45deg);
}

.cat-dd-item .control-checkbox input:disabled ~ .control_indicator:after {
    border-color: #7b7b7b;
}

.cat-dd-item .control-checkbox .control_indicator::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 4.5rem;
    height: 4.5rem;
    margin-left: -1.3rem;
    margin-top: -1.3rem;
    background: #2aa1c0;
    border-radius: 3rem;
    opacity: 0.6;
    z-index: 99999;
    transform: scale(0);
}

@keyframes s-ripple {
    0% {
        transform: scale(0);
    }

    20% {
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

@keyframes s-ripple-dup {
    0% {
        transform: scale(0);
    }

    30% {
        transform: scale(1);
    }

    60% {
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.cat-dd-item .control-checkbox input + .control_indicator::before {
    animation: s-ripple 250ms ease-out;
}

.cat-dd-item .control-checkbox input:checked + .control_indicator::before {
    animation-name: s-ripple-dup;
}

.filterOptions-wrap .price-filter__wrap .dropdown-menu {
    min-width: 180px;
}

.filterOptions-wrap .price-filter__wrap .card-body {
    padding: 1rem;
}

/* ── No Results ── */
.no-results-wrap {
    text-align: center;
    padding: 80px 20px;
}

.no-results-wrap i {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 20px;
}

.no-results-wrap h4 {
    color: #374151;
    font-weight: 700;
}

.no-results-wrap p {
    color: #9ca3af;
}

/* ── Sticky Filter Bar ── */
.sticky-filter-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #f1f1f1;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.filter-dropdown-btn {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    padding: 7px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.filter-dropdown-btn:hover,
.filter-dropdown-btn.has-filter {
    border-color: var(--navyblue);
    color: var(--bs-primary);
    background: #f0f7ff;
}

.filter-dropdown-btn i.arrow {
    font-size: 0.7rem;
    color: #9ca3af;
}

.filter-dropdown-btn.has-filter i.arrow {
    color: var(--navyblue);
}

/*search section end**/

#splide_primary .splide__arrow {
    background: rgba(255, 255, 255, 0.2);
    width: 48px;
    height: 48px;
}

#splide_primary .splide__arrow svg {
    fill: #fff;
}

#splide_primary .splide__arrow:hover {
    background: rgba(255, 255, 255, 0.45);
}

#splide_thumbnail .splide__slide {
    opacity: 0.5;
    transition: opacity 0.2s;
    border: 2px solid transparent !important;
    border-radius: 4px;
    overflow: hidden;
}

#splide_thumbnail .splide__slide.is-active {
    opacity: 1;
    border-color: #007bff !important;
    box-shadow: 0 0 0 2px #007bff;
}

.fees-summary-trigger .bi-chevron-right {
    transition: transform 0.2s ease;
    display: inline-block;
}

.fees-summary-trigger[aria-expanded="true"] .bi-chevron-right {
    transform: rotate(90deg);
}

/* Booking history start */
.nav-tabs-custom {
    border-bottom: 2px solid #f1f5f9;
    margin-bottom: 30px;
}

.nav-tabs-custom .nav-link {
    border: none;
    color: #64748b;
    font-weight: 500;
    padding: 12px 20px;
    font-size: 1.1rem;
    position: relative;
    background: transparent;
}

.nav-tabs-custom .nav-link.active {
    color: #0d6efd;
    background: #fff;
    border: 1px solid #dee2e6;
    border-bottom-color: #fff;
    border-radius: 8px 8px 0 0;
    margin-bottom: -2px;
}

.booking-card-wrapper {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 4px;
    position: relative;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Serrated edges like in the image */
.booking-card-wrapper::before,
.booking-card-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 12px;
    background-size: 24px 24px;
    background-repeat: repeat-x;
    z-index: 2;
}

.booking-card-wrapper::before {
    top: -6px;
    background-image: radial-gradient(
        circle at 12px -6px,
        transparent 14px,
        #f1f5f9 15px
    );
}

.booking-card-wrapper::after {
    bottom: -6px;
    background-image: radial-gradient(
        circle at 12px 18px,
        transparent 14px,
        #f1f5f9 15px
    );
}

.booking-card {
    background: #fff;
    padding: 25px;
    position: relative;
    z-index: 1;
}

.booking-card .review-btn {
    gap: 10px;
    font-size: 15px;
}

.booking-card .btn-warning {
    font-size: 15px;
    gap: 8px;
}

.booking-card .btn-outline-secondary {
    gap: 8px;
}

.booking-card .btn-warning:focus,
.booking-card .btn-warning:hover {
    background-color: var(--navyblue) !important;
}

.event-img-h {
    width: 220px;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
}

.booking-details h4 {
    color: #0b2545;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.booking-details .booking_code {
    background-color: #eaecf0;
    color: #9ca3af;
    border-radius: 10px;
    text-align: center;
    padding-top: 3px;
}

.booking-details .booking_code.info-item strong {
    color: #9ca3af;
    font-weight: 500;
}

.info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.info-item {
    font-size: 1.1rem;
    color: #475569;
}

.info-item .bi_ico {
    background-color: #eff6ff;
    color: #0b2545;
}

.info-item strong {
    color: #1e293b;
    font-weight: 600;
}

.booking-card .booking-details {
    border-right: 1px dashed #d1d5db;
}

.view-tickets-btn {
    background: #13355f;
    box-shadow: 0 4px 14px rgba(11, 37, 69, 0.28);
    padding: 10px 35px;
    border-radius: 4px;
    color: var(--bs-white);
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.view-tickets-btn:hover {
    background: #13355ff2;
    color: var(--bs-white);
    transform: translateY(-1px);
}

.ticket-tooltip {
    background: #000;
    color: #fff;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    position: relative;
    margin-bottom: 15px;
    display: inline-block;
    font-weight: 500;
}

.ticket-tooltip::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #000;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
}

.empty-state i {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 20px;
    display: block;
}

.booking-status {
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.status-confirmed {
    background: #dcfce7;
    color: #166534;
}

.status-pending {
    background: #fef9c3;
    color: #854d0e;
}

.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.status-free {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid rgba(22, 163, 74, 0.2);
}

/* Booking history end */

/* Order history start */
.order-table-container {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.order-table th {
    background: #f8fafc;
    color: #475569;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    padding: 20px;
    border: none;
}

.order-table td {
    padding: 20px;
    vertical-align: middle;
    color: #1e293b;
    border-bottom: 1px solid #f1f5f9;
    font-size: 1rem;
}

.order-status {
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-paid {
    background: #dcfce7;
    color: #166534;
}

.status-pending {
    background: #fef9c3;
    color: #854d0e;
}

.status-failed {
    background: #fee2e2;
    color: #991b1b;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
}

.empty-state i {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 20px;
    display: block;
}

/* Order history end */

.swal2-container {
    z-index: 99999 !important;
}

html {
    overflow-y: scroll;
}

body.modal-open {
    padding-right: 0 !important;
}

/* manage event details frontend */

.bg-light-success {
    background-color: #e8f5e9 !important;
    color: #2e7d32 !important;
}

.bg-light-warning {
    background-color: #fff8e1 !important;
    color: #f57f17 !important;
}

.bg-light-danger {
    background-color: #ffebee !important;
    color: #c62828 !important;
}

.bg-light-primary {
    background-color: #e3f2fd !important;
    color: #1565c0 !important;
}

.manage-tab-btn {
    transition: all 0.3s ease;
}

.manage-tab-btn.active {
    background: white !important;
    border: 1px solid #ededed !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.manage-tab-btn.active span:first-child {
    color: #0d6efd !important;
    font-weight: 600 !important;
}

.manage-tab-btn.active span:last-child {
    color: #0d6efd !important;
    border-color: #0d6efd !important;
}

/**New Css*/
.dashCaption .position-absolute {
    display: block;
}

.nav-menu > li .nav-dropdown.nav-submenu.show {
    transform: translate(0px, 45px) !important;
}

.crated_form_ui #galleryImagesPreview .btn {
    height: 30px;
    width: 30px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    background-color: #800000;
}

.crated_form_ui #galleryImagesPreview .btn i {
    font-size: 20px;
    margin-right: 0;
}

.listingSingleblock .SingleblockHeader .listingcollapseTitle span {
    position: relative;
}

.listingSingleblock .SingleblockHeader .listingcollapseTitle span::before {
    height: 21px;
    width: 21px;
    bottom: 100% !important;
}

.listingSingleblock .SingleblockHeader .listingcollapseTitle span::after {
    width: 100%;
    height: 1px;
}

.listingSingleblock .SingleblockHeader .listingcollapseTitle span::before,
.listingSingleblock .SingleblockHeader .listingcollapseTitle span::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    background-color: transparent;
}

.booking-details .info-row .info-item {
    width: 30%;
}

.mainlistingInfo .firstColumn {
    flex: 1;
    width: 100%;
    max-width: 960px;
}

.btn.interest-toggle-btn {
    gap: 10px;
}

.page-body .no_records_found .no_records {
    border-style: dashed !important;
    border-color: #e0e0e0 !important;
}

.no_records .no_rounded {
    width: 100px;
    height: 98px;
    padding: 0 !important;
    line-height: 103px;
}

#acc-reviews .no_records .no_rounded {
    line-height:;
}

.listingreport .btn {
    height: 40px;
    gap: 10px;
    font-size: 12px;
}

.share_icon i {
    color: var(--maroon-dk);
}

.share_icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    padding-top: 3px;
}

.share_icon:hover {
    background-color: var(--bs-white) !important;
}

.category-search-wrap .form-control {
    border: 1px solid #ced4da !important;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.category-search-wrap .form-control:focus {
    box-shadow: 0 1px 10px 1px rgba(13, 110, 253, 0.25) !important;
}

.profile-avatar-section label.btn {
    line-height: 30px;
}

.price-filter__wrap .control {
    font-family: arial;
    position: relative;
    padding: 8px 1rem;
    margin-bottom: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    height: 100%;
    align-items: center;
}

.mobile-cat-filter {
    display: inline-block;
    width: auto;
}

.mobile-cat-filter .cat__badge {
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.mobile-cat-filter .form-check {
    padding-left: 0;
}

.mobile-filter_price .form-check .cat__badge {
    position: relative;
    z-index: 1;
    font-size: 1rem;
}

.mobile-filter_price .form-check {
    background: #f3f4f6;
}

.mobile-filter_price .form-check,
.mobile-cat-filter .form-check-label {
    padding: 4px 14px;
    border: 1px solid #e5e7eb;
    color: #374151;
    border-radius: 40px;
    position: relative;
}

.price-filter__wrap .cat-dd-item__name {
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.price-filter__wrap .form-check {
    padding: 0;
    margin-right: 0;
    margin-bottom: 0;
}

.mobile-cat-filter input,
.mobile-filter_price input,
.price-filter__wrap .control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.mobile-cat-filter .control_indicator,
.mobile-filter_price .control_indicator {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bs-white);
    border: 0px solid transparent;
    border-radius: 40px;
    z-index: 0;
}

.price-filter__wrap .control_indicator {
    position: absolute;
    top: 2px;
    left: 0;
    width: 100%;
    height: 30px;
    background: var(--bs-white);
    border: 2px solid transparent;
    border-radius: 0.375rem;
    z-index: 0;
}

.price-filter__wrap .control:hover .cat-dd-item__name {
    color: var(--bs-white);
}

.price-filter__wrap .control:hover input ~ .control_indicator,
.price-filter__wrap .control input:focus ~ .control_indicator {
    background: var(--bs-primary);
}

.mobile-filter_price input:checked ~ .cat__badge {
    position: relative;
    z-index: 1;
}

.mobile-filter_price input:checked ~ .cat__badge,
.mobile-cat-filter input:checked ~ .cat__badge {
    color: var(--bs-white);
}

.mobile-cat-filter input:checked ~ .control_indicator {
}

.mobile-filter_price input:checked ~ .control_indicator,
.mobile-cat-filter input:checked ~ .control_indicator,
.price-filter__wrap .control input:checked ~ .control_indicator {
    border-color: var(--bs-primary);
    background: var(--bs-primary);
}

.price-filter__wrap
    .control:hover
    input:not([disabled]):checked
    ~ .control_indicator,
.price-filter__wrap .control input:checked:focus ~ .control_indicator {
    background: #0e6647d;
}

.price-filter__wrap .control input:disabled ~ .control_indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}

.price-filter__wrap .control_indicator:after {
    box-sizing: unset;
    content: none;
    position: absolute;
    display: none;
}

.price-filter__wrap .control input:checked ~ .cat-dd-item__name {
    color: #fff;
}

.price-filter__wrap .control input:checked ~ .control_indicator:after {
    display: block;
}

.price-filter__wrap .control-checkbox .control_indicator:after {
    left: 8px;
    top: 4px;
    width: 3px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.price-filter__wrap
    .control-checkbox
    input:disabled
    ~ .control_indicator:after {
    border-color: #7b7b7b;
}

.price-filter__wrap .control-checkbox .control_indicator::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 4.5rem;
    height: 4.5rem;
    margin-left: -1.3rem;
    margin-top: -1.3rem;
    background: #2aa1c0;
    border-radius: 3rem;
    opacity: 0.6;
    z-index: 99999;
    transform: scale(0);
}

@keyframes s-ripple {
    0% {
        transform: scale(0);
    }

    20% {
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

@keyframes s-ripple-dup {
    0% {
        transform: scale(0);
    }

    30% {
        transform: scale(1);
    }

    60% {
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.price-filter__wrap .control-checkbox input + .control_indicator::before {
    animation: s-ripple 250ms ease-out;
}

.price-filter__wrap
    .control-checkbox
    input:checked
    + .control_indicator::before {
    animation-name: s-ripple-dup;
}

#editTimeModal .lastdate_section {
    flex-direction: column;
    display: flex;
}

#editTimeModal .lastdate_section [readonly="readonly"].form-control {
    order: 1;
}

#editTimeModal .lastdate_section .invalid-feedback.d-block {
    order: 2;
}

.modal-body .alert-info i,
.modal-body .alert-info strong {
    color: var(--navy);
}

.modal-body .alert-info {
    color: #546b41;
}

.date_section label {
    display: block;
}

.date_section .flatpickr-wrapper,
.date_section .form-control {
    width: 100%;
}

.neweventsbox .no_events-icon {
    width: 132px;
}

.event-detail__header[data-overlay]:before {
    width: 50%;
}

.event-detail__header.bg-cover {
    background-size: auto 100% !important;
    background-repeat: no-repeat;
}

.event-detail__header[data-overlay]:after {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 40%,
        rgba(0, 0, 0, 0.95) 53%
    );
}

.event-detail__header[data-overlay]:after {
    content: "";
    position: absolute;

    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 0;
}

.earn_payout_section {
    padding-bottom: 4em;
}

a.btn.view_stats_btn {
    margin-left: auto;
}
.allevents_select_box .select2-container .select2-selection--single {
    height: 40px;
}
.explore-listing-wrapper.list__view_wrapper {
    padding: 100px 0 100px;
}
.explore-listing-wrapper
    .list-view
    .row.align-items-stretch {
    align-items: stretch !important;
}
.stacstics_row_section .col-xl-3:nth-of-type(5) .iconbox {
    max-height: 38px;
}
.pb-6 {
    padding-bottom: 4.5rem !important;
}
.ticket-details-left .detail-group {
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
    padding: 0.358em 1em;
    border-radius: 5px;
}
.ticket-details-left .image-group {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 -11px 10px 1px rgba(0, 0, 0, 0.1);
}
.ticket-details-left .image-group {
    position: relative;
}
.ticket-details-left .image-group::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), transparent);
}
.authors-details {
    padding: 1.5rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.author-avatar img {
    border-radius: 50%;
    width: 96px;
    height: 96px;
    object-fit: cover;
}
.author-info {
    text-align: left;
}
.author-info h1 {
    font-size: clamp(2.3rem, 5vw, 2rem);
    color: var(--white);
    margin: 0;
    line-height: 1.1;
}
.author-info .publish-blogs {
    color: var(--white);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}
.author-info .author-description {
    color: var(--white);
    font-size: 1rem;
    margin-top: 0.25rem;
    opacity: 0.75;
    margin-bottom: 0.25rem;
    line-height: 1.5;
}
section.event-details_section {
    background-color: #fcfcfd;
    border-bottom: 1px solid #e7e7ea;
    padding-bottom: 3rem;
    padding-top: 3rem;
}
.event-details_banner {
    padding: 0em 0.85em 0 0.85em;
    box-shadow:
        var(--tw-ring-offset-shadow, 0 0 #0000),
        var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    border-radius: 10px;
    position: relative;
    z-index: 1;
    background-color: #fcfcfd;
}
.event-details_content h1 {
    font-size: 2.5em;
    font-weight: 700;
}
.main__banner .event-details_banner {
    height: 600px;
    overflow: hidden;
    position: relative;
}
.event-details_banner_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    transform: scale(1.1);
    opacity: 1;
    transition: opacity 0.5s ease;
}
.main__banner .event-details_banner img {
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 1;
    height: 100%;
}
.event-details_banner img {
    border-radius: 10px;
}
.bg-ds2-tilted_background-base-fill-enabled {
    background-image: linear-gradient(
        180deg,
        rgb(18 18 21 / 0.12) 0,
        rgb(18 18 21 / 0.05)
    );
}
.shadow-ds2-shadow-tilted_background-base-enabled {
    --tw-shadow: inset 0 0 0 1px rgb(0 0 0 / 0.05);
    --tw-shadow-colored: inset 0 0 0 1px var(--tw-shadow-color);
}
.shadow-ds2-shadow-tilted_background-base-enabled {
    box-shadow:
        var(--tw-ring-offset-shadow, 0 0 #0000),
        var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.bg_event-banner {
    position: absolute;
    left: 0.625rem;
    right: 0.625rem;
    top: 0;
    bottom: 0;
}
.event__content .btn {
    height: 38px;
    font-weight: 700 !important;
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}
.event__content .btn:hover {
    background: rgba(255, 255, 255, 0.5) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: var(--white);
}
.btn-gray {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: var(--white);
    box-shadow:
        -5px -5px 5px 0 rgba(0, 0, 16, 0.2) inset,
        5px -5px 5px 0 rgba(0, 0, 16, 0.2) inset,
        0 3px 4px 0 rgba(0, 0, 16, 0.2) inset,
        0 4px 5px 0 rgba(255, 255, 255, 0.23) inset;
}
.btn-gray:hover {
    background: rgba(255, 255, 255, 0.5) !important;
}
.event__content {
    position: absolute;
    bottom: 16px;
    right: 2.5em;
    z-index: 1;
}
.ds2_actions .btn {
    border: 1px solid #dbd1d1;
}
.meta-arrow,
.meta-author {
    display: flex;
    gap: 1em;
}
.blog-content_inner .hero-subtitle {
    color: var(--white);
}
.second_sticky__nav,
section.similar__Items_box {
    background-color: #fcfcfd;
}
.main__banner .event-details_banner::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg,#0000 31.42%,#000);
}
#tickets ul.deatil_features > li:not(:last-child) {border-bottom: 1px solid #e7e7ea;}
#tickets ul.deatil_features li p{font-size: 0.9rem;}
.avatarInfo .infoDetails .info_heading{font-weight: 800;color: var(--headingColor);}
.listingSingleblock #faq{margin-bottom: 2em;}
.second_sticky__nav.sticky{position:fixed;top: 76px;width:100%;}
/**New Css End*/

/*responsive css */
@media (max-width: 1199px) {
    .container {
        max-width: 100% !important;
    }
}

@media (max-width: 1024px) {
    .sidebarGroups.fixed {
        max-width: 30.3333%;
    }

    .event-detail__header.bg-cover.ht-500 {
        height: 300px;
    }
    .main__banner .event-details_banner{height: auto;}
}
@media (max-width:992px){
    .event-details_section .main__banner{padding-top:3em;}
    .event-details_content h1{font-size: clamp(1.5rem, 5vw, 2.5rem);}
}

/*responsive css  End*/

/*Hosting Details*/
/* COVER + PROFILE HERO */
.cover-section {
    position: relative;
}

.cover-image {
    height: 300px;
    width: 100%;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(
            ellipse 55% 60% at 20% 50%,
            rgba(123, 16, 32, 0.1) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse 50% 60% at 80% 30%,
            rgba(11, 37, 69, 0.08) 0%,
            transparent 60%
        ),
        linear-gradient(175deg, #0b2545 0%, #12325a 45%, #1a3d6e 100%);
    position: relative;
    overflow: hidden;
}

.cover-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
}

.cover-image::before {
    content: "";
    position: absolute;
    background: url(../img/newimg.jpg) center/cover no-repeat;
    background-size: auto 100%;
    width: 100%;
    height: 100%;
}

/* Cover action buttons */
.cover-actions {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    z-index: 2;
    display: flex;
    gap: 0.5rem;
}

.cover-btn {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.9rem;
    border-radius: var(--r-sm);
    font-size: 0.76rem;
    font-weight: 600;
    font-family: "DM Sans";
    cursor: pointer;
    transition: all 0.15s;
    backdrop-filter: blur(12px);
}

.cover-btn.edit {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
}

.cover-btn.edit:hover {
    background: rgba(255, 255, 255, 0.25);
}

.cover-btn.share-cover {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
}

.cover-btn.share-cover:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Profile card overlapping the cover */
.profile-card {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
    margin-top: -80px;
    z-index: 10;
}

.profile-card-inner {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
}

/* Avatar */
.host-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.host-avatar {
    width: 100px;
    height: 100px;
    border-radius: 22px;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    background: var(--navy);
    display: grid;
    place-items: center;
}

.host-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.verified-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--sky);
    border: 3px solid var(--white);
    display: grid;
    place-items: center;
    box-shadow: 0 2px 6px rgba(42, 127, 212, 0.3);
}

/* Host info */
.host-info {
    flex: 1;
    min-width: 0;
}

.host-name-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-bottom: 0.35rem;
}

.host-name {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.host-verified-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--sky-pale);
    color: var(--sky);
    font-size: 0.67rem;
    font-weight: 700;
    padding: 0.18rem 0.55rem;
    border-radius: 100px;
    border: 1px solid rgba(42, 127, 212, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.host-category {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--maroon-pale);
    color: var(--maroon);
    font-size: 0.67rem;
    font-weight: 700;
    padding: 0.18rem 0.55rem;
    border-radius: 100px;
    border: 1px solid rgba(123, 16, 32, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.host-tagline {
    font-size: 0.88rem;
    color: var(--ink-lt);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0.7rem;
}

.host-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.host-meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    color: var(--ink-lt);
    font-weight: 500;
}

.host-meta-item svg {
    color: var(--ink-pale);
    flex-shrink: 0;
}

.host-meta-item a {
    color: var(--sky);
    text-decoration: none;
}

.host-meta-item a:hover {
    text-decoration: underline;
}

/* Stats row */
.host-stats {
    display: flex;
    gap: 0.05rem;
    margin-left: auto;
    flex-shrink: 0;
}

.hs-cell {
    text-align: center;
    padding: 0.6rem 1.2rem;
    border-left: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.15s;
    border-radius: var(--r-sm);
}

.hs-cell:first-child {
    border-left: none;
}

.hs-cell:hover {
    background: var(--stone);
}

.hs-num {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}

.hs-num.maroon {
    color: var(--maroon);
}

.hs-lbl {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--ink-pale);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 0.2rem;
}

/* Action buttons row */
.host-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding-top: 1.2rem;
    margin-top: 1.1rem;
    border-top: 1px solid var(--border);
}

.ha-btn {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.52rem 1.3rem;
    border-radius: var(--r-sm);
    font-size: 0.84rem;
    font-weight: 500;
    font-family: "IBM Plex Sans", sans-serif;
    cursor: pointer;
    transition: all 0.18s;
    letter-spacing: -0.01em;
}

.ha-btn.follow {
    background: var(--navy);
    border: none;
    color: #fff;
    box-shadow: 0 2px 10px rgba(11, 37, 69, 0.22);
    min-width: 130px;
    justify-content: center;
}

.ha-btn.follow:hover {
    background: var(--navy-md);
    box-shadow: 0 4px 16px rgba(11, 37, 69, 0.3);
}

.ha-btn.follow.following {
    background: var(--green);
    box-shadow: 0 2px 10px rgba(26, 122, 74, 0.22);
}

.ha-btn.follow.following:hover {
    background: #156b3f;
}

.ha-btn.message {
    background: var(--maroon);
    border: none;
    color: #fff;
    box-shadow: 0 2px 10px var(--maroon-glow);
    min-width: 130px;
    justify-content: center;
}

.ha-btn.message:hover {
    background: var(--maroon-lt);
}

.ha-btn.share {
    background: var(--white);
    border: 1.5px solid var(--border-md);
    color: var(--ink-md);
}

.ha-btn.share:hover {
    border-color: var(--navy);
    color: var(--navy);
    background: var(--sky-pale);
}

.ha-btn.more {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    background: var(--white);
    border: 1.5px solid var(--border-md);
    color: var(--ink-lt);
    border-radius: var(--r-sm);
}

.ha-btn.more:hover {
    border-color: var(--ink-md);
    color: var(--ink);
}

.followers-count {
    font-size: 0.78rem;
    color: var(--ink-pale);
    font-weight: 500;
    margin-left: 0.4rem;
}

/* STICKY TAB BAR */
.tab-bar-wrap {
    max-width: 1320px;
    margin: 1.6rem auto 0;
    padding: 0 2.5rem;
}

.tab-bar {
    background: transparent;
    border-bottom: 1.5px solid var(--border);
    border-radius: 0;
    display: flex;
    align-items: center;
    padding: 0.35rem;
    position: sticky;
    top: 68px;
    z-index: 200;
    gap: 0.2rem;
}

.tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.65rem 0.8rem;
    border-radius: var(--r-sm);
    font-size: 1rem;
    font-weight: 500;
    font-family: "IBM Plex Sans", sans-serif;
    background: transparent;
    border: none;
    color: var(--ink-lt);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    position: relative;
}

.tab-btn:hover {
    color: var(--ink);
    background: var(--stone);
}

.tab-btn.active {
    color: var(--navy);
}

.tab-btn.active svg {
    color: var(--navy);
}

.tab-count {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.12rem 0.42rem;
    border-radius: 100px;
    transition: all 0.2s;
}

.tab-btn:not(.active) .tab-count {
    background: var(--stone-md);
    color: var(--ink-pale);
}

.tab-btn.active .tab-count {
    background: var(--sky-pale);
    color: var(--navy);
}

/* PAGE BODY */
.page-body {
    max-width: 1320px;
    margin: 1.8rem auto 0;
    padding: 0 2.5rem 5rem;
}

/* Panel animation */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: panelFade 0.3s ease both;
}

@keyframes panelFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── About strip ── */
.about-strip {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1.5rem;
    margin-bottom: 2.2rem;
    padding: 1.5rem 1.8rem;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-xs);
}

.about-bio {
    font-size: 0.86rem;
    color: var(--ink-lt);
    line-height: 1.8;
    font-weight: 400;
}

.about-bio h3 {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.6rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-left: 1.5rem;
    border-left: 1px solid var(--border);
}

.ah-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.ah-icon {
    width: 44px;
    height: 44px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.ah-icon.navy {
    background: var(--sky-pale);
    color: var(--navy-lt);
}

.ah-icon.maroon {
    background: var(--maroon-pale);
    color: var(--maroon);
}

.ah-icon.green {
    background: var(--green-pale);
    color: var(--green);
}

.ah-icon.amber {
    background: var(--amber-pale);
    color: var(--amber);
}

.ah-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink-md);
}

.ah-sub {
    font-size: 0.7rem;
    color: var(--ink-pale);
}

/* ── Section label ── */
.sec-label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}

.sec-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.sec-text {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--ink-pale);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

/* ══════════════════════════════════════
         EVENT CARDS
      ══════════════════════════════════════ */
.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}

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

@keyframes cardUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes livePulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(220, 38, 38, 0);
    }
}

/* ══════════════════════════════════════
                REVIEWS TAB
            ══════════════════════════════════════ */
.review-header-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.4rem 1.6rem;
    box-shadow: var(--shadow-xs);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.rating-big {
    text-align: center;
    flex-shrink: 0;
    padding-right: 2rem;
    border-right: 1px solid var(--border);
}

.rating-num {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
    justify-content: center;
    margin: 0.35rem 0 0.2rem;
}

.star-filled {
    color: var(--gold);
    font-size: 1rem;
}

.star-empty {
    color: var(--stone-dk);
    font-size: 1rem;
}

.rating-count {
    font-size: 0.72rem;
    color: var(--ink-pale);
    font-weight: 500;
}

.rating-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.rb-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.rb-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ink-lt);
    white-space: nowrap;
    flex-shrink: 0;
    width: 28px;
    text-align: right;
}

.rb-track {
    flex: 1;
    height: 6px;
    background: var(--stone-md);
    border-radius: 100px;
    overflow: hidden;
}

.rb-fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--gold), #e8b94a);
    transition: width 0.8s ease;
}

.rb-count {
    font-size: 0.7rem;
    color: var(--ink-pale);
    font-weight: 500;
    flex-shrink: 0;
    width: 24px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.review-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.2rem 1.3rem;
    box-shadow: var(--shadow-xs);
    transition:
        box-shadow 0.2s,
        transform 0.2s;
    animation: cardUp 0.4s ease both;
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.rc-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
}

.rc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--border);
}

.rc-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rc-info {
    flex: 1;
}

.rc-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
}

.rc-meta {
    font-size: 0.72rem;
    color: var(--ink-pale);
    margin-top: 0.1rem;
}

.rc-stars {
    display: flex;
    gap: 0.15rem;
}

.rc-body {
    font-size: 0.82rem;
    color: var(--ink-lt);
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.rc-event-ref {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.65rem;
    border-radius: var(--r-sm);
    background: var(--sky-pale);
    color: var(--sky);
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(42, 127, 212, 0.15);
    transition: all 0.15s;
}

.rc-event-ref:hover {
    background: var(--sky);
    color: #fff;
}

.rc-helpful {
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.75rem;
    padding-top: 0.65rem;
    border-top: 1px solid var(--border);
}

.rc-helpful-txt {
    font-size: 0.7rem;
    color: var(--ink-pale);
}

.rc-helpful-btns {
    display: flex;
    gap: 0.35rem;
}

.helpful-btn {
    padding: 0.2rem 0.6rem;
    border-radius: var(--r-sm);
    font-size: 0.7rem;
    font-weight: 600;
    font-family: "DM Sans";
    background: var(--stone);
    border: 1px solid var(--stone-dk);
    color: var(--ink-lt);
    cursor: pointer;
    transition: all 0.15s;
}

.helpful-btn:hover {
    background: var(--green-pale);
    border-color: rgba(26, 122, 74, 0.2);
    color: var(--green);
}

.moments-load-more {
    text-align: center;
    margin-top: 1.5rem;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 1.8rem;
    border-radius: var(--r-sm);
    background: var(--white);
    border: 1.5px solid var(--border-md);
    font-size: 1;
    font-weight: 600;
    color: var(--ink-md);
    cursor: pointer;
    font-family: "IBM Plex Sans", sans-serif;
    transition: all 0.15s;
}

.load-more-btn:hover {
    border-color: var(--navy);
    color: var(--navy);
    background: var(--sky-pale);
}

/* ══════════════════════════════════════
                EMPTY STATE
            ══════════════════════════════════════ */
.empty-state {
    text-align: center;
    padding: 4.5rem 2rem;
}

.empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--stone);
    border: 1.5px solid var(--border);
    display: grid;
    place-items: center;
    margin: 0 auto 1.2rem;
    color: var(--ink-pale);
}

.empty-state h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    color: var(--ink);
    margin-bottom: 0.45rem;
}

.empty-state p {
    font-size: 0.82rem;
    color: var(--ink-lt);
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ════════════════════════════════════════
                ACCORDION (replaces tabs on mobile)
            ════════════════════════════════════════ */
.acc-hdr {
    display: none;
    width: 100%;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.1rem;
    margin-bottom: 0.5rem;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    cursor: pointer;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink-lt);
    box-shadow: var(--shadow-xs);
    transition: all 0.18s;
}

.acc-hdr:hover {
    background: var(--stone);
}

.acc-hdr.active {
    color: var(--navy);
    background: var(--sky-pale);
    border-color: rgba(11, 37, 69, 0.2);
}

.acc-hdr.past.active {
    color: var(--ink-md);
    background: var(--stone);
    border-color: var(--border-md);
}

.acc-hdr.reviews.active {
    color: var(--amber);
    background: var(--amber-pale);
    border-color: rgba(196, 122, 26, 0.25);
}

.acc-hdr.moments.active {
    color: var(--maroon);
    background: var(--maroon-pale);
    border-color: rgba(123, 16, 32, 0.2);
}

.acc-hdr-icon {
    width: 30px;
    height: 30px;
    border-radius: var(--r-sm);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: var(--stone-md);
    color: var(--ink-pale);
    transition: all 0.2s;
}

.acc-hdr.active .acc-hdr-icon {
    background: var(--navy);
    color: #fff;
}

.acc-hdr.past.active .acc-hdr-icon {
    background: var(--ink-md);
    color: #fff;
}

.acc-hdr.reviews.active .acc-hdr-icon {
    background: var(--amber);
    color: #fff;
}

.acc-hdr.moments.active .acc-hdr-icon {
    background: var(--maroon);
    color: #fff;
}

.acc-hdr .acc-count {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.18rem 0.5rem;
    border-radius: 100px;
    background: var(--stone-md);
    color: var(--ink-pale);
    margin-left: 0.2rem;
}

.acc-hdr.active .acc-count {
    background: rgba(11, 37, 69, 0.1);
    color: var(--navy);
}

.acc-chevron {
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.25s;
    color: var(--ink-pale);
}

.acc-hdr.active .acc-chevron {
    transform: rotate(180deg);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-card {
    animation: fadeUp 0.5s ease both;
}

.tab-bar-wrap {
    animation: fadeUp 0.5s 0.08s ease both;
}

/* ════════════════════════════════════════
                RESPONSIVE
            ════════════════════════════════════════ */

/* ── Tablet landscape (≤1100px) ── */
@media (max-width: 1100px) {
    .profile-card,
    .tab-bar-wrap,
    .page-body {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

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

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

    .about-strip {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid var(--border);
        padding-top: 1.1rem;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.9rem;
    }

    .ah-item {
        width: calc(50% - 0.45rem);
    }
}

/* ── Tablet portrait (≤768px) ── */
@media (max-width: 768px) {
    .tab-bar-wrap {
        display: none;
    }

    .acc-hdr {
        display: flex;
    }

    .tab-panel {
        display: block !important;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        margin-bottom: 0.5rem;
    }

    .tab-panel.active {
        max-height: 12000px;
    }

    .topbar {
        padding: 0 1rem;
    }

    .t-search {
        display: none;
    }

    .t-btn.ghost {
        display: none;
    }

    .cover-image {
        height: 200px;
    }

    .cover-btn span {
        display: none;
    }

    .profile-card {
        padding: 0 1rem;
        margin-top: -60px;
    }

    .profile-card-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.2rem;
        gap: 1rem;
    }

    .host-info {
        width: 100%;
    }

    .host-name-row,
    .host-meta-row {
        justify-content: center;
    }

    .host-tagline {
        max-width: 100%;
    }

    .host-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .host-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-left: 0;
        width: 100%;
        border-top: 1px solid var(--border);
        padding-top: 0.9rem;
        margin-top: 0.9rem;
    }

    .hs-cell:first-child {
        border-left: 1px solid var(--border);
    }

    .tab-bar-wrap {
        padding: 0 1rem;
    }

    .tab-bar {
        overflow-x: auto;
        scrollbar-width: none;
        padding: 0;
    }

    .tab-bar::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        flex: 0 0 auto;
        font-size: 0.82rem;
        padding: 0.6rem 0.75rem;
    }

    .tab-btn svg {
        display: none;
    }

    .tab-btn.active .tab-count {
        background: var(--navy);
    }

    .page-body {
        padding: 0 1rem 3.5rem;
    }

    .about-strip {
        padding: 1.1rem;
    }

    .about-highlights {
        flex-direction: column;
    }

    .ah-item {
        width: 100%;
    }

    .event-grid,
    .event-grid-2 {
        grid-template-columns: 1fr;
    }

    .review-header-card {
        flex-direction: column;
        gap: 1.1rem;
    }

    .rating-big {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 1rem;
        width: 100%;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .moment-item.tall {
        grid-row: span 1;
    }

    .moment-item.wide {
        grid-column: span 1;
    }

    .moment-item.tall .moment-bg {
        min-height: 180px;
    }
}

/* ── Large mobile (≤540px) ── */
@media (max-width: 540px) {
    .cover-image {
        height: 160px;
    }

    .cover-actions {
        top: 0.7rem;
        right: 0.8rem;
        gap: 0.3rem;
    }

    .profile-card {
        margin-top: -50px;
    }

    .host-avatar {
        width: 80px;
        height: 80px;
        border-radius: 16px;
    }

    .host-name {
        font-size: 1.4rem;
    }

    .host-tagline {
        font-size: 0.82rem;
    }

    .host-name-row {
        gap: 0.45rem;
    }

    .ha-btn {
        padding: 0.45rem 0.9rem;
        font-size: 0.78rem;
    }

    .ha-btn.follow,
    .ha-btn.message {
        min-width: 110px;
    }

    .ha-btn.more {
        width: 38px;
        height: 38px;
    }

    .hs-num {
        font-size: 1.25rem;
    }

    .hs-cell {
        padding: 0.5rem 0.8rem;
    }

    .tab-btn {
        font-size: 0.78rem;
        padding: 0.55rem 0.65rem;
    }
}

/*Hosting Details end*/

/*need help*/
/* ════════════════════════════════════════
     HERO
  ════════════════════════════════════════ */
.hero-need {
    position: relative;
    overflow: hidden;
    padding: 5rem 3rem 3.5rem;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(
            ellipse 55% 60% at 20% 50%,
            rgba(123, 16, 32, 0.1) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse 50% 60% at 80% 30%,
            rgba(11, 37, 69, 0.08) 0%,
            transparent 60%
        ),
        linear-gradient(175deg, #0b2545 0%, #12325a 45%, #1a3d6e 100%);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 100px;
    padding: 0.32rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.3rem;
}

.kicker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%,
    100% {
        box-shadow: 0 0 4px #4ade80;
    }

    50% {
        box-shadow:
            0 0 14px #4ade80,
            0 0 20px rgba(74, 222, 128, 0.3);
    }
}

.hero-need h1 {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 0.9rem;
}

.hero-need h1 em {
    font-style: italic;
    color: #fca5a5;
}

.hero-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 2.2rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* Search */
.hero-search-box {
    display: flex;
    align-items: center;
    max-width: 540px;
    margin: 0 auto 1.2rem;
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--r-lg);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.28),
        0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hsb-icon {
    padding: 0 0.9rem;
    color: var(--ink-pale);
    display: grid;
    place-items: center;
}

.hero-search-box input {
    flex: 1;
    padding: 0.82rem 0.4rem;
    border: none;
    outline: none;
    font-family: "Outfit";
    font-size: 0.9rem;
    color: var(--ink);
    background: transparent;
}

.hero-search-box input::placeholder {
    color: var(--ink-pale);
}

.hsb-btn {
    margin: 0.4rem 0.4rem 0.4rem 0;
    padding: 0.55rem 1.3rem;
    border-radius: 10px;
    background: var(--maroon);
    border: none;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: "Outfit";
    cursor: pointer;
    transition: background 0.15s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 2px 8px var(--maroon-glow);
    font-family: "IBM Plex Sans", sans-serif;
}

.hsb-btn:hover {
    background: var(--maroon-lt);
}

.hero-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-tag {
    padding: 0.28rem 0.75rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-family: "Outfit";
    transition: all 0.15s;
}

.hero-tag:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* ════════════════════════════════════════
     ROLE SWITCHER (THE MAIN FEATURE)
  ════════════════════════════════════════ */
.role-switcher-wrap {
    max-width: 1320px;
    margin: -2rem auto 0;
    padding: 0 3rem;
    position: relative;
    z-index: 20;
}

.role-switcher {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.role-tab {
    padding: 1.6rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    border: none;
    background: transparent;
    font-family: "Outfit";
    text-align: left;
    transition: background 0.2s;
    border-bottom: 3px solid transparent;
    position: relative;
}

.role-tab:first-child {
    border-right: 1px solid var(--border);
}

.role-tab:hover {
    background: var(--warm);
}

.role-tab.organizer:hover {
    border-top-left-radius: var(--r-xl);
    border-bottom-left-radius: var(--r-xl);
}

.role-tab.attendee:hover {
    border-top-right-radius: var(--r-xl);
    border-bottom-right-radius: var(--r-xl);
}

.role-tab.active.organizer {
    background: var(--org-pale);
    border-bottom-color: var(--org-primary);
    border-top-left-radius: var(--r-xl);
    border-bottom-left-radius: var(--r-xl);
}

.role-tab.active.attendee {
    background: var(--att-pale);
    border-bottom-color: var(--att-primary);
    border-top-right-radius: var(--r-xl);
    border-bottom-right-radius: var(--r-xl);
}

.role-tab-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.role-tab-icon i {
    font-size: 20px;
}

.role-tab.organizer .role-tab-icon {
    background: var(--org-pale);
    color: var(--org-primary);
}

.role-tab.attendee .role-tab-icon {
    background: var(--att-pale);
    color: var(--att-primary);
}

.role-tab.active.organizer .role-tab-icon {
    background: var(--org-primary);
    color: #fff;
    box-shadow: 0 4px 14px var(--maroon-glow);
}

.role-tab.active.attendee .role-tab-icon {
    background: var(--att-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(11, 37, 69, 0.25);
}

.role-tab-text {
    flex: 1;
}

.role-tab-label {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    display: block;
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.role-tab.active.organizer .role-tab-label {
    color: var(--org-primary);
}

.role-tab.active.attendee .role-tab-label {
    color: var(--att-primary);
}

.role-tab-desc {
    font-size: 0.75rem;
    color: var(--ink-pale);
    font-weight: 400;
    line-height: 1.45;
    font-family: "Nunito", sans-serif;
}

.role-tab-count {
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.22rem 0.6rem;
    border-radius: 100px;
    background: var(--warm-md);
    color: var(--ink-pale);
    transition: all 0.2s;
}

.role-tab.active.organizer .role-tab-count {
    background: var(--org-pale);
    color: var(--org-primary);
    border: 1px solid rgba(123, 16, 32, 0.15);
}

.role-tab.active.attendee .role-tab-count {
    background: var(--att-pale);
    color: var(--att-primary);
    border: 1px solid rgba(11, 37, 69, 0.15);
}

.role-active-indicator {
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    transition: border-top-color 0.2s;
    display: none;
}

.role-tab.active .role-active-indicator {
    display: block;
}

.role-tab.active.organizer .role-active-indicator {
    border-top: 8px solid var(--org-primary);
}

.role-tab.active.attendee .role-active-indicator {
    border-top: 8px solid var(--att-primary);
}

/* ════════════════════════════════════════
     STAT STRIP
  ════════════════════════════════════════ */
.stat-strip {
    max-width: 1320px;
    margin: 1.2rem auto 0;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.stat-cell {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 1rem 1.1rem;
    box-shadow: var(--shadow-xs);
    text-align: center;
    transition: all 0.2s;
}

.stat-cell:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.stat-num {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}

.stat-num.org {
    color: var(--org-primary);
}

.stat-num.att {
    color: var(--att-primary);
}

.stat-lbl {
    font-size: 0.72rem;
    color: var(--ink-pale);
    font-weight: 500;
    margin-top: 0.3rem;
}

/* ════════════════════════════════════════
     MAIN BODY
  ════════════════════════════════════════ */
.faq-body {
    max-width: 1320px;
    margin: 2.5rem auto 0;
    padding: 0 3rem 6rem;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2.2rem;
    align-items: start;
}

/* Sticky sidebar */
.faq-sidebar {
    position: sticky;
    top: 80px;
}

.faq-sidebar-lbl {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--ink-pale);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-left: 0.7rem;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.faq-sidebar-lbl.org {
    color: rgba(123, 16, 32, 0.5);
}

.faq-sidebar-lbl.att {
    color: rgba(11, 37, 69, 0.4);
}

.faq-nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.7rem;
    border-radius: var(--r-sm);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink-lt);
    cursor: pointer;
    text-decoration: none;
    border-left: 2.5px solid transparent;
    transition: all 0.15s;
    margin-bottom: 0.12rem;
}

.faq-nav-item:hover {
    background: var(--warm);
    color: var(--ink);
}

.faq-nav-item.active-org {
    color: var(--org-primary);
    background: var(--org-pale);
    border-left-color: var(--org-primary);
    font-weight: 700;
}

.faq-nav-item.active-att {
    color: var(--att-primary);
    background: var(--att-pale);
    border-left-color: var(--att-primary);
    font-weight: 600;
}

.faq-nav-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.faq-nav-count {
    margin-left: auto;
    font-size: 0.64rem;
    font-weight: 700;
    background: var(--warm-md);
    color: var(--ink-pale);
    padding: 0.08rem 0.38rem;
    border-radius: 100px;
}

/* Progress */
.faq-progress {
    margin-top: 1.5rem;
    padding: 0.9rem 1rem;
    background: var(--warm);
    border-radius: var(--r);
}

.progress-lbl {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--ink-lt);
    margin-bottom: 0.45rem;
}

.progress-bar {
    height: 4px;
    background: var(--warm-dk);
    border-radius: 100px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 100px;
    width: 0;
    transition: width 0.5s ease;
}

.progress-fill.org {
    background: linear-gradient(90deg, var(--org-primary), var(--org-accent));
}

.progress-fill.att {
    background: linear-gradient(90deg, var(--att-primary), var(--att-accent));
}

.progress-text {
    font-size: 0.66rem;
    color: var(--ink-pale);
    margin-top: 0.38rem;
}

/* ════════════════════════════════════════
     FAQ PANEL
  ════════════════════════════════════════ */
.faq-panel {
    display: none;
}

.faq-panel.active {
    display: block;
    animation: panelIn 0.3s ease both;
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section group */
.faq-group {
    margin-bottom: 2.5rem;
}

.faq-group-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--border);
    position: relative;
}

.faq-group-header::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 48px;
    height: 2px;
    border-radius: 2px;
}

.org .faq-group-header::before {
    background: var(--org-primary);
}

.att .faq-group-header::before {
    background: var(--att-primary);
}

.fgh-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--r-sm);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.fgh-icon.org {
    background: var(--org-pale);
    color: var(--org-primary);
}

.fgh-icon.att {
    background: var(--att-pale);
    color: var(--att-primary);
}

.fgh-title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 1.15rem;
    color: var(--ink);
    font-weight: 700;
}

.fgh-sub {
    font-size: 0.73rem;
    color: var(--ink-pale);
    margin-top: 0.1rem;
}

.fgh-count {
    margin-left: auto;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 100px;
}

.fgh-count.org {
    background: var(--org-pale);
    color: var(--org-primary);
    border: 1px solid rgba(123, 16, 32, 0.12);
}

.fgh-count.att {
    background: var(--att-pale);
    color: var(--att-primary);
    border: 1px solid rgba(11, 37, 69, 0.12);
}

/* Accordion */
.faq-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    margin-bottom: 0.55rem;
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.faq-item:hover {
    border-color: var(--border-md);
    box-shadow: var(--shadow-sm);
}

.faq-item.open.org {
    border-color: rgba(123, 16, 32, 0.35);
    box-shadow:
        0 0 0 3px rgba(123, 16, 32, 0.06),
        var(--shadow-sm);
}

.faq-item.open.att {
    border-color: rgba(11, 37, 69, 0.3);
    box-shadow:
        0 0 0 3px rgba(11, 37, 69, 0.06),
        var(--shadow-sm);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    cursor: pointer;
    background: none;
    border: none;
    font-family: "Outfit";
    text-align: left;
}

.faq-num {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: var(--warm);
    color: var(--ink-pale);
    font-size: 0.68rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    transition: all 0.2s;
    font-family: "Nunito", sans-serif;
}

.faq-item.open.org .faq-num {
    background: var(--org-primary);
    color: #fff;
}

.faq-item.open.att .faq-num {
    background: var(--att-primary);
    color: #fff;
}

.faq-q {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.45;
    transition: color 0.15s;
    font-family: "IBM Plex Sans", sans-serif;
}

.faq-item.open.org .faq-q {
    color: var(--org-primary);
}

.faq-item.open.att .faq-q {
    color: var(--att-primary);
}

.faq-chevron-btn {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: var(--r-sm);
    background: var(--warm);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    color: var(--ink-lt);
    transition: all 0.25s;
}

.faq-item.open.org .faq-chevron-btn {
    background: var(--org-primary);
    border-color: var(--org-primary);
    color: #fff;
    transform: rotate(180deg);
}

.faq-item.open.att .faq-chevron-btn {
    background: var(--att-primary);
    border-color: var(--att-primary);
    color: #fff;
    transform: rotate(180deg);
}

.faq-body-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-body-panel {
    max-height: 600px;
}

.faq-answer-wrap {
    padding: 0 1.2rem 1.2rem 3.5rem;
    border-top: 1px solid var(--warm-md);
}

.faq-answer {
    font-size: 0.845rem;
    color: var(--ink-md);
    line-height: 1.8;
    font-weight: 400;
    padding-top: 0.8rem;
}

.faq-answer p + p {
    margin-top: 0.6rem;
}

.faq-answer strong {
    font-weight: 600;
    color: var(--ink);
}

.faq-answer ul {
    padding-left: 1.1rem;
    margin: 0.5rem 0 0.2rem;
}

.faq-answer ul li {
    margin-bottom: 0.32rem;
}

.faq-answer a {
    color: var(--sky);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(42, 127, 212, 0.3);
    transition: border-color 0.15s;
}

.faq-answer a:hover {
    border-color: var(--sky);
}

/* Tags + vote */
.faq-answer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.9rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--warm-dk);
}

.faq-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.38rem;
}

.faq-tag {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.16rem 0.5rem;
    border-radius: 100px;
    background: var(--warm);
    color: var(--ink-pale);
    border: 1px solid var(--warm-dk);
}

.faq-vote {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.faq-vote-lbl {
    font-size: 0.72rem;
    color: var(--ink-pale);
    font-weight: 500;
}

.vote-btn {
    display: flex;
    align-items: center;
    gap: 0.28rem;
    padding: 0.22rem 0.6rem;
    border-radius: var(--r-sm);
    font-size: 0.7rem;
    font-weight: 600;
    font-family: "Outfit";
    background: var(--warm);
    border: 1px solid var(--warm-dk);
    color: var(--ink-lt);
    cursor: pointer;
    transition: all 0.15s;
}

.vote-btn:hover {
    background: var(--green-pale);
    border-color: rgba(26, 122, 74, 0.2);
    color: var(--green);
}

.vote-btn.no:hover {
    background: var(--maroon-pale);
    border-color: rgba(123, 16, 32, 0.2);
    color: var(--maroon);
}

/* ════════════════════════════════════════
     CONTACT SECTION
  ════════════════════════════════════════ */
.contact-section {
    max-width: 960px;
    margin: 0 auto 5rem;
    padding: 0 3rem;
}

.contact-heading {
    text-align: center;
    margin-bottom: 1.6rem;
}

.contact-heading h2 {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 1.7rem;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.contact-heading p {
    font-size: 0.85rem;
    color: var(--ink-lt);
    font-weight: 400;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.c-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.6rem 1.3rem;
    text-align: center;
    box-shadow: var(--shadow-xs);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s,
        border-color 0.2s;
}

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

.c-card.navy:hover {
    border-color: rgba(11, 37, 69, 0.25);
}

.c-card.maroon:hover {
    border-color: rgba(123, 16, 32, 0.25);
}

.c-card.green:hover {
    border-color: rgba(26, 122, 74, 0.25);
}

.c-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: grid;
    place-items: center;
}

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

.c-icon.navy {
    background: var(--sky-pale);
    color: var(--navy);
}

.c-icon.maroon {
    background: var(--maroon-pale);
    color: var(--maroon);
}

.c-icon.green {
    background: var(--green-pale);
    color: var(--green);
}

.c-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
}

.c-desc {
    font-size: 0.76rem;
    color: var(--ink-lt);
    line-height: 1.55;
}

.c-meta {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--ink-pale);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.c-btn {
    width: 100%;
    padding: 0.52rem;
    border-radius: var(--r-sm);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: "Outfit";
    cursor: pointer;
    transition: all 0.15s;
    font-family: "IBM Plex Sans", sans-serif;
}

.c-btn.navy {
    background: var(--navy);
    border: none;
    color: #fff;
    box-shadow: 0 2px 8px rgba(11, 37, 69, 0.2);
}

.c-btn.navy:hover {
    background: var(--navy-md);
}

.c-btn.maroon {
    background: var(--maroon);
    border: none;
    color: #fff;
    box-shadow: 0 2px 8px var(--maroon-glow);
}

.c-btn.maroon:hover {
    background: var(--maroon-lt);
}

.c-btn.outline {
    background: transparent;
    border: 1.5px solid var(--border-md);
    color: var(--ink-md);
}

.c-btn.outline:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-pale);
}

/* ════════════════════════════════════════
     RESPONSIVE
  ════════════════════════════════════════ */

/* ── Tablet landscape (≤1100px) ── */
@media (max-width: 1100px) {
    .faq-body {
        grid-template-columns: 260px 1fr;
        padding: 0 2rem 5rem;
    }

    .role-switcher-wrap,
    .stat-strip {
        padding: 0 2rem;
    }

    .contact-section {
        padding: 0 2rem;
    }

    .topbar {
        padding: 0 2rem;
    }

    .hero-need {
        padding: 4rem 2rem 3rem;
    }
}

/* ── Tablet portrait (≤900px) ── */
@media (max-width: 900px) {
    .t-nav {
        display: none;
    }

    .stat-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-body {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 1.5rem 4rem;
    }

    /* Sidebar becomes a horizontal scroll strip */
    .faq-sidebar {
        position: static;
        margin-bottom: 1.2rem;
    }

    .faq-sidebar-lbl {
        display: none;
    }

    #orgSideNav,
    #attSideNav {
        display: flex !important;
        flex-direction: row;
        overflow-x: auto;
        gap: 0.4rem;
        padding-bottom: 0.4rem;
        scrollbar-width: none;
    }

    #orgSideNav::-webkit-scrollbar,
    #attSideNav::-webkit-scrollbar {
        display: none;
    }

    .faq-nav-item {
        flex-shrink: 0;
        white-space: nowrap;
        border-left: none;
        border-bottom: 2px solid transparent;
        border-radius: var(--r-sm);
        font-size: 0.82rem;
    }

    .faq-nav-item.active-org {
        border-left-color: transparent;
        border-bottom-color: var(--org-primary);
    }

    .faq-nav-item.active-att {
        border-left-color: transparent;
        border-bottom-color: var(--att-primary);
    }

    .faq-nav-item svg {
        display: none;
    }

    .faq-progress {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    section.terms-content_area {
        padding-top: 0;
    }
}

/* ── Large mobile (≤640px) ── */
@media (max-width: 640px) {
    .topbar {
        padding: 0 1rem;
        height: 56px;
    }

    .t-logo-name {
        font-size: 0.82rem;
    }

    .t-actions {
        gap: 0.4rem;
    }

    .t-btn-ghost {
        display: none;
    }

    .t-btn-fill {
        padding: 0.32rem 0.8rem;
        font-size: 0.75rem;
    }

    .hero-need {
        padding: 6rem 1.2rem 2.5rem;
    }

    .hero-need h1 {
        font-size: clamp(1.9rem, 8vw, 2.6rem);
    }

    .hero-sub {
        font-size: 0.88rem;
    }

    .hero-search-box {
        max-width: 100%;
    }

    .hsb-btn span {
        display: none;
    }

    .role-switcher-wrap {
        padding: 0 1.2rem;
        margin-top: -1.5rem;
    }

    .role-switcher {
        grid-template-columns: 1fr 1fr;
    }

    .role-tab {
        padding: 1rem 0.9rem;
        gap: 0.6rem;
    }

    .role-tab-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .role-tab-icon svg {
        width: 18px;
        height: 18px;
    }

    .role-tab-label {
        font-size: 0.88rem;
    }

    .role-tab-desc {
        display: none;
    }

    .role-tab-count {
        display: none;
    }

    .stat-strip {
        padding: 0 1.2rem;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .stat-num {
        font-size: 1.35rem;
    }

    .faq-body {
        padding: 0 1.2rem 3.5rem;
        display: flex;
        flex-wrap: wrap;
    }

    #orgSideNav,
    #attSideNav {
        gap: 0.3rem;
        flex-wrap: wrap;
    }

    .faq-nav-item {
        font-size: 0.78rem;
        padding: 0.42rem 0.6rem;
    }

    .faq-nav-count {
        display: none;
    }

    .faq-group {
        margin-bottom: 2rem;
    }

    .faq-group-header {
        gap: 0.6rem;
        margin-bottom: 0.9rem;
    }

    .fgh-icon {
        width: 32px;
        height: 32px;
    }

    .fgh-title {
        font-size: 1rem;
    }

    .faq-trigger {
        padding: 0.85rem 1rem;
        gap: 0.6rem;
    }

    .faq-q {
        font-size: 0.82rem;
    }

    .faq-answer-wrap {
        padding: 0 1rem 1rem 2.8rem;
    }

    .faq-answer {
        font-size: 0.82rem;
        line-height: 1.7;
    }

    .faq-answer-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.55rem;
    }

    .contact-section {
        padding: 0 1.2rem;
        margin-bottom: 3.5rem;
    }

    .contact-heading h2 {
        font-size: 1.4rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

/* ── Small mobile (≤400px) ── */
@media (max-width: 400px) {
    .role-switcher {
        grid-template-columns: 1fr;
    }

    .role-tab:first-child {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .role-tab.organizer:hover {
        border-radius: 0;
        border-top-left-radius: var(--r-xl);
        border-top-right-radius: var(--r-xl);
    }

    .role-tab.active.organizer {
        border-radius: 0;
        border-top-left-radius: var(--r-xl);
        border-top-right-radius: var(--r-xl);
        border-bottom-color: transparent;
    }

    .role-tab.attendee:hover {
        border-radius: 0;
        border-bottom-left-radius: var(--r-xl);
        border-bottom-right-radius: var(--r-xl);
    }

    .role-tab.active.attendee {
        border-radius: 0;
        border-bottom-left-radius: var(--r-xl);
        border-bottom-right-radius: var(--r-xl);
    }

    .role-tab {
        flex-direction: row;
    }

    .role-tab-desc {
        display: block;
    }

    .stat-strip {
        grid-template-columns: 1fr 1fr;
    }
}

/*need help end*/

/*responsive css*/
@media (max-width: 1199px) {
    .event-tabs-container .nav.nav-tabs {
        flex-wrap: nowrap;
    }

    .event-tabs-container .event-tabs-scroll-wrap {
        overflow-x: auto;
        overflow-y: hidden;
        position: relative;
    }

    .btn.interest-toggle-btn {
        font-size: 0;
    }

    .btn.interest-toggle-btn i {
        font-size: 16px;
        gap: 0;
    }
}

@media (max-width: 1100px) {
    .ds2_flexio {
        max-width: 500px;
    }
}

@media (max-width: 960px) {
    .container {
        max-width: 100%;
        padding: 0 2rem;
    }
}

@media (max-width: 1024px) {
    .search-bar__wrap {
        width: 80%;
    }
}

@media (min-width: 993px) {
    .withoutlogin-btn {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .navigation-portrait .mobile_nav {
        margin-left: auto;
    }

    .search-bar__wrap {
        display: none !important;
    }

    .search-bar__wrap.active {
        display: flex !important;
    }

    .withoutlogin-btn {
        display: flex;
        justify-content: space-between;
        background-color: var(--bs-primary);
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 100;
    }

    .withoutlogin-btn a {
        width: 50%;
        color: var(--white);
        text-align: center;
        padding: 0.5em 0;
        font-weight: 600;
    }

    .withoutlogin-btn a:first-child {
        border-right: 1px solid rgba(255, 255, 255, 0.5);
    }

    .withoutlogin-btn.only a:first-child {
        border-right: none;
        width: 100%;
    }

    html body #back2Top {
        bottom: 100px;
    }

    .mobile_nav ul li a {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .sidebarGroups {
        margin-top: 3em;
    }

    .sidebarGroups,
    .sidebarGroups.fixed {
        position: static !important;
    }

    .sidebarGroups.fixed {
        max-width: 100%;
    }

    .propertyTitlename h2.title_details {
    }

    .card_organizer .avatarBox {
        background-size: cover !important;
    }

    .ds2_sticky-bottom h2 {
        font-size: 1rem;
    }

    .ds2_sticky-bottom {
        width: 99%;
        padding: 0.5em 0.5em 0.5em 2em;
    }

    .ds2_sticky-bottom .ds2_flexio {
        width: 60%;
    }

    .nav-menu.nav-menu-social {
        flex-direction: column;
        display: flex;
        align-items: flex-start;
    }

    .nav-menu.nav-menu-social > li {
        padding: 0 1em;
    }

    .nav-menu.nav-menu-social .nav-dropdown {
        display: block !important;
        box-shadow: none !important;
    }

    .nav-menu > li .nav-dropdown {
        transform: translate(0px, 0px) !important;
    }

    .nav-menu > li .nav-dropdown {
        border: 0;
    }

    .nav-menu.nav-menu-social > li.user-dropdown a {
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu.nav-menu-social li a {
        color: rgba(0, 0, 0, 0.75);
    }

    .evnt_dashboard .nav-menu.nav-menu-social li a {
        font-size: 17px;
    }

    footer.footer .col-md-4,
    footer.footer .col-md-5 {
        width: 50%;
    }

    footer.footer .offset-md-3 {
        margin-left: 0;
    }

    footer.footer .container {
        max-width: 100%;
    }
}

@media (max-width: 860px) {
    .ds2_sticky-bottom .ds2_flexio {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .navigation-portrait .nav-toggle {
        order: 2;
        position: static;
        transform: translateY(0);
    }

    .navigation-portrait .mobile_nav {
        margin-right: 0;
        margin-left: auto;
    }

    .search-bar__wrap {
        width: 100%;
        position: absolute;
        top: 59px;
        left: 0;
        margin: 0 auto;
    }

    .navigation-portrait .mobile_nav li:first-child a {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .hero-header h1 {
        font-size: 1.65rem !important;
    }

    .trending-tags .tag-pill {
        padding: 8px 9px;
    }

    .propertyTitlename h2.title_details {
        line-height: 1;
        font-size: 4.688vw;
    }

    .ds2_sticky-bottom {
        width: 54%;
        padding: 0.5em;
    }

    .ds2_sticky-bottom .ds2_actions {
        margin-left: auto;
        margin-right: auto;
    }

    .ds2_sticky-bottom .ds2_flexio {
        display: none;
    }

    .search-wrap .btn {
        width: 45px;
    }

    .search-wrap .btn,
    .search-wrap .form-control {
        height: 40px;
    }

    .create-event-section .image-box img {
        height: auto;
    }

    .footer .mb-5 {
        margin-bottom: 0 !important;
    }

    footer .footer-widget .widget-title {
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .footerSocialwrap {
        margin-bottom: 20px;
    }

    footer .footer-widget ul {
        margin-bottom: 10px;
    }

    .nav__header-row .nav-brand {
        padding-left: 15px;
    }

    .category-browse-list {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .category-browse-list a {
        line-height: 14px;
    }

    footer.footer .col-md-4,
    footer.footer .col-md-5 {
        width: 100%;
    }

    .container,
    .mainlistingInfo {
        padding: 0 1rem;
    }

    .mainlistingInfo .firstColumn {
        flex: unset;
        max-width: 100%;
    }

    .propertyTitlename h2.title_details {
        font-size: 4.688vw;
    }

    .ds2_actions .btn.interest-toggle-btn {
        font-size: 0;
        gap: 0;
    }

    .ds2_actions .btn.interest-toggle-btn i {
        font-size: 15px;
    }

    .ds2_actions .btn.interest-toggle-btn,
    .btn {
        height: 32px;
    }

    .listingSingleblock .SingleblockHeader .listingcollapseTitle {
        padding: 1rem 0rem;
    }

    .subscribeForm .inputGroup .btn {
        padding: 0 2.3rem !important;
    }

    .organization-edit-page .row,
    .dashCaption .profile-row {
        flex-direction: column-reverse;
    }

    .dashCaption button#saveProfileBtn {
        max-width: 100%;
    }

    #attSideNav,
    #orgSideNav {
        display: none !important;
    }

    .create-event-section .col-md-12:nth-of-type(1) {
        margin-top: 0;
    }

    #city-suggestions-wrap .col-6 {
        width: 100%;
    }

    #city-suggestions-wrap .row {
        flex-wrap: wrap;
        height: 180px;
        overflow-y: auto;
    }

    .hero-header {
        min-height: 580px;
    }

    .hero-header p {
        font-size: 16px !important;
    }

    .clear-all-btn {
        width: 31px;
        height: 31px;
    }
}

@media (max-width: 680px) {
    .ds2_sticky-bottom {
        width: 60%;
    }
}

@media (min-width: 576px) {
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
    }

    .ds2_sticky-bottom {
        width: 98%;
    }

    .ds2_sticky-bottom .btn-primary {
        margin-left: auto;
    }

    .ds2_sticky-bottom .ds2_actions {
        width: 100%;
        display: flex;
    }

    .event-tabs-container {
        flex-direction: column;
        border-bottom: 0;
    }

    .event-tabs-container .city-filter-dropdown {
        margin: 1em 0 !important;
    }

    .event-tabs-container .event-tabs-scroll-wrap {
        width: 100%;
    }

    #heroSearchForm .search-wrap .search-suggestions-box {
        left: -85px;
    }

    .hero-search-bar .search-submit-btn {
        font-size: 0;
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-search-bar input {
        width: 100%;
        flex: unset;
    }

    .hero-search-bar .search-submit-btn i {
        font-size: 15px;
    }
}

@media (max-width: 962px) {
    .btn.btn-light {
        height: 32px;
        width: 32px;
        padding: 0 !important;
    }
}

/*responsive css end*/

/*New added responsive footer menu css*/
@media (max-width: 767px) {
    .footer-widget {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        /* Subtle separator */
        margin-bottom: 15px;
    }

    .widget-title {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        position: relative;
    }

    /* Add a '+' icon or arrow using pseudo-elements */
    .widget-title::after {
        content: "+";
        font-size: 1.2rem;
        transition: transform 0.3s ease;
        color: var(--white);
        /* Using your logo's gold accent */
    }

    /* Rotate the icon when active */
    .widget-title.active::after {
        transform: rotate(90deg);
        content: "×";
        /* Changes plus to a close icon */
    }

    /* Hide the menus initially on mobile */
    .footer-menu,
    .contactInfowrap {
        display: none;
        padding-bottom: 20px;
    }
}

/* Desktop Styles (Reset) */
@media (min-width: 768px) {
    .footer-menu,
    .contactInfowrap {
        display: block !important;
        /* Ensure they stay visible on desktop */
    }

    .widget-title::after {
        display: none;
        /* Hide toggle icon on desktop */
    }
}

/*footer menu css end*/

.hero-about {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 7rem 3rem 5rem;
}

/* Layered background */
.hero-about::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 70% 60% at 50% 0%,
            rgba(123, 16, 32, 0.35) 0%,
            transparent 55%
        ),
        radial-gradient(
            ellipse 50% 50% at 10% 70%,
            rgba(42, 127, 212, 0.18) 0%,
            transparent 55%
        ),
        radial-gradient(
            ellipse 40% 40% at 90% 80%,
            rgba(26, 74, 130, 0.2) 0%,
            transparent 55%
        ),
        linear-gradient(175deg, #080c12 0%, #0b2545 45%, #12325a 100%);
}

/* Subtle grid lines */
.hero-about::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
}

/* Floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(123, 16, 32, 0.22) 0%,
        transparent 70%
    );
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(42, 127, 212, 0.15) 0%,
        transparent 70%
    );
    bottom: -80px;
    left: -80px;
    animation-delay: -3s;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(
        circle,
        rgba(201, 150, 58, 0.12) 0%,
        transparent 70%
    );
    top: 30%;
    right: 15%;
    animation-delay: -6s;
}

@keyframes orbFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.04);
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 0.35rem 1.1rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.5rem;
}

.kicker-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 4px #4ade80;
    }

    50% {
        box-shadow:
            0 0 16px #4ade80,
            0 0 24px rgba(74, 222, 128, 0.25);
    }
}

.hero-about h1 {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: clamp(2.6rem, 6vw, 5rem);
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.1rem;
}

.hero-about h1 em {
    font-style: italic;
    color: #fca5a5;
}

.hero-about h1 .underline-word {
    position: relative;
    display: inline-block;
    color: #fcd34d;
}

.hero-about h1 .underline-word::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--maroon-lt), var(--maroon));
    border-radius: 3px;
}

.hero-about .hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-about .hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.hero-about .hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.hero-about .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.78rem 2rem;
    border-radius: var(--r-lg);
    font-size: 0.92rem;
    font-weight: 600;
    font-family: "IBM Plex Sans", sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.hero-about .cta-btn.outline {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
}

.hero-about .cta-btn.outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* ══════════════════════════════════════════
     STORY SECTION
  ══════════════════════════════════════════ */
.story-section {
    background: var(--white);
    padding: 7rem 3.5rem;
}

.story-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--maroon);
    margin-bottom: 0.9rem;
}

.story-label::before {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--maroon);
    border-radius: 2px;
}

.story-section h2 {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.story-section h2 em {
    font-style: normal;
    color: var(--maroon-lt);
}

.story-body {
    font-size: 0.96rem;
    color: var(--ink-lt);
    line-height: 1.85;
    font-weight: 400;
}

.story-body p + p {
    margin-top: 1rem;
}

.story-body strong {
    font-weight: 600;
    color: var(--ink-md);
}

/* Story visual — stacked cards */
.story-visual {
    position: relative;
}

.sv-card {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sv-card-main {
    height: 340px;
    background: linear-gradient(
        135deg,
        var(--navy) 0%,
        var(--navy-md) 50%,
        #1a3d6e 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sv-card-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
}

.sv-card-float {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 1.1rem 1.3rem;
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--border);
    min-width: 180px;
}

.svf-num {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--maroon);
    line-height: 1;
}

.svf-lbl {
    font-size: 0.75rem;
    color: var(--ink-lt);
    margin-top: 0.25rem;
    font-weight: 500;
}

.sv-badge {
    position: absolute;
    top: 1.5rem;
    left: -1.2rem;
    background: var(--maroon);
    border-radius: var(--r);
    padding: 0.7rem 1rem;
    box-shadow: var(--shadow-md);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sv-badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    display: grid;
    place-items: center;
}

.sv-badge-text {
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}

.sv-badge-sub {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.06rem;
}

.attendee_decorative {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 2rem;
    top: 3.5em;
}

/* ══════════════════════════════════════════
     WHAT YOU CAN DO
  ══════════════════════════════════════════ */
.do-section {
    background: var(--warm);
    padding: 7rem 3.5rem;
}

.section-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.section-head .kicker {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--maroon);
    margin-bottom: 0.8rem;
}

.section-head h2 {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-head h2 em {
    font-style: normal;
    color: var(--maroon-lt);
}

.section-head p {
    font-size: 0.9rem;
    color: var(--ink-lt);
    line-height: 1.7;
    margin-top: 0.7rem;
    font-weight: 400;
}

/* DO cards — alternating image+text rows like Meetup */
.do-cards {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.do-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.do-card.reverse {
    direction: rtl;
}

.do-card.reverse > * {
    direction: ltr;
}

.do-visual {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 320px;
    position: relative;
}

.do-visual-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.do-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), transparent);
}

.do-content {
}

.do-number {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: burlywood;
    line-height: 1;
    margin-bottom: 0.3rem;
    letter-spacing: -0.06em;
}

.do-content h3 {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
    line-height: 1.25;
}

.do-content p {
    font-size: 0.9rem;
    color: var(--ink-lt);
    line-height: 1.75;
    margin-bottom: 1.3rem;
}

.do-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--maroon);
    text-decoration: none;
    transition: gap 0.2s;
}

.do-link:hover {
    gap: 0.7rem;
}

.do-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1rem;
}

.do-tag {
    padding: 0.28rem 0.75rem;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    background: var(--white);
    border: 1.5px solid var(--border-md);
    color: var(--ink-lt);
    transition: all 0.15s;
}

.do-tag:hover {
    border-color: var(--maroon);
    color: var(--maroon);
    background: var(--maroon-pale);
}

/* ══════════════════════════════════════════
     HOW IT WORKS
  ══════════════════════════════════════════ */
.how-section {
    background: var(--white);
    padding: 7rem 3.5rem;
}

.how-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.how-card {
    background: var(--ivory);
    border: 1.5px solid var(--border);
    border-radius: var(--r-xl);
    padding: 2.2rem 1.8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.22s,
        box-shadow 0.22s,
        border-color 0.22s;
    box-shadow: var(--shadow-sm);
}

.how-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-md);
}

.how-card::before {
    content: attr(data-step);
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: burlywood;
    line-height: 1;
    letter-spacing: -0.05em;
    pointer-events: none;
}

.how-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin: 0 auto 1.3rem;
    position: relative;
    z-index: 1;
}

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

.how-icon.maroon i {
    font-size: 22px;
}

.how-icon.navy {
    background: var(--sky-pale);
    color: var(--navy);
    box-shadow: 0 4px 16px rgba(11, 37, 69, 0.12);
}

.how-icon.maroon {
    background: var(--maroon-pale);
    color: var(--maroon);
    box-shadow: 0 4px 16px var(--maroon-glow);
}

.how-icon.gold {
    background: var(--gold-pale);
    color: var(--gold);
    box-shadow: 0 4px 16px rgba(201, 150, 58, 0.15);
}

.how-card h3 {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.7rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.how-card p {
    font-size: 0.83rem;
    color: var(--ink-lt);
    line-height: 1.7;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.how-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.2rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.15s;
    position: relative;
    z-index: 1;
}

.how-cta.navy {
    color: var(--navy-lt);
}

.how-cta.maroon {
    color: var(--maroon);
}

.how-cta.gold {
    color: var(--gold);
}

.how-cta:hover {
    gap: 0.65rem;
}

/* ══════════════════════════════════════════
     MISSION BANNER (dark full-bleed)
  ══════════════════════════════════════════ */
.mission-section {
    background: var(--black);
    padding: 7rem 3.5rem;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 60% 70% at 20% 50%,
            rgba(123, 16, 32, 0.28) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse 50% 60% at 80% 30%,
            rgba(42, 127, 212, 0.15) 0%,
            transparent 60%
        );
}

.mission-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mission-quote {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.02em;
    font-style: normal;
    margin-bottom: 1.5rem;
}

.mission-quote em {
    color: #fca5a5;
    font-style: normal;
}

.mission-attr {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Values list */
.mission-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

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

.mv-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    place-items: center;
    margin: 0 auto 0.9rem;
    color: #fca5a5;
}

.mv-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.35rem;
}

.mv-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    font-weight: 300;
}

/* ══════════════════════════════════════════
     COMMUNITY GRID (social proof)
  ══════════════════════════════════════════ */
.community-section {
    background: var(--warm);
    padding: 7rem 3.5rem;
}

.community-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* Category tiles like Meetup */
.category-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
    margin-top: 3rem;
}

.cat-tile {
    border-radius: var(--r-xl);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition:
        transform 0.22s,
        box-shadow 0.22s;
    box-shadow: var(--shadow-sm);
    height: 200px;
}

.cat-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.cat-tile:nth-child(1) {
    grid-column: span 2;
    height: 260px;
}

.cat-tile-bg {
    width: 100%;
    height: 100%;
}

.cat-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 12, 18, 0.85) 0%,
        rgba(8, 12, 18, 0.2) 60%,
        transparent 100%
    );
}

.cat-tile-content {
    position: absolute;
    bottom: 1.2rem;
    left: 1.4rem;
    right: 1.4rem;
}

.cat-tile-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    color: #fff;
    margin-bottom: 0.5rem;
}

.cat-tile-title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.cat-tile:nth-child(1) .cat-tile-title {
    font-size: 1.4rem;
}

.cat-tile-groups {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

.cat-tile-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: var(--r);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    place-items: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.2s;
}

.cat-tile:hover .cat-tile-arrow {
    opacity: 1;
}

/* ══════════════════════════════════════════
     TESTIMONIALS
  ══════════════════════════════════════════ */
.testimonials-section_abt {
    background: var(--navy);
    padding: 7rem 3.5rem;
    position: relative;
    overflow: hidden;
}

.testimonials-section_abt::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 50% 60% at 90% 0%,
            rgba(123, 16, 32, 0.2) 0%,
            transparent 55%
        ),
        radial-gradient(
            ellipse 40% 50% at 5% 100%,
            rgba(42, 127, 212, 0.12) 0%,
            transparent 55%
        );
}

.testimonials-section_abt .testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-section_abt .section-head h2 {
    color: #fff;
}

.testimonials-section_abt .section-head p {
    color: rgba(255, 255, 255, 0.5);
}

.testimonials-section_abt .section-head .kicker {
    color: rgba(255, 255, 255, 0.5);
}

.testimonials-section_abt .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 3rem;
}

.testimonials-section_abt .t-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: var(--r-xl);
    padding: 1.8rem 1.6rem;
    transition:
        background 0.2s,
        border-color 0.2s;
    cursor: pointer;
}

.testimonials-section_abt .t-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonials-section_abt .t-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
    color: #e8b73a;
}

.testimonials-section_abt .t-star {
    color: var(--gold);
    font-size: 0.9rem;
}

.testimonials-section_abt .t-body {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.3rem;
    font-weight: 300;
}

.testimonials-section_abt .t-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonials-section_abt .t-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.testimonials-section_abt .t-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-section_abt .t-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
}

.testimonials-section_abt .t-role {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.1rem;
}

/* ── content area ── */
.content-terms {
    padding: 0px;
    max-width: 100%;
}

/* ── section ── */
.section_terms {
    margin-bottom: 0px;
    padding-top: 30px;
    padding-bottom: 0;
    transform: translateY(24px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.section_terms.visible {
    opacity: 1;
    transform: none;
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 28px;
}

.section-num {
    font-family: var(--body-font-family);
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 0.12em;
    flex-shrink: 0;
    margin-top: 6px;
}

.section_terms h2 {
    font-family: var(--body-font-family);
    font-weight: 600;
    font-size: 1.75rem;
    color: var(--ink);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section_terms p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 18px;
    font-family: var(--body-other-family);
}

.section_terms p:last-child {
    margin-bottom: 0;
}

/* ── callout box ── */
.callout {
    background: var(--ink);
    border-radius: 6px;
    padding: 32px 36px;
    margin: 32px 0;
    position: relative;
    overflow: hidden;
}

.callout::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), transparent);
}

.callout p {
    font-family: var(--serif);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

/* ── list items ── */
.term-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.term-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
}

.term-list li::before {
    content: "—";
    color: var(--gold);
    font-family: var(--mono);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── highlight pill ── */
.pill {
    display: inline-block;
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--mist-2);
    color: var(--ink-3);
    border: 1px solid var(--rule);
    padding: 3px 10px;
    border-radius: 2px;
}

/* ── contact block ── */
.contact-block {
    background: var(--ink);
    border-radius: 6px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-block h3 {
    grid-column: 1 / -1;
    font-family: var(--serif);
    font-weight: 300;
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: -0.01em;
}

.contact-item .label {
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.contact-item .value {
    font-family: var(--sans);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.contact-item a {
    color: var(--gold-lt);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ── footer strip ── */
.footer-strip {
    background: var(--ink);
    padding: 28px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-strip p {
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.25);
}

.footer-strip .back-top {
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.footer-strip .back-top:hover {
    opacity: 0.7;
}

/* ── animations ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* ── responsive ── */
@media (max-width: 900px) {
    .content-terms {
        padding: 0px 0px 80px;
    }
}

@media (max-width: 767px) {
    .sticky-lg-top.explore-events-list {
        padding-top: 5.5em !important;
    }

    section.explore-listing-wrapper {
        padding-top: 20px;
    }

    html body .list-view .listing-item .row {
        height: auto !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        width: 100% !important;
    }

    .no_records .no_rounded {
        width: 95px;
        height: 95px;
    }

    .listingSingleblock .panel-collapse .card-body.p-4 {
        padding: 0 !important;
    }

    .navigation-portrait .nav-menu.nav-menu-social > li.user-dropdown > a {
        display: none !important;
    }

    .progress-area {
        margin-top: 2em;
    }

    .progress-area .progress-wrapper {
        padding: 1rem 0rem 0 0rem !important;
    }

    .user-dashboard-box .step-name {
        width: 105px;
        line-height: 1.1;
    }

    .user-dashboard-box button#prevBtn {
        max-width: 30%;
    }

    .user-dashboard-box .footer-btn .btn {
        max-width: 30%;
    }

    button#addTicket,
    button#addFaq,
    button#addPerformer {
        max-width: 50%;
    }

    .dashCaption.p-3 {
        padding: 3em 0 0 0 !important;
    }

    .last_footer-btn {
        flex-wrap: wrap;
    }

    .user-dashboard-box .last_footer-btn div#step4Btns {
        order: -1;
    }

    .user-dashboard-box .footer-btn.last_footer-btn .btn {
        max-width: 50%;
    }

    .booking-card .booking-details {
        border-right: 0;
        border-bottom: 1px dashed #d1d5db;
        padding-bottom: 2em;
    }

    .booking-details .info-row .info-item {
        width: 100%;
    }

    .booking-details h4 {
        font-size: 1rem;
    }

    .rating-bars {
        width: 100%;
    }

    .popularSearches.gap-3 {
        gap: 0.5rem !important;
    }

    .popularSearches .singleItem {
        padding-bottom: 0;
    }

    .search_results_suggestions_box .col-xl-7 {
        padding-left: 10px;
    }

    .user-dashboard-box .form-group.start-datetime {
        display: flex;
        flex-direction: column;
    }

    .user-dashboard-box .start-datetime input {
        order: 1;
    }

    .user-dashboard-box .start-datetime .invalid-feedback.d-block {
        order: 2;
    }

    .user-dashboard-box .start-datetime {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-dialog .location-search-wrap button.btn {
        font-size: 0;
    }

    .modal-dialog .location-search-wrap button.btn i {
        font-size: 14px;
    }

    .propertyTitlename h2.title_details {
        line-height: 1.1;
        font-size: 5.688vw !important;
    }
}

@media (max-width: 400px) {
    .user-dashboard-box .step-name {
        width: 75px;
        line-height: 1.1;
    }
}

/* ══════════════════════════════════════════
   RECOMMENDED EVENTS — MOBILE FILTER BAR
══════════════════════════════════════════ */
@media (max-width: 991px) {
    /* Sticky bar spacing on mobile */
    .sticky-lg-top.explore-events-list {
        padding-top: 5.5em !important;
    }

    /* Filter button */
    .filter-mobile .btn {
        font-size: 0.82rem;
        padding: 0.45rem 1rem;
        font-weight: 600;
    }

    /* View toggle — icon-only on mobile */
    #viewToggle .nav-link {
        padding: 0.38rem 0.7rem;
        font-size: 0.78rem;
    }

    /* Active filter pills row */
    #activeFilters {
        padding: 0 0.25rem;
    }

    #filterPills .badge {
        font-size: 0.78rem;
    }
}

/* Filter offcanvas drawer */
#filterSlider {
    border-radius: 1.25rem 1.25rem 0 0;
}

#filterSlider .offcanvas-header {
    padding: 1rem 1.25rem 0.75rem;
}

#filterSlider .offcanvas-body {
    padding: 0.75rem 1.25rem 2rem;
    overflow-y: auto;
}

#filterSlider .form-check-label {
    font-size: 0.88rem;
}

#filterSlider .form-check-input {
    width: 1.1em;
    height: 1.1em;
    margin-top: 0.15em;
    cursor: pointer;
}

#filterSlider .btn-primary {
    padding: 0.75rem;
    font-size: 0.95rem;
}

/* ══════════════════════════════════════════
   ABOUT US — RESPONSIVE
══════════════════════════════════════════ */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
    .story-inner {
        gap: 3rem;
    }

    .do-card {
        gap: 2.5rem;
    }

    .mission-values {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .category-tiles {
        grid-template-columns: repeat(2, 1fr);
    }

    .cat-tile:nth-child(1) {
        grid-column: span 2;
    }

    .how-grid {
        gap: 1rem;
    }
}

/* Small tablet (≤ 768px) */
@media (max-width: 768px) {
    /* Hero */
    .hero-about {
        padding: 5rem 1.5rem 4rem;
        min-height: auto;
    }

    .hero-about h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-about .hero-sub {
        font-size: 0.95rem;
    }

    /* Story */
    .story-section {
        padding: 4rem 1.5rem;
    }

    .story-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .sv-card-float {
        right: 0;
        bottom: -1rem;
    }

    .sv-badge {
        left: 0;
    }

    /* Do section */
    .do-section {
        padding: 4rem 1.5rem;
    }

    .do-cards {
        gap: 2.5rem;
    }

    .do-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .do-card.reverse {
        direction: ltr;
    }

    .do-visual {
        height: 220px;
    }

    .do-number {
        font-size: 3rem;
    }

    /* How it works */
    .how-section {
        padding: 4rem 1.5rem;
    }

    .how-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    /* Mission */
    .mission-section {
        padding: 4rem 1.5rem;
    }

    .mission-quote {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .mission-values {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 2.5rem;
    }

    /* Community */
    .community-section {
        padding: 4rem 1.5rem;
    }

    .category-tiles {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .cat-tile:nth-child(1) {
        grid-column: span 2;
        height: 220px;
    }

    .cat-tile {
        height: 170px;
    }

    /* Testimonials */
    .testimonials-section_abt {
        padding: 4rem 1.5rem;
    }

    .testimonials-section_abt .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Mobile (≤ 480px) */
@media (max-width: 480px) {
    /* Hero */
    .hero-about {
        padding: 4rem 1rem 3rem;
    }

    .hero-about h1 {
        font-size: clamp(1.7rem, 9vw, 2.4rem);
    }

    .hero-about .hero-sub {
        font-size: 0.88rem;
    }

    .hero-about .cta-btn {
        width: 100%;
        justify-content: center;
    }

    /* Story */
    .story-section {
        padding: 3rem 1rem;
    }

    .sv-card-main {
        height: 260px;
    }

    .sv-card-float {
        position: static;
        margin-top: 1rem;
        border-radius: var(--r);
    }

    .sv-badge {
        position: static;
        display: inline-flex;
        margin-bottom: 1rem;
    }

    .attendee_decorative {
        padding: 1rem;
        gap: 6px;
        top: 2em;
    }

    .attendee_decorative img {
        width: 36px !important;
        height: 36px !important;
    }

    /* Do section */
    .do-section {
        padding: 3rem 1rem;
    }

    .do-visual {
        height: 180px;
    }

    .do-number {
        font-size: 2.5rem;
    }

    .do-content h3 {
        font-size: 1.3rem;
    }

    .do-tags {
        gap: 0.35rem;
    }

    /* How it works */
    .how-section {
        padding: 3rem 1rem;
    }

    .how-grid {
        max-width: 100%;
    }

    .how-card {
        padding: 1.6rem 1.2rem;
    }

    /* Mission */
    .mission-section {
        padding: 3rem 1rem;
    }

    .mission-values {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .mv-desc {
        font-size: 0.7rem;
    }

    /* Community */
    .community-section {
        padding: 3rem 1rem;
    }

    .category-tiles {
        grid-template-columns: 1fr;
    }

    .cat-tile:nth-child(1) {
        grid-column: span 1;
        height: 200px;
    }

    .cat-tile {
        height: 160px;
    }

    /* Testimonials */
    .testimonials-section_abt {
        padding: 3rem 1rem;
    }

    .testimonials-section_abt .t-card {
        padding: 1.3rem 1.2rem;
    }
}

/* Extra small (≤ 360px) */
@media (max-width: 360px) {
    .mission-values {
        grid-template-columns: 1fr;
    }

    .hero-about h1 {
        font-size: 1.6rem;
    }
}

/* ══════════════════════════════════════════
   SEARCH EVENTS — MOBILE
══════════════════════════════════════════ */

/* Hero search bar mobile */
@media (max-width: 767px) {
    .search-hero {
        padding: 70px 0 28px;
    }

    .search__content_box h1.hero-title {
        font-size: 1.5rem;
    }

    .hero-search-bar {
        border-radius: 14px;
        flex-wrap: nowrap;
        padding: 8px;
        gap: 6px;
    }

    .hero-search-bar input {
        width: 100%;
        font-size: 0.9rem;
        padding: 6px 4px;
    }

    .hero-search-bar .search-submit-btn i {
        font-size: 0.9rem;
    }

    .hero-search-bar .search-submit-btn {
        width: auto;
        border-radius: 10px;
        justify-content: center;
        font-size: 0rem;
        padding: 10px;
    }

    .hero-search-bar .search-submit-btn i {
        font-size: 14px;
    }

    html body #searchFilterSheet {
        max-height: 80vh !important;
    }

    /* Quick filter pills — horizontally scrollable */
    .filter-pills-bar {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 8px;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .filter-pills-bar::-webkit-scrollbar {
        display: none;
    }

    .filter-pills-bar > span {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .filter-pill {
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Sticky filter bar */
    .sticky-filter-bar {
        padding: 8px 0;
    }

    /* Results section */
    .results-section {
        padding: 20px 0 40px;
    }

    .results-title {
        font-size: 1.2rem;
    }

    .results-header {
        gap: 8px;
    }

    /* Category browse pills — scrollable */
    .category-browse-list {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 6px;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .role-tab.active.attendee .role-active-indicator,
    .role-tab.active.organizer .role-active-indicator,
    .category-browse-list::-webkit-scrollbar {
        display: none;
    }

    .category-browse-list .cat-badge {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .ds2_actions .btn {
        padding: 0.5rem !important;
    }

    .ticket-footer .total-info {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-search-box .hsb-btn svg {
    }

    .hero-search-box .hsb-btn {
        font-size: 0;
        padding: 0.55rem 0.8rem;
        justify-content: center;
    }

    .hero-search-box input {
        width: 100%;
        flex: unset;
    }

    .ticket-details-left .col-6 {
        width: 100%;
        text-align: left;
    }
}

/* Search filter offcanvas (bottom sheet) */
#searchFilterSheet {
    border-radius: 1.25rem 1.25rem 0 0;
}

#searchFilterSheet .offcanvas-header {
    padding: 1rem 1.25rem 0.75rem;
}

#searchFilterSheet .offcanvas-body {
    overflow-y: auto;
    padding: 0.75rem 1.25rem 2rem;
}

.sf-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin-bottom: 0.6rem;
}

.sf-badges-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sf-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sf-pill {
    background: #f3f4f6;
    border: 1.5px solid #e5e7eb;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.18s;
}

.sf-pill.active {
    background: var(--navyblue);
    border-color: var(--navyblue);
    color: #fff;
}

/* Filter count badge on button */
.sf-count-badge {
    background: var(--navyblue);
    color: #fff;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 1px 7px;
    line-height: 1.6;
}

/* Active tag pills row (scrollable, in filter bar) */
.sf-active-scroll {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
    min-width: 0;
}

.sf-active-scroll::-webkit-scrollbar {
    display: none;
}

.sf-active-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e8f0fe;
    color: var(--navyblue);
    border-radius: 50px;
    padding: 3px 10px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.sf-active-tag i {
    font-size: 0.65rem;
}

/*view ticket*/
.ticket-wrapper {
    background-color: #f8fafc;
    padding: 50px 0;
    min-height: 80vh;
}

.ticket-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.ticket-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Ticket header with event image */
.ticket-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: var(--navyblue);
    padding: 1rem 3rem;
}

.ticket-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.7)
    );
}

.event-info-on-img {
    position: static;
    bottom: 20px;
    left: 15px;
    z-index: 2;
    color: #fff;
}

.event-info-on-img h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 5px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.event-info-on-img p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Ticket body */
.ticket-body {
    padding: 40px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

/* Serrated divider */
.ticket-divider {
    position: relative;
    height: 2px;
    background-image: linear-gradient(to right, #e2e8f0 50%, transparent 50%);
    background-size: 10px 1px;
    background-repeat: repeat-x;
    margin: 0 40px;
}

.ticket-divider::before,
.ticket-divider::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background: #f8fafc;
    border-radius: 50%;
    top: -15px;
    z-index: 5;
}

.ticket-divider::before {
    left: -55px;
}

.ticket-divider::after {
    right: -55px;
}

/* Left side details */
.ticket-details-left {
    flex: 1;
}

.detail-group {
    margin-bottom: 25px;
}

.detail-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--navyblue);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.detail-value {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 600;
}

/* Right side QR code */
.ticket-details-right {
    width: 180px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.qr-code-box {
    padding: 10px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 15px;
}

.qr-code-box img {
    width: 140px;
    height: 140px;
}

.booking-code-footer {
    font-family: "Courier New", Courier, monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #475569;
    letter-spacing: 2px;
}

/* Attendees table */
.attendees-section {
    padding: 20px 40px 40px;
}

.attendees-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.attendees-title i {
    color: #0d6efd;
    margin-right: 10px;
}

.attendee-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.attendee-item {
    background: #f8fafc;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
}

.attendee-item:hover {
    border-color: #0d6efd;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.attendee-info {
    flex: 1;
}

.attendee-name {
    font-weight: 700;
    color: #1e293b;
    display: block;
    font-size: 1.05rem;
}

.attendee-email {
    font-size: 0.85rem;
    color: #64748b;
    display: block;
}

.attendee-qr {
    margin-left: 15px;
    background: white;
    padding: 5px;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
}

/* Action buttons */
.action-buttons {
    margin-top: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-download {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-image {
    background-color: #0d6efd;
    color: #fff;
    border: none;
}

.btn-pdf {
    background-color: #198754;
    color: #fff;
    border: none;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #fff;
}
@media (max-width: 800px) {
    .featured-content .featured-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 768px) {
    .ticket-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ticket-details-right {
        margin-top: 30px;
    }

    .attendee-list {
        grid-template-columns: 1fr;
    }

    .ticket-divider::before,
    .ticket-divider::after {
        display: none;
    }
    .main-blog .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*view ticket end*/
@media (max-width: 780px) {
    .main-blog .featured-post {
        display: flex;
        flex-direction: column;
    }
    .featured-thumb {
        height: 280px;
    }
    .featured-content .featured-meta {
        flex-direction: row;
        justify-content: space-between;
    }
}
@media (max-width: 580px) {
    html body .page-wrapper,
    html body .main-blog {
        padding: 2rem 1em;
    }
    .main-blog .posts-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .article-blog-details .article-body img {
        width: 100%;
        height: auto;
    }
}
@media (max-width: 400px) {
    .nav__header-row .form-group {
        width: 40%;
    }

    .attendee-item {
        flex-direction: column-reverse;
        text-align: center;
    }

    .event-info-on-img h2 {
        font-size: 24px;
        font-weight: 600;
    }

    .ticket-details-left .row {
        flex-wrap: wrap;
    }

    .ticket-details-left .row .col-12 {
        text-align: left;
    }

    .ticket-details-left .row .col-6 {
        width: 100%;
        text-align: left;
    }

    .event-info-on-img {
        left: 15px;
    }
}
