/**
 * Vos Exclusive - Premium Lease Calculator
 * Refined, professional styling
 */

/* Calculator Container */
.lease-calculator-container {
    background: transparent;
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
}

/* Calculator Title */
.lease-calculator-title {
    font-size: 42px;
    font-weight: 400;
    font-family: 'VAA', Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #000000;
    margin: 0 0 60px 0;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Two Column Layout */
.lease-calculator-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Input Section - 2x2 Grid */
.lease-inputs-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px 40px;
}

.lease-input-group {
    margin-bottom: 0;
}

.lease-input-group.full-width {
    grid-column: 1 / -1;
}

/* Labels */
.lease-input-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    font-family: 'VAA', Arial, "Helvetica Neue", Helvetica, sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lease-input-label .info-icon {
    margin-left: 8px;
    color: #777;
    cursor: help;
    font-size: 14px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.lease-input-label .info-icon:hover {
    opacity: 1;
}

/* Input Fields */
.lease-input-field {
    width: 100%;
    padding: 18px 22px;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
    font-size: 18px;
    color: #000000;
    background: #c9c4b5;
    transition: all 0.3s ease;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 500;
}

.lease-input-field:focus {
    outline: none;
    border-bottom-color: #000000;
    background: #d3cec2;
}

.lease-input-field::placeholder {
    color: #888;
    font-weight: 400;
}

/* Slider Container */
.lease-slider-container {
    padding: 8px 0;
}

.lease-duration-display {
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 20px;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.lease-duration-display span {
    font-weight: 600;
}

/* Custom Slider - Minimal */
.custom-slider {
    position: relative;
    width: 100%;
    height: 32px;
    cursor: pointer;
    user-select: none;
}

.slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-50%);
}

.slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%;
    background: #000000;
    transition: width 0.2s ease;
}

.slider-thumb {
    position: absolute;
    top: 50%;
    left: 25%;
    width: 16px;
    height: 16px;
    background: #000000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: grab;
    transition: left 0.2s ease;
    z-index: 10;
}

.slider-thumb:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.slider-thumb:active,
.slider-thumb.dragging {
    cursor: grabbing;
}

/* Slider stop points */
.slider-stops {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.slider-stop {
    width: 30px;
    height: 100%;
    pointer-events: auto;
    cursor: pointer;
}

.lease-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}

.lease-slider-labels span {
    cursor: pointer;
    padding: 4px;
}

.lease-slider-labels span:hover {
    color: #000;
}

/* Result Container - Premium Card */
.lease-results-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.lease-result-container {
    padding: 60px 50px;
    text-align: center;
    background: #c9c4b5;
    position: relative;
}

.lease-result-label {
    font-size: 13px;
    color: #555;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lease-monthly-amount {
    font-size: 56px;
    font-weight: 400;
    font-family: 'VAA', Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #000000;
    margin: 0;
    letter-spacing: -1px;
    line-height: 1;
}

.lease-per-month {
    font-size: 15px;
    color: #555;
    margin-top: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Footer Note */
.lease-calculator-footer {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.lease-calculator-footer a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}

.lease-calculator-footer a:hover {
    text-decoration: underline;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .lease-calculator-content {
        gap: 60px;
    }
    
    .lease-monthly-amount {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .lease-calculator-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .lease-inputs-section {
        grid-template-columns: 1fr 1fr;
    }
    
    .lease-result-container {
        padding: 50px 40px;
    }
}

@media (max-width: 767px) {
    .lease-calculator-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .lease-inputs-section {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .lease-input-field {
        padding: 16px 18px;
        font-size: 16px;
    }
    
    .lease-result-container {
        padding: 40px 30px;
    }
    
    .lease-monthly-amount {
        font-size: 42px;
    }
    
    .lease-result-label {
        font-size: 12px;
    }
}
