button {
    outline: none!important;
}

/* Vehicle Gallery Styles */

.gallery-layout {
    display: flex;
    align-items: flex-start;
}

.main-image-container {
    flex: 1;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}


.main-vehicle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-gallery {
    display: flex;
    flex-direction: column;
    width: 120px;
}
.thumbnail-item:last-child {
    border-bottom: none;
}

.thumbnail-item {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    cursor: pointer;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.more-images-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.carousel-item img {
    max-height: 500px;
    object-fit: contain;
}

/* Vehicle Details Section */
.vehicle-details-section {
    margin-bottom: 30px;
}
.car-pricing-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.vehicle-details-section .car-details {
    flex: 1;
    padding: 0;
    background-color: transparent;
}

.change-vehicle-btn {
    background-color: #004ea9;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.change-vehicle-btn:hover {
    background-color: #003d87;
    transform: translateY(-1px);
}

.change-vehicle-btn i {
    font-size: 12px;
}

/* Vehicle Accordion Styles */
.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    cursor: pointer;
    transition: all 0.3s ease;
}


.accordion-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.accordion-icon {
    font-size: 16px;
    color: #666666;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #000000;
    font-weight: 600;
    text-align: right;
}

/* Tooltip Styles */
.tooltip-section {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.tooltip-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tooltip-icon {
    font-size: 18px;
    color: #004ea9;
    cursor: pointer;
    transition: color 0.3s ease;
}

.tooltip-icon:hover {
    color: #003d87;
}

.tooltip-content {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #004ea9;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tooltip-content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #004ea9;
}

.tooltip-container:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
}

.tooltip-text div {
    margin: 0;
    padding: 0;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

/* Main Container - 700px centered width */
.main-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Header Section */
.header-section {
    background-color: #ffffff;
    padding: 20px 30px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.header-divider {
    width: 100%;
    height: 1px;
    background-color: #000000;
    margin-bottom: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
}


.user-profile {
    display: flex;
    justify-content: flex-end;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background-color: #fd953c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 300;
    font-size: 24px;
    transition: all 0.3s ease;
}

.user-avatar:hover {
    background-color: #004ea9;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-buttons-group {
    display: flex;
    gap: 25px;
}

.nav-item {
    padding: 12px 32px;
    background-color: #004ea9;
    color: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: none;
    min-height: 50px;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
}

.nav-item:hover {
    background-color: #fd953c;
    color: #ffffff;
}

a:hover {
    text-decoration: none;
}

.nav-item.home-icon {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fd953c;
    font-size: 20px;
}

.nav-item.home-icon:hover {
    color: #004ea9;
}

.nav-item:not(.home-icon) {
    border: 2px solid #004ea9;
}

.nav-item:not(.home-icon):hover, .nav-item:not(.home-icon).active {
    background-color: #ffffff;
    color: #004ea9;
    border-color: #000000;
}

.nav-item i {
    font-size: 36px;
}

/* Main Content */
.main-content {
    padding: 0px 30px 0px;
}

/* Welcome & Progress Container */
.welcome-progress-container {
    background-color: #f2eeee;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 70px;
}

/* Welcome Section */
.welcome-section {
    margin-bottom: 40px;
}

.welcome-title {
    font-size: 35px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.status-message {
    font-size: 14px;
    color: #666;
    font-weight: 300;
}

.status-highlight {
    color: #03bf62;
    font-weight: 700;
}

/* Progress Section */
.progress-section {
    margin-bottom: 0;
}

.progress-tracker {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.progress-tracker::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15%;
    right: 10%;
    height: 2px;
    background-color: #66666682;
    z-index: 1;
}

.progress-tracker::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 10%;
    width: 20%;
    height: 2px;
    background-color: #03bf62;
    z-index: 2;
}

/* Remove individual connecting lines - use the main line */

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 3;
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #6c757d;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 12px;
    position: relative;
    z-index: 4;
}

.progress-step:not(.completed) .step-circle {
    background-color: white;
    color: #000000;
}

.progress-step.completed .step-circle {
    background-color: #03bf62;
    color: #000000;
}

.step-label {
    font-size: 8px;
    color: #666;
    font-weight: 300;
    line-height: 1.2;
    max-width: 84px;
    text-align: center;
}

.progress-step:not(.completed) .step-label {
    color: #666;
}

/* Applications Section */
.applications-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    text-decoration: underline;
    text-align: left;
    line-height: 1.2;
}

.application-card {
    background-color: #f2eeee;
    border: 2px solid #000000;
    border-radius: 0;
    margin-bottom: 15px;
}

.application-header {
    display: flex;
}

.app-label {
    flex: 1;
    font-weight: 700;
    color: #000000;
    font-size: 13px;
    text-align: center;
    border-right: 2px solid #000000;
    padding: 10px 0px 5px;
}

.application-data {
    display: flex;
}

.app-value {
    flex: 1;
    font-size: 11px;
    text-align: center;
    color: #000000;
    font-weight: 300;
    border-right: 2px solid #000000;
    padding: 0px 0px 5px;
}

.italic-text {
    font-style: italic;
}

.application-header .app-label:last-child {
    border-right: 0;
}

.application-data .app-value:last-child {
    border-right: 0;
}

/* New Application Card Design */
.application-card-new {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 45px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.car-icon {
    width: 60px;
    height: 60px;
    background-color: #004ea9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.car-icon i {
    color: #ffffff;
    font-size: 24px;
}

.application-info {
    display: flex;
    flex: 1;
    gap: 20px;
    justify-content: space-between;
}

.info-column {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 8px;
    color: #b4b4b4;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-value {
    font-size: 16px;
    color: #333333;
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
}

/* Status Indicator Styles */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #03bf62;
    flex-shrink: 0;
}

.status-dot.closed {
    background-color: #dc3545;
}

.status-text {
    font-size: 16px;
    color: #333333;
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
}

.view-applications-btn {
    text-align: center;
}

.go-back-section {
    margin-bottom: 30px;
}

/* Upload Page Styles - Using existing welcome-progress-container */
.upload-greeting {
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 10px;
}

.upload-subtitle {
    font-size: 18px;
    color: #666666;
    margin-bottom: 30px;
}

.document-title {
    font-size: 28px;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 30px;
    text-align: center;
}

.upload-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.upload-btn {
    flex: 1;
    background-color: #fd953c;
    color: #ffffff;
    padding: 20px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid #fd953c;
}

.upload-btn:hover {
    background-color: #ffffff;
    color: #fd953c;
    border-color: #fd953c;
}

.upload-btn i {
    font-size: 20px;
}

.note-title {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
}

.instructions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.instructions-list li {
    font-size: 16px;
    color: #333333;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.instructions-list li:before {
    content: "•";
    color: #004ea9;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.instructions-list li:last-child {
    margin-bottom: 0;
}

.instructions-list strong {
    font-weight: 700;
    color: #333333;
}

/* File Management Styles */
.file-management-section {
    margin-bottom: 30px;
}

.drag-drop-text {
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
    text-align: center;
}

.uploaded-file-item {
    background-color: #ffffff;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}

.uploaded-file-item:hover {
    border-color: #004ea9;
}

/* Drag and Drop Styles */
.file-management-section {
    position: relative;
}

.file-management-section.sortable-container {
    min-height: 200px;
}

.uploaded-file-item {
    cursor: move;
    user-select: none;
    transition: all 0.3s ease;
}

.uploaded-file-item.dragging {
    opacity: 0.5;
    transform: rotate(5deg);
    border-color: #004ea9;
    box-shadow: 0 8px 25px rgba(0, 78, 169, 0.3);
    z-index: 1000;
}

.uploaded-file-item.drag-over {
    border-color: #03bf62;
    background-color: #f0f8ff;
    transform: scale(1.02);
}

.uploaded-file-item.drag-placeholder {
    border: 2px dashed #004ea9;
    background-color: #f8f9fa;
    opacity: 0.7;
}

.uploaded-file-item.drag-placeholder * {
    visibility: hidden;
}

/* Drag Handle Styles - consolidated below */

/* Reorder Controls - consolidated in single section below */

/* Page Number - consolidated below */

/* Drop Zone Indicator */
.drop-zone-indicator {
    height: 4px;
    background-color: #004ea9;
    border-radius: 2px;
    margin: 10px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drop-zone-indicator.active {
    opacity: 1;
}

/* Mobile Drag and Drop */
@media (max-width: 768px) {
    .uploaded-file-item.dragging {
        transform: none;
        opacity: 0.7;
    }
    
    .uploaded-file-item.drag-over {
        transform: none;
    }
    
    .reorder-controls i {
        padding: 8px;
        font-size: 16px;
    }
}

/* Upload Document Page Styles */
.instruction-step {
    margin-bottom: 25px;
}

.instruction-step:last-child {
    margin-bottom: 0;
}

.instruction-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}
.instruction-step ul {
    padding-left: 17px;
}

.instruction-step p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 17px;
}
.instruction-step p:last-child {
    margin-bottom: 0;
}

/* Section Title */

/* Documents List */
.documents-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Mobile Responsive for Upload Document */
@media (max-width: 768px) {
    .instruction-step h3 {
        font-size: 16px;
    }
    
    .instruction-step p {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 18px;
    }
}

.file-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.drag-handle {
    cursor: grab;
    color: #666;
    transition: color 0.3s ease;
    padding: 5px;
    border-radius: 4px;
}

.drag-handle:hover {
    color: #004ea9;
    background-color: #f0f0f0;
}

.drag-handle:active {
    cursor: grabbing;
}

.reorder-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.reorder-controls i {
    color: #004ea9;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.reorder-controls i:hover {
    color: #003d82;
}

.page-number {
    background-color: #004ea9;
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.file-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.file-icon {
    color: #004ea9;
    font-size: 20px;
}

.file-thumb {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid #e0e0e0;
}

.file-name {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}

.file-actions {
    display: flex;
    align-items: center;
}

.delete-icon {
    color: #dc3545;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.delete-icon:hover {
    color: #c82333;
}

/* Preview Modal Header Styles */
.preview-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 2px solid #e0e0e0;
}

.preview-header-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.preview-counter {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.preview-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
}

.preview-close {
    color: #333333;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.preview-modal-body{
    padding: 30px;
}

.preview-close:hover {
    color: #004ea9;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.action-btn {
    flex: 1;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.add-file-btn {
    background-color: #ffffff;
    color: #333333;
    border: 2px solid #333333;
}

.add-file-btn:hover {
    background-color: #f8f9fa;
    border-color: #333333;
    color: #333333;
    text-decoration: none;
}

.submit-btn {
    background-color: #004ea9;
    color: #ffffff;
    border: 2px solid #004ea9;
}

.submit-btn:hover {
    background-color: #003d82;
    border-color: #003d82;
    color: #ffffff;
    text-decoration: none;
}

.action-btn i {
    font-size: 16px;
}

.common-main-btn {
    background-color: #004ea9;
    border: none;
    padding: 10px 25px;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.common-main-btn:hover {
    background-color: #fd953c;
    color: white;
    text-decoration: none;
}

/* Common class for styled links */
.btn-link {
    background-color: #004ea9;
    border: none;
    padding: 10px 25px;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-link:hover {
    background-color: #fd953c;
    color: white;
    text-decoration: none;
}

/* Documents Section */
.documents-section {
    background-color: #f2eeee;
    padding: 30px 60px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.documents-section-list, .documents-section-list.documents-section {
    margin-bottom: 60px;
}

.documents-section-list .documents-section:last-child {
    margin-bottom: 0;
}

.documents-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.documents-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 360px;
    margin: auto;
}

.documents-list .document-item:last-child {
    margin-bottom: 0;
}

.document-item {
    background-color: #004ea9;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    color: white;
    font-weight: 700;
    margin: 0 0 8px;
    border: 2px solid #fd953c;
    position: relative;
}

.document-name {
    font-weight: 700;
    font-size: 16px;
}

.document-item:hover {
    background-color: #fd953c;
    border-color: #fd953c;
    color: #ffffff;
}

.document-item.completed {
    background-color: #ffffff;
    border: 2px solid #000000;
    color: #004ea9;
}

.document-item.completed:hover {
    background-color: #f8f9fa;
    border-color: #000000;
    color: #fd953c;
}

.document-check {
    color: #03bf62;
    font-size: 18px;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 18px;
}

/* Document Status Categories */
.document-section {
    margin-bottom: 30px;
}

.document-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

/* Documents Still Required - Blue */
.document-item.required {
    background-color: #ffffff;
    border: 2px solid #004ea9;
    color: #004ea9;
}

.document-item.required:hover {
    background-color: #f8f9fa;
    border-color: #004ea9;
    color: #004ea9;
}

.document-item.required .document-icon {
    color: #004ea9;
    animation: documentIconPulse 1.2s ease-in-out infinite;
}

/* Documents In Review - Orange */
.document-item.in-review {
    background-color: #ffffff;
    border: 2px solid #fd953c;
    color: #fd953c;
}

.document-item.in-review:hover {
    background-color: #f8f9fa;
    border-color: #fd953c;
    color: #fd953c;
}

.document-item.in-review .document-icon {
    color: #fd953c;
}

/* Documents Approved - Green */
.document-item.approved {
    background-color: #ffffff;
    border: 2px solid #03bf62;
    color: #03bf62;
}

.document-item.approved:hover {
    background-color: #f8f9fa;
    border-color: #03bf62;
    color: #03bf62;
}

.document-item.approved .document-icon {
    color: #03bf62;
}

/* Pulsing animation for required document icon */
@keyframes documentIconPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.document-icon {
    font-size: 18px;
    position: absolute;
    right: 20px;
}

/* Reviews Section */
.reviews-section {
    text-align: center;
}

.reviews-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.3;
}

.reviews-subtitle {
    font-size: 14px;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 700;
}

.trustpilot-widget {
    background-color: #f9f9fa;
    border-radius: 12px;
    padding: 30px 20px;
    height: 200px;
    overflow: hidden;
}

.trustpilot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.trustpilot-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #00b67a;
    font-weight: bold;
    font-size: 14px;
}

.trustpilot-logo i {
    font-size: 16px;
}

.trustpilot-rating {
    text-align: right;
}

.stars {
    color: #00b67a;
    font-size: 14px;
    margin-bottom: 3px;
}

.rating-text {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.review-content {
    text-align: left;
}

.review-label {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.review-title {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 8px 0;
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.review-title i {
    color: #004ea9;
    font-size: 14px;
}

.review-text {
    color: #666;
    line-height: 1.4;
    margin-bottom: 10px;
    font-size: 13px;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.author-name {
    font-weight: 600;
    color: #333;
    font-size: 12px;
}

.review-time {
    color: #999;
    font-size: 11px;
}

.review-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pagination-dots {
    display: flex;
    gap: 4px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #004ea9;
}

.nav-arrows {
    display: flex;
    gap: 8px;
    color: #666;
    cursor: pointer;
}

.nav-arrows i {
    font-size: 12px;
    transition: color 0.3s ease;
}

.nav-arrows i:hover {
    color: #004ea9;
}

/* Make Application Page Styles */
.welcome-section-container {
    background-color: #f2eeee;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.make-application-section {
    margin-bottom: 60px;
}

.main-content .make-application-section:last-child{
    margin-bottom: 0;
}

.make-application-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
}

.product-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 40px;
    margin: 0 auto;
    justify-content: center;
}

.product-card {
    flex: 0 0 calc(50% - 20px);
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 0;
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    background-color: #004ea9;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 78, 169, 0.3);
}

.product-icon {
    font-size: 32px;
    color: #004ea9;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.product-card:hover .product-icon {
    color: #ffffff;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    transition: color 0.3s ease;
}

.product-card:hover .product-name {
    color: #ffffff;
}

/* Footer */
.footer {
    background-color: #ffffff;
    padding: 30px 30px;
}

/* Open Applications Section */
.open-applications-section {
    margin-bottom: 40px;
}
.main-content .open-applications-section:last-child {
    margin-bottom: 0;
}

.open-applications-section .section-title {
    margin-bottom: 30px;
    margin-top: 20px;
    text-align: center;
    text-decoration: none;
}

/* Application Actions */
.application-actions {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.open-applications-section .application-actions.single-action .action-btn {
    margin: 0 0 30px auto;
    max-width: 160px;
}

.action-btn {
    padding: 14px 10px;
    border: 2px solid #000000;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    min-width: 160px;
    background-color: #ffffff;
    color: #000000;
    
}

.application-actions .action-btn{
    flex: 1;
}

.cancel-btn {
    color: #ff3132;
}

.edit-btn {
    color: #000000;
}

.change-btn {
    color: #004ea9;
}

.application-actions.single-action.center .action-btn {
    max-width: 170px;
    margin: auto;
}

.cancel-btn:hover {
    background-color: #ff3132;
    border-color: #ff3132;
    color: #ffffff;
}

.change-btn:hover {
    background-color: #004ea9;
    border-color: #004ea9;
    color: #ffffff;
}

.edit-btn:hover {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
}

/* Edit Application Page Styles */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    margin-top: 20px;
}

.page-title {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    text-decoration: underline;
    margin: 0;
}

.back-link {
    color: #3333335e;
    text-decoration: none;
    font-size: 24px;
    transition: color 0.3s ease;
    font-weight: 600;
    border-bottom: 2px solid;
    display: inline-block;
    line-height: 24px;
}


/* Form Sections */
.form-section {
    margin-bottom: 30px;
}

.form-section:last-child {
    margin-bottom: 0;
}


.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}


.form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-field label {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 0;
}

.form-input-bar {
    height: 40px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    width: 100%;
    padding: 0 12px;
    font-size: 14px;
    color: #333333;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.form-input-bar:focus {
    outline: none;
    border-color: #004ea9;
    background-color: #ffffff;
}

.form-input-bar::placeholder {
    color: #999999;
}

.copyright {
    color: #000;
    font-size: 14px;
    margin: 0;
    font-weight: 700;
    text-align: center;
}

/* Responsive Design */

/* Hero Banner Section */
.hero-banner {
    position: relative;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 0;
    overflow: hidden;
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 52%;
}

.banner-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

/* Search and Filter Section */
.search-filter-section {
    margin-bottom: 30px;
}

.search-form-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    border: 1px solid #dddddd;
    position: relative;
    z-index: 3;
    margin: -70px auto 20px;
    max-width: 90%;
}

.search-inputs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.search-field {
    flex: 1;
}

.search-select {
    width: 100%;
    height: 50px;
    background-color: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 16px;
    color: #333333;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

.search-select:focus {
    outline: none;
    border-color: #004ea9;
    background-color: #ffffff;
}

.search-btn {
    width: 100%;
    height: 50px;
    background-color: #004ea9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background-color: #003d82;
}

/* Quick Filter Buttons */
.quick-filters {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.quick-filter-btn {
    background-color: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-filter-btn:hover {
    border-color: #004ea9;
    color: #004ea9;
    background-color: #ffffff;
}

.all-filters-btn {
    background-color: #004ea9;
    border: 2px solid #004ea9;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
}

.all-filters-btn:hover {
    background-color: #003d82;
    border-color: #003d82;
}

.all-filters-btn i {
    font-size: 12px;
}

.cta-title {
    font-size: 42px;
    font-weight: 600;
    color: #004ea9;
    margin: 0 0 15px 0;
}

.cta-subtitle {
    font-size: 22px;
    color: #004ea9;
    margin: 0;
    font-weight: 600;
}

.cta-subtitle.cta-subtitle-dark {
    color: #000000;
}

.change-car-content {
    display: flex;
    gap: 40px;
}

/* Filters Sidebar */
.filters-sidebar {
    position: fixed;
    top: 0;
    left: calc(50% - 350px);
    width: 260px;
    height: 100vh;
    overflow: scroll;
    background-color: #ffffff;
    z-index: 99;
    padding: 70px 15px 30px 15px;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    display: block;
    box-shadow: 4px 0 8px -2px rgba(0, 0, 0, 0.2);
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.filters-sidebar::-webkit-scrollbar {
    display: none;
  }

.filters-sidebar.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.close-filters-btn {
    font-size: 40px;
    position: absolute;
    right: 15px;
    top: 0;
    color: #004ea8;
    cursor: pointer;
}

.sidebar-filters-sticky-btn {
    position: sticky;
    bottom: -30px;
    left: 0px;
    width: 100%;
    padding: 20px 0px;
    background-color: #fff;
}

#filtersSidebarForm {
	margin-bottom: 50px;
}

.filters-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #000000;
    justify-content: space-between;
}

.filters-title {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.reset-link {
    color: #004ea9;
    font-size: 12px;
    font-weight: 500;
}
.dealership-logo-img {
    width: 24px;
    object-fit: contain;
}

.reset-link:hover {
    text-decoration: underline;
}

.filters-sidebar .filter-group:last-child{
    margin-bottom: 0;
}

.filter-group {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #000000;
    min-height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.filter-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
    height: 16px;
    line-height: 16px;
}

.filter-group-row {
    display: flex;
    gap: 8px;
    margin-top: 5px;
}

.filter-group-row .filter-select {
    flex: 1;
}

.filter-group-stacked select + select {
    margin-top: 8px;
}

.filter-select {
    width: 100%;
    height: 35px;
    background-color: #ffffff;
    border: 1.5px solid #004ea9;
    border-radius: 12px;
    padding: 0 8px;
    font-size: 12px;
    color: #333333;
    box-sizing: border-box;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 14px;
    padding-right: 25px;
}

.filter-select:focus {
    outline: none;
    border-color: #004ea9;
    background-color: #ffffff;
}


/* Car Listings */
.car-listings {
    flex: 1;
}

.listings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.view-controls {
    display: flex;
    gap: 10px;
}

.view-toggle {
    background-color: transparent;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    outline: none!important;
}

.view-toggle:hover {
    color: #004ea9;
}

.view-toggle.active {
    color: #004ea9;
}

.view-toggle.active i {
    color: #004ea9;
}

.view-toggle i {
    font-size: 16px;
    color: #999999;
}

/* Sort and Filter Container */
.sort-filter-container {
    display: flex;
    gap: 10px;
}

.sort-container {
    display: flex;
    align-items: center;
}

.sort-select {
    height: 40px;
    background-color: #004ea9;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.sort-select:focus {
    outline: none;
}

/* Car Grid */
.car-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.link-cover {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
}

.car-card {
    background-color: #ffffff;
    overflow: hidden;
    transition: none;
    flex: 0 0 100%;
    position: relative;
}

/* Grid View Styles */
.car-grid.grid-view .car-card {
    flex: 0 0 calc(50% - 15px);
}

.car-grid.grid-view .car-pricing {
    justify-content: space-between;
}

.car-grid.grid-view .dealership-logo{
    display: none;
}
.car-grid.grid-view .car-specs {
    font-size: 10px;
}
.car-grid.grid-view .car-name {
    font-size: 16px;
}
.car-grid.grid-view .car-price {
    font-size: 18px;
}
.car-grid.grid-view .monthly-payment {
    font-size: 12px;
}

/* List View Styles */
.car-grid.list-view .car-card {
    flex: 0 0 100%;
}

.car-image {
    width: 100%;
    height: 240px;
    background-color: #004ea9;
    overflow: hidden;
    transition: 0.3s all;
}
.car-image img{
    transition: 0.3s all;   
}

.car-card:hover .car-image img {
    transform: scale(1.06);
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dealership Info */
.dealership-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f2f2f2;
    border-bottom: 1px solid #e0e0e0;
}

.dealership-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    width: 200px;

}

.dealership-name {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

.dealership-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dealer-type {
    font-size: 12px;
    color: #000000;
}

.rating {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
}

.rating i {
    color: #ffc107;
    margin-left: 4px;
}

.car-details {
    padding: 20px;
    background-color: #f2f2f2;
}

.car-name {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.car-specs {
    font-size: 14px;
    color: #666666;
    margin: 0 0 25px 0;
    line-height: 1.4;
    font-weight: 500;
}

.car-pricing {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.car-price {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.monthly-payment {
    font-size: 14px;
    font-weight: 500;
    color: #666666;
    margin: 0;
}

.car-actions {
    padding: 0 8px 8px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-details-link {
    color: #004ea9;
    text-decoration: none;
    font-size: 7px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 3px;
}

.view-details-link i {
    font-size: 6px;
}

.view-details-link:hover span {
    text-decoration: underline;
}

.switch-btn {
    background-color: #004ea9;
    color: #ffffff;
    text-decoration: none;
    padding: 5.5px 12px 5px;
    border-radius: 18px;
    font-size: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.switch-btn i {
    font-size: 7px;
    position: relative;
    top: -0.5px;
}

.switch-btn:hover {
    background-color: #fd953c;
    color: #ffffff;
}

/* ========================================
   MODAL STYLES
   ======================================== */

.modal-dialog {
    max-width: 640px;
}

.modal-content {
    border: 2px solid #004ea8;
    border-radius: 0;
    margin: 0 auto;
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.modal-title {
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 15px 0;
}

.modal-message {
    font-style: italic;
    color: #000000;
    max-width: 540px;
    margin: 0 auto 30px;
}

.modal-document-name {
    font-size: 28px;
    font-weight: 700;
    color: #28a745;
    margin: 0 0 30px 0;
    text-align: center;
}

.vehicle-comparison {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.vehicle-section {
    width: 100%;
    display: flex;
    gap: 10px;
}

.vehicle-label {
    font-weight: 600;
    color: #000000;
    margin: 0;
    flex-shrink: 0;
    width: 100px;
    text-align: left;
    font-size: 14px;;
}

.vehicle-details {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    width: calc(100% - 100px);
}

.vehicle-info {
    color: #000000;
    flex: 1;
    font-size: 12px;
    text-align: left;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-actions .action-btn {
    cursor: pointer;
}



/* ========================================
   VIEW DETAILS PAGE STYLES
   ======================================== */


/* Vehicle Details Section */
.vehicle-details-section {
    margin-bottom: 40px;
}

.vehicle-details-title {
    font-size: 48px;
    font-weight: 600;
    color: #004ea9;
    margin: 0 0 10px 0;
    text-align: center;
}

.vehicle-details-subtitle {
    font-size: 24px;
    color: #666666;
    margin: 0 0 40px 0;
    text-align: center;
    font-weight: 600;
}

.vehicle-showcase {
    display: flex;
    gap: 30px;
    background-color: #ffffff;
    
}

.vehicle-image {
    flex: 1;
    height: 300px;
    overflow: hidden;
    border-radius: 4px;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-info-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 20px;
}

.vehicle-location {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
    align-self: flex-end;
}

.vehicle-name {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 5px 0;
}

.vehicle-model {
    font-size: 16px;
    color: #000000;
    margin: 0 0 20px 0;
}

.vehicle-price {
    font-size: 36px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 25px 0;
}

.swap-btn {
    background-color: #004ea9;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: all 0.3s ease;
}

.swap-btn:hover {
    background-color: #fd953c;
    color: #ffffff;
    text-decoration: none;
}

.swap-btn.full-width {
    width: 100%;
    font-size: 20px;
}

.swap-btn.full-width i {
    font-size: 20px;
}

.swap-btn i {
    font-size: 14px;
}

/* Overview Section */
.overview-section {
    margin-bottom: 40px;
}

.specifications-grid {
    display: flex;
    gap: 80px;
    margin-top: 15px;
}

.spec-column {
    background-color: #ffffff;
    flex: 1;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px;
    border-bottom: 1px solid #000000;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

.spec-value {
    font-size: 14px;
    color: #000000;
}

/* Bottom Swap Section */
.bottom-swap-section {
    margin-bottom: 40px;
}

/* ========================================
   HELP PAGE STYLES
   ======================================== */

/* Help Title Section */
.help-title-section {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
}

.help-title {
    font-size: 36px;
    font-weight: 600;
    color: #004ea9;
    margin: 0 0 10px 0;
}

.help-subtitle {
    font-size: 18px;
    color: #666666;
    margin: 0;
}

/* Help Section */
.help-section {
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 0;
    padding: 40px;
    margin-bottom: 70px;
}

/* Help Form */
.help-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.help-form .form-field {
    margin-bottom: 25px;
}

.help-form .form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.help-form .form-input-bar {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    background-color: #f8f8f8;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.help-form .form-input-bar:focus {
    outline: none;
    border-color: #004ea9;
    background-color: #ffffff;
}

.help-form .form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    background-color: #f8f8f8;
    transition: all 0.3s ease;
    box-sizing: border-box;
    resize: vertical;
    min-height: 120px;
}

.help-form .form-textarea:focus {
    outline: none;
    border-color: #004ea9;
    background-color: #ffffff;
}

/* File Attachment */
.file-attachment {
    margin-bottom: 30px;
    text-align: left;
}

.file-link {
    color: #004ea9;
    text-decoration: underline;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.file-link:hover {
    color: #fd953c;
    text-decoration: underline;
}

.file-link i {
    font-size: 16px;
}

.file-name-display {
    margin-top: 8px;
    font-size: 13px;
    color: #004ea9;
    font-weight: 500;
}

/* Form Actions */
.form-actions {
    text-align: right;
    margin-top: 20px;
}

.submit-btn {
    background-color: #ffffff;
    color: #004ea9;
    border: 2px solid #004ea9;
    border-radius: 4px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #004ea9;
    color: #ffffff;
}

/* ========================================
   USER PROFILE DROPDOWN STYLES
   ======================================== */

.user-profile-container {
    position: relative;
    display: inline-block;
}

.user-dropdown {
    position: absolute;
    top: 117%;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #000000;
    border-radius: 8px;
    padding: 12px 0;
    min-width: 160px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.user-dropdown.show {
    display: block;
}

.dropdown-item {
    padding: 8px 16px;
}

.dropdown-item a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: block;
    transition: color 0.3s ease;
}

.dropdown-item a:hover {
    color: #004ea9;
}

.dropdown-item .logout-link {
    color: #ff3132;
}

.dropdown-item .logout-link:hover {
    color: #ff3132;
    opacity: 0.8;
}

.dropdown-separator {
    height: 1px;
    background-color: #e0e0e0;
    margin: 8px 0;
}

.dropdown-close {
    position: absolute;
    bottom: 19px;
    right: 8px;
    width: 24px;
    height: 24px;
    background-color: #004ea9;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: background-color 0.3s ease;
}

.dropdown-close:hover {
    background-color: #fd953c;
}

/* ========================================
   YOUR DETAILS PAGE STYLES
   ======================================== */

.your-details-section {
    margin: 40px 0px 70px;
}

/* Tabs styling for Your Details */
.profile-tabs {
    border-bottom: 2px solid #f3eeee;
    margin-bottom: 20px;
    gap: 8px;
    justify-content: space-between;
    padding-bottom: 2px;
}

.profile-tabs .nav-link {
    border: 2px solid #f3eeee !important;
    border-bottom: none !important;
    border-radius: 8px 8px 0 0 !important;
    background-color: #f0efee;
    color: #7a7979;
    font-weight: 700;
    padding: 8px 16px;
    font-size: 10px;
}

.profile-tabs li {
    flex: 1;
}

.profile-tabs .nav-link.active {
    background-color: #004ea9 !important;
    color: #ffffff !important;
    border-color: #004ea8 !important;
}

.profile-tab-content {
    padding: 30px;
    margin-bottom: 30px;
    background-color: #f2eeee;
    border-radius: 12px;
}

.placeholder-content {
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 0;
    padding: 40px;
    margin: 0 auto;
    max-width: 600px;
}

.placeholder-content p {
    font-size: 16px;
    color: #666666;
    margin: 0;
}

/* Form Section Layout */
.form-section-content {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.form-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 20px 0;
    text-decoration: underline;
    text-align: left;
}

.update-btn {
    background-color: #004ea9;
    color: #ffffff;
    border: 2px solid #004ea9;
    border-radius: 4px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.update-btn:hover {
    background-color: #fd953c;
    border-color: #fd953c;
    color: #ffffff;
}

/* Single Column Layout for Update Password */
.form-section-content.single-column {
    flex-direction: column;
    gap: 20px;
}

.form-section-content.single-column .form-field {
    margin-bottom: 0;
}

.form-section-content.single-column .form-actions {
    margin-top: 10px;
}

/* Form Field Label Alignment */
.form-field label {
    text-align: left;
}

.take-photo-btn-mobile{
    display: none;
}

body .main-content::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    pointer-events: none;
}

body.hidden .main-content::before{
    opacity: 0.5;
    visibility: visible;
    pointer-events: auto;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Mobile Styles - max-width: 768px */
@media (max-width: 768px) {
    .main-container {
        max-width: 100%;
        margin: 0;
        box-shadow: none;
    }
    
    .header-section {
        padding: 15px;
    }
    
    .main-content {
        padding: 15px;
    }
    
    .welcome-title {
        font-size: 22px;
    }
    
    .status-message {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 14px;
    }
    
    /* Application Actions Mobile */
    .application-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .action-btn {
        font-size: 12px;
        padding: 8px 10px;
        min-width: auto;
        width: 100%;
        border-radius: 4px;
    }

    .open-applications-section .application-actions.single-action .action-btn {
        margin: 0 0 30px auto;
        max-width: 120px;
    }
    .application-actions.single-action.center .action-btn{
    margin: auto;
    max-width: 140px;
    }
    
    .open-applications-section .section-title {
        margin-bottom: 20px;
        margin-top: 10px;
    }
    
    .make-application-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    /* Edit Application Mobile Styles */
    .page-header {
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .page-title {
        font-size: 18px;
    }
    
    .back-link {
        font-size: 18px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-section-title {
        font-size: 16px;
    }
    
    .form-field label {
        font-size: 12px;
    }
    
    .form-input-bar {
        height: 35px;
    }
    
    .progress-tracker {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 0;
    }
    
    .progress-tracker::before,
    .progress-tracker::after {
        display: none;
    }
    
    .progress-step {
        flex-direction: row;
        text-align: left;
        align-items: center;
        justify-content: flex-start;
    }
    
    .step-circle {
        margin-right: 12px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .step-label {
        max-width: none;
        font-size: 11px;
        text-align: left;
    }
    
    .main-navigation {
        flex-direction: column;
        gap: 8px;
    }
    
    .nav-item {
        margin-right: 0;
        justify-content: center;
        padding: 10px 15px;
        font-size: 10px;
        flex: 1;
    }
    
    .nav-buttons-group {
        gap: 17px;
        width: 100%;
    }
    
    .welcome-progress-container {
        padding: 20px 15px;
    }
    
    .welcome-section {
        margin-bottom: 20px;
    }
    
    .app-value {
        font-size: 8px;
    }
    
    .documents-section {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .document-section {
        margin-bottom: 20px;
    }
    
    .document-section-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .document-name {
        font-size: 12px;
    }
    
    .document-icon {
        font-size: 14px;
    }
    
    .documents-title {
        font-size: 14px;
    }
    
    .reviews-title {
        font-size: 14px;
    }
    
    .reviews-subtitle {
        font-size: 12px;
    }
    
    .footer {
        padding: 20px 15px;
    }
    
    .copyright {
        font-size: 12px;
    }
    
    .trustpilot-header {
        flex-direction: column;
        text-align: center;
    }
    
    .trustpilot-rating {
        text-align: center;
    }
    
    .documents-list {
        gap: 6px;
    }
    
    .document-item {
        padding: 10px 12px;
    }
    
    .product-cards-grid {
        gap: 15px;
        max-width: 100%;
    }
    
    .product-card {
        flex: 0 0 100%;
        padding: 20px 15px;
        min-height: 100px;
    }
    
    .product-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .product-name {
        font-size: 13px;
    }
    
    .trustpilot-widget {
        padding: 15px;
    }
    
    .applications-table th,
    .applications-table td {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .btn-view-applications {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .common-main-btn {
        font-size: 12px;
    }
    
    /* Change Car Page Mobile Styles */
    .change-car-content {
        gap: 20px;
    }
    .change-car-cta{
        margin: 0px;
        padding: 0px;
    }
    
    .car-card {
        flex: 0 0 calc(50% - 8px);
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .car-grid {
        gap: 15px;
    }
    
    .car-actions {
        gap: 12px;
        align-items: stretch;
    }
    
    
    

    
    .sort-container {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .sort-filter-container {
        width: 100%;
        justify-content: space-between;
    }
    
    /* Hero Banner Mobile */
    .hero-banner {
        height: 200px;
        margin-bottom: 15px;
    }
    
    .banner-title {
        font-size: 14px;
    
    }
    .banner-content{
        width: 90%;
    }
    
    /* Search Form Mobile */
    .search-form-card {
        padding: 20px;
        
    }
    
    .search-inputs {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-select {
        height: 45px;
        font-size: 14px;
    }
    
    .search-btn {
        height: 45px;
        font-size: 16px;
    }
    
    /* Quick Filters Mobile */
    .quick-filters {
        gap: 10px;
    }
    

    
    /* Modal Mobile Styles */
    .modal-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .modal-title {
        font-size: 20px;
        margin: 0 0 10px 0;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-message {
        font-size: 14px;
        margin: 0 auto 25px;
    }
    
    .modal-document-name {
        font-size: 24px;
        margin: 0 0 25px 0;
    }
    
    .vehicle-comparison {
        flex-direction: column;
        gap: 20px;
    }
    
    .vehicle-section {
        max-width: none;
        flex-wrap: wrap;
    }
    
    .vehicle-details {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .vehicle-label {
        width: 100%;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-actions .action-btn {
        width: 100%;
    }

    .application-actions.single-action .action-btn {
        max-width: 100%;
    }

    /* View Details Page Mobile Styles */
    .vehicle-showcase {
        flex-direction: column;
        gap: 20px;
    }

    .vehicle-info-area {
        padding-left: 0;
    }

    .vehicle-location {
        align-self: flex-start;
        margin-bottom: 10px;
    }

    .vehicle-details-title {
        font-size: 22px;
    }

    .vehicle-details-subtitle {
        font-size: 16px;
        margin: 0 0 20px 0;
    }

    .vehicle-image {
        height: 200px;
    }

    .vehicle-name {
        font-size: 18px;
    }

    .vehicle-model {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .vehicle-price {
        font-size: 24px;
    }

    .swap-btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    .swap-btn.full-width {
        font-size: 16px;
    }

    .swap-btn.full-width i {
        font-size: 16px;
    }

    .specifications-grid {
        flex-direction: column;
        gap: 10px;
    }

    .spec-item {
        padding: 12px 0px;
    }
    .dealership-info .dealership-logo {
        display: none;
    }
    .accordion-title {
        font-size: 16px;
    }

    .spec-label,
    .spec-value {
        font-size: 13px;
    }

    .open-applications-section:last-child .application-card {
        margin-bottom: 0;
    }
    
    /* New Application Card Mobile Styles */
    .application-card-new {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
        margin-bottom: 0;
    }
    
    .car-icon {
        width: 50px;
        height: 50px;
    }
    
    .car-icon i {
        font-size: 20px;
    }
    
    .application-info {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .info-column {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .info-column:last-child {
        border-bottom: none;
    }
    
    .info-label {
        font-size: 11px;
        margin-bottom: 0;
        flex: 1;
    }
    
    .info-value {
        font-size: 14px;
        flex: 1;
        text-align: right;
    }
    
    /* Status indicator mobile styles */
    .status-indicator {
        justify-content: flex-end;
        gap: 4px;
    }
    
    .status-dot {
        width: 6px;
        height: 6px;
    }
    
    .status-text {
        font-size: 14px;
    }
    
    /* Upload Page Mobile Styles */
    .upload-greeting {
        font-size: 22px;
    }

    .upload-subtitle{
        font-size: 14px;
    }
    
    .document-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .file-name{
        font-size: 12px;
        margin-left: 10px;
    }
    .file-info{
        justify-content: flex-start;
        gap: 0;
    }
    
    .upload-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .upload-btn {
        padding: 18px 25px;
        font-size: 14px;
    }

    .drag-drop-text{
        font-size: 12px;
    }
    
    .instructions-section {
        padding: 20px;
    }
    
    .note-title {
        font-size: 18px;
    }
    
    .instructions-list li {
        font-size: 14px;
    }
    
    /* File Management Mobile Styles */
    .uploaded-file-item {
        gap: 5px;
        padding: 15px;
        flex-wrap: wrap;
    }
    .file-controls{
        gap: 5px;
        width: 100%;
        justify-content: space-between;
    }
    .reorder-controls {
        flex-direction: row;
    }
    .drag-handle {
        padding-right: 3px;
    }
    

    

    
    .action-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .action-btn {
        padding: 15px;
        font-size: 14px;
    }
    
    .add-file-btn {
        background-color: #ffffff;
        color: #333333;
        border: 2px solid #333333;
    }
    
    .submit-btn {
        background-color: #004ea9;
        color: #ffffff;
        border: 2px solid #004ea9;
    }
    
    /* Help Page Mobile Styles */
    .help-title-section {
        margin-bottom: 30px;
        margin-top: 20px;
    }
    
    .help-title {
        font-size: 24px;
    }
    
    .help-subtitle {
        font-size: 16px;
    }
    
    .help-section {
        padding: 20px;
        margin-bottom: 60px;
    }
    
    .help-form .form-field {
        margin-bottom: 20px;
    }
    
    .help-form .form-field label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .help-form .form-input-bar,
    .help-form .form-textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .file-link {
        font-size: 13px;
    }
    
    .submit-btn {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
    }
    
    /* Your Details Page Mobile Styles */
    
    .placeholder-content {
        padding: 20px;
    }
    
    .placeholder-content p {
        font-size: 14px;
    }
    
    /* Your Details Form Mobile Styles */
    .form-section-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-section-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .update-btn {
        width: 100%;
    }
    .form-section-content.single-column .form-actions {
        margin-top: 0px;
    }
    .your-details-section {
        margin: 20px 0px 50px;
    }

    .take-photo-btn-mobile{
        display: flex;
    }
    .profile-tabs li {
        width: 31.49%;
        flex: initial;
    }
    .profile-tab-content{
        padding: 30px 20px;
    }

    .view-controls{
        display: none;
    }

    .car-grid.list-view .car-pricing {
        justify-content: space-between;
    }
    
    .car-grid.list-view .dealership-logo{
        display: none;
    }
    .car-grid.list-view .car-specs {
        font-size: 10px;
    }
    .car-grid.list-view .car-name {
        font-size: 16px;
    }
    .car-grid.list-view .car-price {
        font-size: 18px;
    }
    .car-grid.list-view .monthly-payment {
        font-size: 12px;
    }
    .nav-item i {
        font-size: 26px;
    }
    .logo-image {
    width: 120px;
}
.user-avatar {
font-size: 14px;
    width: 35px;
    height: 35px;}

   
.main-image-container{
    height: 240px;
}
.thumbnail-item{
    height: 80px;
}
.tooltip-text {
    font-size: 10px;
}
.filters-sidebar {
    left: 0;
    width: 100%;
}
body.hidden{
    overflow: hidden;
}


}


.error-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.error-content {
    max-width: 400px;
}

.error-content i {
    font-size: 48px;
    color: #dc3545;
    margin-bottom: 20px;
}

.error-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 15px 0;
}

.error-content p {
    font-size: 16px;
    color: #666666;
    margin: 0 0 25px 0;
    line-height: 1.5;
}

.error-content .btn {
    background-color: #004ea9;
    color: #ffffff;
    border: 2px solid #004ea9;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.error-content .btn:hover {
    background-color: #003d82;
    border-color: #003d82;
    color: #ffffff;
    text-decoration: none;
}

.no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    margin-left: 25%;
    text-align: center;
}

.no-results-content {
    max-width: 400px;
}

.no-results-content i {
    font-size: 48px;
    color: #999999;
    margin-bottom: 20px;
}

.no-results-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 15px 0;
}

.no-results-content p {
    font-size: 16px;
    color: #666666;
    margin: 0 0 25px 0;
    line-height: 1.5;
}

.no-results-content .btn {
    background-color: #004ea9;
    color: #ffffff;
    border: 2px solid #004ea9;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.no-results-content .btn:hover {
    background-color: #003d82;
    border-color: #003d82;
    color: #ffffff;
    text-decoration: none;
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
}

.pagination-info {
    font-size: 14px;
    color: #666666;
    margin: 0 20px;
}

.pagination-btn {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.pagination-btn:hover {
    border-color: #004ea9;
    color: #004ea9;
    background-color: #f8f9fa;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn.active {
    background-color: #004ea9;
    border-color: #004ea9;
    color: #ffffff;
}

/* Select2 Custom Styling */
.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--multiple {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    min-height: 45px;
    padding: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.filters-sidebar .select2-container--default .select2-selection--multiple {
    border: 1.5px solid #004ea9;
    margin: 5px;
    border-radius: 12px;
    min-height: 35px;
    padding: 0px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #004ea9;
    border: 1px solid #004ea9;
    color: #ffffff;
    border-radius: 4px;
    padding: 4px 8px;
    margin: 2px;
    font-size: 12px;
    font-weight: 500;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #ffffff!important;
    margin-right: 5px;
    font-weight: bold;
    padding: 0;
    position: static;
    border-right: 0;
    background: transparent!important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #ffcccc;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #999;
    font-style: italic;
}

.select2-container--default .select2-dropdown {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.select2-container--default .select2-results__option {
    padding: 8px 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #004ea9;
    color: #ffffff;
}

.select2-container--default .select2-search--inline .select2-search__field {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333;
    margin-top: 7px;
}

.select2-container--default .select2-selection--multiple:focus {
    border-color: #004ea9;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 78, 169, 0.2);
}

/* Mobile Responsive for Error States */
@media (max-width: 768px) {
    .error-state,
    .no-results {
        padding: 40px 15px;
        margin-left: 10%;
    }
    
    .error-content p,
    .no-results-content p {
        font-size: 14px;
    }
    
    .error-content h3,
    .no-results-content h3 {
        font-size: 20px;
    }
    
    .error-content i,
    .no-results-content i {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .pagination-container {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .pagination-info {
        margin: 0 10px;
        font-size: 12px;
    }
    
    .pagination-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* Very small screens - single column */
@media (max-width: 480px) {
    .car-card {
        flex: 0 0 100%;
    }
}
