/* emoji background */

.travel-option-card.selected::after {
    content: "✓";
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #00d084;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
}

.travel-option-icon {
    width: 100px;
    margin: 0 auto 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.travel-option-icon img {
    width: 70%;
    height: 70%;
    border-radius: 999px !important;
    object-fit: contain;
}


/* Travel Form Popup Styles */
.travel-form-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 46%);
    z-index: 999999;
    animation: fadeIn 0.3s ease;
}

button.travel-counter-btn {
    max-width: 20px;
    height: 20px;
    font-size: 26px;
    padding: 15px 15px;
    width: 20px;
}


button#travelPrevBtn {
    background: #ffffff00;
    color: black;
    border: solid 3px #fee05b;
}


button.travel-add-room-btn {
    color: #000;
    border: #fed912 2px solid;
    background: #7c7c7c00;
}


.travel-form-container::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #00bcd4 0%, #26c6da 50%, #FFDE59 100%) !important;
    z-index: 10 !important;
}

.travel-form-overlay.active {
    display: block;
}

button.travel-form-close {
padding: 0px;
    width: 35px;
    height: 35px;
    font-size: 27px;
    background: red;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.travel-form-popup {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 150, 200, 0.15) !important;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.travel-form-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 30px;
    color: #666;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.travel-form-close:hover {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    transform: rotate(90deg);
}

.travel-form-container {
    display: flex;
    min-height: 600px;
}

.travel-form-image {
    flex: 1 !important;
    background: linear-gradient(45deg, rgb(0 0 0 / 46%), rgb(0 0 0 / 35%)), url(https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80) center / cover !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 300px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 0px;
    border-radius: 12px 0 0 12px;
}

.travel-form-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(78,205,196,0.2) 0%, rgba(102,126,234,0.1) 50%, transparent 70%);
    animation: rotate 25s linear infinite;
}

.travel-form-image::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,222,89,0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.travel-form-image h2 {
font-family: "Urbanist", Sans-serif;
    font-size: 3.4rem;
    font-weight: 800;
    z-index: 2;
    position: relative;
    background: linear-gradient(45deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.travel-form-feature-list {
    list-style: none;
    z-index: 2;
    position: relative;
    padding: 0;
    margin: 0;
}

.travel-form-feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
}

.travel-form-feature-list li:nth-child(1) { animation-delay: 0.2s; }
.travel-form-feature-list li:nth-child(2) { animation-delay: 0.4s; }
.travel-form-feature-list li:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.travel-form-feature-list li::before {
    content: '✓';
    background: linear-gradient(135deg, rgb(255, 222, 89), rgb(255, 215, 0));
    color: black;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(78,205,196,0.4);
}

.travel-form-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(240,248,255,0.9) 100%);
    border-radius: 0 25px 25px 0;
}

.travel-form-progress-bar {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #E8F4FD, #F0F8FF);
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.travel-form-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFDE59 0%, #4ECDC4 50%, #667EEA 100%);
    border-radius: 10px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 16.67%;
    box-shadow: 0 2px 10px rgba(78,205,196,0.4);
}

.travel-form-step {
    display: none;
    animation: fadeInSlide 0.6s ease-in;
}

.travel-form-step.active {
    display: block;
}

@keyframes fadeInSlide {
    from { 
        opacity: 0; 
        transform: translateX(30px);
    }
    to { 
        opacity: 1; 
        transform: translateX(0);
    }
}

.travel-form-step h3 {
    background: linear-gradient(135deg, #2E4F7A, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 700;
}

.travel-form-group {
    margin-bottom: 25px;
}

.travel-form-group label {
    display: block;
    margin-bottom: 10px;
    color: #2E4F7A;
    font-weight: 600;
    font-size: 1rem;
}

.travel-form-control {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid rgba(78,205,196,0.2);
    border-radius: 15px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.travel-form-control:focus {
    outline: none;
    border-color: #4ECDC4;
    box-shadow: 0 0 0 4px rgba(78,205,196,0.15);
    background: white;
    transform: translateY(-2px);
}

/* Enhanced Calendar Styling */
.travel-form-control[type="date"] {
    position: relative;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(78,205,196,0.08), rgba(255,255,255,0.9));
    border: 2px solid rgba(78,205,196,0.3);
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #2E4F7A;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(78,205,196,0.1);
}

.travel-form-control[type="date"]:hover {
    border-color: #4ECDC4;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(78,205,196,0.2);
    background: linear-gradient(135deg, rgba(78,205,196,0.12), rgba(255,255,255,0.95));
}

.travel-form-control[type="date"]:focus {
    outline: none;
    border-color: #FFDE59;
    background: linear-gradient(135deg, rgba(255,222,89,0.1), rgba(255,255,255,1));
    box-shadow: 0 0 0 4px rgba(255,222,89,0.25);
    transform: translateY(-2px) scale(1.02);
}

.travel-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.travel-option-card {
    padding: 25px 20px;
    border: 2px solid rgba(78,205,196,0.2);
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
}

.travel-option-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, rgba(78,205,196,0.2), rgba(255,222,89,0.2));
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.travel-option-card:hover::before {
    width: 300px;
    height: 300px;
}

.travel-option-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #4ECDC4;
    box-shadow: 0 15px 40px rgba(78,205,196,0.3);
}

.travel-option-card.selected {
    border-color: #4ECDC4;
    background: linear-gradient(135deg, rgba(78,205,196,0.1), rgba(255,222,89,0.1));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 50px rgba(78,205,196,0.4);
}

.travel-option-card .option-icon,
.travel-option-card div {
    position: relative;
    z-index: 2;
}

.travel-nights-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.travel-night-option {
    padding: 18px 15px;
    border: 2px solid rgba(78,205,196,0.2);
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
}

.travel-night-option:hover {
    border-color: #4ECDC4;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(78,205,196,0.3);
}

.travel-night-option.selected {
    border-color: #FFDE59;
    background: linear-gradient(135deg, #FFDE59, #FFD700);
    color: #2E4F7A;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255,222,89,0.4);
}

.travel-room-config {
    background: linear-gradient(135deg, rgba(78,205,196,0.05), rgba(255,255,255,0.8));
    border: 1px solid rgba(78,205,196,0.2);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(78,205,196,0.1);
}

.travel-room-title {
    color: #2E4F7A;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.travel-counter-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 0;
}

.travel-counter {
    display: flex;
    align-items: center;
    gap: 20px;
}

.travel-counter-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #4ECDC4;
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(78,205,196,0.3);
}

.travel-counter-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(78,205,196,0.5);
}

.travel-counter-btn:active {
    transform: scale(0.95);
}

.travel-counter-value {
    font-size: 20px;
    font-weight: 700;
    min-width: 40px;
    text-align: center;
    color: #2E4F7A;
    background: rgba(255,255,255,0.8);
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(78,205,196,0.2);
}

/* Child Age Selection Styles */
.travel-child-ages {
    margin-top: 15px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255,222,89,0.1), rgba(255,255,255,0.5));
    border-radius: 15px;
    border: 1px solid rgba(255,222,89,0.3);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 200px;
    }
}

.travel-child-age-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 15px;
}

.travel-child-age-group:last-child {
    margin-bottom: 0;
}

.travel-child-age-label {
    font-size: 14px;
    font-weight: 600;
    color: #2E4F7A;
    min-width: 70px;
}

.travel-child-age-select {
    flex: 1;
    padding: 8px 12px;
    border: 2px solid rgba(78,205,196,0.2);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
}

.travel-child-age-select:focus {
    outline: none;
    border-color: #FFDE59;
    box-shadow: 0 0 0 3px rgba(255,222,89,0.2);
}

.travel-add-room-btn {
    width: 100%;
    padding: 15px;
    border: 2px dashed #4ECDC4;
    background: linear-gradient(135deg, rgba(78,205,196,0.1), rgba(255,255,255,0.5));
    color: #2E4F7A;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.travel-add-room-btn:hover {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(78,205,196,0.3);
}

.travel-room-limit-warning {
    background: linear-gradient(135deg, rgba(255,193,7,0.1), rgba(255,222,89,0.2));
    border: 1px solid rgba(255,193,7,0.3);
    border-radius: 10px;
    padding: 12px 15px;
    margin-top: 10px;
    color: #B8860B;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.travel-room-limit-warning::before {
    content: '⚠️';
    font-size: 16px;
}

.travel-form-btn {
    padding: 15px 35px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 10px 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.travel-form-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.travel-form-btn:hover::before {
    width: 300px;
    height: 300px;
}

.travel-form-btn-primary {
    background: linear-gradient(135deg, #FFDE59, #FFD700);
    color: #2E4F7A;
}

.travel-form-btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255,222,89,0.4);
}

.travel-form-btn-secondary {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: white;
}

.travel-form-btn-secondary:hover {
    background: linear-gradient(135deg, #5a6268, #495057);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(108,117,125,0.4);
}

.travel-form-btn-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

textarea.travel-form-control {
    min-height: 120px;
    resize: vertical;
}

.travel-form-step-indicator {
    text-align: center;
    color: #2E4F7A;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(135deg, rgba(78,205,196,0.1), rgba(255,255,255,0.5));
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(78,205,196,0.2);
}

.travel-form-success-message {
    text-align: center;
    color: #4CAF50;
    font-size: 1.3rem;
    margin: 30px 0;
}

.travel-form-success-message h3 {
    background: linear-gradient(135deg, #4CAF50, #45A049);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.travel-form-loading {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 1000;
}

.travel-form-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4ECDC4;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    
    .travel-option-icon img {
    width: 70%;
    height: 70%;
    border-radius: 999px !important;
    object-fit: contain;
}

    .travel-form-popup {
        width: 95%;
        margin: 1%;
        max-height: 95vh;
        border-radius: 20px;
    }

    .travel-form-container {
        flex-direction: column;
        min-height: auto;
    }

    .travel-form-image {
        display: none;
    }

    .travel-form-content {
        padding: 100px 15px 50px 15px !important;
        border-radius: 20px;
    }

    .travel-form-step h3 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .travel-options {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    .travel-nights-options {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .travel-option-card {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .travel-night-option {
        padding: 15px;
        font-size: 16px;
    }

    .travel-form-btn-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        flex-direction: column-reverse !important;
        gap: 15px;
        margin-top: 30px;
    }

    .travel-form-btn {
        margin: 0;
        padding: 18px 25px;
        font-size: 16px;
        border-radius: 12px;
        order: 0;
    }

    .travel-form-btn-primary {
        order: -1;
    }

    .travel-form-btn-secondary {
        order: 1;
    }

    .travel-form-control[type="date"] {
        padding: 20px 22px;
        border-radius: 18px;
        font-size: 17px;
        font-weight: 600;
        background: linear-gradient(135deg, rgba(78,205,196,0.1), rgba(255,255,255,0.95));
        box-shadow: 0 10px 30px rgba(78,205,196,0.15);
    }

    .travel-form-control[type="date"]:focus {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 0 0 4px rgba(255,222,89,0.3), 0 15px 40px rgba(78,205,196,0.2);
    }

    .travel-room-config {
        padding: 20px;
        margin-bottom: 15px;
    }

    .travel-counter-group {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 15px;
        padding: 15px;
        background: rgba(255,255,255,0.6);
        border-radius: 12px;
    }

    .travel-counter-group label {
        margin-bottom: 0;
        font-size: 15px;
    }

    .travel-counter {
        align-self: stretch;
        justify-content: center;
    }

    .travel-counter-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .travel-counter-value {
        font-size: 18px;
        padding: 3px 15px;
    }

    .travel-form-control {
        padding: 18px 15px;
        font-size: 16px;
        border-radius: 12px;
    }

    .travel-form-step-indicator {
        font-size: 14px;
        padding: 8px 15px;
        margin-bottom: 20px;
    }

    .travel-form-progress-bar {
        height: 6px;
        margin-bottom: 25px;
    }

    .travel-room-limit-warning {
        font-size: 13px;
        padding: 10px 12px;
    }

    .travel-child-age-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .travel-child-age-label {
        min-width: auto;
    }

    .travel-child-age-select {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .travel-form-content {
        padding: 20px 15px;
    }

    .travel-option-icon {
        font-size: 2rem;
    }

    .travel-form-step h3 {
        font-size: 1.3rem;
    }

    .travel-options {
        gap: 12px;
    }

    .travel-option-card {
        padding: 18px 12px;
    }
}

/* Trigger Button Styles */
.travel-form-trigger {
    font-family: "Urbanist", Sans-serif;
    background: #FFDE59 !important;
    color: #000000 !important;
    border: 2px solid #FFDE59 !important;
    font-weight: 500 !important;
    box-shadow: 0 6px 20px rgba(255, 222, 89, 0.3) !important;
    display: inline-block;
    padding: 12px 24px;
    color: white;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.travel-form-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78,205,196,0.4);
    text-decoration: none;
    color: white;
}