    /* ============================================
   SERVICE INFORMATION PAGE STYLES
   ============================================ */
   
/* Container */
.service-container-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   SERVICE CARD
   ============================================ */
.service-card-in {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 120px;
    margin-bottom: 80px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

/* ============================================
   SEARCH BOX
   ============================================ */
.search-box {
    max-width: 500px;
    margin: 0 auto 30px;
}

.search-wrapper {
    display: flex;
    background: white;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-wrapper:focus-within {
    border-color: rgba(48, 103, 140, 1);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
}

.search-wrapper .search-input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    outline: none;
    background: transparent;
}

.search-wrapper .search-input::placeholder {
    color: #adb5bd;
}

.search-wrapper .btn-search {
    background: linear-gradient(105deg,rgba(28, 58, 77, 1) 0%, rgba(48, 103, 140, 1) 50%, rgba(20, 53, 71, 1) 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-wrapper .btn-search:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Alerts */
.alert {
    padding: 12px 20px;
    border-radius: 10px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideDown 0.3s ease;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-secondary {
    background: #e2e3e5;
    color: #383d41;
    border: 1px solid #d6d8db;
}

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

/* ============================================
   SERVICE HEADER
   ============================================ */
.service-header {
    border: 2px solid #dfdfdf;
    color: #3f3c3c;
    padding: 20px 30px;
    border-radius: 15px 15px 0 0;
    margin: -30px -30px 30px -30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.service-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.service-header small {
    opacity: 0.9;
    font-size: 14px;
}

/* ============================================
   STATUS BADGES
   ============================================ */
.status-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-completed {
    background: #d4edda;
    color: #155724;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-inprogress {
    background: #cce5ff;
    color: #004085;
}

/* ============================================
   GRID SYSTEM (No Bootstrap)
   ============================================ */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-12 {
    flex: 0 0 100%;
    padding: 0 15px;
}

.col-md-6 {
    flex: 0 0 50%;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .col-md-6 {
        flex: 0 0 100%;
        margin-bottom: 25px;
    }
    
    .col-md-6:last-child {
        margin-bottom: 0;
    }
    
    .col-12 {
    padding: 0 0px;
}
}

/* ============================================
   SECTIONS
   ============================================ */
.section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d3436;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: #667eea;
}

.mb-4 {
    margin-bottom: 30px;
}

.mb-3 {
    margin-bottom: 15px;
}

.mt-3 {
    margin-top: 15px;
}

.mt-2 {
    margin-top: 10px;
}

/* ============================================
   INFO ROWS
   ============================================ */
.info-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #6c757d;
    width: 180px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-label i {
    width: 18px;
    color: #667eea;
}

.info-value {
    color: #2d3436;
    flex: 1;
}

@media (max-width: 768px) {
    .info-row {
        flex-direction: column;
        padding: 8px 0;
    }
    
    .info-label {
        width: 100%;
        margin-bottom: 3px;
        font-size: 13px;
    }
    
    .info-value {
        font-size: 15px;
        padding-left: 26px;
    }
}

/* ============================================
   WARRANTY BADGES
   ============================================ */
.warranty-badge {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.warranty-active {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.warranty-expired {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.warranty-no {
    background: #e2e3e5;
    color: #383d41;
    border: 1px solid #d6d8db;
}

/* ============================================
   WARRANTY TIMER
   ============================================ */
.warranty-timer {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    margin-top: 15px;
}

.warranty-timer .timer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.warranty-timer .timer-days {
    font-size: 28px;
    font-weight: 700;
}

.warranty-timer .timer-label {
    font-size: 14px;
    opacity: 0.9;
}

.warranty-timer .warning-banner {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    margin-top: 10px;
}

.warranty-timer .warning-banner small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ============================================
   PAYMENT STATUS
   ============================================ */
.payment-status {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.payment-paid {
    background: #d4edda;
    color: #155724;
}

.payment-pending {
    background: #f8d7da;
    color: #721c24;
}

/* ============================================
   AMOUNT BREAKDOWN
   ============================================ */
.amount-breakdown {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.amount-breakdown .amount-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.amount-breakdown .amount-row:not(:last-child) {
    border-bottom: 1px solid #e9ecef;
}

.amount-breakdown .amount-total {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
}

.amount-breakdown .amount-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.amount-breakdown .amount-label i {
    width: 18px;
}

.amount-service {
    color: #6c757d;
    font-size: 14px;
}

.amount-parts {
    color: #6c757d;
    font-size: 14px;
}

.amount-profit {
    color: #28a745;
    font-size: 14px;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state .empty-icon {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h4 {
    color: #6c757d;
    margin-bottom: 10px;
}

.empty-state p {
    color: #adb5bd;
}
/* ============================================
   RESPONSIVE FIXES
   ============================================ */
@media (max-width: 768px) {
    .service-card {
        margin-top: 90px;
        padding: 20px;
        border-radius: 10px;
    }
    
    .service-header {
        margin: -20px -20px 20px -20px;
        padding: 15px 20px;
        border-radius: 10px 10px 0 0;
    }
    
    .service-header h3 {
        font-size: 20px;
    }
    
    .search-wrapper {
        flex-direction: column;
        border-radius: 10px;
    }
    
    .search-wrapper .search-input {
        padding: 12px 20px;
        border-radius: 10px 10px 0 0;
    }
    
    .search-wrapper .btn-search {
        border-radius: 0 0 10px 10px;
        justify-content: center;
        padding: 12px;
    }
    
    .warranty-timer .timer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .amount-breakdown .amount-total {
        font-size: 22px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.text-muted {
    color: #6c757d;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-1 {
    margin-top: 5px;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-2 {
    gap: 8px;
}

.me-1 {
    margin-right: 5px;
}

.me-2 {
    margin-right: 10px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .floating-btn,
    .search-box {
        display: none !important;
    }
    
    .service-card {
        margin-top: 20px;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .service-header {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}