* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    background-image: url(../images/booking-bg.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #333;
    /* Fallback background in case SVG doesn't load properly */
    background-color: #09092a;
    position: relative;
    overflow-x: hidden;
}

/* Fallback background circles */
body::before, 
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    z-index: -1;
}

body::before {
    top: -200px;
    left: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.8) 0%, rgba(124, 58, 237, 0.3) 50%, rgba(124, 58, 237, 0) 70%);
}

body::after {
    bottom: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(67, 56, 202, 0.8) 0%, rgba(67, 56, 202, 0.3) 50%, rgba(67, 56, 202, 0) 70%);
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
.choise_container{
    background-color: #2d2e2e50;
    border-radius: 15px;
    padding: 30px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: white;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.progress_steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    position: relative;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}
.progress_steps::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 0;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}
.step p {
    margin-top: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}
.choise_btn{
    background-color: rgba(124, 58, 237, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}
.choise_btn.active {
    background-color: #7C3AED;
}
.choise_btn.completed {
    background-color: #10B981;
}
.step.completed p {
    color: #10B981;
}
.step.active p {
    color: #7C3AED;
}
.choise_btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.choise_btn img {
    width: 20px;
    height: 20px;
}
.section_title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}
.option_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}
.option {
    background-color: rgba(41, 41, 97, 0.5);
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    border: 2px solid transparent;
}
.option:hover {
    background-color: rgba(41, 41, 97, 0.8);
}
.option.active {
    border-color: #7C3AED;
    background-color: rgba(41, 41, 97, 0.8);
}
.option_1 {
    border-left: 2px solid #7C3AED;
}
.option_2 {
    border-left: 2px solid #3B82F6;
}
.option_3 {
    border-left: 2px solid #10B981;
}
.option_4 {
    border-left: 2px solid #F59E0B;
}
.option_icon {
    margin-right: 15px;
}
.option_icon img {
    width: 24px;
    height: 24px;
}
.option_content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 500;
}
.option_content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}
.button_container {
    grid-column: span 2;
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}
.continue_btn {
    background-color: #7C3AED;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.continue_btn:hover {
    background-color: #6D28D9;
}

/* Page transition styles to reduce blinking */
html, body {
    height: 100%;
}

.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Preload effect to prevent flashes */
body::before, body::after {
    will-change: transform;
}

/* Add smooth transition for links */
a {
    transition: all 0.2s ease;
}

/* Smooth transition for buttons and interactive elements */
.choise_btn,
.option,
.continue_btn,
.form_control {
    will-change: transform, opacity;
    transition: all 0.2s ease;
}



