:root {
    --gradient-primary: linear-gradient(90deg, #001d32, #ff0808);
    --dark: #001d32;
    --red: #ff0808;
    --bg: #f8f9fb;
    --card: #ffffff;
    --text: #1a1a2e;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --radius: 14px;
    --shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.profile-pages {
    margin-top: 85px;
    background: #f2f2f2bf;
    padding-top: 18px;
}

table tr th {
    font-size: 15px;
}

table tr td {
    font-size: 14px;
}

.gradient-bar {
    height: 4px;
    background: var(--gradient-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Profile Header */
.profile-header {
    background: var(--card);
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

/* .profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
} */

.avatar-ring {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    flex-shrink: 0;
}

.avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-inner .iconify {
    font-size: 36px;
    color: var(--dark);
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-email {
    color: var(--text-muted);
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.profile-meta {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.profile-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .8rem;
    color: var(--text-muted);
    background: var(--bg);
    padding: 4px 10px;
    border-radius: 20px;
}

/* Tabs */
.tab-nav {
    background: var(--card);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 0 32px;
    display: flex;
    gap: 0;
    overflow-x: auto;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    border-top: 1px solid var(--border);
}

.tab-btn {
    padding: 14px 22px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: .88rem;
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 3px solid transparent;
    transition: all .2s;
    white-space: nowrap;
}

.tab-btn.active {
    color: var(--dark);
    border-bottom-color: var(--red);
    font-weight: 600;
}

.tab-btn:hover {
    color: var(--text);
    background: rgba(0, 0, 0, .02);
}

.tab-btn .iconify {
    font-size: 18px;
}

/* Content Cards */
.content-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

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

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title .iconify {
    font-size: 22px;
    color: var(--dark);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: .85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.info-item {
    padding: 16px;
    background: var(--bg);
    border-radius: 10px;
    border: 1px solid transparent;
    transition: .2s;
}

.info-item:hover {
    border-color: var(--border);
}

.info-label {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-label .iconify {
    font-size: 14px;
}

.info-value {
    font-size: .95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-value .iconify {
    font-size: 16px;
    color: var(--text-muted);
}

/* Buttons */
.btn-gradient {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: .88rem;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gradient:hover {
    opacity: .9;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 8, 8, .25);
}

.btn-outline {
    border: 1.5px solid var(--border);
    background: var(--card);
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    font-size: .85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .2s;
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--dark);
    background: var(--bg);
}

.btn-sm {
    padding: 4px 14px;
    font-size: .8rem;
}

.btn-view {
    text-decoration: none;
    color: var(--text);
}

/* Status Badges */
.badge-status {
    padding: 0px 12px;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-upcoming {
    background: #dbeafe;
    color: #1d4ed8;
}

.badge-completed {
    background: #dcfce7;
    color: #16a34a;
}

.badge-progress {
    background: #fef3c7;
    color: #d97706;
}

.badge-cancelled {
    background: #fee2e2;
    color: #dc2626;
}

.badge-success {
    background: #dcfce7;
    color: #16a34a;
}

.badge-pending {
    background: #fef3c7;
    color: #d97706;
}

.badge-failed {
    background: #fee2e2;
    color: #dc2626;
}

/* Filter Bar */
.filter-bar {
    background: linear-gradient(180deg, #f9fafb 0%, #f4f6f8 100%);
    border-radius: 12px 12px 0px 0px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    border: 1px solid var(--border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
    border-bottom: 0;
}

.filter-bar .filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-bar .filter-label {
    font-size: .8rem;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.filter-bar .filter-label .iconify {
    font-size: 14px;
}

.filter-bar input,
.filter-bar select {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: .85rem;
    background: var(--card);
    outline: none;
    font-family: inherit;
    transition: .2s;
    color: #000;
    min-height: 42px;
    height: 42px;
}

.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--dark);
    box-shadow: 0 0 0 4px rgba(0, 29, 50, .08);
}

.filter-bar .search-wrap {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.filter-bar .search-wrap input {
    width: 100%;
    padding-left: 44px;
}

.filter-bar .search-wrap .iconify {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--text-muted);
    z-index: 2;
}

.clear-btn {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 0 18px;
    cursor: pointer;
    font-size: .82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: .2s;
    font-family: inherit;
    min-height: 42px;
}

.clear-btn:hover {
    border-color: var(--red);
    color: var(--red);
    box-shadow: 0 10px 24px rgba(255, 8, 8, .08);
}

.clear-btn .iconify {
    color: #6b7280;
    transition: color .2s ease;
}

.clear-btn:hover .iconify {
    color: var(--red);
}

.filter-bar .filter-date,
.filter-bar .flatpickr-input {
    min-width: 198px;
}

.filter-bar .flatpickr-input[readonly] {
    cursor: pointer;
    background: var(--card);
}

.filter-bar .filter-select {
    min-width: 170px;
}

.select2-container {
    min-width: 170px !important;
}

.select2-container .select2-selection--single {
    height: 42px !important;
    border: 1.5px solid var(--border) !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, .94) !important;
    box-shadow: none !important;
    transition: border-color .2s ease, box-shadow .2s ease !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 42px !important;
    padding-left: 16px !important;
    padding-right: 40px !important;
    color: var(--text) !important;
    font-size: .9rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px !important;
    right: 12px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #6b7280 transparent transparent transparent !important;
    border-width: 6px 5px 0 5px !important;
}

.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: var(--dark) !important;
    box-shadow: 0 0 0 4px rgba(0, 29, 50, .08) !important;
}

.select2-dropdown {
    border: 1px solid rgba(148, 163, 184, .24) !important;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(15, 23, 42, .12) !important;
}

.select2-results__option {
    padding: 12px 16px !important;
    font-size: .88rem;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: #eef4ff !important;
    color: var(--dark) !important;
}

.select2-container--default .select2-results__option--selected {
    background: #f8fafc !important;
    color: var(--text) !important;
}

.flatpickr-calendar {
    border: 1px solid rgba(148, 163, 184, .2);
    border-radius: 18px;
    box-shadow: 0 20px 44px rgba(15, 23, 42, .16);
    padding: 10px;
    z-index: 1200 !important;
    background: #fff;
}

.flatpickr-calendar.open {
    display: block;
}

.flatpickr-months {
    margin-bottom: 6px;
}

.flatpickr-current-month {
    padding-top: 8px;
}

.flatpickr-weekday {
    color: var(--text-muted);
    font-weight: 700;
}

.flatpickr-day {
    border-radius: 12px;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--dark);
    border-color: var(--dark);
}

.flatpickr-day.today {
    border-color: rgba(0, 29, 50, .35);
}

.flatpickr-day:hover {
    background: #eef2f7;
    border-color: #eef2f7;
}

/* DataTable overrides */
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
    display: none;
}

.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
    display: none !important;
}

table.dataTable {
    border-collapse: collapse !important;
    width: 100% !important;
}

table.dataTable thead th {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    border-bottom: 2px solid var(--border) !important;
    padding: 12px 14px !important;
    background: var(--bg);
}

table.dataTable tbody td {
    padding: 14px !important;
    font-size: .88rem;
    border-bottom: 1px solid var(--border) !important;
    vertical-align: middle;
}

table.dataTable tbody tr {
    transition: background .15s;
}

table.dataTable tbody tr:hover {
    background: #f1f5f9 !important;
}

.dataTables_wrapper .table-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
    width: 100%;
    clear: both;
}

.custom-table-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    /* flex-wrap: wrap; */
    margin-top: 0px;
    width: 100%;
    padding: 0px 16px 16px 16px;
}

.custom-table-footer span {
    display: block;
    width: 50%;
    /* padding-left: 16px; */
    font-size: 15px;
}

.custom-page-info {
    font-size: .82rem;
    color: var(--text-muted);
}

.custom-page-controls {

    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    background: #fff;
}

.custom-page-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: var(--text-muted);
    font-size: .82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
}

.custom-page-btn:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: var(--dark);
}

.custom-page-btn.active {
    background: var(--dark);
    border-color: var(--dark);
    color: #fff;
}

.custom-page-btn:disabled,
.custom-page-btn:disabled:hover {
    opacity: .45;
    background: transparent;
    border-color: transparent;
    color: var(--text-muted);
    cursor: default;
    box-shadow: none;
}

.custom-page-nav {
    min-width: 58px;
}

.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
    float: none !important;
}

.dataTables_wrapper .dataTables_paginate {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
    margin-left: auto;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    min-width: 38px;
    height: 38px;
    margin: 0 !important;
    padding: 0 12px !important;
    border: 1px solid transparent !important;
    border-radius: 999px !important;
    background: transparent !important;
    color: var(--text-muted) !important;
    font-size: .82rem;
    font-weight: 600;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #f8fafc !important;
    border-color: #e2e8f0 !important;
    color: var(--dark) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: var(--dark) !important;
    border-color: var(--dark) !important;
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(0, 29, 50, .16);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
    opacity: .45;
    background: transparent !important;
    border-color: transparent !important;
    color: var(--text-muted) !important;
    cursor: default;
    box-shadow: none;
}

.dataTables_wrapper .dataTables_info {
    font-size: .82rem;
    color: var(--text-muted);
    padding-top: 0 !important;
}

.table-icon {
    font-size: 15px;
    vertical-align: middle;
    margin-right: 4px;
}

/* Mobile Card View */
.mobile-cards {
    display: none;
}

.mobile-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 12px;
    transition: box-shadow .2s;
}

.mobile-card:hover {
    box-shadow: var(--shadow);
}

.mobile-card .mc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    font-size: .85rem;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-card .mc-row:last-child {
    border-bottom: none;
}

.mobile-card .mc-label {
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mobile-card .mc-label .iconify {
    font-size: 14px;
}

.mobile-card .mc-header {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg);
}

.mobile-card .mc-actions {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.pass-out-wrap {
    display: flex;
    gap: 15px;
}

.pw-wrap input {
    color: #000;
}

/* Password */
.password-group {
    margin-bottom: 20px;
    width: 100%;
}

.password-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.password-group label .iconify {
    font-size: 14px;
}

.pw-wrap {
    position: relative;
}

.pw-wrap input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 11px 42px 11px 14px;
    font-size: .9rem;
    outline: none;
    font-family: inherit;
    transition: .2s;
}

.pw-wrap input:focus {
    border-color: var(--dark);
    box-shadow: 0 0 0 3px rgba(0, 29, 50, .08);
}

.pw-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
}

.pw-strength {
    height: 4px;
    border-radius: 2px;
    margin-top: 8px;
    background: var(--border);
    overflow: hidden;
}

.pw-strength-bar {
    height: 100%;
    width: 0;
    border-radius: 2px;
    transition: width .3s, background .3s;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.desktop-table {
    display: block;
    border: 1px solid var(--border);
    border-radius: 0px 0px 12px 12px;
}

table {
    margin-bottom: 0;
}

/* table tr:nth-child(6) td {
    border-bottom: 0;
    padding-bottom: 0;
} */

.custom-table-footer ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    justify-content: end;
    width: 100%;
    gap: 12px;
    /* padding: 0px 16px 16px 0px; */
}

.custom-table-footer ul li a {
    height: 34px;
    width: 34px;
    display: flex;
    background: #f2f2f2;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.custom-table-footer ul li a.active {
    background: #000;
    border-color: #000;
    color: #fff;
}

.profile-header-bg {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Stats row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    padding-left: 40px;
}

.stat-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 14px 20px;
    /* box-shadow: var(--shadow); */
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #ddd;
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.stat-value {
    font-size: 1.35rem;
    font-weight: 700;
}

.stat-label {
    font-size: .78rem;
    color: var(--text-muted);
}

@media(max-width:768px) {
    .profile-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .profile-meta {
        justify-content: center;
    }

    .tab-nav {
        padding: 0 12px;
    }

    .tab-btn {
        padding: 12px 14px;
        font-size: .82rem;
    }

    .content-card {
        padding: 20px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .filter-bar {
        flex-direction: column;
    }

    .filter-bar input,
    .filter-bar select {
        width: 100%;
    }

    .filter-bar .filter-group {
        width: 100%;
        flex-wrap: wrap;
    }

    .filter-bar .search-wrap {
        min-width: auto;
    }

    .filter-bar .filter-date,
    .filter-bar .flatpickr-input,
    .select2-container {
        width: 100% !important;
        min-width: 100% !important;
    }

    .desktop-table {
        display: none !important;
    }

    .mobile-cards {
        display: block;
    }

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

    .section-header {
        flex-direction: column;
    }

    .dataTables_wrapper .table-footer {
        flex-direction: column;
        align-items: stretch;
    }

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

    .dataTables_wrapper .dataTables_paginate {
        justify-content: center;
        flex-wrap: wrap;
        border-radius: 20px;
        margin-left: 0;
    }

    .custom-table-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .custom-page-info {
        text-align: center;
    }

    .custom-page-controls {
        justify-content: center;
        flex-wrap: wrap;
        margin-left: 0;
        border-radius: 20px;
    }
}

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

/* Edit modal */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal-overlay.show {
    display: flex;
}

.form-group-outs {
    display: flex;
    gap: 18px;
}

.form-group-outs .form-group {
    width: 100%;
}

.modal-box {
    background: var(--card);
    border-radius: var(--radius);
    padding: 32px;
    width: 92%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
}

.modal-box h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
}

.modal-box h3 .iconify {
    font-size: 22px;
    color: var(--dark);
}

.modal-box .form-group {
    margin-bottom: 16px;
}

.modal-box label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.modal-box label .iconify {
    font-size: 14px;
}

.modal-box input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: .9rem;
    outline: none;
    font-family: inherit;
    transition: .2s;
    color: #000;
}

.modal-box input:focus {
    border-color: var(--dark);
    box-shadow: 0 0 0 3px rgba(0, 29, 50, .08);
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 8px;
}

/* Toast */
.toast-msg {
    position: fixed;
    top: 24px;
    right: 24px;
    padding: 14px 18px;
    border-radius: 18px;
    color: var(--text);
    font-weight: 600;
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2000;
    min-width: 240px;
    border: 1px solid rgba(148, 163, 184, .18);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    transform: translate3d(0, -16px, 0);
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease, transform .28s ease;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .12);
}

.toast-msg.show {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.toast-success {
    border-left: 4px solid #16a34a;
}

.toast-error {
    border-left: 4px solid #dc2626;
}

.toast-msg .iconify {
    font-size: 20px;
}

.toast-success .iconify {
    color: #16a34a;
}

.toast-error .iconify {
    color: #dc2626;
}



/* details page css */

.tp-header-area.pre-header.sticky-white-bg.tp-header-blur.header-transparent {
    background: #ffffff !important;
}

.booking-detail-page {
    margin-top: 100px;
    background: #f2f2f2bf;
    padding-top: 18px;
}

.booking-detail-root,
.booking-detail-root * {
    box-sizing: border-box;
}

.booking-detail-root {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 12px 32px;
    color: #1a1a2e;
}

.booking-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 14px 14px 0px 0px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.booking-detail-back {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 600;
}

.booking-detail-back:hover {
    color: #001d32;
}

.booking-detail-back .iconify {
    font-size: 24px;
    border: 1.5px solid #e5e7eb;
    color: #1a1a2e;
    font-weight: 500;
    height: 42px;
    width: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
}

.booking-detail-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
}

.booking-detail-title .iconify {
    font-size: 22px;
    color: #001d32;
}

.booking-detail-subtitle {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: #6b7280;
}

.booking-detail-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.booking-detail-btn-primary,
.booking-detail-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.booking-detail-btn-primary {
    background: linear-gradient(90deg, #001d32, #ff0808);
    border: none;
    color: #ffffff;
}

.booking-detail-btn-primary:hover {
    color: #ffffff;
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 8, 8, 0.25);
}

.booking-detail-btn-secondary {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    color: #1a1a2e;
    padding: 8px 20px;
    font-weight: 500;
}

.booking-detail-btn-secondary:hover {
    border-color: #001d32;
    color: #001d32;
}

.booking-detail-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
}

.booking-detail-card-highlight {
    background: linear-gradient(135deg, #f6faff, #f8f9fb);
    border: 1.5px solid #dbeafe;
    border-radius: 0px 0px 14px 14px;
}

.booking-detail-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #001d32;
}

.booking-detail-card-title .iconify {
    font-size: 20px;
}

.booking-detail-card-title-accent {
    color: #3b82f6;
}

.booking-detail-card-subtitle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #6b7280;
}

.booking-detail-banner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex-wrap: wrap;
}

/* .booking-detail-status-dot {
    width: 12px;
    height: 12px;
    margin-top: 6px;
    margin-right: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    background: linear-gradient(90deg, #001d32, #ff0808);
  } */

.booking-detail-banner-body {
    flex: 1;
}

.booking-detail-banner-top {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.booking-detail-banner-icon {
    font-size: 22px;
    color: #001d32;
}

.booking-detail-banner-heading {
    font-size: 1.2rem;
    font-weight: 700;
}

.booking-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
}

.booking-detail-badge-upcoming {
    background: #dbeafe;
    color: #1d4ed8;
}

.booking-detail-banner-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 6px;
    font-size: 0.875rem;
    color: #6b7280;
}

.booking-detail-meta-separator {
    margin: 0 4px;
}

.booking-detail-link {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    font-size: 0.85rem;
    color: #001d32;
    text-decoration: none;
}

.booking-detail-link:hover {
    color: #001d32;
}

.booking-detail-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.booking-detail-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-detail-label {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
}

.booking-detail-label .iconify {
    font-size: 13px;
}

.booking-detail-value {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 500;
}

.booking-detail-value .iconify {
    font-size: 16px;
    color: #6b7280;
}

.booking-detail-value-dark-icon {
    color: #001d32 !important;
}

.booking-detail-value-success-icon {
    color: #16a34a !important;
}

.booking-detail-value-danger-icon {
    color: #ff0808 !important;
}

.booking-detail-stack-sm {
    margin-top: 8px;
}

.booking-detail-stack-md {
    margin-top: 12px;
}

.booking-detail-stack-lg {
    margin-top: 16px;
}

.booking-detail-flex-line {
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-detail-flex-line-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.booking-detail-text-muted {
    color: #6b7280;
}

.booking-detail-text-sm {
    font-size: 0.85rem;
}

.booking-detail-text-xs {
    font-size: 0.8rem;
}

.booking-detail-text-note {
    font-size: 0.78rem;
    color: #6b7280;
}

.booking-detail-description-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.booking-detail-description-title {
    font-size: 1.05rem;
    font-weight: 700;
}

.booking-detail-description-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #6b7280;
}

.booking-detail-tag-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.booking-detail-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 20px;
    background: #f1f5f9;
    font-size: 0.78rem;
}

.booking-detail-tag .iconify {
    font-size: 13px;
    color: #6b7280;
}

.booking-detail-interpreter {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.booking-detail-avatar-ring {
    width: 56px;
    height: 56px;
    padding: 2px;
    border-radius: 50%;
    flex-shrink: 0;
}

.booking-detail-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-detail-avatar-inner .iconify {
    font-size: 26px;
    color: #001d32;
}

.booking-detail-interpreter-body {
    flex: 1;
}

.booking-detail-interpreter-name {
    display: flex;
    gap: 6px;
    font-size: 1.05rem;
    font-weight: 700;
}

.booking-detail-interpreter-verified {
    font-size: 16px;
    color: #3b82f6;
}

.booking-detail-contact-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 6px;
    font-size: 0.85rem;
    color: #6b7280;
}

.booking-detail-contact-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.booking-detail-language-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.booking-detail-language-pill {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px 10px;
    border-radius: 16px;
    font-size: 0.72rem;
    font-weight: 600;
}

.booking-detail-language-pill .iconify {
    font-size: 11px;
}

.booking-detail-language-pill-blue {
    background: #dbeafe;
    color: #1d4ed8;
}

.booking-detail-language-pill-green {
    background: #dcfce7;
    color: #16a34a;
}

.booking-detail-language-pill-gold {
    background: #fef3c7;
    color: #d97706;
}

.booking-detail-timeline {
    position: relative;
    margin-top: 16px;
    padding-left: 28px;
}

.booking-detail-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}

.booking-detail-timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.booking-detail-timeline-dot {
    position: absolute;
    top: 2px;
    left: -24px;
    width: 14px;
    height: 14px;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.booking-detail-timeline-dot-green {
    background: #16a34a;
}

.booking-detail-timeline-dot-blue {
    background: #3b82f6;
}

.booking-detail-timeline-dot-yellow {
    background: #eab308;
}

.booking-detail-timeline-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

.booking-detail-timeline-title .iconify {
    font-size: 15px;
    color: #6b7280;
}

.booking-detail-timeline-desc {
    margin-top: 2px;
    font-size: 0.82rem;
    color: #6b7280;
}

.booking-detail-billing-table {
    width: 100%;
    margin-top: 16px;
    border-collapse: collapse;
}

.booking-detail-billing-table thead th {
    padding: 10px 8px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
}

.booking-detail-billing-table thead th .iconify {
    font-size: 13px;
    margin-right: 3px;
    vertical-align: middle;
}

.booking-detail-billing-table tbody td {
    padding: 14px 8px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.9rem;
}

.booking-detail-billing-table tbody td .iconify {
    font-size: 15px;
    margin-right: 3px;
    vertical-align: middle;
    color: #6b7280;
}

.booking-detail-billing-table tbody td::before {
    display: none;
}

.booking-detail-billing-table-right {
    text-align: right !important;
}

.booking-detail-billing-amount {
    font-weight: 700;
}

.booking-detail-summary-box {
    max-width: 250px;
    margin-top: 20px;
    margin-left: auto;
}

.booking-detail-summary-row {
    padding: 8px 0;
    text-align: right;
    font-size: 0.875rem;
}

.booking-detail-summary-label {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    color: #6b7280;
}

.booking-detail-summary-value {
    font-weight: 600;
}

.booking-detail-summary-total {
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid #e5e7eb;
}

.booking-detail-summary-grand {
    font-size: 1.15rem;
    font-weight: 700;
    color: #001d32;
}

.booking-detail-payment-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding: 18px 24px;
    border: 1px solid #bbf7d0;
    border-radius: 14px;
    background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
}

.booking-detail-payment-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    background: #16a34a;
}

.booking-detail-payment-icon .iconify {
    font-size: 26px;
}

.booking-detail-payment-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #16a34a;
}

.booking-detail-payment-title .iconify {
    font-size: 18px;
}

.booking-detail-payment-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 0.85rem;
    color: #6b7280;
    flex-wrap: wrap;
}

.booking-detail-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1.5px solid #e5e7eb;
}

@media (max-width: 768px) {
    .booking-detail-root {
        padding: 20px 12px 28px;
    }

    .booking-detail-header {
        align-items: flex-start;
    }

    .booking-detail-card {
        padding: 18px;
    }

    .booking-detail-grid-two,
    .booking-detail-grid-four,
    .booking-detail-footer-grid {
        grid-template-columns: 1fr;
    }

    .booking-detail-billing-table thead th,
    .booking-detail-billing-table tbody td {
        padding: 8px 4px;
    }

    .booking-detail-billing-table,
    .booking-detail-billing-table thead,
    .booking-detail-billing-table tbody,
    .booking-detail-billing-table tr,
    .booking-detail-billing-table th,
    .booking-detail-billing-table td {
        display: block;
        width: 100%;
    }

    .booking-detail-billing-table {
        margin-top: 14px;
    }

    .booking-detail-billing-table thead {
        display: none;
    }

    .booking-detail-billing-table tbody tr {
        padding: 14px;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        background: #ffffff;
        margin-bottom: 12px;
    }

    .booking-detail-billing-table tbody td {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 0;
        border-bottom: 1px solid #eef2f7;
        text-align: right !important;
        font-size: 0.9rem;
        word-break: break-word;
    }

    .booking-detail-billing-table tbody td:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .booking-detail-billing-table tbody td::before {
        content: attr(data-label);
        display: block;
        flex: 0 0 110px;
        text-align: left;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: #6b7280;
    }

    .booking-detail-summary-box {
        max-width: 100%;
        margin-top: 16px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .booking-detail-grid-four,
    .booking-detail-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .pass-out-wrap {
        gap: 0px;
        flex-wrap: wrap;
    }

    .profile-name {
        justify-content: center;
    }

    .filter-bar .search-wrap {
        min-width: 100%;
    }

    .filter-bar {
        gap: 5px;
    }

    .clear-btn {
        min-height: 40px;
        margin-top: 8px;
    }

    div#bookingsMobile .mobile-card:nth-child(1) {
        border-radius: 0px 0px 14px 14px;
    }

    .booking-detail-title {
        font-size: 1rem;
    }

    .booking-detail-back .iconify {
        height: 38px;
        width: 38px;
    }

    .booking-detail-btn-secondary span {
        display: none;
    }

    a.booking-detail-btn-secondary {
        height: 40px;
        width: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }

    .form-group-outs {
        gap: 0px;
        flex-wrap: wrap;
    }

    .profile-header-bg {
        display: block;
    }

    .avatar-ring {
        margin: auto;
        margin-bottom: 24px;
    }

    .profile-pages {
        margin-top: 70px;
    }

    .stats-row {
        padding: 0;
    }

    .stat-value {
        text-align: left;
    }
}

/* Booking Form Page */
.booking-form-page {
    margin-top: 84px;
    padding: 60px 0 80px;
    background: #f6f7f9;
}

.booking-form-page .container {
    max-width: 1180px;
}

.booking-form-shell {
    max-width: 1180px;
    margin: 0 auto;
}

.booking-form-layout {
    display: block;
}

.booking-form-card {
    padding: 0px 30px 30px 30px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--card);
    box-shadow: var(--shadow);
}

.booking-form-page-head {
    text-align: center;
    background: #f0090a05;
    padding: 20px;
    margin: 0px -30px;
    border-bottom: 1px solid #ffe5e5;
    border-radius: 18px 18px 0px 0px;
}

.booking-form-page-kicker {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--red);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.booking-form-page-head h1 {
    margin: 0;
    color: var(--text);
    font-size: 2rem;
    line-height: 1.2;
}

.booking-form-page-head p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.96rem;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=url]:focus,
textarea:focus {
    outline: none;
    border-color: var(--dark);
    box-shadow: 0 0 0 4px rgba(0, 29, 50, 0.08);
    background: #ffffff;
}

.booking-form-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 24px;
    margin-top: 24px;
    padding-top: 28px;
}

.booking-form-section-head:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.booking-form-section-head h2 {
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.32rem;
    color: var(--text);
}

.booking-form-section-head h2 iconify-icon {
    font-size: 1.2rem;
    color: var(--dark);
}

.booking-form-section-head p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.booking-form-grid {
    display: grid;
    gap: 10px;
}

.booking-form-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-form-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-form-grid-one {
    grid-template-columns: minmax(0, 1fr);
}

.booking-field {
    min-width: 0;
}

.booking-field label {
    display: block;
    margin-bottom: 10px;
    color: var(--text);
    font-size: 0.94rem;
    font-weight: 600;
}

.booking-label-highlight {
    color: var(--dark) !important;
}

.booking-field input,
.booking-field textarea,
.booking-input-icon input {
    width: 100%;
    min-height: 40px;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    background: #fbfbfc;
    color: var(--text);
    font-size: 0.96rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking-field textarea {
    min-height: 156px;
    resize: vertical;
}

.booking-field input:focus,
.booking-field textarea:focus,
.booking-input-icon input:focus {
    outline: none;
    /* box-shadow: 0 0 0 4px rgba(0, 29, 50, 0.08); */
    background: #ffffff;
}

.booking-input-icon {
    position: relative;
}

.booking-input-icon iconify-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 20px;
    pointer-events: none;
}

.booking-input-icon input {
    padding-left: 46px;
    cursor: pointer;
    background: #fbfbfc;
}

.booking-field-medium {
    max-width: 402px;
}

.booking-form-page .select2-container {
    width: 100% !important;
}

.booking-form-page .select2-container .select2-selection--single {
    height: 52px !important;
    border: 1.5px solid var(--border) !important;
    border-radius: 12px !important;
    background: #fbfbfc !important;
}

.booking-form-page .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 52px !important;
    padding-left: 16px !important;
    padding-right: 42px !important;
    color: var(--text) !important;
    font-size: 0.96rem;
}

.booking-form-page .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #718198 !important;
}

.booking-form-page .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 52px !important;
    right: 14px !important;
}

.booking-form-page .select2-container--default.select2-container--open .select2-selection--single,
.booking-form-page .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: var(--dark) !important;
    box-shadow: 0 0 0 4px rgba(0, 29, 50, 0.08) !important;
    background: #ffffff !important;
}

.booking-form-page .select2-dropdown {
    border: 1px solid rgba(160, 174, 192, 0.35) !important;
    border-radius: 12px !important;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1) !important;
}

.booking-form-page .flatpickr-input[readonly] {
    cursor: pointer;
}

.booking-form-page .iti {
    display: block;
    width: 100%;
}

.booking-form-page .iti__tel-input,
.booking-form-page .iti input[type="tel"] {
    width: 100%;
    min-height: 52px;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-right: 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    background: #fbfbfc;
    color: var(--text);
    font-size: 0.96rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking-form-page .iti input[type="tel"]:focus {
    outline: none;
    border-color: var(--dark);
    box-shadow: 0 0 0 4px rgba(0, 29, 50, 0.08);
    background: #ffffff;
}

.booking-form-page .iti--separate-dial-code .iti__selected-country {
    padding: 0 14px 0 16px;
    border-right: 1px solid #e5e7eb;
    border-radius: 12px 0 0 12px;
    background: #ffffff;
}

.booking-form-page .iti--separate-dial-code .iti__selected-dial-code {
    color: var(--text);
    font-size: 0.96rem;
}

.booking-form-page .iti__country-container {
    left: 12px !important;
    top: 1px;
    bottom: 1px;
}

.booking-form-page .iti--allow-dropdown input[type="tel"],
.booking-form-page .iti--separate-dial-code input[type="tel"] {
    padding-left: 100px !important;
}

.booking-form-page .iti__arrow {
    border-top-color: #6b7280;
}

.booking-form-page .iti__dropdown-content {
    border: 1px solid rgba(160, 174, 192, 0.35);
    border-radius: 12px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}

.booking-form-page .iti__search-input {
    border: 0;
    border-bottom: 1px solid #edf0f3;
    border-radius: 0;
    min-height: 46px;
    padding: 12px 14px;
    font-size: 0.92rem;
}

.booking-form-page .iti__country {
    padding: 11px 14px;
}

.booking-form-page .iti__country.iti__highlight {
    background: #f8fafc;
}

.booking-form-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    min-height: 40px;
    padding: 8px 20px;
    border: 0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.booking-btn:hover {
    transform: translateY(-1px);
}

.booking-btn-light {
    background: #f3f4f6;
    color: var(--text);
}

.booking-btn-light:hover {
    color: var(--text);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.booking-btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 14px 24px rgba(0, 29, 50, 0.16);
}

.booking-btn-primary:hover {
    color: #ffffff;
    box-shadow: 0 18px 28px rgba(0, 29, 50, 0.2);
}

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

@media (max-width: 1199px) {
    .booking-form-grid-three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .booking-form-page {
        margin-top: 70px;
        padding: 20px 0 48px;
    }

    .booking-form-card {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .booking-form-section-head h2 {
        font-size: 1.15rem;
    }

    .booking-form-section-head p,
    .booking-form-page-head p {
        font-size: 0.94rem;
    }

    .booking-form-page-head h1 {
        font-size: 1.55rem;
    }

    .booking-form-grid-three {
        grid-template-columns: 1fr;
    }

    .booking-field-medium {
        max-width: 100%;
        border-radius: 12px;
    }

    .booking-form-actions {
        justify-content: stretch;
        flex-direction: column;
    }

    .booking-btn {
        width: 100%;
    }
}