.footer-section {
    margin-top: 60px;
    background: #f5f7fb;
    color: #444;
}

.footer-top {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    border-top: 2px solid #8c9998;
    border-image: linear-gradient(90deg, #14d0b35c, #988dbc) 1;
}

.footer-logo img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-tagline {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.8;
}

.footer-links a {
    text-decoration: none;
    font-weight: 600;
    color: #4b4b4b;
    transition: 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: #5c47d5;
}

.small,
small {
    font-size: 13px;
}

.footer-bottom {
    padding: 12px 0;
    /* background: linear-gradient(90deg, #14d0b3, #5c47d5); */
    background: linear-gradient(270deg, #52338A 0%, #36CAA8 100%);
    color: white;
}

.footer-bottom a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.dropdown-menu {
    padding: 0px;
    border: 1px solid #dddddd;
    border-radius: 3px;
    overflow: hidden;
}

.dropdown-menu .active{
     background: #efefef;
         color: #4d5154;
}

li .dropdown-item {
    font-size: 13px !important;
}

/* billing and payment */

/* ---------- Container ---------- */
.payment-list-container {
    padding: 18px;
    max-width: 1300px;
    margin: auto;
}

/* ---------- Card Grid Layout ---------- */
.payment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

/* Tablet */
@media (min-width: 768px) {
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop */
@media (min-width: 1200px) {
    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---------- Modern Premium Card ---------- */
.payment-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e7e7e7;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);

    position: relative;
    display: flex;
    flex-direction: column;
}



/* ---------- Header Gradient ---------- */
.payment-card-header {

    padding: 16px 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-card-header h3 {
    color: #36322E;
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

/* ---------- Status Badges ---------- */
.status-badge {
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.status-completed {
    background: rgba(0, 190, 95, 0.15);
    color: #03A65A;
}

.status-pending {
    background: rgba(255, 100, 100, 0.15);
    color: #E63946;
}

/* ---------- Card Body ---------- */
.payment-card-body {
    padding: 0px 22px;
}

.payment-list-container {
    min-height: 90vh;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #e7e7e7;
    font-size: 14px;
}

.payment-row:last-child {
    border-bottom: none;
}

.payment-row span:first-child {
    font-weight: 600;
    color: #444;
}

.payment-row span:last-child {
    color: #333;
}

/* ---------- Package Tag ---------- */
.package-tag {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 14px;
    background: #F2F3FF;
    color: #503a8b;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

/* ---------- Invoice Button ---------- */
.invoice-btn {
    margin: 16px 20px 22px 20px;
    background: linear-gradient(270deg, #52338A 0%, #36CAA8 100%);
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    text-align: center;
    display: block;
    font-size: 14px;
    font-weight: 600;

}
.payment-list-container.sub-head-label {
    position: absolute;
    bottom: -8px;
}

/* terms and conditions */
.terms-container {
    max-width: 1000px;
    margin: 40px auto;
    background: #ffffff;
    padding: 30px 35px;
    border-radius: 15px;
    border: 1px solid #e5e5e5;
    box-shadow: 0px 8px 18px rgba(0,0,0,0.05);
}

.terms-container h2 {
    font-size: 20px;
    font-weight: 700;
    color: #3B4453;
    text-align: center;
    margin-bottom: 25px;
}

.terms-container h4 {
    font-size: 16px;
    margin-top: 22px;
    color: #3B4453;
}

.terms-container p, 
.terms-container li {
    font-size: 13px;
    color: #3B4453;
    line-height: 1.7;
}

.terms-container ul {
    padding-left: 18px;
}

/* list citu */
/* ---- MAIN WRAPPER ---- */
.city-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    min-height: 80vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;

    width: 100%;
    padding: 40px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);

    position: relative;
    border: 1px solid #dddddd;
}


/* ---- SEARCH BOX ---- */
.city-search {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 15px;
}

.city-search input {
    border: none;
    outline: none;
    flex: 1;
}

.city-search i {
    color: #0ab39c;
    font-size: 18px;
}

/* ---- SELECTED TAGS ---- */
.selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tag {
    background: #e9fffa;
    border: 1px solid #0ab39c;
    padding: 6px 10px;
    border-radius: 25px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tag i {
    cursor: pointer;
}

/* ---- CITY LIST ---- */
.city-list {
    margin-top: 10px;
}

.city-item {
    padding: 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: 0.3s;
}

.city-item:hover {
    background: #f7fffd;
}

.city-item.selected {
    background: #e7fdf7 !important;
    border-left: 3px solid #0ab39c;
}

/* ---- SUBMIT BUTTON ---- */
.city-submit {
    width: 100%;
    margin-top: 25px;
    padding: 12px;
    background: #0ab39c;
    color: #fff;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    border: none;
}

.city-list {
    min-height: 330px;
}
h3{
    font-size:23px;
}


.sub-container{
margin-bottom: 3rem ;
}
.chosen-single{
 height:42px !important;   
}
.chosen-results{
     text-align: left !important;   
}
.chosen-single{
    text-align: left !important;    
}
.chosen-search-input{
     min-height: 40px !important;
    border-radius: 5px !important;   
}
.chosen-container-active .chosen-single {
    border: 1px solid #888d96 !important;
}
.chosen-container .chosen-results li.highlighted {
    background-color: #0ab39c !important;
   
    background-image: linear-gradient(#567099 20%, #44b3a6 90%) !important;
    color: #fff;
}
.city-container  h5{
    font-size:18px;
}
#loadMoreCitiesBtn {
    border: 1px solid gray;
    color: #3b4453;
    padding: 9px 20px;
    font-weight: 500;
}
#loadMoreCitiesBtn:hover {
        border: 1px solid #0ab39c;
    color: #0ab39c;
    padding: 9px 20px;
    font-weight: 500;
    background-color: white;
}
.city-submit:hover {
background: #058d7b;

}
.ban-icon {
    width: 55px;
    height: 55px;
    background: #f8d7da;
    color: #721c24;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-bottom: 10px;
}

.payment-thank-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #3B4453;
}

.fa-ban {
  font-size: 30px;
}

