/* =========================
   Brand Color System
========================= */
:root {
    --primary: #007fff;
    --primary-dark: #0069d9;
    --primary-light: #2290ff;

    --success: #28a745;
    --text-dark: #1a202c;
    --text-muted: #718096;

    --border: #e2e8f0;
    --bg-light: #f8f9fa;
}





/* Centering the overall wrapper */

.burj-grandparent-wrapper {
    width: 80%;
    margin: 40px auto;
}

/* ALWAYS BELOW */
@media (max-width: 767px) {
    .burj-grandparent-wrapper {
        width: 100% !important;
        margin: 15px auto;
    }
    
    .burj-navigation-bar {
    flex-direction: column;
}
}

/* Professional Step Container (The White Card) */

.burj-multi-step-container {
    background: #ffffff;
    border: 1px solid #e2e8f0; 
    border-radius: 12px; 
    padding: 40px; 
    
    /* Layered shadow for a modern "elevated" feel */
    
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 
                0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    transition: all 0.3s ease;
    margin-top: 20px;
}

/* Adjusting the Navigation Bar within the card */

.burj-navigation-bar {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #f0f4f8;
    display: flex;
    justify-content: space-between;
}


/* Progress Bar Container - 80% Width & Centered */

.burj-custom-progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px; /* Prevents it from getting too wide on huge screens */
    margin: 0 auto 50px auto; /* Centers the 80% block and adds bottom spacing */
    padding: 20px 0;
}

.burj-progress-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 5; 
    flex-shrink: 0; 
}

/* Increased Circle Size */

.burj-step-circle {
    width: 60px; 
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px; 
    color: #a0aec0;
    border: 2px solid #e2e8f0; 
    transition: all 0.3s ease;
}

/* Fixed Active Circle with Gradient */
.burj-progress-item.burj-active .burj-step-circle {
    color: #ffffff;
    /* The gradient now works because nothing below it overwrites it */
    background: linear-gradient(90deg, #2D9CDB 0%, #56CCF2 100%);
    
    /* Remove the border or set it to transparent to let the gradient shine */
    border: none; 
    
    /* Added a subtle glow that matches the gradient colors */
    box-shadow: 0 4px 10px rgba(45, 156, 219, 0.3);
    
    /* Ensure the text/number stays centered if border is removed */
    display: flex;
    align-items: center;
    justify-content: center;
}




/* Updated Step Text */

.burj-step-text {
    font-size: 14px;
    margin-top: 12px;
    color: #718096;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    bottom: -35px; 
    white-space: nowrap;
}

.burj-progress-item.burj-active .burj-step-text {
    color: #2271b1;
}

/* Connecting Lines - Base Style */
.burj-progress-divider {
    height: 2px;
    background: var(--border);
    flex-grow: 1; 
    z-index: 1;
    transition: background 0.4s ease;
    margin-left: -10px;
    margin-right: -10px;
}

/* Updated Active/Completed Line Color */

.burj-progress-divider.line-active {
    background: linear-gradient(90deg, #2D9CDB 0%, #56CCF2 100%); 
    box-shadow: 0 0 8px rgba(0, 127, 255, 0.2); 
}




/* Matching the label to the brand primary */

.burj-progress-item.burj-active .burj-step-text {
    color: var(--primary);
}

.burj-step-intro {
    margin-bottom: 60px;
}


.burj-step-intro h2 {
background: linear-gradient(90deg, #2D9CDB 0%, #56CCF2 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
        margin-bottom: 8px;
    text-transform: capitalize !important;


}

.burj-step-intro p {
    font-size: 14px;
    letter-spacing: 0.5px;
}







/**
 * 1. SERVICE GRID & CARDS
 */
.service-selection-container {
    margin-bottom: 30px;
}

.service-block {
    margin-bottom: 40px;
}

.service-label {
    font-weight: 500;
    margin-bottom: 16px !important;
    text-transform: uppercase;
    color: #000000 !important;
    font-size: 16px;
    letter-spacing: 0.3px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

/* Hide the actual checkbox/radio but keep it functional */
.custom-card-label input[type="checkbox"],
.custom-card-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.card-inner-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    height: 100%;
}

.card-inner-box:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

/* Selected State */
.service-ajax-input:checked + .card-inner-box,
.card-inner-box.is-selected {
    border-color: var(--primary);
    background-color: #007fff17;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.icon-wrapper i {
    font-size: 28px;
    color: #64748b;
    margin-bottom: 10px;
}

.service-ajax-input:checked + .card-inner-box i {
    color: var(--primary);
}

.card-inner-box .title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e293b;
    margin-bottom: 5px;
}

.card-inner-box .price {
        font-size: 16px;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 1px;
}

/**
 * 2. MODAL POPUP STYLING
 */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 550px;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #94a3b8;
}

.modal-step h3 {
    margin-top: 0;
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.modal-field {
    margin-bottom: 15px;
}

.modal-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.modal-field textarea, 
.modal-field input {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px;
}

/* Time Card Selection inside Modal */
.modal-time-card.is-selected-inner {
    border-color: #10b981 !important;
    background-color: #f0fdf4 !important;
}












/* Ensure steps are hidden by default to prevent stacking */
.burj-step {
    display: none;
    width: 100%;
}

/* Force Step 1 to show if JS hasn't loaded yet */
#burj-step-1 {
    display: block;
}

/* Professional Navigation Bar Styling */
.burj-navigation-bar {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--border);
    width: 100%;
}

#burj-next, #burj-prev {
    min-width: 180px;
    padding: 5px 25px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    justify-content: center; /* Changed from space-around for better icon alignment */
    align-items: center;
    gap: 10px;
    display: flex;
    
    /* 1. Applying your Gradient */
    background: linear-gradient(90deg, #2D9CDB 0%, #56CCF2 100%) !important;
    
    /* 2. Styling the Border to match the darker side of the gradient */
    border: none !important; /* Removing the solid border for a cleaner gradient look */
    border-radius: 10px !important;
    
    /* 3. Text and Shadow */
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(45, 156, 219, 0.3); /* Subtle glow effect */
    transition: all 0.3s ease !important;
    cursor: pointer;
}

/* Hover Effect to make it interactive */
#burj-next:hover, #burj-prev:hover {
    filter: brightness(1.1); /* Slightly brightens the gradient on hover */
    box-shadow: 0 6px 20px rgba(45, 156, 219, 0.4);
    transform: translateY(-1px); /* Slight lift effect */
}

/* Back Button Differentiation (Optional) */
/* If you want the 'Back' button to be subtler but still have a hint of blue */
#burj-prev {
    background: #ffffff !important; /* White background */
    color: #2D9CDB !important; /* Blue text */
    border: 2px solid #2D9CDB !important; /* Blue border */
}

#burj-prev:hover {
    background: #f0f9ff !important;
}






































/* Main Card Container */
#order_review {
    background: #ffffff !important;
    border-radius: 10px !important;
    padding: 10px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important;
    border: 1px solid #f1f5f9 !important;
}


.payment-info {
background: #ffffff !important;
}

/* Title */
.payment-info > .d-flex span:first-child {
        font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    letter-spacing: 1px;
}

/* Divider */
.payment-info .line {
    
    background: var(--border) !important;
    opacity: 0.5;
    margin: 15px 0 !important;
    display: block !important;
}

/* Rows */
.payment-info .information {
    padding: 10px 0 !important;
    font-size: 15px !important;
    color: blue !important;
}

/* Labels */
.payment-info .information span:first-child {
    font-weight: 500 !important;
    font-size: 18px !important;
    font-family: var(--body-font) !important;
    letter-spacing: .07px !important;
}

/* Amounts */
.payment-info .information span:last-child {
    font-weight: 600 !important;
    color: #0f172a !important;
    font-size: 18px;
    
}










.information.fee {
        display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    position: relative !important;
    overflow: visible !important;
    padding: 20px 10px 10px 10px !important;
    margin-bottom: 20px !important;
    border: 1px solid var(--primary) !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px #007fff26 !important;

}

.additional-service-badge {
        position: absolute !important;
    top: -10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: var(--primary) !important;
    color: #fff !important;
    padding: 0px 15px !important;
    border-radius: 50px !important;
    letter-spacing: 0.5px !important;
    z-index: 10 !important;
}

/* Remove default p margin */
.additional-service-badge p {
        letter-spacing: 1px;
    margin: auto !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    
}





 /* Service Name */
.information.fee span:first-of-type {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: var(--text-muted) !important;
    width: 70% !important;
    letter-spacing: .07px !important;
}

/* Price Section */
.information.fee span:last-of-type {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    width: 30% !important;
    margin: 0 0 0 auto !important;
}

/* Currency Symbol */
.information.fee .woocommerce-Price-currencySymbol {
    font-size: 14px !important;
    margin-right: 2px !important;
}

/* Amount */
.information.fee .amount {
    display: flex !important;
    align-items: center !important;
}

/* Optional: Highlight important fee */
.information.fee.highlight {
    background: #ecfdf5 !important;
    border-color: #10b981 !important;
}

/* Optional: Make it look premium */
.information.fee::after {
    content: "" !important;
    display: block !important;
    height: 1px !important;
    background: linear-gradient(to right, transparent, #e5e7eb, transparent) !important;
    margin-top: 10px !important;
}















    


/* ---------- Total Row ---------- */
.woocommerce-checkout-payment {

    background: #ffffff !important;
    padding: 0px !important;
}



/* ---------- PAYMENT METHODS ---------- */
.wc_payment_methods {
    margin-top: 30px !important;
}

/* Each Method Card */
.wc_payment_method {
    background: #ffffff !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 15px 10px !important;
    margin-bottom: 12px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    position: relative !important;
    box-shadow: 0 3px 8px rgba(0,0,0,0.04) !important; /* soft shadow for depth */
}

/* Hover */
.wc_payment_method:hover {
    border-color: #3b82f6 !important;
    background: #f8fafc !important;
    box-shadow: 0 6px 20px rgba(59,130,246,0.12) !important;
}

/* Selected Method */
.wc_payment_method input[type="radio"]:checked + label {
    color: #2563eb !important;
    font-weight: 600 !important;
}

/* Highlight selected box */
.wc_payment_method:has(input[type="radio"]:checked) {
    border-color: #2563eb !important;
    background: #eff6ff !important;
    box-shadow: 0 6px 20px rgba(37,99,235,0.12) !important;
}

/* Hide default radio */
.wc_payment_method input[type="radio"] {
    display: none !important;
}

/* Label Styling */
.wc_payment_method label {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #0f172a !important;
    cursor: pointer !important;
}

/* Payment Description Box */
.payment_box {
    margin-top: 12px !important;
    background: #f1f5f9 !important;
    padding: 15px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    color: #475569 !important;
    transition: all 0.3s ease !important;
}

/* Card Fields */
.wc-payment-form input,
.wc-payment-form .input-text {
    width: 100% !important;
    padding: 12px !important;
    border-radius: 8px !important;
    border: 1px solid #e2e8f0 !important;
    font-size: 14px !important;
}

/* Place Order Button */
#place_order {
    width: 100% !important;
    margin-top: 20px !important;
    padding: 16px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #3b82f6, #2563eb) !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(59,130,246,0.3) !important;
}

/* Button Hover */
#place_order:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(37,99,235,0.35) !important;
}

/* Privacy Text */
.woocommerce-privacy-policy-text {
    font-size: 13px !important;
    color: #64748b !important;
    margin-top: 10px !important;
}

/* Card Logos */
.access_worldpay_checkout-payment-method-images img {
    height: 22px !important;
    margin-left: 6px !important;
    vertical-align: middle !important;
}

/* ---------- Optional: Smooth expand animation for payment_box ---------- */
.payment_box {
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    transition: all 0.4s ease !important;
}

.wc_payment_method:has(input[type="radio"]:checked) .payment_box {
    max-height: 500px !important;
    opacity: 1 !important;
}








.yr-checkout-address {
    background: #ffffff !important;
    border-radius: 10px !important;
    padding: 10px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important;
    border: 1px solid #f1f5f9 !important;
}


.yr-checkout-address h5 {
padding: 10px;
}



/* 1. Global Wrapper Reset */
.custom-billing-wrapper,
.custom-shipping-wrapper {
    width: 100%;
}

/* 2. The Grid Container - Mirrors for both forms */
#billing-address-form {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    column-gap: 24px !important;
    row-gap: 16px !important;
    width: 100% !important;
    box-sizing: border-box;
}

/* 3. Reset Default Row Behavior for both */
#billing-address-form .form-row, 
#shipping-address-form .form-row {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: none !important;
}

/* 4. Column Spacing Logic for Names (Desktop) */
@media (min-width: 769px) {
    #billing_first_name_field, #shipping_first_name_field {
        grid-column: 1 !important;
    }

    #billing_last_name_field, #shipping_last_name_field {
        grid-column: 2 !important;
    }

    /* Handling Full-Width (100%) Fields for both forms */
    #billing_company_field, #shipping_company_field,
    #billing_country_field, #shipping_country_field,
    #billing_address_1_field, #shipping_address_1_field,
    #billing_address_2_field, #shipping_address_2_field,
    #billing_city_field, #shipping_city_field,
    #billing_state_field, #shipping_state_field,
    #billing_postcode_field, #shipping_postcode_field,
    #billing_phone_field, #billing_email_field,
    .form-row-wide {
        grid-column: span 2 !important;
    }
}

/* 5. Mobile Responsiveness - Both forms switch to 1 column */
@media (max-width: 768px) {
    #billing-address-form, 
    #shipping-address-form {
        grid-template-columns: 1fr !important;
        row-gap: 12px !important;
    }

    #billing_first_name_field, #shipping_first_name_field,
    #billing_last_name_field, #shipping_last_name_field,
    .form-row {
        grid-column: span 1 !important;
    }
}

/* 6. Consistent Aesthetics for Labels, Inputs, and Selects */
.woocommerce-billing-fields__field-wrapper label,
.woocommerce-shipping-fields__field-wrapper label {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
    display: block;
}

.woocommerce-billing-fields__field-wrapper input.input-text,
.woocommerce-billing-fields__field-wrapper select,
.woocommerce-shipping-fields__field-wrapper input.input-text,
.woocommerce-shipping-fields__field-wrapper select {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    background-color: #ffffff !important;
    font-size: 15px !important;
    transition: all 0.3s ease;
    box-sizing: border-box !important;
}

/* Focus States for both */
.woocommerce-billing-fields__field-wrapper input:focus,
.woocommerce-shipping-fields__field-wrapper input:focus {
    border-color: #2D9CDB !important;
    box-shadow: 0 0 0 3px rgba(45, 156, 219, 0.1) !important;
    outline: none;
}








/* 1. Improved Header Wrapper (Clean & Minimal) */
#ship-to-different-address {
    /* Overriding/Denying Bootstrap/Defaults */
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    margin: 30px 0 15px 0 !important;
    box-shadow: none !important;
}

/* 2. Style the Label as a Modern Interaction Bar */
#ship-to-different-address label {
    display: inline-flex !important;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #2d3748;
    transition: color 0.3s ease;
}

#ship-to-different-address label:hover {
    color: #2D9CDB; /* Subtle brand blue hover */
}

/* 3. Modern Checkbox (Toggle Style) */
#ship-to-different-address-checkbox {
    border: 2px solid #cbd5e0 !important;
    border-radius: 6px !important;
    margin-right: 15px !important;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    display: inline-block;
}

/* Checkbox Checked State */
#ship-to-different-address-checkbox:checked {
    background-color: #2D9CDB !important;
    border-color: #2D9CDB !important;
}

/* Custom Checkmark inside the box */
#ship-to-different-address-checkbox:checked::after {
    content: '\f00c'; /* FontAwesome Check Icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: white;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 4. Shipping Form Container */
#shipping-address-form {
    display: none; 
    margin-top: 10px;
    padding: 25px;
    background: #fcfcfc;
    border: 1px solid #edf2f7;
    border-radius: 12px;
}

















#dynamic-modal-content h3 {
    margin-top: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.modal-options-grid {
    display: flex;
    flex-direction: column;
     gap: 8px;
    
}



/* --- Time Slot Cards --- */
.modal-time-card {
    transition: all 0.2s ease-in-out;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    position: relative;
     display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    
    
}

.modal-time-card .custom-radio {
        width: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-time-card .custom-radio input {
    width: 30px;
    height: 30px;
    margin: auto 0px auto 0px;
}

.time-price {
    width: 30%
    text-align: end;
}

.modal-time-card:hover {
    border-color: var(--primary);
    background-color: #f9fbff;
}

/* Logic for when the Radio is checked */
.modal-time-card:has(input[type="radio"]:checked) {
    border-color: #2271b1 !important;
    background-color: #f0f7ff !important;
    box-shadow: 0 0 0 1px #2271b1;
}

.modal-time-card input[type="radio"] {
    margin-right: 12px;
    transform: scale(1.1);
}

.modal-time-card strong {
    font-size: 15px;
}

.modal-time-card small {
    color: #666;
    font-size: 14px;
}

/* --- Weekend Surcharge Section --- */
.surcharge-checkbox-container {
    transition: transform 0.2s;
}

.surcharge-checkbox {
-webkit-appearance: checkbox !important;
}

.surcharge-wrapper label {
    display: flex;
    align-items: center;
}
.surcharge-checkbox-container:hover {
    transform: translateY(-1px);
}


#dynamic-modal-content {
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
}

#dynamic-modal-content::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* --- Form Fields (Step 2) --- */
.modal-field {
    margin-bottom: 20px;
}

.modal-field label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: #444;
}

.modal-field textarea {
    width: 100%;
    min-height: 80px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
    transition: border-color 0.2s;
    background: #fafafa;
}

.modal-field textarea:focus {
    border-color: #2271b1;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.1);
}

/* --- Buttons --- */
#dynamic-modal-content button.button {
    height: 48px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
}

#dynamic-modal-content button.modal-back-btn {
    background: #f0f0f0;
    color: #555;
    border: 1px solid #ddd;
}

#dynamic-modal-content button.modal-back-btn:hover {
    background: #e5e5e5;
}

#dynamic-modal-content button.alt {
    background-color: #2271b1; /* Standard Woo Blue */
}

#dynamic-modal-content button.alt:hover {
    background-color: #1a5a8e;
}

/* --- Animation for Steps --- */
.modal-step {
    animation: fadeIn 0.3s ease-out;
}

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