@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

body, .Normal, h1, h2, h3, h4, h5, h6 {font-family:"Urbanist", sans-serif !important;}
body, .Normal {font-size:1.4em !important;}
h1, h2, h3, h4, h5, h6 {font-weight:600 !important;}

.containerouter {margin:40px 0;}
.containerouter:after {content:"";display:table;clear:both;}

.displaypinform {
    position: relative;
    animation: animatetop2 1.5s;
}

@keyframes animatetop2 {
    from {
        top: -300px;
        opacity: 0.1;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

.transport-wizard {
    min-height: 400px;
}

.wizard-step-header {
    background: linear-gradient(90deg, #2C2C2C 0%, #1A1A1A 100%);
    margin-bottom: 24px;
}

.transport-option {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .transport-option:hover {
        border-color: #bb8f5f;
        box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
        transform: translateY(-2px);
    }

.transport-icon {
    font-size: 48px;
    margin-bottom: 12px;
    color: #bb8f5f;
}

.step-indicator {
    margin-bottom: 24px;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    font-weight: bold;
}

.step-active {
    background-color: #bb8f5f;
    color: white;
}

.step-completed {
    background-color: #bb8f5f;
    color: #2C2C2C;
}

.step-pending {
    background-color: #f5f5f5;
    color: #666;
}


.luxury-button {
    background: #f5f5f5;
    border: 2px solid #bb8f5f;
    color: #bb8f5f;
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

    .luxury-button:hover {
        background: #bb8f5f;
        color: #2C2C2C;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
    }

    .luxury-button:active {
        transform: translateY(0);
        box-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
    }

    .luxury-button i {
        margin-right: 8px;
        transition: color 0.3s ease;
    }