/* Modern Booking Styles */

/* Multi-step Progress */
.list-unstyled.multi-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    margin: 0 auto 40px auto;
    list-style: none;
    position: relative;
    max-width: 900px;
    gap: 0;
}

.list-unstyled.multi-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 15%;
    right: 15%;
    height: 4px;
    background: #e0e0e0;
    z-index: 0;
    border-radius: 2px;
}

.list-unstyled.multi-steps::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 15%;
    height: 4px;
    background: linear-gradient(90deg, #f82c23 0%, #e02318 100%);
    z-index: 0;
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* Progress width based on active step */
.list-unstyled.multi-steps[data-current-step="1"]::after {
    width: 0%;
}

.list-unstyled.multi-steps[data-current-step="2"]::after {
    width: calc((85% - 15%) / 3);
}

.list-unstyled.multi-steps[data-current-step="3"]::after {
    width: calc((85% - 15%) / 3 * 2);
}

.list-unstyled.multi-steps[data-current-step="4"]::after {
    width: calc(85% - 15%);
}

.list-unstyled.multi-steps li {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    padding: 0 10px;
}

.list-unstyled.multi-steps li::before {
    content: attr(data-step);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #9e9e9e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    border: 4px solid white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 700;
}

/* Completed steps - red with checkmark */
.list-unstyled.multi-steps li.completed::before {
    content: '\2713';
    background: linear-gradient(135deg, #f82c23 0%, #e02318 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(248, 44, 35, 0.4);
}

.list-unstyled.multi-steps li.completed a,
.list-unstyled.multi-steps li.completed {
    color: #f82c23;
    font-weight: 600;
}

/* Active step - red with white number */
.list-unstyled.multi-steps li.is-active::before {
    background: linear-gradient(135deg, #f82c23 0%, #e02318 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(248, 44, 35, 0.4);
    transform: scale(1.1);
}

.list-unstyled.multi-steps li.is-active a,
.list-unstyled.multi-steps li.is-active {
    color: #f82c23;
    font-weight: 700;
}

.list-unstyled.multi-steps li a {
    font-size: 15px;
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 5px;
    transition: all 0.3s ease;
    word-wrap: break-word;
    line-height: 1.4;
}

.list-unstyled.multi-steps li a:hover {
    color: #f82c23;
    text-decoration: none;
}

/* Text content for steps without links */
.list-unstyled.multi-steps li:not(:has(a)) {
    font-size: 15px;
    color: #6c757d;
    font-weight: 500;
    padding: 5px;
    line-height: 1.4;
}

/* Modern Cards */
.custom-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.custom-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.custom-card header {
    background: linear-gradient(135deg, #f82c23 0%, #e02318 100%);
    color: white;
    padding: 20px 25px;
    border-bottom: none;
}

.custom-card header h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.custom-card .card-content {
    padding: 25px;
}

.custom-card .card-footer {
    background: #f8f9fa;
    padding: 15px 25px;
    border-top: 1px solid #e0e0e0;
}

/* Form Styling */
.form-group label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control {
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #f82c23;
    box-shadow: 0 0 0 3px rgba(248, 44, 35, 0.1);
}

/* Seat Selection */
.seat-choices {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    display: inline-block;
}

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

.seat-row {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.btn-seat {
    width: 50px;
    height: 50px;
    border-radius: 10px !important;
    border: 2px solid #e0e0e0;
    background: white;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
}

.btn-seat.seat-free {
    background: #4caf50;
    border-color: #4caf50;
    color: white;
}

.btn-seat.seat-free:hover {
    background: #45a049;
    transform: scale(1.05);
}

.btn-seat.seat-selected {
    background: linear-gradient(135deg, #f82c23 0%, #e02318 100%);
    border-color: #f82c23;
    color: white;
    box-shadow: 0 4px 10px rgba(248, 44, 35, 0.3);
}

.btn-seat.seat-booked {
    background: #9e9e9e;
    border-color: #9e9e9e;
    color: white;
    cursor: not-allowed;
    position: relative;
}

.btn-seat.seat-booked::before {
    content: '\f00d';
    font-family: 'FontAwesome';
    font-size: 24px;
    color: #757575;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-seat.seat-driver {
    background: #2196f3;
    border-color: #2196f3;
    color: white;
    cursor: not-allowed;
}

.btn-seat.seat-disabled {
    background: #f5f5f5;
    border-color: #e0e0e0;
    color: #bdbdbd;
    cursor: not-allowed;
}

.seat-legend {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    margin-right: 8px;
    vertical-align: middle;
}

.seat-legend-free {
    background: #4caf50;
}

.seat-legend-selected {
    background: linear-gradient(135deg, #f82c23 0%, #e02318 100%);
}

.seat-legend-booked {
    background: #9e9e9e;
}

.seat-legend-driver {
    background: #2196f3;
}

/* ========================================
   MODERN SEAT LEGEND
   ======================================== */

/* Mobile Legend Container */
.modern-seat-legend-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #e8eaed;
}

.modern-legend-title {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f82c23;
}

.modern-legend-title i {
    color: #f82c23;
    font-size: 18px;
}

.modern-legend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.modern-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.modern-legend-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modern-legend-icon {
    width: 35px !important;
    height: 35px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: white;
    margin: 0 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.modern-legend-text {
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
}

.modern-legend-note {
    background: #fff9e6;
    border-left: 4px solid #ffc107;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
    color: #856404;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.modern-legend-note i {
    color: #ffc107;
    font-size: 14px;
}

/* Desktop Legend Sidebar */
.modern-seat-legend-sidebar {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #e8eaed;
    position: sticky;
    top: 20px;
}

.modern-legend-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.modern-legend-list .modern-legend-item {
    padding: 10px 12px;
}

/* Modern Buttons */
.btn-primary,
.btn-confirm-booking {
    background: linear-gradient(135deg, #f82c23 0%, #e02318 100%);
    border: none;
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 44, 35, 0.3);
}

.btn-primary:hover,
.btn-confirm-booking:hover {
    background: linear-gradient(135deg, #e02318 0%, #c01d14 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 44, 35, 0.4);
}

.btn-default {
    background: white;
    border: 2px solid #e0e0e0;
    color: #2d3748;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-default:hover {
    border-color: #f82c23;
    color: #f82c23;
    background: #fff5f5;
}

/* Travel Info Card */
.travel-info-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #f0f0f0;
    position: sticky;
    top: 120px;
}

.travel-info-card .card-header {
    background: linear-gradient(135deg, #f82c23 0%, #e02318 100%);
    color: white;
    padding: 20px 25px;
}

.travel-info-card .card-header h5 {
    color: white !important;
    margin: 0;
    font-weight: 700;
}

.travel-info-card .card-body {
    padding: 25px;
}

.route-display {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-radius: 12px;
    margin-bottom: 25px;
    border-left: 4px solid #f82c23;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.city-name {
    font-size: 20px;
    font-weight: 800;
    color: #2d3748;
}

.route-arrow {
    font-size: 24px;
    color: #f82c23;
    margin: 0 15px;
    font-weight: 800;
}

.return-badge {
    background: #f82c23;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    margin-left: 10px;
    font-weight: 600;
}

.schedule-section {
    margin-bottom: 25px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.schedule-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
}

.schedule-details {
    text-align: right;
}

.date {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #2d3748;
}

.time {
    display: block;
    font-size: 14px;
    color: #f82c23;
    margin-top: 4px;
    font-weight: 600;
}

.section-title {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: #f82c23;
}

/* Booking List */
.booking-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.booking-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.booking-item:hover {
    border-color: #f82c23;
    box-shadow: 0 6px 20px rgba(248, 44, 35, 0.15);
}

/* Search Cards */
.btn-search-trip-card-selected {
    border: 3px solid #f82c23;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
}

.btn-search-trip-card-disabled {
    opacity: 0.6;
}

/* Payment Methods */
.div-enabled-payment-option {
    margin-bottom: 20px;
}

.div-enabled-payment-option .thumb {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.div-enabled-payment-option .thumb:hover {
    border-color: #f82c23 !important;
    box-shadow: 0 4px 15px rgba(248, 44, 35, 0.2);
    transform: translateY(-2px);
}

.icon-payment-method-selected {
    color: #f82c23 !important;
}

/* Modal Styles */
.modern-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modern-modal-content {
    background: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modern-modal-header {
    background: linear-gradient(135deg, #f82c23 0%, #e02318 100%);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modern-modal-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.modern-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modern-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modern-modal-body {
    padding: 30px;
    max-height: calc(80vh - 150px);
    overflow-y: auto;
}

.modern-modal-body::-webkit-scrollbar {
    width: 8px;
}

.modern-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modern-modal-body::-webkit-scrollbar-thumb {
    background: #f82c23;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .list-unstyled.multi-steps {
        gap: 0;
        padding: 0 10px;
    }
    
    .list-unstyled.multi-steps::before {
        top: 18px;
        left: 10%;
        right: 10%;
        height: 3px;
    }
    
    .list-unstyled.multi-steps::after {
        top: 18px;
        left: 10%;
        height: 3px;
    }
    
    /* Mobile progress width based on active step */
    .list-unstyled.multi-steps[data-current-step="1"]::after {
        width: 0%;
    }
    
    .list-unstyled.multi-steps[data-current-step="2"]::after {
        width: calc((90% - 10%) / 3);
    }
    
    .list-unstyled.multi-steps[data-current-step="3"]::after {
        width: calc((90% - 10%) / 3 * 2);
    }
    
    .list-unstyled.multi-steps[data-current-step="4"]::after {
        width: calc(90% - 10%);
    }
    
    .list-unstyled.multi-steps li {
        padding: 0 5px;
    }
    
    .list-unstyled.multi-steps li::before {
        width: 36px;
        height: 36px;
        margin-bottom: 8px;
        border: 3px solid white;
        font-size: 16px;
    }
    
    .list-unstyled.multi-steps li a {
        font-size: 11px;
        padding: 3px 2px;
    }
    
    .list-unstyled.multi-steps li:not(:has(a)) {
        font-size: 11px;
        padding: 3px 2px;
    }
    
    .list-unstyled.multi-steps li.is-active::before {
        transform: scale(1.05);
    }
    
    .custom-card header h5 {
        font-size: 16px;
    }
    
    .custom-card .card-content {
        padding: 20px;
    }
    
    .btn-seat {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
    
    .seat-choices {
        padding: 15px;
    }
    
    .travel-info-card {
        position: relative !important;
        top: 0 !important;
        margin-top: 20px;
    }
    
    #div-frontend-booking-confirmation-payment-detail-parent {
        position: relative !important;
    }
    
    .city-name {
        font-size: 16px;
        font-weight: 800;
    }
    
    .route-arrow {
        font-size: 20px;
        margin: 0 10px;
        font-weight: 800;
    }
    
    .route-display {
        flex-wrap: nowrap;
        white-space: nowrap;
    }
    
    .modern-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modern-modal-header {
        padding: 20px;
    }
    
    .modern-modal-header h3 {
        font-size: 18px;
    }
    
    .modern-modal-body {
        padding: 20px;
    }
}

/* ========================================
   SUCCESS PAGE STYLES
   ======================================== */

.modern-success-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border: 3px solid #f0f0f0;
}

.success-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
    animation: successPop 0.6s ease-out;
}

.success-icon i {
    font-size: 50px;
    color: white;
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-title {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.success-subtitle {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
}

/* Booking Info Grid */
.booking-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.booking-info-grid .info-card {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.booking-info-grid .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #f82c23;
}

.booking-info-grid .info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f82c23 0%, #e02318 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(248, 44, 35, 0.3);
}

.booking-info-grid .info-icon i {
    font-size: 28px;
    color: white;
}

.booking-info-grid .info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.booking-info-grid .info-label {
    font-size: 13px;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.booking-info-grid .info-value {
    font-size: 18px;
    color: #2d3748;
    font-weight: 800;
    word-break: break-word;
}

/* Contact Card */
.modern-contact-card {
    margin-bottom: 25px;
}

.modern-contact-card .card-header {
    background: linear-gradient(135deg, #f82c23 0%, #e02318 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 15px 15px 0 0;
}

.modern-contact-card .card-header h5 {
    color: white !important;
    margin: 0;
    font-weight: 700;
}

.modern-contact-card .card-header i {
    margin-right: 8px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #f82c23;
}

.contact-label {
    font-size: 13px;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
}

.contact-label i {
    margin-right: 6px;
    color: #f82c23;
}

.contact-value {
    font-size: 16px;
    color: #2d3748;
    font-weight: 700;
}

/* Trip Detail Card */
.modern-trip-detail-card {
    margin-bottom: 25px;
}

.modern-trip-detail-card .card-header {
    background: linear-gradient(135deg, #f82c23 0%, #e02318 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 15px 15px 0 0;
}

.modern-trip-detail-card .card-header h5 {
    color: white !important;
    margin: 0;
    font-weight: 700;
}

.modern-trip-detail-card .card-header i {
    margin-right: 8px;
}

.seat-layout-section {
    margin: 40px 0;
}

.seat-layout-section .seat-choices {
    max-width: 100%;
    margin: 0 auto;
}

/* Email Notification */
.email-notification-card {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    margin-bottom: 30px;
    border: 2px solid #2196f3;
}

.email-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.email-icon i {
    font-size: 28px;
    color: white;
}

.email-text {
    font-size: 16px;
    color: #1565c0;
    margin: 0;
    font-weight: 500;
}

.email-text strong {
    font-weight: 800;
    color: #0d47a1;
}

/* Success Actions */
.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.success-actions .btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.success-actions .btn-home {
    background: linear-gradient(135deg, #f82c23 0%, #e02318 100%);
    border: none;
    color: white;
}

.success-actions .btn-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(248, 44, 35, 0.4);
}

.success-actions .btn-check-order {
    background: white;
    border: 2px solid #f82c23;
    color: #f82c23;
}

.success-actions .btn-check-order:hover {
    background: #f82c23;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(248, 44, 35, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .modern-success-card {
        padding: 35px 20px;
    }
    
    .success-icon {
        width: 80px;
        height: 80px;
    }
    
    .success-icon i {
        font-size: 40px;
    }
    
    .success-title {
        font-size: 24px;
    }
    
    .success-subtitle {
        font-size: 16px;
    }
    
    .booking-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .success-actions .btn {
        width: 100%;
    }
}

