/* H&H Booking Wizard Styles - Matching HTML Design */

/* Base Styles */
.hnh-booking-wizard {
    font-family: 'Inter', sans-serif;
    width: 100%;
    color: #0F172A;
}

.hnh-booking-wizard * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Container */
.hnh-booking-wizard-container {
    max-width: 1024px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 20px 60px -15px rgba(0,0,0,0.1);
    border: 1px solid #F1F5F9;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Decoration */
.hnh-wizard-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #C9A227, #FBBF24, #C9A227);
    z-index: 1;
}

/* Header */
.hnh-wizard-header {
    padding: 24px 32px;
    border-bottom: 1px solid #F1F5F9;
    background: #FFFFFF;
}

.hnh-wizard-title-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.hnh-wizard-title {
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 1.2;
}

.hnh-wizard-step-indicator {
    font-size: 11px;
    font-weight: 700;
    color: #C9A227;
    background: rgba(201, 162, 39, 0.1);
    padding: 6px 12px;
    border-radius: 999px;
    display: inline-block;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hnh-wizard-subtitle {
    color: #64748B;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    line-height: 1.5;
}

/* Progress Bar */
.hnh-progress-bar-container {
    width: 100%;
    background: #F1F5F9;
    height: 6px;
    border-radius: 999px;
    margin-top: 20px;
    overflow: hidden;
}

.hnh-progress-bar {
    height: 100%;
    background: #0F172A;
    transition: width 0.5s ease;
}

/* Form Step Content */
.hnh-form-step-content {
    padding: 32px;
    animation: hnhFadeInUp 0.6s ease-out forwards;
}

@keyframes hnhFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Grid */
.hnh-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hnh-form-group {
    margin-bottom: 0;
}

.hnh-full-width {
    grid-column: span 2;
}

/* Form Labels */
.hnh-form-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    margin-left: 4px;
}

/* Input Wrappers */
.hnh-input-wrapper {
    position: relative;
    width: 100%;
}

.hnh-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
    transition: color 0.2s;
    z-index: 1;
    font-size: 16px;
}

.hnh-input-wrapper:focus-within .hnh-input-icon {
    color: #C9A227;
}

/* Form Inputs */
.hnh-form-input,
.hnh-form-select {
    width: 100%;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 14px 14px 14px 48px;
    font-size: 14px;
    color: #0F172A;
    font-weight: 500;
    transition: all 0.2s;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.hnh-form-input:hover,
.hnh-form-select:hover {
    background: #FFFFFF;
}

.hnh-form-input:focus,
.hnh-form-select:focus {
    outline: none;
    border-color: #C9A227;
    box-shadow: 0 0 0 1px #C9A227;
    background: #FFFFFF;
}

.hnh-form-input::placeholder {
    color: #94A3B8;
    font-weight: 400;
}

/* Select Wrapper */
.hnh-select-wrapper {
    position: relative;
}

.hnh-select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
    pointer-events: none;
    font-size: 12px;
}

/* Counter Section */
.hnh-counter-section {
    background: #F8FAFC;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #E2E8F0;
    margin-bottom: 24px;
}

.hnh-counter-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.hnh-counter-item:last-child {
    margin-bottom: 0;
}

.hnh-counter-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hnh-counter-label i {
    color: #C9A227;
    width: 20px;
    font-size: 16px;
}

.hnh-counter-label h3 {
    font-weight: 700;
    color: #0F172A;
    font-size: 16px;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.hnh-counter-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 999px;
    padding: 4px;
}

.hnh-counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: #64748B;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    font-size: 12px;
}

.hnh-counter-btn:hover {
    background: #F1F5F9;
}

.hnh-counter-value {
    font-weight: 700;
    color: #0F172A;
    min-width: 16px;
    text-align: center;
    font-size: 14px;
}

/* Luggage Grid */
.hnh-luggage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.hnh-luggage-item {
    background: #F8FAFC;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hnh-luggage-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hnh-luggage-icon {
    width: 32px;
    height: 32px;
    background: #FFFFFF;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    font-size: 14px;
}

.hnh-luggage-text h4 {
    font-weight: 700;
    color: #0F172A;
    font-size: 14px;
    margin: 0 0 2px 0;
    font-family: 'Poppins', sans-serif;
}

.hnh-luggage-text p {
    font-size: 10px;
    color: #64748B;
    margin: 0;
}

.hnh-luggage-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 999px;
    padding: 2px;
}

.hnh-luggage-btn {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: #64748B;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: background 0.2s;
}

.hnh-luggage-btn:hover {
    background: #F1F5F9;
}

.hnh-luggage-value {
    font-weight: 700;
    color: #0F172A;
    min-width: 12px;
    text-align: center;
    font-size: 12px;
}

/* Requirements Grid */
.hnh-requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.hnh-requirement-item {
    background: #F8FAFC;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.hnh-requirement-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    margin-left: 4px;
}

.hnh-requirement-select,
.hnh-requirement-input {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    color: #0F172A;
    font-family: 'Inter', sans-serif;
}

.hnh-requirement-select:focus,
.hnh-requirement-input:focus {
    outline: none;
    border-color: #C9A227;
}

/* Buttons */
.hnh-button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    gap: 12px;
}

.hnh-button-group-end {
    justify-content: flex-end;
}

.hnh-btn {
    padding: 16px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    line-height: 1;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.hnh-btn-primary {
    background: #0F172A;
    color: #FFFFFF;
}

.hnh-btn-primary:hover {
    background: #1E293B;
}

.hnh-btn-secondary {
    background: #F1F5F9;
    color: #0F172A;
}

.hnh-btn-secondary:hover {
    background: #E2E8F0;
}

.hnh-btn-whatsapp {
    background: #25D366;
    color: #FFFFFF;
}

.hnh-btn-whatsapp:hover {
    background: #20B958;
}

/* Car Cards */
.hnh-car-results {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
    margin-bottom: 16px;
}

.hnh-car-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s;
}

@media (min-width: 640px) {
    .hnh-car-card {
        flex-direction: row;
        align-items: center;
    }
}

.hnh-car-card:hover {
    border-color: #C9A227;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.hnh-car-image {
    width: 100%;
    height: 96px;
    object-fit: cover;
    object-position: center;
    background: #F1F5F9;
    border-radius: 12px;
}

@media (min-width: 640px) {
    .hnh-car-image {
        width: 128px;
        flex-shrink: 0;
    }
}

.hnh-car-content {
    flex-grow: 1;
    text-align: center;
}

@media (min-width: 640px) {
    .hnh-car-content {
        text-align: left;
    }
}

.hnh-car-name {
    font-weight: 700;
    color: #0F172A;
    font-size: 18px;
    margin: 0 0 4px 0;
    font-family: 'Poppins', sans-serif;
}

.hnh-car-model {
    font-size: 11px;
    color: #C9A227;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.hnh-car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

@media (min-width: 640px) {
    .hnh-car-specs {
        justify-content: flex-start;
    }
}

.hnh-car-spec {
    background: #F8FAFC;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #F1F5F9;
    font-size: 10px;
    color: #64748B;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.hnh-car-spec i {
    color: #0F172A;
    font-size: 10px;
}

.hnh-car-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .hnh-car-action {
        width: auto;
        align-items: flex-end;
    }
}

.hnh-car-price {
    font-weight: 700;
    color: #0F172A;
    font-size: 14px;
}

.hnh-car-select-btn {
    width: 100%;
    background: #25D366;
    color: #FFFFFF;
    padding: 10px 24px;
    border-radius: 999px;
    border: none;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
    font-family: 'Poppins', sans-serif;
}

@media (min-width: 640px) {
    .hnh-car-select-btn {
        width: auto;
    }
}

.hnh-car-select-btn:hover {
    background: #20B958;
}

.hnh-car-details-link {
    font-size: 10px;
    color: #94A3B8;
    text-decoration: underline;
    transition: color 0.2s;
}

.hnh-car-details-link:hover {
    color: #C9A227;
}

/* No Cars Message */
.hnh-no-cars-message {
    text-align: center;
    padding: 40px 20px;
}

.hnh-no-cars-icon {
    width: 64px;
    height: 64px;
    background: #F1F5F9;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: 24px;
    margin: 0 auto 16px auto;
}

.hnh-no-cars-title {
    font-weight: 700;
    color: #0F172A;
    font-size: 18px;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.hnh-no-cars-text {
    color: #64748B;
    font-size: 14px;
    max-width: 400px;
    margin: 0 auto 24px auto;
    line-height: 1.6;
}

/* Utility Classes */
.hnh-pt-4 {
    padding-top: 16px;
}

.hnh-border-t {
    border-top: 1px solid #F1F5F9;
}

/* Scrollbar Styling */
.hnh-car-results::-webkit-scrollbar {
    width: 4px;
}

.hnh-car-results::-webkit-scrollbar-track {
    background: #F1F5F9;
    border-radius: 4px;
}

.hnh-car-results::-webkit-scrollbar-thumb {
    background: #C9A227;
    border-radius: 4px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hnh-wizard-header {
        padding: 20px 16px;
    }
    
    .hnh-form-step-content {
        padding: 20px 16px;
    }
    
    .hnh-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hnh-full-width {
        grid-column: span 1;
    }
    
    .hnh-wizard-title {
        font-size: 20px;
    }
    
    .hnh-luggage-grid {
        grid-template-columns: 1fr;
    }
    
    .hnh-requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .hnh-button-group {
        flex-direction: column-reverse;
    }
    
    .hnh-button-group .hnh-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hnh-counter-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .hnh-counter-controls {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .hnh-wizard-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hnh-car-card {
        padding: 12px;
    }
    
    .hnh-car-name {
        font-size: 16px;
    }
    
    .hnh-car-specs {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hnh-car-spec {
        width: 100%;
    }
}