/* components.css - Genbrugelige komponenter */

/* Step titles */
.step-title,
.step-title-book-airport,
.step-title-book {
    background-color: #08605F;
    padding: 15px;
    margin-bottom: 10px;
    height: auto;
    min-height: 50px;
    border-radius: 5px;
    font-family: 'Barlow' !important;
    width: 100%;
    color: #ffffff;
    display: flex;
    align-items: center;
    position: relative;
}

/* Base styles for all text in titles */
.step-title,
.step-title-book-airport,
.step-title-book {
    text-transform: none;
    font-weight: normal;
    font-size: 1rem;
}

/* Style for the text before the dash */
.step-title::before,
.step-title-book-airport::before,
.step-title-book::before {
    content: attr(data-main-title);
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 6px;
}

/* Style for the dash and text after it */
.step-title::after,
.step-title-book-airport::after,
.step-title-book::after {
    content: attr(data-subtitle);
    font-size: 0.9rem;
    font-weight: normal;
}

.booking-header {
    background-color: #08605F;
    padding: 15px;
    margin-bottom: 15px;
    height: auto;
    min-height: 50px;
    border-radius: 5px !important;
    font-family: 'Barlow' !important;
    width: 100%;
    color: #ffffff;
    display: flex;
    align-items: center;
    position: relative;
}

/* Content sections for steps after step 1 */
.travel-dates-inner-section {
    background-color: #ffffff;
    margin-top: 10px;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    min-height: 270px;
    color: #091924;
    font-family: 'Barlow' !important;
}

/* Form styling */
.form-field {
    display: flex;
    flex-direction: column;
    font-family: 'Barlow' !important;
}

.form-field label {
    margin-bottom: 5px;
    font-weight: 500;
    font-family: 'Barlow' !important;
}

.form-field input,
.form-field select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Barlow' !important;
}

.form-field input.error,
.form-field select.error {
    border-color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.05);
}

.form-field input:focus,
.form-field select:focus {
    border-color: #08605F;
    outline: none;
}

/* Navigation buttons */
.step-navigation {
    text-align: right;
    margin-top: 30px;
    width: 100%;
    clear: both;
}

.next-step {
    background-color: #08605F;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-family: 'Barlow' !important;
    font-weight: bold !important;
}
.prev-step {
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-family: 'Barlow' !important;
    font-weight: bold !important;
}


.next-step:hover {
    background-color: #025b4e;
}

.next-step.disabled {
    background-color: #cccccc !important;
    color: #666666 !important;
    cursor: not-allowed !important;
    opacity: 0.7 !important;
    pointer-events: none;
}

.next-step.disabled:hover {
    background-color: #cccccc !important;
    transform: none !important;
    box-shadow: none !important;
}


/* Loading states */
.loading,
.error {
    text-align: center;
    padding: 20px;
    color: #6c8690;
    font-family: 'Barlow' !important;
}

.error {
    color: #dc3545;
    background: #f8d7da;
    border-radius: 8px;
    margin: 20px 0;
}

/* Info text styling */
.info-text-black {
    font-size: 0.9rem;
    color: #333333;
    font-weight: bold;
    margin-bottom: 10px;
    word-wrap: break-word;
    white-space: normal;
    font-family: 'Barlow' !important;
}
.info-text-light {
    font-size: 0.9rem;
    color: #000000;
    margin-bottom: 10px;
    word-wrap: break-word;
    white-space: normal;
    font-family: 'Barlow' !important;
}
.max-travel-info-text {
    font-size: 0.9rem;
    color: #000000;
    margin-bottom: 10px;
    word-wrap: break-word;
    white-space: normal;
    font-family: 'Barlow' !important;
}

/* Checkbox styling */
.selection-checkbox {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 10;
}

.selection-checkbox input[type="checkbox"] {
    display: none;
}

.selection-checkbox .checkbox-visual {
    width: 24px;
    height: 24px;
    border: 2px solid #08605F;
    border-radius: 4px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.selection-checkbox .checkbox-visual:hover {
    background-color: rgba(8, 96, 95, 0.1);
    transform: scale(1.1);
}

.selection-checkbox input[type="checkbox"]:checked+.checkbox-visual {
    background-color: #08605F;
    border-color: #08605F;
}

.selection-checkbox .checkmark {
    color: #ffffff;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.selection-checkbox input[type="checkbox"]:checked+.checkbox-visual .checkmark {
    opacity: 1;
}

/* Traveler form styling - Horizontal layout */
.traveler-form-header {
    display: grid;
    grid-template-columns: 232px 1fr 237px;
    gap: 20px;
    margin-bottom: 10px;
    font-family: 'Barlow' !important;
}

.header-label {
    color: #000;
    font-size: 15px;
    font-style: normal;
    font-weight: 800 !important;
    line-height: normal;
    font-family: 'Barlow' !important;
}

.traveler-form-row {
    display: grid;
    grid-template-columns: 232px 1fr 237px;
    gap: 20px;
    margin-bottom: 20px;
    font-family: 'Barlow' !important;
}

/* Name field styling */
.traveler-name-input {
    width: 232px;
    height: 50px;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #08605F;
    font-size: 14px;
    font-family: 'Barlow' !important;
    background-color: #ffffff;
    box-sizing: border-box;
    color: #091924;
}

/* Birthday fields container */
.birthday-fields-container {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.birthday-fields-container select {
    width: 135px;
    height: 50px;
    padding: 12px 35px 12px 15px;
    border-radius: 5px;
    border: 1px solid #08605F;
    font-size: 14px;
    font-family: 'Barlow' !important;
    background-color: #ffffff;
    cursor: pointer;
    appearance: auto;
    box-sizing: border-box;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #091924;
}

/* Email field styling */
.traveler-email-input {
    width: 237px;
    height: 50px;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #08605F;
    font-size: 14px;
    font-family: 'Barlow' !important;
    background-color: #ffffff;
    box-sizing: border-box;
    color: #091924;
}

/* Focus states */
.traveler-name-input:focus,
.birthday-fields-container select:focus,
.traveler-email-input:focus {
    outline: none;
    border-color: #08605F;
    box-shadow: 0 0 0 2px rgba(8, 96, 95, 0.2);
}

/* Error states */
.traveler-name-input.error,
.birthday-fields-container select.error,
.traveler-email-input.error {
    border-color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.05);
}

/* Traveler spacing */
.traveler-spacing {
    height: 30px;
}

/* Notice section styling */
.traveler-notice-section {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 60px; /* Extra space for sticky cart */
    font-family: 'Barlow' !important;
}

.traveler-notice-section p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #091924;
    font-family: 'Barlow' !important;
}

.traveler-notice-section strong {
    font-weight: 700;
    color: #091924;
}

/* Responsive styles for mobile */
@media (max-width: 768px) {

    .traveler-form-header,
    .traveler-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .traveler-name-input {
        width: 100%;
    }

    .birthday-fields-container {
        width: 100%;
        justify-content: space-between;
    }

    .birthday-fields-container select {
        width: calc(33.333% - 7px);
    }

    .traveler-email-input {
        width: 100%;
    }

    .header-label {
        margin-bottom: 5px;
        font-weight: 600;
    }

    .travelers-info-container {
        padding: 0px;
    }
}

/* Placeholder styling */
.traveler-name-input::placeholder,
.traveler-email-input::placeholder {
    color: #999;
    opacity: 1;
}

/* Price tags */
.price-tag {
    color: #000000;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 5px;
    font-weight: 800;
    margin-top: 10px;
    transition: all 0.2s ease;
    font-family: 'Barlow' !important;
}
.included-tag {
    color: #000000 !important;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    transition: all 0.2s ease;
    font-family: 'Barlow' !important;
}

/* Seat Selection Styling */
.seat-selection-section {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
}

.seat-options {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-top: 10px;
}

.seat-option {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 40px;
}

/* Unselected state */
.seat-option {
    border: 1px solid #08605F;
    background: #FFF;
    color: #000;
}

/* Selected state */
.seat-option.selected {
    background: #08605F;
    color: #FFF;
    border: 1px solid #08605F;
}

.seat-option:last-child {
    margin-bottom: 0;
}

/* Checkbox styling */
.seat-checkbox {
    position: relative;
    margin-right: 15px;
}

.seat-checkbox input[type="radio"] {
    display: none;
}

.seat-checkbox .checkbox-visual {
    width: 20px;
    height: 20px;
    border: 2px solid #08605F;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.seat-option.selected .seat-checkbox .checkbox-visual {
    background-color: #ffffff;
    border-color: #ffffff;
}

.seat-checkbox .checkmark {
    color: #08605F;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.seat-option.selected .seat-checkbox .checkmark {
    opacity: 1;
}

/* Label styling */
.seat-label {
    flex: 1;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    font-family: 'Barlow' !important;
}

.seat-option.selected .seat-label {
    color: #FFF;
}

/* Price styling */
.seat-price {
    font-size: 14px;
    font-weight: 600;
    margin-left: 15px;
    font-family: 'Barlow' !important;
}

.seat-option.selected .seat-price {
    color: #FFF;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .seat-option {
        flex-wrap: wrap;
        padding: 12px 15px;
    }

    .seat-label {
        font-size: 13px;
        margin-bottom: 5px;
        width: calc(100% - 35px);
    }

    .seat-price {
        font-size: 12px;
        width: 100%;
        margin-left: 35px;
        margin-top: 5px;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .seat-option {
        flex-wrap: wrap;
        padding: 12px 15px;
    }

    .seat-label {
        font-size: 13px;
        margin-bottom: 5px;
        width: calc(100% - 35px);
    }

    .seat-price {
        font-size: 12px;
        width: 100%;
        margin-left: 35px;
        margin-top: 5px;
    }
}

/* Guarantee Selection Styling */
.guarantee-selection-section {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
}

.guarantee-options {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-top: 10px;
}

.guarantee-option {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 40px;
    background: #08605F;
    color: #FFF;
    border: 1px solid #08605F;
}

.guarantee-option:last-child {
    margin-bottom: 0;
}

/* Checkbox styling */
.guarantee-checkbox {
    position: relative;
    margin-right: 15px;
}

.guarantee-checkbox input[type="radio"] {
    display: none;
}

.guarantee-checkbox .checkbox-visual {
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.guarantee-checkbox .checkmark {
    color: #08605F;
    font-size: 14px;
    font-weight: bold;
    opacity: 1;
    transition: opacity 0.2s ease;
}

/* Label styling */
.guarantee-label {
    flex: 1;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: default;
    font-family: 'Barlow' !important;
    color: #FFF;
}

/* Price styling */
.guarantee-price {
    font-size: 14px;
    font-weight: 600;
    margin-left: 15px;
    font-family: 'Barlow' !important;
    color: #FFF;
}

/* Date Selection Container */
.date-selection-container {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

/* Date Section */
.date-section {
    flex: 1;
    min-width: 280px;
    text-align: center;
}
body .date-section-title {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    color: #091924 !important;
    margin-bottom: 25px !important;
    font-family: 'Barlow' !important;
    text-transform: uppercase !important;
}

.date-section-title svg {
    color: #08605F;
}

/* Date Cards Container */
.date-cards {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Individual Date Card */
.date-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 140px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.date-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: #08605F;
}

.date-card.selected {
    background: #08605F;
    border-color: #08605F;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(8, 96, 95, 0.3);
}


.date-card-inner {
    padding: 20px 15px;
    text-align: center;
    position: relative;
}

.date-day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    color: inherit;
}

.date-month {
    font-size: 1rem;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
    color: inherit;
}

.date-weekday {
    font-size: 0.85rem;
    color: inherit;
    opacity: 0.8;
    text-transform: capitalize;
}

.date-card.selected .date-day,
.date-card.selected .date-month,
.date-card.selected .date-weekday {
    color: #ffffff;
}

/* Date Badge */
.date-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #08605F;
    color: #ffffff;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.date-card.selected .date-badge {
    color: #08605F;
}
.date-card.recommended:not(.selected) {
    border-color: #08605F;
}

.date-card.recommended:not(.selected) .date-badge {
    background: #08605F;
}

/* Flow Arrow */
.date-flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

/* Selected Period Summary */
.selected-period-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.period-display {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .period-display {
        display: block;
        gap: 0;
    }
}

.period-label {
    font-weight: 600;
    color: #091924;
}

.period-dates {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #08605F;
}

.period-separator {
    color: #666;
    font-weight: 400;
}

.period-duration {
    color: #666;
    font-size: 0.95rem;
}

.price-adjustment-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.adjustment-label {
    color: #666;
}

.adjustment-amount {
    font-weight: 700;
    color: #08605F;
    font-size: 1.2rem;
}

.adjustment-amount.negative {
    color: #28a745;
}

/* Responsive Design */
@media (max-width: 768px) {
    .date-selection-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .date-flow-arrow {
        transform: rotate(90deg);
        margin: -10px 0;
    }
    
    .date-cards {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        display: block;
    }
    
    .date-card {
        min-width: 120px;
    }
    
    .selected-period-summary {
        flex-direction: column;
        text-align: center;
    }
}

/* Loading state for date cards */
.date-cards.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Animation for selection */
@keyframes selectPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.05);
    }
}

.date-card.selecting {
    animation: selectPulse 0.3s ease-out;
}

.guarantee-info-button {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Barlow' !important;
    cursor: pointer;
}

.guarantee-info-button strong {
    font-weight: 900;
}

/* Mobile responsiveness for guarantee */
@media (max-width: 768px) {
    .guarantee-option {
        flex-wrap: wrap;
        padding: 12px 15px;
    }

    .guarantee-label {
        font-size: 13px;
        margin-bottom: 5px;
        width: calc(100% - 35px);
    }

    .guarantee-price {
        font-size: 12px;
        width: 100%;
        margin-left: 35px;
        margin-top: 5px;
    }

    .guarantee-notice-section {
        padding: 15px;
    }

    .guarantee-info-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}
/* Custom Booking Form Inline Styling */
.custom-booking-form-wrapper {
    margin-top: 20px;
    width: 100%;
}

.custom-booking-form-container {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 30px;
    font-family: 'Barlow' !important;
}

.custom-booking-form-container .form-header {
    margin-bottom: 25px;
    text-align: center;
}

body .custom-booking-form-container .form-header h3 {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    color: hsl(204, 60%, 9%) !important;
    margin-bottom: 10px !important;
    font-family: 'Barlow' !important;
}

body .custom-booking-form-container .form-header p {
    font-size: 0.95rem !important;
    color: #000000 !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

.custom-booking-form-container .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.custom-booking-form-container .form-group {
    display: flex;
    flex-direction: column;
}

.custom-booking-form-container .form-group.full-width {
    grid-column: 1 / -1;
}

.custom-booking-form-container .form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Barlow' !important;
}

.custom-booking-form-container .form-group input,
.custom-booking-form-container .form-group select,
.custom-booking-form-container .form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Barlow' !important;
    background-color: #ffffff;
    color: #091924;
    transition: all 0.2s ease;
    width: 100%;
}
/* Payment selection uses same styling as seat selection */
.payment-selection-section {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
}

.payment-options.seat-options {
    /* Inherits all styling from seat-options */
}
.custom-booking-form-container .form-group input::placeholder,
.custom-booking-form-container .form-group textarea::placeholder {
    color: #999;
    opacity: 1;
}

.custom-booking-form-container .form-group input:focus,
.custom-booking-form-container .form-group select:focus,
.custom-booking-form-container .form-group textarea:focus {
    outline: none;
    border-color: #08605F;
    box-shadow: 0 0 0 3px rgba(8, 96, 95, 0.1);
}

.custom-booking-form-container .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.custom-booking-form-container .form-actions {
    text-align: center;
    margin-top: 25px;
}

.custom-booking-form-container .submit-request-btn {
    background-color: #08605F;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Barlow' !important;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 250px;
}

.custom-booking-form-container .submit-request-btn:hover:not(:disabled) {
    background-color: #025b4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 96, 95, 0.3);
}

.custom-booking-form-container .submit-request-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #cccccc;
}

/* Success message styling */
.form-success-message {
    text-align: center;
    padding: 40px 20px;
}

.form-success-message .success-icon {
    margin-bottom: 20px;
}

.form-success-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #08605F;
    margin-bottom: 15px;
    font-family: 'Barlow' !important;
}

.form-success-message p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
    font-family: 'Barlow' !important;
}

.form-success-message .success-info {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .custom-booking-form-container {
        padding: 20px;
    }
    
    .custom-booking-form-container .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .custom-booking-form-container .form-header h3 {
        font-size: 1.1rem;
    }
    
    .custom-booking-form-container .form-header p {
        font-size: 0.9rem;
    }
    
    .custom-booking-form-container .submit-request-btn {
        width: 100%;
        min-width: auto;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Animation for form appearance */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-booking-form-wrapper {
    animation: slideDown 0.3s ease-out;
}
@media (max-width: 767px) {
    .progress-step.completed[data-step="2"][data-mobile-text="Datoer"] {
      display: none !important;
    }
  }
  @media (max-width: 767px) {
    .progress-step[data-step="2"][data-mobile-text="Datoer"] {
      display: none !important;
    }
  }

/* ========================================== */
/* NYE Mobile Step 6 Klasser fra fil 2 */
/* ========================================== */

/* Mobile-specific Step 6 nye klasser */
@media (max-width: 768px) {
    
    /* Individual Traveler Cards - NY */
    .traveler-card {
        border-radius: 12px;
        margin-bottom: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .traveler-card.collapsed {
        box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    }
    
    /* Traveler Card Header - NY */
    .traveler-card-header {
        background: linear-gradient(135deg, #08605F 0%, #0a706f 100%);
        color: #ffffff;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        position: relative;
    }
    
    .traveler-card-header:active {
        background: linear-gradient(135deg, #065755 0%, #08605F 100%);
    }
    
    .traveler-card-title {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;
    }
    
    .traveler-number {
        background: rgba(255,255,255,0.2);
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 14px;
    }
    
    .traveler-label {
        font-size: 16px;
        font-weight: 600;
    }
    
    .traveler-summary {
        font-size: 12px;
        opacity: 0.9;
        margin-top: 2px;
        font-weight: 400;
    }
    
    /* Expand/Collapse Icon - NY */
    .traveler-expand-icon {
        width: 24px;
        height: 24px;
        transition: transform 0.3s ease;
    }
    
    .traveler-expand-icon svg {
        width: 100%;
        height: 100%;
        stroke: #ffffff;
        stroke-width: 2;
    }
    
    .traveler-card.collapsed .traveler-expand-icon {
        transform: rotate(180deg);
    }
    
    /* Traveler Card Body - NY */
    .traveler-card-body {
        padding: 20px 15px;
        background: #ffffff;
        max-height: 500px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .traveler-card.collapsed .traveler-card-body {
        max-height: 0;
        padding: 0 15px;
    }
    
    /* Form Field Mobile Styling - NY */
    .mobile-form-field {
        margin-bottom: 20px;
    }
    
    .mobile-form-label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
        font-family: 'Barlow';
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .mobile-form-label .required-star {
        color: #dc3545;
        margin-left: 3px;
    }
    
    .mobile-form-label .optional-text {
        font-weight: 400;
        opacity: 0.7;
        text-transform: none;
        letter-spacing: normal;
        font-size: 12px;
    }
    
    /* Enhanced Mobile Input Fields - NY */
    .mobile-input {
        width: 100%;
        height: 52px;
        padding: 14px 16px;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        font-size: 16px; /* Prevents zoom on iOS */
        font-family: 'Barlow';
        background: #ffffff;
        transition: all 0.2s ease;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        box-shadow: none;
    }
    
    .mobile-input:focus {
        border-color: #08605F;
        outline: none;
        box-shadow: 0 0 0 3px rgba(8, 96, 95, 0.1);
        background: #ffffff;
    }
    
    .mobile-input:disabled {
        background: #f5f5f5;
        opacity: 0.7;
    }
    
    .mobile-input.error {
        border-color: #dc3545;
        background: rgba(220, 53, 69, 0.03);
    }
    
    .mobile-input.error:focus {
        box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
    }
    
    /* Birthday Date Picker Container - NY */
    .birthday-date-container {
        position: relative;
    }
    
    /* Native Date Input for Mobile - NY */
    .mobile-date-input {
        width: 100%;
        height: 52px;
        padding: 14px 16px;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        font-size: 16px;
        font-family: 'Barlow';
        background: #ffffff;
        transition: all 0.2s ease;
        -webkit-appearance: none;
    }
    
    /* Date input icon */
    .mobile-date-input::-webkit-calendar-picker-indicator {
        background: transparent;
        cursor: pointer;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        opacity: 0.6;
    }
    
    /* Better Select Dropdowns for Birthday (fallback) - NY */
    .mobile-birthday-selects {
        display: grid;
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 8px;
    }
    
    .mobile-select {
        height: 52px;
        padding: 14px 12px;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        font-size: 15px;
        font-family: 'Barlow';
        background: #ffffff;
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 12px;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        cursor: pointer;
        transition: all 0.2s ease;
        color:black;
    }
    
    .mobile-select:focus {
        border-color: #08605F;
        outline: none;
        box-shadow: 0 0 0 3px rgba(8, 96, 95, 0.1);
    }
    
    .mobile-select.error {
        border-color: #dc3545;
        background-color: rgba(220, 53, 69, 0.03);
    }
    
    /* Validation Feedback - NY */
    .field-error-message {
        color: #dc3545;
        font-size: 12px;
        margin-top: 6px;
        display: flex;
        align-items: center;
        gap: 4px;
        animation: slideIn 0.2s ease;
    }
    
    .field-error-message svg {
        width: 14px;
        height: 14px;
    }
    
    .field-success-message {
        color: #28a745;
        font-size: 12px;
        margin-top: 6px;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    
    .field-success-message svg {
        width: 14px;
        height: 14px;
    }
    
    /* Completion Status Indicator - NY */
    .traveler-status {
        display:none;
    }
    
    .status-complete {
        background: #28a745;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: scaleIn 0.3s ease;
    }
    
    .status-complete svg {
        width: 12px;
        height: 12px;
        stroke: #ffffff;
        stroke-width: 3;
    }
    
    .status-incomplete {
        background: #ffc107;
        border-radius: 50%;
        width: 8px;
        height: 8px;
        margin: 6px;
    }
    
    /* Animations - NY */
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes scaleIn {
        from {
            transform: scale(0);
        }
        to {
            transform: scale(1);
        }
    }
    
    /* Progress indicator for multiple travelers - NY */
    .travelers-progress {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .progress-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #e0e0e0;
        transition: all 0.3s ease;
    }
    
    .progress-dot.active {
        background: #08605F;
        transform: scale(1.3);
    }
    
    .progress-dot.complete {
        background: #28a745;
    }
    
    /* Quick fill button for testing - NY */
    .quick-fill-btn {
        position: absolute;
        top: 8px;
        right: 8px;
        padding: 4px 8px;
        background: #f0f0f0;
        border: none;
        border-radius: 4px;
        font-size: 11px;
        color: #666;
        cursor: pointer;
        opacity: 0.7;
    }
    
    .quick-fill-btn:hover {
        opacity: 1;
        background: #e0e0e0;
    }
    
    /* Input help text - NY */
    .input-help-text {
        font-size: 11px;
        color: #999;
        margin-top: 4px;
        font-style: italic;
    }
    
    /* Floating labels effect (optional enhancement) - NY */
    .mobile-form-field.has-value .mobile-form-label,
    .mobile-form-field.focused .mobile-form-label {
        font-size: 11px;
        color: #08605F;
    }
}

/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
    .mobile-input,
    .mobile-select,
    .mobile-date-input {
        font-size: 16px !important; /* Prevent zoom on focus */
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .traveler-card,
    .traveler-card-body,
    .traveler-expand-icon,
    .mobile-input,
    .mobile-select {
        transition: none !important;
        animation: none !important;
    }
}

/* ========================================== */
/* Mobile Step 6 Enhanced Styling from file 2 */
/* ========================================== */

/* Mobile-specific Step 6 optimizations */
@media (max-width: 768px) {
    
    /* Step 6 Container */
    .booking-step.step-6 {
        padding: 0;
    }
    
    /* Section headers with better mobile spacing */
    .booking-step.step-6 .step-title {
        margin: 15px 0 10px 0;
        padding: 12px 15px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    /* Travelers Info Container - Mobile optimized */
    .travelers-info-container {
        background: transparent;
        padding: 0;
        margin: 0;
    }
    
    /* Individual Traveler Cards */
    .traveler-card {
        border-radius: 12px;
        margin-bottom: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .traveler-card.collapsed {
        box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    }
    
    /* Traveler Card Header */
    .traveler-card-header {
        background: linear-gradient(135deg, #08605F 0%, #0a706f 100%);
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        position: relative;
    }
    
    .traveler-card-header:active {
        background: linear-gradient(135deg, #065755 0%, #08605F 100%);
    }
    
    .traveler-card-title {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;
    }
    
    .traveler-number {
        background: rgba(255,255,255,0.2);
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 14px;
    }
    
    .traveler-label {
        font-size: 16px;
        font-weight: 600;
    }
    
    .traveler-summary {
        font-size: 12px;
        opacity: 0.9;
        margin-top: 2px;
        font-weight: 400;
    }
    
    /* Expand/Collapse Icon */
    .traveler-expand-icon {
        width: 24px;
        height: 24px;
        transition: transform 0.3s ease;
    }
    
    .traveler-expand-icon svg {
        width: 100%;
        height: 100%;
        stroke: #ffffff;
        stroke-width: 2;
    }
    
    .traveler-card.collapsed .traveler-expand-icon {
        transform: rotate(180deg);
    }
    
    /* Traveler Card Body */
    .traveler-card-body {
        padding: 20px 15px;
        background: #ffffff;
        max-height: 500px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .traveler-card.collapsed .traveler-card-body {
        max-height: 0;
        padding: 0 15px;
    }
    
    /* Form Field Mobile Styling */
    .mobile-form-field {
        margin-bottom: 20px;
    }
    
    .mobile-form-label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
        font-family: 'Barlow';
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .mobile-form-label .required-star {
        color: #dc3545;
        margin-left: 3px;
    }
    
    .mobile-form-label .optional-text {
        font-weight: 400;
        opacity: 0.7;
        text-transform: none;
        letter-spacing: normal;
        font-size: 12px;
    }
    
    /* Enhanced Mobile Input Fields */
    .mobile-input {
        width: 100%;
        height: 52px;
        padding: 14px 16px;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        font-size: 16px; /* Prevents zoom on iOS */
        font-family: 'Barlow';
        background: #ffffff;
        transition: all 0.2s ease;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        box-shadow: none;
    }
    
    .mobile-input:focus {
        border-color: #08605F;
        outline: none;
        box-shadow: 0 0 0 3px rgba(8, 96, 95, 0.1);
        background: #ffffff;
    }
    
    .mobile-input:disabled {
        background: #f5f5f5;
        opacity: 0.7;
    }
    
    .mobile-input.error {
        border-color: #dc3545;
        background: rgba(220, 53, 69, 0.03);
    }
    
    .mobile-input.error:focus {
        box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
    }
    
    /* Birthday Date Picker Container */
    .birthday-date-container {
        position: relative;
    }
    
    /* Native Date Input for Mobile */
    .mobile-date-input {
        width: 100%;
        height: 52px;
        padding: 14px 16px;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        font-size: 16px;
        font-family: 'Barlow';
        background: #ffffff;
        transition: all 0.2s ease;
        -webkit-appearance: none;
    }
    
    /* Date input icon */
    .mobile-date-input::-webkit-calendar-picker-indicator {
        background: transparent;
        cursor: pointer;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        opacity: 0.6;
    }
    
    /* Better Select Dropdowns for Birthday (fallback) */
    .mobile-birthday-selects {
        display: grid;
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 8px;
    }

    /* Animations */
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes scaleIn {
        from {
            transform: scale(0);
        }
        to {
            transform: scale(1);
        }
    }
    
    /* Progress indicator for multiple travelers */
    .travelers-progress {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .progress-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #e0e0e0;
        transition: all 0.3s ease;
    }
    
    .progress-dot.active {
        background: #08605F;
        transform: scale(1.3);
    }
    
    .progress-dot.complete {
        background: #28a745;
    }
    
    /* Quick fill button for testing */
    .quick-fill-btn {
        position: absolute;
        top: 8px;
        right: 8px;
        padding: 4px 8px;
        background: #f0f0f0;
        border: none;
        border-radius: 4px;
        font-size: 11px;
        color: #666;
        cursor: pointer;
        opacity: 0.7;
    }
    
    .quick-fill-btn:hover {
        opacity: 1;
        background: #e0e0e0;
    }
    
    /* Input help text */
    .input-help-text {
        font-size: 11px;
        color: #999;
        margin-top: 4px;
        font-style: italic;
    }
    
    /* Floating labels effect (optional enhancement) */
    .mobile-form-field.has-value .mobile-form-label,
    .mobile-form-field.focused .mobile-form-label {
        font-size: 11px;
        color: #08605F;
    }
}

/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
    .mobile-input,
    .mobile-select,
    .mobile-date-input {
        font-size: 16px !important; /* Prevent zoom on focus */
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .traveler-card,
    .traveler-card-body,
    .traveler-expand-icon,
    .mobile-input,
    .mobile-select {
        transition: none !important;
        animation: none !important;
    }
}
.session-timer-display {
    display:none;
}