
.my-account-box {
    position: relative;
    display: inline-block;
}

.my-account-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    color: #222;
    background: transparent;
    cursor: pointer;
    transition: all .3s ease;
    border: 0;
}

.my-account-toggle:hover {
    border-color: #c49a52;
}



.my-account-toggle img {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border-radius: 50%;
    background: #f5f5f5;
}



.my-account-toggle span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}


.my-account-toggle i {
    margin-left: 5px;
    color: #fff;
    font-size: 11px;
    transition: transform .3s ease;
}
.flx-link{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.my-account-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 9999;
    width: 200px;
    padding: 8px;
    background: #fff;
    border: 1px solid #ededed;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .10);

    /* Hidden */

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease;
}



.my-account-dropdown::before {
    content: "";
    position: absolute;
    top: -6px;
    right: 25px;
    width: 11px;
    height: 11px;
    background: #fff;
    border-top: 1px solid #ededed;
    border-left: 1px solid #ededed;
    transform: rotate(45deg);
}


.my-account-box.active .my-account-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.my-account-box.active .my-account-toggle i {
    transform: rotate(180deg);
}


.my-account-dropdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


.my-account-dropdown li {
    margin: 0;
    padding: 0;
}


.my-account-dropdown li + li {
    border-top: 1px solid #f1f1f1;
}


.my-account-dropdown a,.my-account-dropdown button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: #555;
    font-size: 14px;
    text-decoration: none;
    transition: all .3s ease;
}


.my-account-dropdown a i,.my-account-dropdown button i{
    width: 18px;
    color: #b28a45;
    font-size: 17px;
}


.my-account-dropdown a:hover {
    padding-left: 17px;
    color: #111;
    background: #fffaf2;
}

.user-profile-preview{
    width: 100%;
    height: fit-content;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #eeeded;
    border-radius: 15px;
    margin-bottom: 10px;
}
.user-profile-preview img{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}
.user-profile-preview h3{
    color: var(--color-black);
    font-weight: 500;
    margin: 5px 0;
    font-size: 24px;
}
.user-profile-preview p{
    margin: 0;
    font-size: 14px;
    color: var(--color-black);
}
.user-dashboard-sidebar{
     width: 100%;
    height: fit-content;
    padding:10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* background-color: #f0f0f0; */
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-bottom: 20px;
}
.user-dashboard-sidebar ul{
    margin: 0;
    padding: 0;
    list-style: none;
   width: 100%;
}
.user-dashboard-sidebar ul li{
    width: 100%;
    margin: 2px 0;
}
.user-dashboard-sidebar ul li a{
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: var(--color-black);
    font-size: 15px;
    padding: 10px;
    border-radius:8px;
    transition: 0.5s;
    /* border-bottom: 1px solid #b2b2b2; */
}
.user-dashboard-sidebar ul li a.active{
    background-color: var(--primary-dark);
    color: var(--color-white);
}
.user-dashboard-sidebar ul li a:hover{
    background-color: var(--primary-dark);
    color: var(--color-white);
}
.user-dashboard-sidebar ul li a i{
    width: 30px;
    display: flex;
    justify-content: flex-start;
    font-size: 16px;
}


.logout-title {
    text-align: center;
    font-size: 20px;
    margin: 0;
    color: #000;
    margin-top: 0;
    font-family: var(--font-main);
    font-weight: 600;
    color: var(--primary-dark);
}
.logout-modal-footer{
    display: flex;
    justify-content: center;
    align-items: center;
    padding:10px 30px;
    gap: 10px;
}
.logout-modal-footer button, .logout-modal-footer a{
    width: 100px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    transition: 0.5s;
    border-radius: 4px;
    text-decoration: none  !important;
    border: 0;
}
.logout-modal-footer a{
    background-color:var(--primary-dark);
    color: #fff;
  
}
.logout-modal-footer button{
    background-color: #E5D8CB;
    color: #222;
}
.logout-modal-footer button:hover, .logout-modal-footer a:hover{
    border-radius: 40px;
}


.profile-container{
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}


  .profile-field label{
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #000;
    font-family: var(--font-main);
}
.profile-field input{
    border: 1px solid #aeaeae;
    border-radius: 7px;
    height: 50px;
    font-size: 14px;
    font-family: var(--font-main);
    font-weight: 500;
}
.profile-field select{
    border: 1px solid #aeaeae;
    border-radius: 7px;
    height: 50px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-main);
}
.profile-field input::file-selector-button{
    height:50px;
}
.profile-field textarea{
    border: 1px solid #aeaeae;
    border-radius: 7px;
    height: 130px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-main);
}
.profile-field input::placeholder,.profile-field textarea::placeholder{
    font-size: 15px;
    color: #848484;
    font-weight: 400;
   font-family: var(--font-main);
}
.profile-field input:focus,.profile-field textarea:focus{
    border: 1px dashed var(--primary-dark);
}
.country-code{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.country-code span{
    background-color: #dcdbda;
    border-radius: 12px 0 0 12px;
    padding: 0 5px;
   
}
.country-code span select{
    width: 70px;
    border: 0 !important;
    outline: 0 !important;
    background-color: transparent;
}
.country-code  input{
    border-radius: 0 12px 12px 0;

}


.profile-sub-btn{
    width: 150px;
    height: 45px;
     background: var(--primary);
    color: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid var(--primary);
    transition: 0.5s;
    text-decoration: none;
    margin: 10px auto;
}
 .profile-sub-btn:hover{
    border-radius: 40px;
}
.profile-title {
    font-size: 20px;
    color: #000;
    padding: 25px 0;
    padding-bottom: 10px;
    margin-top: 20px;
    border-top: 1px solid #ccc;
}
.account-top-btns h3{
     font-size: 25px;
    color: #000;
     padding-bottom: 10px;
     margin: 0;
}


.account-top-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 10px;
}

.account-page-label {
    display: block;
    margin-bottom: 4px;
    color: #b28a45;
    font-size: 13px;
    font-weight: 500;
}

.account-top-btns h3 {
    margin: 0 0 0px;
    color: #171717;
    font-size: 26px;
    font-weight: 600;
}

.account-top-btns p {
    margin: 0;
    color: #888;
    font-size: 15px;
}



.account-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 15px;
    color: #fff;
    background: var(--primary);
    border: 1px solid var(--primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease;
    border-radius: 5px;
}

.account-primary-btn:hover {
    color:  var(--primary);
    background: #fff;
    border-color:  var(--primary);
}

.account-primary-btn i {
    font-size: 14px;
}


.enquiry-table-card {
    background: #fff;
    /* border: 1px solid #d2d2d2; */
    border-radius: 10px;
}



.enquiry-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0px;
    border-bottom: 1px solid #ededed;
}

.enquiry-table-header h4 {
    margin: 0 0 5px;
    color: #222;
    font-size: 17px;
    font-weight: 600;
}

.enquiry-table-header span {
    color: #999;
    font-size: 11px;
}



.enquiry-search {
    position: relative;
    width: 250px;
}

.enquiry-search i {
    position: absolute;
    top: 50%;
    left: 13px;
    color: #aaa;
    font-size: 13px;
    transform: translateY(-50%);
}

.enquiry-search input {
    width: 100%;
    height: 40px;
    padding: 0 15px 0 38px;
    color: #333;
    background: #fff;
    border: 1px solid #cfcfcf;
    outline: none;
    font-size: 14px;
    font-family: var(--font-main);
    border-radius: 7px;
}

.enquiry-search input:focus {
    border-color: #b28a45;
}


/* =========================================
   TABLE
========================================= */

.enquiry-table {
    margin: 0;
    vertical-align: middle;
}

.enquiry-table thead th {
    padding: 15px 25px;
    color: #fff;
    background: #072039;
    border: 0;
    font-size: 14px;
    font-family: var(--font-main);
    white-space: nowrap;
    font-weight: 500;
}

.enquiry-table tbody td {
   padding: 14px 17px;
    color: #666;
    border-color: #f0f0f0;
    font-size: 14px;
    vertical-align: middle;
    font-family: var(--font-main);
    border: 1px solid #f0f0f0 !important;
}

.enquiry-table tbody tr {
    transition: all .3s ease;
}

.enquiry-table tbody tr:hover {
    background: #fffdf9;
}


/* =========================================
   ENQUIRY ID
========================================= */

.enquiry-id {
    color: #b28a45 !important;
    font-size: 13.5px !important;
    font-weight: 700;
}


/* =========================================
   SUBJECT
========================================= */

.enquiry-subject {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.enquiry-subject strong {
    color: #333;
    font-size: 13.5px;
    font-weight: 600;
}

.enquiry-subject small {
    color: #999;
    font-size: 11px;
}


/* =========================================
   STATUS
========================================= */

.enquiry-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 5px;
}

.enquiry-status > span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}


/* Pending */

.status-pending {
    color: #a67c20;
    background: #faf2df;
}

.status-pending > span {
    background: #d7a632;
}


/* In Progress */

.status-progress {
    color: #3674a5;
    background: #e9f5fe;
}

.status-progress > span {
    background: #4d94cc;
}


/* Resolved */

.status-resolved {
    color: #34815b;
    background: #e9faf1;
}

.status-resolved > span {
    background: #43a572;
}


/* Closed */

.status-closed {
    color: #777;
    background: #edecec;
}

.status-closed > span {
    background: #999;
}



.enquiry-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

.enquiry-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #9e9e9e;
    background: #fff;
    border: 1px solid #9e9e9e;
    text-decoration: none;
    transition: all .3s ease;
    border-radius: 7px;
}

.enquiry-action-btn {
    color: #fff;
    background: #c09c28;
    border-color: #c09c28;
}
.enquiry-action-btn.edit {
    color: #fff;
    background: #128197;
    border-color: #128197;
}
.enquiry-action-btn.view {
    color: #fff;
    background: #0d804b;
    border-color: #0d804b;
}

.enquiry-action-btn.delete {
    background: #b94a48;
    border-color: #b94a48;
    color: #fff;
}

.enquiry-action-btn i {
    font-size: 13px;
}


/* =========================================
   EMPTY STATE
========================================= */

.enquiry-empty {
    padding: 70px 20px;
    text-align: center;
}

.enquiry-empty > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    color: #b28a45;
    background: #fffaf2;
    border-radius: 50%;
    font-size: 25px;
}

.enquiry-empty h5 {
    margin: 0 0 8px;
    color: #222;
    font-size: 18px;
}

.enquiry-empty p {
    margin: 0 0 25px;
    color: #999;
    font-size: 12px;
}

a.book-again{
    background-color: #34815b !important;
    border-color: #34815b !important;
}







.rrl-enquiry-modal .modal-content {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 12px;
}


.rrl-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    color: #555;
    background: #fff;

    border: 1px solid #e8e8e8;
    border-radius: 50%;

    cursor: pointer;

    transition: all .3s ease;
}

.rrl-modal-close:hover {
    color: #fff;
    background: #1b1b1b;
    border-color: #1b1b1b;
    transform: rotate(90deg);
}

.rrl-modal-close i {
    font-size: 15px;
}



.rrl-enquiry-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;

    padding:25px;
    padding-top: 60px;
    padding-bottom: 10px;

    background: #fffdf9;
    border-bottom: 1px solid #eeeeee;
}

.rrl-modal-eyebrow {
    display: block;
    margin-bottom: 5px;

    color: #b28a45;

    font-size: 13px;
    font-weight: 500;
}

.rrl-enquiry-modal-header h3 {
    margin: 0 0 8px;

    color: #1b1b1b;

    font-family: var(--font-main);
    font-size: 25px;
    font-weight: 600;
}

.rrl-enquiry-modal-header p {
    margin: 0;

    color: #888;
    font-size: 14px;
}


.rrl-enquiry-modal-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    flex-shrink: 0;

    padding: 8px 13px;

    font-size: 10px;
    font-weight: 600;
}

.rrl-enquiry-modal-status > span {
    width: 6px;
    height: 6px;

    border-radius: 50%;
}

.rrl-enquiry-modal-status.pending {
    color: #a67c20;
    background: #fff5d9;
}

.rrl-enquiry-modal-status.pending > span {
    background: #d5a329;
}


.rrl-enquiry-reference {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    margin: 0 25px;

    border-bottom: 1px solid #eeeeee;
}

.rrl-enquiry-reference > div {
    padding: 22px 0;
}

.rrl-enquiry-reference > div + div {
    padding-left: 30px;
    border-left: 1px solid #eeeeee;
}

.rrl-enquiry-reference span {
    display: block;
    margin-bottom: 2px;

    color: #999;

    font-size: 11px;
    font-weight: 500;
}

.rrl-enquiry-reference strong {
    color: #222;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-main);
}



.rrl-enquiry-modal-section {
    padding: 10px 20px;
}

.rrl-enquiry-section-title {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 8px;
}

.rrl-enquiry-section-title i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    color: #b28a45;
    background: #fffaf1;

    border-radius: 50%;

    font-size: 14px;
}

.rrl-enquiry-section-title h4 {
    margin: 0;

    color: #a67c20;
    font-size: 14px;
    font-weight: 600;
}



.rrl-enquiry-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    border: 1px solid #eeeeee;
}

.rrl-enquiry-info-item {
    padding:12px 15px;
}

.rrl-enquiry-info-item:nth-child(odd) {
    border-right: 1px solid #eeeeee;
}

.rrl-enquiry-info-item:nth-child(-n + 2) {
    border-bottom: 1px solid #eeeeee;
}

.rrl-enquiry-info-item span {
    display: block;
    margin-bottom: 3px;

    color: #7a7a7a;
    font-family: var(--font-main);
    font-size: 11px;
}

.rrl-enquiry-info-item strong {
    color: #333;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-main);
}



.rrl-enquiry-message-box {
    padding: 22px;

    background: #fafafa;
    border-left: 3px solid #b28a45;
}

.rrl-enquiry-message-box > span {
    display: block;
    margin-bottom: 7px;

    color: #b28a45;

    font-size: 12px;
}

.rrl-enquiry-message-box h5 {
    margin: 0 0 10px;

    color: #222;
    font-size: 15px;
    font-weight: 600;
}

.rrl-enquiry-message-box p {
    margin: 0;

    color: #777;
    font-size: 13.5px;
    line-height: 1.8;
}



.rrl-enquiry-response-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    padding: 20px;

    background: #f8fbf9;
    border: 1px solid #e2eee7;
}

.rrl-response-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 40px;
    height: 40px;

    color: #3b8b61;
    background: #e7f5ed;

    border-radius: 50%;
}

.rrl-response-icon i {
    font-size: 17px;
}

.rrl-enquiry-response-box strong {
    display: block;
    margin-bottom: 5px;
    font-family: var(--font-main);
    color: #2e6548;
    font-size: 12px;
}

.rrl-enquiry-response-box p {
    margin: 0;

    color: #777;
    font-size: 13.5px;
    line-height: 1.7;
}



.rrl-enquiry-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;

    margin-top: 30px;
    padding: 20px 45px;

    border-top: 1px solid #eeeeee;
}



.rrl-modal-secondary-btn {
    padding: 8px 20px;

    color: var(--primary);
    background: #fff;

    border: 1px solid var(--primary);

    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;

    cursor: pointer;

    transition: all .3s ease;
}

.rrl-modal-secondary-btn:hover {
    color: #222;
    border-color: #222;
}


/* Primary Button */

.rrl-modal-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 20px;
    border-radius: 5px;

    color: #fff;
    background: var(--primary);

    border: 1px solid var(--primary);

    font-size: 13px;
    font-weight: 500;

    text-decoration: none;

    transition: all .3s ease;
}

.rrl-modal-primary-btn:hover {
    color: var(--primary);
    background: #fff;
    border-color:var(--primary);
}

.vehicle-user-preview {
    background: #ffffff;
    border-radius: 16px;
}

.vehicle-user-preview h3,h3.v-tle {
       margin: 10px 0 15px;
    font-size: 22px;
    font-weight: 600;
    color: #b28a45;
    letter-spacing: -0.3px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
    border-top: 1px solid #eeeeee;
    padding-top: 10px;
}

.vehicle-user-preview ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.vehicle-user-preview li {
    background: #f8f9fb;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    padding: 15px 17px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #777;
    transition: all 0.2s ease;
}

.vehicle-user-preview li:hover {
    background: #fff;
    border-color: #d8d8d8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.vehicle-user-preview li span {
    display: block;
    color: #222;
    font-size: 15px;
    font-weight: 600;
    word-break: break-word;
}


.vehicle-user-preview li:first-child span {
    color: #3b5ccc;
}

/* Additional Notes */
.vehicle-user-preview li:last-child {
    grid-column: 1 / -1;
}

/* Mobile */
@media (max-width: 767px) {
   

    .vehicle-user-preview h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .vehicle-user-preview ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .vehicle-user-preview li:last-child {
        grid-column: auto;
    }
}


.contact-info-card {
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.contact-info-card h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eeeeee;

    font-size: 17px;
    font-weight: 600;
    color: #222;
}

.contact-info-card h5 i {
    font-size: 19px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 0;
}

.contact-info-item + .contact-info-item {
    border-top: 1px solid #f0f0f0;
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5f6f8;
    border-radius: 10px;

    font-size: 17px;
    color: #333;
}

.contact-info-content {
    min-width: 0;
}

.contact-info-content small {
    display: block;
    margin-bottom: 4px;

    font-size: 12px;
    font-weight: 500;
    color: #888;
}

.contact-info-content p {
    margin: 0;

    font-size: 14px;
    font-weight: 600;
    color: #222;

    word-break: break-word;
}
