* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;

    min-height: 100vh;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Oswald", sans-serif;
    color: #000;
}

.container-fluid {
    z-index: 9;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: -1;
}

.step {
    display: none;
width: 100%;
    border-radius: 20px;
    padding: 40px;

    /* box-shadow: 0 20px 40px rgba(0,0,0,0.1); */
    animation: fadeIn 0.5s ease-in;
}

.step h1 {
    font-weight: 600;
    font-size: 2.7rem;
    background: linear-gradient(to right, #C9975A, #e0ac6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step.active {
    display: block;
}

.price-display h3 {
    font-weight: 600;
    background: linear-gradient(to right, #C9975A, #e0ac6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cust-heading {
    font-family: "Beau Rivage", cursive;
    font-weight: 600;
    font-size: 2.35rem;
    background: linear-gradient(to right, #C9975A, #e0ac6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* .step h2 {
    color: #34495e;
    margin-bottom: 15px;
    font-size: 1.5em;
} */
.steps-card {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
    border: 0;
    padding: 40px 30px;
}

.description {


    font-size: 1rem;
    color: #555;
}

.button {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;

    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.button.secondary {
    background: #95a5a6;
}

.button.danger {
    background: #e74c3c;
}

.checkbox-group {
    margin-bottom: 20px;
}
.checkbox-item label{width:100%}
.checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    border: 2px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.checkbox-item img{width:70px}
.checkbox-item:hover {
    background: #f8f9fa;
    border-color: #667eea;
}
.checkbox-item .bxs-star{color:FFC900}
.checkbox-item input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}
.checkbox-group.hotel-checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* space between items */
}

.checkbox-group.hotel-checkbox .checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    border: 2px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* First 4 items → 50% width (2 per row) */
.checkbox-group.hotel-checkbox .checkbox-item:nth-child(-n+4) {
    flex: 0 0 calc(50% - 5px);
}

/* 5th item → full width */
.checkbox-group.hotel-checkbox .checkbox-item:nth-child(5) {
    flex: 0 0 100%;
}

/* Mobile: all 100% */
@media (max-width: 768px) {
    .checkbox-group.hotel-checkbox .checkbox-item {
        flex: 0 0 100% !important;
    }
}

/* Mobile: all 100% */
@media (max-width: 768px) {
    .checkbox-group.hotel-checkbox .checkbox-item {
        width: 100% !important;
    }
}


.checkbox-group.hotel-star {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* spacing between items */
}

.checkbox-group.hotel-star .checkbox-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 2px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* First 4 items → 50% width (2 per row) */
.checkbox-group.hotel-star .checkbox-item:nth-child(-n+4) {
    flex: 0 0 calc(50% - 5px);
}

/* 5th item → full width (if you add one later) */
.checkbox-group.hotel-star .checkbox-item:nth-child(5) {
    flex: 0 0 100%;
}

/* Mobile: all 100% */
@media (max-width: 768px) {
    .checkbox-group.hotel-star .checkbox-item {
        flex: 0 0 100% !important;
    }
}



.price-display {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #2c3e50;
    color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
    transition: all 1s ease;
}

.price-display.show {
    display: block;
}

.price-display h3 {
    margin-bottom: 10px;
}

.price-breakdown {
    margin-bottom: 10px;
    font-size: 0.9em;
    display: none;
}

.price-display:hover .price-breakdown {
    display: block;
}

.total-price {
    font-size: 1.5em;
    font-weight: bold;
    border-top: 2px solid #667eea;
    padding-top: 10px;
}

.flight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    /* margin-bottom: 20px; */
}

.note {
    background: #e8f4f8;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #667eea;
    font-size: 0.8rem;
}

.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 3px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transition: width 0.5s ease;
}

.itinerary-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
}

.itinerary-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.itinerary-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
}

.calendar-container {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
}

.calendar-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.radio-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.radio-item {
    display: flex;
    align-items: center;
}

.radio-item input[type="radio"] {
    margin-right: 8px;
}

.mb-2 {
    margin-bottom: 20px;
}

/* custome form */

/* Form group */
.form-group {
    position: relative;
    margin-bottom: 1.4rem;
}

/* Input styling */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 0.5rem;
    font-size: 1rem;
    border: 2px solid #ccc;
    border-radius: 30px;
    background: transparent;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007bff;
}

/* Label */
.form-group label {
    position: absolute;
    top: 0.9rem;
    left: 1rem;
    background: white;
    padding: 0 0.25rem;
    color: #aaa;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Float label only on focus */
.form-group input:focus+label,
.form-group input.has-value+label,
.form-group select:focus+label,
.form-group select:valid+label,
.form-group textarea:focus+label,
.form-group textarea.has-value+label {
    top: -0.6rem;
    left: 0.9rem;
    font-size: 0.75rem;
    color: #007bff;
}

/* Hide native placeholder look */
.form-group input::placeholder {
    color: transparent;
}
.form-group textarea::placeholder {
    color: transparent;
}

/* .form-group select {
 background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4L2 0z'/%3E%3C/svg%3E");
 background-repeat: no-repeat;
 background-position: right 1rem top 50%;
 background-size: 10px;
} */
.checkbox-group-custom {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.location-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-align: center;
    width: 100px;
    position: relative;
    transition: transform 0.2s ease;
}

.location-option:last-child {
    width: 100%;
}
.location-option:hover {
    transform: scale(1.05);
}

.location-option.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.circle-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-option input:checked+.circle-img,
.location-option input:checked~.circle-img {
    border-color: #007bff;
}

.checkmark {
    position: absolute;
    top: 6px;
    right: 6px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    /* padding: 4px; */
    display: none;
    height: 24px;
    width: 24px;
}

.location-option input:checked~.circle-img .checkmark {
    display: block;
}

.location-option .label-text {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #333;
}

/* custome form */

/* custome checkbox */
/* custome checkbox */
/* left sticky */
.logo {
    height: 160px;
    width: auto;
    margin-bottom: 20px;
}

.sticky-left {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 2rem;
    background-color: #f8f9fa;
}



/* custome checkbox */


/* Wrapper styling */
.custom-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

/* Label for each checkbox item */
.custom-checkbox {
    position: relative;
    padding-left: 2.25rem;
    cursor: pointer;
    font-size: 1rem;

    user-select: none;
    color: #333;
    font-weight: 500;
}

/* Hide native checkbox */
.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Custom checkmark box */
.custom-checkbox .checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #f0f0f0;
    border: 2px solid #ccc;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
}

/* Checkmark tick when checked */
.custom-checkbox input:checked~.checkmark {
    background-color: #198754;
    border-color: #198754;
}

.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark::after {
    display: block;
}

/* Tick styling */
.custom-checkbox .checkmark::after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Optional: Hover effect */
.custom-checkbox:hover .checkmark {
    border-color: #999;
}

/* Optional label styling */
.form-label span {
    font-weight: normal;
    font-size: 0.95rem;
    color: #666;
}

/* custome check box */

/* radio buttons */
.tour-image {
    height: 240px;
    object-fit: cover;
    width: 100%;
}

.tour-description {
    max-height: 4.5em;
    /* ~3 lines */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Toggle button color */
.add-itinerary-btn.added {
    background-color: #038824 !important;
    /* red */
    color: #fff;
}

.bg-none {
    background: none;
}

.tour-addon-card{height: 70vh; overflow-y: auto;}

/* ------------------- */
/* Tablet View */
/* ------------------- */
@media (max-width: 1024px) {
    .step {
        padding: 30px 20px;
    }

    .cust-heading {
        font-size: 2rem;
    }

    .price-display {
        top: 10px;
        right: 10px;
        padding: 15px;
    }

    .calendar-form {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* ------------------- */
/* Mobile View */
/* ------------------- */
@media (max-width: 768px) {

    body,
    .description {
        font-size: 14px;
    }

    h1,
    h2,
    h3 {
        font-size: 1.4rem;
    }

    .container {
        padding: 10px;
    }

    .step {
        padding: 20px;
        border-radius: 15px;
    }

    .cust-heading {
        font-size: 1.7rem;
    }

    .price-display {
        position: static;
        margin: 15px 0;
        width: 100%;
        border-radius: 10px;
        text-align: center;
    }

    .flight-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .calendar-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .checkbox-group-custom {
        gap: 1rem;
    }

    .sticky-left {
        position: static;
        height: auto;
        padding: 1rem;
        background: #fff;
    }

    .logo {
        height: 100px;
    }

    .radio-group {
        flex-direction: column;
        gap: 10px;
    }

    .step h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .step h2 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .location-option {
        width: 80px;
    }

    .circle-img {
        width: 70px;
        height: 70px;
    }

    .itinerary-item {
        flex-direction: column;
        align-items: center;
    }

    .itinerary-icon {
        margin-bottom: 15px;
    }
}


/* ------------------- */
/* Small Mobile View */
/* ------------------- */
@media (max-width: 480px) {

    h1,
    h2,
    h3 {
        font-size: 1.2rem;
    }
.h5, h5{
        font-size: 1rem;
    }
    .cust-heading {
        font-size: 1.5rem;
    }

    .step {
        padding: 10px 0px;
        width: 100%;
    }

    .button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .location-option {
        width: 65px;
    }

    .circle-img {
        width: 60px;
        height: 60px;
    }

    .price-display {
        padding: 10px;
        font-size: 0.9rem;
    }

    .itinerary-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .itinerary-icon {
        margin-bottom: 10px;
    }
     .form-group input,
.form-group select {
       padding: 0.8rem 1rem 0.4rem;
       font-size: 0.9rem;}
       .form-group label{
       font-size: 0.9rem;
       top: 0.7rem;
       }
       .button{
           padding: 10px 15px;
           font-size: 0.8rem;
           margin: 0px auto 15px;
       }
       .btn{
           padding: 10px 15px;
           font-size: 0.8rem;
       }
       .steps-card {
           padding: 20px 10px;
       }
        .tour-addon-card{height: auto; overflow-y: auto;}
.tour-addon-card .btn{width:100%}
        .tour-addon-card .form-group{margin-bottom:15px}
        .tour-image{margin-bottom:20px; height: 160px;}
        
}

.text-warnning{color:#E09B02}
.tour-item .btn{font-size:12px;}