* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f5f5f5;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 600px;
}

.form-wrapper {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-header {
    display: flex;
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.step-button {
    flex: 1;
    padding: 8px 12px;
    background: transparent;
    border: none;
    color: #0cc97a7a;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    margin: 0 5px;
    transition: all 0.3s;
    position: relative;
}

.step-button:hover:not(.active) {
    background: #f0f0f0;
}

.step-button.active {
    background: #0CC97A;
    color: white;
    font-weight: 600;
}

.step-button.completed {
    color: #28a745;
}

.form-content {
    padding: 20px;
}

.tabs {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
}

.tab-button {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: #666;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: -2px;
    transition: all 0.3s;
}

.tab-button.active {
    color: #007bff;
    border-bottom-color: #007bff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.location-section {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.location-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.location-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
}

.location-select,
.location-input,
.location-details,
.date-input,
.time-input,
.time-select {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
    width: 100%;
}

.location-select,
.time-select {
    background-color: white;
    cursor: pointer;
}

.location-select:focus,
.location-input:focus,
.location-details:focus,
.date-input:focus,
.time-input:focus,
.time-select:focus {
    outline: none;
    border-color: #007bff;
}

.location-input::placeholder,
.location-details::placeholder {
    color: #999;
}

.location-details {
    margin-top: 8px;
}

.baggage-section {
    margin: 25px 0;
}

.baggage-section h6 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.baggage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.baggage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.baggage-button {
    position: relative;
    width: 80px;
    height: 80px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    padding: 0;
}

.baggage-button:hover {
    border-color: #007bff;
    background: #f0f7ff;
}

.baggage-button img {
    width: 40px;
    height: 40px;
}

.baggage-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #007bff;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.baggage-count[data-count="0"] {
    display: none;
}

.baggage-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.decrement-btn,
.increment-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #333;
}

.decrement-btn:hover,
.increment-btn:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.decrement-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.decrement-btn:disabled:hover {
    background: white;
    color: #333;
    border-color: #ddd;
}

.baggage-label {
    text-align: center;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.baggage-label .price {
    font-weight: 600;
    color: #007bff;
}

.pricing-note {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    padding: 10px;
    background: #fff3cd;
    border-left: 3px solid #ffc107;
    border-radius: 4px;
}

.time-note {
    display: block;
    font-size: 11px;
    color: #dc3545;
    margin-top: 4px;
    font-weight: 500;
}

.time-note.out-of-hours {
    color: #856404;
    background: #fff3cd;
    padding: 4px 8px;
    border-radius: 3px;
    display: inline-block;
}

.transfer-note {
    font-size: 12px;
    color: #007bff;
    margin: 10px 0;
    padding: 10px;
    background: #e7f3ff;
    border-left: 3px solid #007bff;
    border-radius: 4px;
    font-weight: 500;
}

.total-section {
    margin: 25px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
    text-align: center;
}

.total-display {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.book-button {
    width: 100%;
    padding: 14px 24px;
    background: #FA0404;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.book-button:hover {
    background: #d80303;
}

.book-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Step Content */
.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

/* Personal Info Section */
.personal-info-section {
    margin: 20px 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #007bff;
}

.form-textarea {
    resize: vertical;
}

/* Step Navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.next-button,
.prev-button {
    padding: 14px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.next-button {
    background: rgb(139, 164, 218);
    color: white;
    margin-left: auto;
}

.next-button:hover {
    background: rgb(109, 134, 188);
}

.prev-button {
    background: rgb(255, 156, 199);
    color: white;
}

.prev-button:hover {
    background: rgb(235, 136, 179);
}

.next-button:disabled,
.prev-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Overview Section */
.overview-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.overview-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.overview-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.overview-item h4 {
    color: #007bff;
    margin-bottom: 10px;
    font-size: 16px;
}

.overview-item p {
    margin: 5px 0;
    color: #666;
}

.overview-item strong {
    color: #333;
    display: inline-block;
    min-width: 120px;
}

/* Payment Section */
.payment-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.payment-section h4 {
    color: #007bff;
    margin-bottom: 15px;
    font-size: 16px;
}

#paypal-button-container {
    margin: 15px 0;
}

.payment-note {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

.payment-status {
    padding: 10px;
    border-radius: 4px;
    margin: 10px 0;
    text-align: center;
    font-weight: 600;
}

.payment-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.payment-status.pending {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* Hidden verification field */
.contact-verification {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.contact-verification label,
.contact-verification input {
    display: none;
}

@media (max-width: 600px) {
    .location-section {
        flex-direction: column;
    }

    .baggage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

