.elementor-90 .elementor-element.elementor-element-2a0a607:not(.elementor-motion-effects-element-type-background), .elementor-90 .elementor-element.elementor-element-2a0a607 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-90 .elementor-element.elementor-element-2a0a607{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-90 .elementor-element.elementor-element-2a0a607 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-209d67e *//* =========================================
   LUXE ARRIVAL - QUOTE FORM CSS (FINAL)
========================================= */

.qtf-wrapper {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header */
.qtf-header-section {
    text-align: center;
    margin-bottom: 40px;
}
.qtf-subtitle {
    color: #c59b27;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}
.qtf-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin: 10px 0 0 0;
    font-weight: 600;
}
.qtf-gold-text {
    color: #c59b27;
}

/* Progress Tracker */
.qtf-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    width: 100%;
    margin-bottom: 40px;
}
.qtf-progress-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888888;
    transition: 0.3s;
}
.qtf-progress-item small {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}
.qtf-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: transparent;
}
.qtf-progress-item i {
    display: none; 
}
.qtf-progress-item.active {
    color: #c59b27;
}
.qtf-progress-item.active .qtf-circle {
    background-color: #c59b27;
    border-color: #c59b27;
    color: #0a0a0a;
}
.qtf-progress-item.active .qtf-circle .num {
    display: none; 
}
.qtf-progress-item.active .qtf-circle i {
    display: block;
}
.qtf-progress-line {
    flex-grow: 1;
    height: 1px;
    background-color: #2a2a2a;
    margin: 0 15px;
    max-width: 60px;
}

/* Form Container */
.qtf-form-container {
    background-color: #121212;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 40px;
    max-width: 750px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Steps */
.qtf-step {
    display: none;
    animation: fadeIn 0.4s ease;
}
.qtf-step.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.qtf-step-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin: 0 0 5px 0;
}
.qtf-step-header p {
    color: #888888;
    font-size: 14px;
    margin: 0 0 30px 0;
}

/* Inputs & Forms */
.qtf-grid {
    display: grid;
    gap: 20px;
}
.qtf-two-col { grid-template-columns: 1fr 1fr; }
.qtf-three-col { grid-template-columns: 1fr 1fr 1fr; }
.qtf-single-col { grid-template-columns: 1fr; }

.qtf-field label {
    display: block;
    color: #888888;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.qtf-field label i {
    margin-right: 5px;
}

.qtf-input-wrapper {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    height: 50px;
    transition: 0.3s;
}
.qtf-input-wrapper:focus-within {
    border-color: #c59b27;
}
.qtf-input-wrapper .qtf-icon {
    color: #c59b27;
    margin-right: 12px;
}

/* Fix for overlapping input boxes (Theme CSS Override) */
.qtf-input-wrapper input,
.qtf-input-wrapper textarea,
.qtf-input-wrapper select {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    color: #ffffff !important;
    width: 100% !important;
    font-size: 14px !important;
    font-family: 'Inter', sans-serif !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    line-height: normal !important;
}

.qtf-input-wrapper textarea {
    height: 100% !important;
    resize: none !important;
    padding-top: 15px !important;
}

/* Chrome/Edge date/time picker reset */
.qtf-input-wrapper input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.qtf-input-wrapper input[type="time"]::-webkit-datetime-edit-fields-wrapper {
    background: transparent !important;
    padding: 0 !important;
}

/* Select Styling - Fixed Padding & Dark Dropdown */
.qtf-select-wrapper {
    position: relative;
    padding: 0;
}
.qtf-select-wrapper select {
    appearance: none;
    padding-left: 16px !important; 
    padding-right: 40px !important;
    height: 100%;
    cursor: pointer;
}
.qtf-input-wrapper select option {
    background-color: #1a1a1a; 
    color: #ffffff; 
    padding: 10px; 
}
.qtf-select-icon {
    position: absolute;
    right: 16px;
    color: #888888;
    pointer-events: none;
}

/* Journey Type Buttons */
.qtf-journey-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.qtf-journey-btn {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #ffffff;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
}
.qtf-journey-btn:hover {
    border-color: #444444;
}
.qtf-journey-btn.active {
    background-color: #c59b27;
    border-color: #c59b27;
    color: #0a0a0a;
    font-weight: 500;
}

/* Buttons Area */
.qtf-buttons {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #2a2a2a;
    display: flex;
    gap: 15px;
}
.qtf-buttons-right { justify-content: flex-end; }
.qtf-buttons-split { justify-content: space-between; }

.qtf-btn {
    background-color: #c59b27;
    color: #0a0a0a;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}
.qtf-btn:hover {
    background-color: #e0b334;
}

.qtf-btn-outline {
    background: transparent;
    color: #c59b27;
    border: 1px solid #2a2a2a;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}
.qtf-btn-outline:hover {
    border-color: #c59b27;
    background: rgba(197, 155, 39, 0.05);
}

/* Vehicle Grid */
.qtf-vehicle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.qtf-vehicle-card {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}
.qtf-vehicle-card:hover {
    border-color: #444444;
    transform: translateY(-3px);
}
.qtf-vehicle-card.active {
    border-color: #c59b27;
    box-shadow: 0 0 15px rgba(197, 155, 39, 0.15);
}
.qtf-selected-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #c59b27;
    color: #0a0a0a;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    opacity: 0;
    transform: scale(0.8);
    transition: 0.3s;
    z-index: 2;
}
.qtf-vehicle-card.active .qtf-selected-badge {
    opacity: 1;
    transform: scale(1);
}
.qtf-vehicle-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #2a2a2a;
}
.qtf-vehicle-content {
    padding: 20px;
}
.qtf-vehicle-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 10px;
}
.qtf-spec {
    display: flex;
    gap: 15px;
    color: #888888;
    font-size: 13px;
    margin-bottom: 15px;
}
.qtf-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.qtf-feature-list li {
    font-size: 11px;
    color: #c59b27;
    border: 1px solid #2a2a2a;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Summary Box */
.qtf-summary-card {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 0 20px;
}
.qtf-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #2a2a2a;
}
.qtf-summary-item:last-child {
    border-bottom: none;
}
.qtf-summary-item.no-border {
    border-bottom: none;
    padding-bottom: 0;
}
.qtf-summary-item .label {
    color: #888888;
    font-size: 14px;
}
.qtf-summary-item .label i {
    width: 20px;
    color: #c59b27;
}
.qtf-summary-item .value {
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .qtf-progress-item small { display: none; }
    .qtf-grid.qtf-two-col, .qtf-grid.qtf-three-col, .qtf-vehicle-grid {
        grid-template-columns: 1fr;
    }
    .qtf-journey-types {
        grid-template-columns: 1fr 1fr;
    }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-97bf733 */.qtf-hidden-cf7{

display:none;

}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-2a0a607 *//*==============================
Quote Form Base
==============================*/

.qtf-wrapper{
    max-width:1200px;
    margin:60px auto;
    background:#0f0f0f;
    border-radius:22px;
    overflow:hidden;
    color:#fff;
    font-family:inherit;
    box-shadow:0 15px 60px rgba(0,0,0,.25);
}

.qtf-form{
    padding:50px;
}

.qtf-step{
    display:none;
}

.qtf-step.active{
    display:block;
}

.qtf-step h2{
    margin-bottom:35px;
    font-size:34px;
    font-weight:700;
}

.qtf-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
}

.qtf-field{
    display:flex;
    flex-direction:column;
}

.qtf-field label{
    margin-bottom:10px;
    font-size:14px;
    color:#d2d2d2;
}

.qtf-field input,
.qtf-field select{

    width:100%;

    height:56px;

    border:none;

    border-radius:12px;

    background:#1c1c1c;

    color:#fff;

    padding:0 18px;

    font-size:16px;

    outline:none;

    transition:.25s;
}

.qtf-field input:focus,
.qtf-field select:focus{

    background:#262626;

    box-shadow:0 0 0 2px #c8a86b;

}

.qtf-buttons{

    display:flex;

    justify-content:flex-end;

    margin-top:40px;

}

.qtf-btn{

    background:#c8a86b;

    color:#111;

    border:none;

    border-radius:10px;

    padding:15px 34px;

    cursor:pointer;

    font-size:16px;

    font-weight:700;

    transition:.25s;

}

.qtf-btn:hover{

    transform:translateY(-2px);

}

@media(max-width:768px){

.qtf-form{

padding:25px;

}

.qtf-grid{

grid-template-columns:1fr;

}

.qtf-step h2{

font-size:28px;

}

}/* End custom CSS */