/* start plan Destination */
.choose-destination h1 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 2rem;
    background-image: linear-gradient(to right, var(--main-color) 50%, #67e5f2);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}
.plan-destination-container label{
    display: block;
    width: 100%;
    height: 100%;
}
.plan-destination-box {
    position: relative;
    margin-bottom: clamp(0.5rem, 5vw, 1rem);
}

.plan-destination-box .plan-destination-img {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.plan-destination-box .plan-destination-img img {
    min-width: 100%;
    object-fit: cover;
    height: 250px;
    border-radius: 10px;
}

.plan-destination-box:hover .plan-destination-content {
    background: transparent;
    color: var(--white-color);
    bottom: 50px;
}

.plan-destination-box:hover .plan-destination-img img {
    transform: scale(1.1);
    border-radius: 10px;
    overflow: hidden;
    filter: brightness(0.8) blur(2px);
    height: 100%;
    transition: all 0.5s ease-in-out;
}

.plan-destination-content {
    position: absolute;
    bottom: 0;
    background: var(--white-color);
    text-align: center;
    padding: 0.5rem;
    width: 100%;
}

.plan-destination-content h2 {
    transform: scale(0);
    opacity: 0;
    height: 0;
    width: 0;

}

.plan-destination-box:hover .plan-destination-content h2 {
    transform: scale(1);
    opacity: 1;
    height: auto;
    width: auto;
    margin-bottom: 1rem;
    color: var(--third-color);
}

.plan-destination-box:hover .plan-destination-content h3 {
    color: var(--white-color);
}

.plan-destination-content h3 {
    font-size: clamp(0.75rem, 2.5vw, 1.2rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
    color: var(--black-color);

}

.destinations-container {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.destinations-intro {
    font-size: 1rem;
    color: var(--black-color);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.destinations-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    align-items: center;
    line-height: 1.8;

}

.destinations-container .destination-link {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    height: auto;
    width: auto;
}

.destination-link:hover {
    color: var(--third-color);
    text-decoration: underline;
}

.destination-link:not(:last-child)::after {
    content: "•";
    color: var(--main-color);
    font-weight: 400;
    margin: 0 0.4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .destinations-container {
        padding: 1.5rem;
    }

    .destinations-intro {
        font-size: 0.95rem;
    }

    .destination-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .destinations-container {
        padding: 1rem;
    }

    .destinations-intro {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .destination-link {
        font-size: 0.85rem;
    }
}

/*Start Tailor Made steps */

.tailor-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tailor-header h1 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--main-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    background-image: linear-gradient(to right, var(--main-color) 50%, #67e5f2);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.tailor-header p {
    color: var(--para-color);
    font-size: 1.125rem;
}

/* Progress Steps */
.progress-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    /* gap: 0.5rem; */
}

.step {
    display: flex;
    align-items: center;
    background: var(--main-grey);
    /* border-radius: 25px; */
    padding: 0.75rem 1.7rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--para-color);
    transition: all 0.3s ease;
    position: relative;
}

.step:nth-child(1) {
    border-radius: 5px 0 0 5px;
}

.step.active {
    background: var(--main-color);
    color: var(--white-color);
}

.step.active::after {
    content: "";
    position: absolute;
    top: 0;
    right: -19px;
    width: 20px;
    height: 100%;
    background: var(--main-color);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    border-radius: 4px;
    z-index: 2;
}

.step.completed {
    background: var(--third-color);
    color: var(--white-color);
    margin-right: 2px;
}

.step.completed:last-child::after {
    content: "";
    position: absolute;
    top: 0;
    right: -19px;
    width: 20px;
    height: 100%;
    background: var(--third-color);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    border-radius: 4px;
    z-index: 2;
}

.step-number {
    background: var(--white-color);
    color: var(--main-color);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    margin-right: 0.5rem;
}

.step.active .step-number {
    background: var(--white-color);
    color: var(--main-color);
}

.step.completed .step-number {
    background: var(--white-color);
    color: var(--third-color);
}

/* Form Container */
.form-container {
    background: var(--white-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--sharp-box-shadow);
}

.connection-ways {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    padding: 2rem;
    background-color: var(--light-color);
    /* #f2f7fc */
    border-radius: 12px;
    max-width: 600px;
    margin: 2rem auto;
    box-shadow: var(--box-shadow);
}

.chat-cta,
.schedule-online {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.chat-cta a,
.schedule-online a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: var(--font-family);
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    color: var(--white-color);
    /* #fff */
}

.chat-cta a {
    background-color: var(--main-color);
    /* #008391 */
}

.chat-cta a:hover,
.chat-cta a:focus {
    background-color: #006d77;
    /* Darker shade of main-color */
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.schedule-online a {
    background-color: var(--second-color);
    /* #ffc20e */
    color: var(--black-color);
    /* #1d2d53 for better contrast */
}

.schedule-online a:hover,
.schedule-online a:focus {
    background-color: var(--second-color);
    /* Darker shade of second-color */
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* Focus states for accessibility */
.chat-cta a:focus,
.schedule-online a:focus {
    outline: 2px solid var(--third-color);
    /* #3acfd5 */
    outline-offset: 3px;
}

/* Icon styling */
.icon {
    width: 1.2rem;
    height: 1.2rem;
    fill: currentColor;
    /* Inherits text color */
}

/* Responsive design */
@media (max-width: 480px) {
    .connection-ways {
        flex-direction: column;
        align-items: center;
        padding: 1.5rem;
    }

    .chat-cta a,
    .schedule-online a {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
}

.connection-ways {
    display: none;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}



.input-age-group {
    max-width: 200px;
}

/* Step 1: Group Size */

.traveler-options {
    width: 80%;
    margin: auto;
}

.family-group-fields {
    display: none;
    margin-top: 3rem;
}

.group-inputs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    /* width: 70%; */
    margin: auto;
    padding: 1.5rem 1rem 1rem 1rem;
    background-color: var(--light-color);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.group-inputs input {
    height: 50px;
}

.group-inputs>* {
    flex: 1;
}

.child-ages {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.child-ages .input-box {
    max-width: 150px;
}

.radio-inputs {
    display: flex;
    justify-content: center;
    align-items: center;
    /* max-width: 350px; */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    gap: 1rem;
}

.radio-inputs>* {
    margin: 6px;
    flex: 1;
}

.radio-input:checked+.radio-tile {
    border-color: var(--main-color);
    box-shadow: 0 5px 10px rgba(58, 207, 213, 0.5);
    color: var(--main-color);
}

.radio-input:checked+.radio-tile:before {
    transform: scale(1);
    opacity: 1;
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.radio-input:checked+.radio-tile .radio-icon svg {
    fill: var(--main-color);
}

.radio-input:checked+.radio-tile .radio-label {
    color: var(--main-color);
}

.radio-input:focus+.radio-tile {
    border-color: var(--main-color);
    box-shadow: 0 5px 10px rgba(58, 207, 213, 0.5);
}


.radio-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* width: 80px;
    min-height: 80px; */
    padding: 2rem;
    border-radius: 0.5rem;
    border: 2px solid #b5bfd9;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: 0.15s ease;
    cursor: pointer;
    position: relative;
}

/* .radio-input:focus + .radio-tile:before {
    transform: scale(1);
    opacity: 1;
  }
  
  .radio-tile:before {
    content: "";
    position: absolute;
    display: block;
    width: 0.75rem;
    height: 0.75rem;
    border: 2px solid #b5bfd9;
    background-color: #fff;
    border-radius: 50%;
    top: 0.25rem;
    left: 0.25rem;
    opacity: 0;
    transform: scale(0);
    transition: 0.25s ease;
  }
   */
.radio-tile:hover {
    border-color: var(--third-color);
}

.radio-tile:hover:before {
    transform: scale(1);
    opacity: 1;
}

.radio-icon svg {
    width: 5rem;
    height: 5rem;
    fill: var(--para-color);
    margin-bottom: 1rem;
}

.radio-label {
    color: var(--para-color);
    transition: 0.375s ease;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.radio-input {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

/* Step 2: Travel Dates */
.date-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.date-option {
    border: 2px solid var(--main-grey);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: var(--white-color);
    color: var(--black-color);
    font-weight: 500;
}

.date-option:hover {
    border-color: var(--third-color);
}

.date-option.selected {
    border-color: var(--main-color);
    background-color: rgba(0, 131, 145, 0.05);
}

.conditional-fields {
    margin-top: 2rem;
    padding: 2.5rem 2rem 2rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    justify-content: space-between;
    background: var(--light-color);
}

.exact-time {
    display: block;
    width: 50%;
    margin: 2rem auto;
}

.exact-time .input-box {
    width: 100%;
}

.field-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.date-range {
    display: block;
    margin-bottom: 0;
}
.date-range  input{
    height: 50px;
    line-height: 50px;
    font-size: 16px;
}
.field-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--main-grey);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-family);
    color: var(--black-color);
    transition: border-color 0.3s ease;
    height: 50px;
    box-shadow: var(--box-shadow);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--main-color);
}
.select-days {
    text-align: center;
}
.select-days .duration-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.duration-btn {
    background: var(--white-color);
    border: none;
    border-radius: 6px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--black-color);
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

.duration-btn:hover {
    background: var(--third-color);
    border-color: var(--third-color);
    color: var(--white-color);
}

.duration-display {
    font-size: 1.5rem;
    font-weight: 600;
    min-width: 60px;
    text-align: center;
    color: var(--main-color);
}

/* Step 4: Trip Details Choice */
.choice-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    position: relative;
}

.choice-options input {
    display: none;
}

.choice-option {
    position: relative;
    border: 2px solid var(--main-grey);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    background: var(--white-color);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.choice-option:hover {
    border-color: var(--third-color);
    box-shadow: 0 4px 12px rgba(58, 207, 213, 0.15);
    transform: translateY(-2px);
}

.choice-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.choice-option:hover::before {
    opacity: 1;
}

.choice-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--main-grey);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--para-color);
    transition: all 0.4s ease;
    position: relative;
}

.choice-label {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--black-color);
    transition: all 0.3s ease;
}

.radio-indicator {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--main-grey);
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkmark {
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 600;
    color: var(--white-color);
}

/* Describe option (main color) */
#choice-describe:checked+.choice-option {
    border-color: var(--main-color);
    background: linear-gradient(135deg, rgba(0, 131, 145, 0.08), rgba(0, 131, 145, 0.02));
    box-shadow: 0 8px 25px rgba(0, 131, 145, 0.2);
    transform: translateY(-3px);
}

#choice-describe:checked+.choice-option .choice-icon {
    background: var(--main-color);
    color: var(--white-color);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 131, 145, 0.3);
}

#choice-describe:checked+.choice-option .choice-icon img {
    filter: brightness(0.5) invert(1);
}

#choice-describe:checked+.choice-option .choice-label {
    color: var(--main-color);
    font-weight: 600;
}

#choice-describe:checked+.choice-option .radio-indicator {
    background: var(--main-color);
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(0, 131, 145, 0.2);
}

#choice-describe:checked+.choice-option .checkmark {
    opacity: 1;
    transform: scale(1);
}

/* Quiz option (second color) */
#choice-quiz:checked+.choice-option {
    border-color: var(--second-color);
    background: linear-gradient(135deg, rgba(255, 194, 14, 0.08), rgba(255, 194, 14, 0.02));
    box-shadow: 0 8px 25px rgba(255, 194, 14, 0.2);
    transform: translateY(-3px);
}

#choice-quiz:checked+.choice-option .choice-icon {
    background: var(--second-color);
    color: var(--black-color);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 194, 14, 0.3);
}

#choice-quiz:checked+.choice-option .choice-icon img {
    filter: brightness(0.5) invert(1);
}

#choice-quiz:checked+.choice-option .choice-label {
    color: var(--second-color);
    font-weight: 600;
}

#choice-quiz:checked+.choice-option .radio-indicator {
    background: var(--second-color);
    border-color: var(--second-color);
    box-shadow: 0 0 0 3px rgba(255, 194, 14, 0.2);
}

#choice-quiz:checked+.choice-option .checkmark {
    opacity: 1;
    transform: scale(1);
    color: var(--black-color);
}

/* Responsive design */
@media (max-width: 600px) {
    .choice-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .choice-option {
        padding: 1.5rem;
    }
}

/* Animation for selection */
.choice-option {
    animation: none;
}

.choice-option:has(input:checked) {
    animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1.02) translateY(-5px);
    }

    100% {
        transform: scale(1) translateY(-3px);
    }
}

/* Trip Description */
.description-container {
    max-width: 600px;
    margin: 0 auto;
}

.trip-title-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--main-grey);
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-family);
    color: var(--black-color);
    transition: border-color 0.3s ease;
}

.trip-title-input:focus {
    outline: none;
    border-color: var(--main-color);
}

.description-textarea {
    width: 100%;
    min-height: 200px;
    padding: 1rem;
    border: 1px solid var(--main-grey);
    border-radius: 8px;
    font-size: 1rem;
    resize: vertical;
    margin-bottom: 1rem;
    font-family: var(--font-family);
    color: var(--black-color);
    transition: border-color 0.3s ease;
}

.description-textarea:focus {
    outline: none;
    border-color: var(--main-color);
}

.description-help {
    font-size: 0.875rem;
    color: var(--para-color);
    margin-bottom: 1rem;
}

.description-help a {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 500;
}

.description-help a:hover {
    text-decoration: underline;
}

/* Features Selection */
/* .features-grid {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--main-grey);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white-color);
}

.feature-item:hover {
    border-color: var(--third-color);
    box-shadow: 0 2px 8px rgba(58, 207, 213, 0.1);
}

.feature-item.selected {
    border-color: var(--main-color);
    background-color: rgba(0, 131, 145, 0.05);
}

.feature-checkbox {
    margin-top: 0.25rem;
    accent-color: var(--main-color);
}

.feature-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.875rem;
    color: var(--para-color);
    line-height: 1.5;
} */

.features-grid {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid var(--main-grey);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white-color);
    position: relative;
}

.feature-item:hover {
    border-color: var(--third-color);
    box-shadow: 0 4px 12px rgba(58, 207, 213, 0.15);
    transform: translateY(-2px);
}

/* Hide the checkbox completely */
.feature-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Selected state - when checkbox is checked */
.feature-checkbox:checked+.feature-image~.feature-content,
.feature-item:has(.feature-checkbox:checked) {
    border-color: var(--main-color);
    background-color: rgba(0, 131, 145, 0.08);
    box-shadow: 0 4px 16px rgba(0, 131, 145, 0.2);
}

/* For browsers that don't support :has(), use a different approach */
.feature-checkbox:checked~* {
    /* Fallback - this will style subsequent elements */
}

/* Use label to make the entire item clickable */
.feature-item label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    cursor: pointer;
}

/* Selected state using adjacent sibling selector */
.feature-checkbox:checked+label {
    /* This won't work for the container, so we need to restructure */
}

/* Alternative approach - restructure to use label as container */
.feature-item.selected {
    border-color: var(--main-color);
    background-color: rgba(0, 131, 145, 0.08);
    box-shadow: 0 4px 16px rgba(0, 131, 145, 0.2);
}

.feature-item.selected:hover {
    border-color: var(--main-color);
    background-color: rgba(0, 131, 145, 0.12);
}

/* Add a checkmark indicator when selected using CSS only */
.feature-checkbox:checked+label::after {
    content: "✓";
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--main-color);
    color: var(--white-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.feature-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.875rem;
    color: var(--para-color);
    line-height: 1.5;
}

/* Selected features display - pure CSS */
.selected-display {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 8px;
    min-height: 60px;
}

.selected-display h3 {
    color: var(--main-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Show selected features using CSS only */
/* .feature-checkbox:checked+label::before {
    content: attr(data-title);
    display: inline-block;
    background: var(--main-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin: 0.25rem;
    font-size: 0.8rem;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    white-space: nowrap;
} */

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
        margin: 1rem;
    }

    .feature-item {
        padding: 1rem;
        gap: 0.75rem;
    }

    .feature-image {
        width: 60px;
        height: 45px;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.8rem;
    }
}

/* Navigation */
.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.nav-button {
    background: var(--second-color);
    color: var(--black-color);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    font-family: var(--font-family);
}

.nav-button:hover {
    background: #e6a807;
    transform: translateY(-2px);
}

.nav-button:disabled {
    background: var(--main-grey);
    color: var(--para-color);
    cursor: not-allowed;
    transform: none;
}

.nav-button.back {
    background: transparent;
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

.nav-button.back:hover {
    background: var(--main-color);
    color: var(--white-color);
}

.nav-button.back:disabled {
    background: transparent;
    color: var(--para-color);
    border-color: var(--main-grey);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 45, 83, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-overlay.show {
    display: flex;
    opacity: 1;
}

.modal {
    background: var(--white-color);
    border-radius: 12px;
    padding: 2rem;
    max-width: 50vw;
    width: 100%;
    max-height: 50vh;
    overflow-y: auto;
    display: block;
    box-shadow: var(--box-shadow);
    margin: auto;
    position: relative;
}

.modal-tailor-header {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 1rem;
}

.modal-content {
    color: var(--para-color);
    line-height: 1.6;
    padding: 1rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.modal-button {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.modal-button.primary {
    background: var(--main-color);
    color: var(--white-color);
}

.modal-button.primary:hover {
    background: #006a75;
}

.modal-button.secondary {
    background: var(--main-grey);
    color: var(--black-color);
}

.modal-button.secondary:hover {
    background: #e1e3e4;
}

.modal-header {
    font-size: clamp(0.75rem, 4vw, 1rem);
    color: var(--black-color);
    padding-bottom: 10px;
}

.warning-content {
    background: rgba(255, 194, 14, 0.1);
    border: 1px solid var(--second-color);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.warning-content ul {
    margin: 0.5rem 0 0 1rem;
    color: var(--para-color);
}

.warning-content li {
    margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem 0.5rem;
    }

    .form-container {
        padding: 1rem;
    }

    .group-options {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .choice-options {
        grid-template-columns: 1fr;
    }

    .field-group {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .progress-container {
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .step {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-button {
        width: 100%;
    }
}



/* From Uiverse.io by chase2k25 */
.glass-radio-group-vertical {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    backdrop-filter: blur(16px);
    width: 80%;
    overflow: hidden;
    gap: 0.5rem;
    box-shadow: var(--box-shadow);
    margin: 0 auto;
}

.glass-radio-group-vertical input {
    display: none;
}

.glass-radio-group-vertical label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    border-radius: 0.8rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--para-color);
    cursor: pointer;
    z-index: 2;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}

.label-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.radio-indicator {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: var(--main-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--white-color);
    box-shadow: 0 0 0 2px transparent;
    transition: all 0.3s ease-in-out;
    border: 2px solid var(--para-color);
}

.checkmark {
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
    font-weight: 600;
}

.glass-glider-vertical {
    position: absolute;
    left: 0;
    height: 56px;
    width: calc(100% - 1.5rem);
    margin-left: 15px;
    border-radius: 0.8rem;
    z-index: 1;
    transition:
        transform 0.4s cubic-bezier(0.5, 1.6, 0.4, 1),
        background 0.5s ease-in-out,
        box-shadow 0.4s;
}

/* Main Color Option */
#glass-main:checked~.glass-glider-vertical {
    transform: translateY(0%);
    background: linear-gradient(135deg, var(--main-color), rgba(0, 131, 145, 0.8));
    box-shadow: 0 0 20px rgba(0, 131, 145, 0.4);
}

#glass-main:checked+label {
    color: var(--white-color);
    font-weight: 600;
}

#glass-main:checked+label .radio-indicator {
    background: var(--main-color);
    border-color: var(--white-color);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6), 0 0 8px rgba(0, 131, 145, 0.6);
}

#glass-main:checked+label .checkmark {
    opacity: 1;
    transform: scale(1);
}

/* Second Color Option */
#glass-second:checked~.glass-glider-vertical {
    transform: translateY(115%);
    background: linear-gradient(135deg, var(--second-color), rgba(255, 194, 14, 0.8));
    box-shadow: 0 0 20px rgba(255, 194, 14, 0.4);
}

#glass-second:checked+label {
    color: var(--black-color);
    font-weight: 600;
}

#glass-second:checked+label .radio-indicator {
    background: var(--second-color);
    border-color: var(--black-color);
    box-shadow: 0 0 0 2px rgba(29, 45, 83, 0.6), 0 0 8px rgba(255, 194, 14, 0.6);
}

#glass-second:checked+label .checkmark {
    opacity: 1;
    transform: scale(1);
    color: var(--black-color);
}

/* Third Color Option */
#glass-third:checked~.glass-glider-vertical {
    transform: translateY(230%);
    background: linear-gradient(135deg, var(--third-color), rgba(58, 207, 213, 0.8));
    box-shadow: 0 0 20px rgba(58, 207, 213, 0.4);
}

#glass-third:checked+label {
    color: var(--white-color);
    font-weight: 600;
}

#glass-third:checked+label .radio-indicator {
    background: var(--third-color);
    border-color: var(--white-color);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6), 0 0 8px rgba(58, 207, 213, 0.6);
}

#glass-third:checked+label .checkmark {
    opacity: 1;
    transform: scale(1);
}

/* Container border effects */
.glass-radio-group-vertical:has(#glass-main:checked) {
    border-color: var(--main-color);
    box-shadow: var(--box-shadow), 0 0 15px rgba(0, 131, 145, 0.2);
}

.glass-radio-group-vertical:has(#glass-second:checked) {
    border-color: var(--second-color);
    box-shadow: var(--box-shadow), 0 0 15px rgba(255, 194, 14, 0.2);
}

.glass-radio-group-vertical:has(#glass-third:checked) {
    border-color: var(--third-color);
    box-shadow: var(--box-shadow), 0 0 15px rgba(58, 207, 213, 0.2);
}

/* Hover effects */
.glass-radio-group-vertical label:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(3px);
}

.glass-radio-group-vertical label:hover .radio-indicator {
    transform: scale(1.1);
}


/* create account */
.auth-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: var(--white-color);
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    margin: auto;
}

.form-wrapper {
    position: relative;
    min-height: 600px;
}

form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem 2rem;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

form.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}
.auth-container .input-box input {
    height: 50px;
}
.step-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 1.5rem;
    text-align: center;
}
.input-control {
    margin-bottom: 1rem !important;
}
.striped {
    margin: 7px !important;
}
/* 
.step-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 3px;
    background: linear-gradient(90deg, var(--main-color), var(--third-color));
    border-radius: 2px;
} */

.form-subtitle {
    text-align: center;
    color: var(--para-color);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.field-label,
.duration-label {
    display: block;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--main-grey);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-family);
    background: var(--white-color);
    color: var(--black-color);
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-input:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(0, 131, 145, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.02);
    transform: translateY(-1px);
}

.form-input:hover {
    border-color: var(--third-color);
}

.form-input::placeholder {
    color: var(--para-color);
}

.password-field {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--para-color);
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--main-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.custom-checkbox {
    position: relative;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.custom-checkbox input {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.checkbox-mark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--main-grey);
    border-radius: 4px;
    background: var(--white-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-mark::after {
    content: '✓';
    color: var(--white-color);
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.custom-checkbox input:checked+.checkbox-mark {
    background: var(--main-color);
    border-color: var(--main-color);
}

.custom-checkbox input:checked+.checkbox-mark::after {
    opacity: 1;
    transform: scale(1);
}

.checkbox-label {
    font-size: 0.875rem;
    color: var(--para-color);
    line-height: 1.5;
}

.checkbox-label a {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 500;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.reservation-login {
    border: none;
    background: transparent;
    text-decoration: underline;
    color: var(--main-color);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-effect-2 {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--main-color), var(--third-color));
    color: var(--white-color);
    border: none;
    border-radius: 12px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 131, 145, 0.2);
    margin-top: 1rem;
}

.btn-effect-2:hover {
    background: linear-gradient(135deg, var(--third-color), var(--main-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 131, 145, 0.3);
}

.btn-effect-2:active {
    transform: translateY(0);
}

.forgot-password {
    text-align: center;
    margin-bottom: 1.5rem;
}

.forgot-password a {
    color: var(--main-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.forgot-password a:hover {
    text-decoration: underline;
    color: var(--third-color);
}

.social-login {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--main-grey);
}

.social-title {
    text-align: center;
    color: var(--para-color);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
}

.social-btn {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--main-grey);
    border-radius: 8px;
    background: var(--white-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-family);
    font-weight: 500;
    color: var(--black-color);
}

.social-btn:hover {
    border-color: var(--third-color);
    box-shadow: 0 2px 10px rgba(58, 207, 213, 0.15);
    transform: translateY(-1px);
}

.google-btn:hover {
    border-color: #4285f4;
    box-shadow: 0 2px 10px rgba(66, 133, 244, 0.15);
}

.facebook-btn:hover {
    border-color: #1877f2;
    box-shadow: 0 2px 10px rgba(24, 119, 242, 0.15);
}

.modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
    position: relative;
}

.modal-actions::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: var(--para-color);
    left: calc(50% - 7px);
    top: 0;
    transform: translate(-50%, 0);
}

.form-footer {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--para-color);
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 600px) {
    .auth-container {
        margin: 1rem;
    }

    form {
        padding: 2rem 1.5rem;
    }

    .social-buttons {
        flex-direction: column;
    }
}

.optional-activity {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
}

.optional-activity textarea {
    display: none;
    width: 100%;
    margin-top: 0.5rem;
    padding: 1rem;
    border-radius: 5px;
}

.section-tailor-header {
    text-align: center;
    margin-bottom: 3rem;
}

.activity-image img {
    height: 70px;
    width: 85px;
    border-radius: 10px;
}
.activity-wrapper{
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color), var(--third-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--para-color);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.activities-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.activity-item {
    background: var(--white-color);
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.activity-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 131, 145, 0.15);
    border-color: var(--third-color);
}

.activity-item.selected {
    border-color: var(--main-color);
    box-shadow: 0 8px 30px rgba(0, 131, 145, 0.2);
    background: linear-gradient(135deg, rgba(0, 131, 145, 0.02), var(--white-color));
}

.activity-item.selected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--main-color), var(--third-color));
}

.card-body {
    padding: 1rem;

}

.activity-checkbox-container {
    position: relative;
    flex-shrink: 0;
}

.activity-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid var(--main-grey);
    border-radius: 6px;
    background: var(--white-color);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-checkbox {
    position: absolute;
    opacity: 0;
}

.activity-item {
    cursor: pointer;
}


.activity-checkbox:checked+label {
    border-color: var(--main-color);
    background-color: rgba(0, 131, 145, 0.05);
    box-shadow: 0 4px 16px rgba(0, 131, 145, 0.2);
    border-radius: 16px;
    position: relative;
}


.activity-checkbox:checked+label::after {
    content: "✓";
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--main-color);
    color: var(--white-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.btn-check:checked+.btn-outline-primary:focus,
.btn-check:checked+.btn-outline-primary:hover,
.btn-check:checked+.btn-outline-success:focus,
.btn-check:checked+.btn-outline-success:hover {
    outline: none;
    box-shadow: none;
}

.activity-checkbox:hover {
    border-color: var(--third-color);
    transform: scale(1.05);
}

.activity-checkbox:checked {
    background: var(--main-color);
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(0, 131, 145, 0.2);
}

.activity-checkbox:checked::after {
    content: '✓';
    color: var(--white-color);
    font-weight: 600;
    font-size: 14px;
    animation: checkmark 0.3s ease;
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(45deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.activity-description {
    color: var(--para-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.optional-activity {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 12px;
    border: 1px solid rgba(0, 131, 145, 0.1);
    display: none;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.priority-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.priority-button {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.priority-input {
    display: none;
}

.priority-label {
    display: block;
    padding: 0.75rem 1.5rem;
    background: var(--white-color);
    border: 2px solid var(--main-grey);
    border-radius: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--para-color);
    position: relative;
}

.priority-label:hover {
    border-color: var(--third-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(58, 207, 213, 0.2);
}

.nice-to-have:checked+.priority-label {
    background: var(--second-color);
    border-color: var(--second-color);
    color: var(--black-color);
    box-shadow: 0 4px 15px rgba(255, 194, 14, 0.3);
}

.must-have:checked+.priority-label {
    background: var(--main-color);
    border-color: var(--main-color);
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(0, 131, 145, 0.3);
}

.activity-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--main-grey);
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    color: var(--black-color);
    background: var(--white-color);
    resize: vertical;
    min-height: 100px;
    transition: all 0.3s ease;
    display: none;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.activity-textarea:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(0, 131, 145, 0.1);
}

.activity-textarea::placeholder {
    color: var(--para-color);
}

.activity-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--third-color), var(--main-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.activity-item.selected .activity-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-body {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .activity-checkbox-container {
        align-self: flex-start;
    }

    .priority-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

.submit-section {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: var(--white-color);
    border-radius: 16px;
    box-shadow: var(--box-shadow);
}

.submit-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--main-color), var(--third-color));
    color: var(--white-color);
    border: none;
    border-radius: 25px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 131, 145, 0.2);
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--third-color), var(--main-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 131, 145, 0.3);
}

.selected-count {
    margin-top: 1rem;
    color: var(--para-color);
    font-size: 0.95rem;
}