/* Order Page Custom Styles */

.order-page-body {
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Header Section */
.order-header-sec {
    padding: 60px 0 20px;
}

.order-header-sec h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #2b3a4a;
    margin-bottom: 5px;
}

.order-header-sec .sub-text {
    color: #d1001d; /* Red color from image */
    font-size: 16px;
    font-weight: 500;
}

/* Progress Step Bar */
.order-progress-sec {
    padding-bottom: 40px;
}

.progress-bar-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.progress-bar-wrapper .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.progress-bar-wrapper .step-num {
    width: 60px;
    height: 60px;
    background-color: #cccccc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    z-index: 2;
}

.progress-bar-wrapper .step.active .step-num {
    background-color: #1a1a1a;
    color: #fff;
    font-weight: 600;
}

.progress-bar-wrapper .step-label {
    font-size: 20px;
    font-weight: 500;
    color: #333;
}

.progress-bar-wrapper .step.active .step-label {
    color: #333;
    font-weight: 600;
}

.progress-line {
    height: 2px;
    background-color: #333333;
    flex-grow: 1;
    margin: -40px 0 0;
    position: relative;
    z-index: 1;
}

/* Content Layout */
.order-content-sec {
    padding-bottom: 80px;
}

/* Package Card (Left) */
.package-summary-card {
    background: #fff;
    border-radius: 15px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

.package-summary-card .card-head {
    padding: 30px 20px;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.package-summary-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.package-summary-card .price-wrap h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
}

.package-summary-card .card-body {
    padding: 20px 25px;
}

.package-summary-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-summary-card ul li {
    font-size: 14px;
    margin-bottom: 12px;
    color: #555;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.package-summary-card ul li i {
    color: #1a1a1a;
    font-size: 12px;
    margin-right: 10px;
    margin-top: 4px;
}

.package-summary-card .card-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.package-summary-card .card-footer a {
    color: #000;
    font-weight: 700;
    text-decoration: none;
}

.package-summary-card .card-footer a i {
    color: #d1001d;
    margin-right: 5px;
}

/* Form Section (Center) */
.order-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 5px;
}

.form-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #333;
}

.order-form-wrapper .form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
    display: block;
}

.order-form-wrapper .form-control {
    height: 55px;
    background-color: #fcfcfc;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    padding: 10px 20px;
    font-size: 15px;
    box-shadow: none;
    margin-bottom: 10px;
}

.order-form-wrapper .btn-submit {
    width: 150px;
    height: 50px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 2px;
    font-weight: 700;
    font-size: 16px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.order-form-wrapper .btn-submit:hover {
    background-color: #333;
}

/* Assistance Sidebar (Right) */
.assistance-sidebar {
    padding-left: 20px;
}

.assist-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: .9;
}

.assist-title span {
    color: #d1001d;
}

.assist-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.assist-item .icon-wrap {
    width: 50px;
    height: 50px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #aaa;
    font-size: 20px;
}

.assist-item .text-wrap p {
    margin: 0;
    line-height: 1.2;
}

.assist-item .text-wrap .label {
    font-size: 12px;
    color: #999;
    font-weight: 600;
}

.assist-item .text-wrap .value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
    .order-header-sec h1 {
        font-size: 28px;
    }
    .order-form-wrapper {
        padding: 20px;
    }
    .package-summary-card {
        margin-bottom: 30px;
    }
}
