/* return-style.css - Kodak Logistics Return Page Styles */
/* Matches main website theme: Red (#8b0000) and Gold (#ffb347) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
}

/* ===== HEADER & NAVIGATION ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(139, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icons {
    display: flex;
    gap: 5px;
}

.icon-box {
    background: #ffb347;
    padding: 5px 8px;
    border-radius: 8px;
    font-size: 1rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffb347;
    letter-spacing: 2px;
}

.tagline {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #ffb347;
}

/* ===== MAIN CONTAINER ===== */
.return-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

/* ===== HEADER SECTION ===== */
.return-header {
    text-align: center;
    margin-bottom: 2rem;
}

.return-header h1 {
    font-size: 2.2rem;
    color: #ffb347;
    margin-bottom: 0.5rem;
}

.return-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== VERIFICATION CARD ===== */
.verification-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 179, 71, 0.3);
}

.verification-card h3 {
    color: #ffb347;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.input-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.input-group input {
    flex: 2;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 179, 71, 0.5);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 1rem;
}

.input-group input:focus {
    outline: none;
    border-color: #ffb347;
}

.input-group button {
    flex: 1;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #ffb347, #ff8c42);
    border: none;
    border-radius: 10px;
    color: #8b0000;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 179, 71, 0.4);
}

/* ===== BOOKING INFO CARD ===== */
.booking-info {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #ffb347;
}

.booking-info h3 {
    color: #ffb347;
    margin-bottom: 1rem;
}

.booking-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.detail-item {
    margin-bottom: 0.5rem;
}

.detail-label {
    font-weight: bold;
    color: #ffb347;
    font-size: 0.85rem;
}

.detail-value {
    font-size: 1rem;
    word-break: break-word;
}

.items-list {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

/* ===== FORM CARD ===== */
.form-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 179, 71, 0.3);
}

.form-card h3 {
    color: #ffb347;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 179, 71, 0.5);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffb347;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* ===== PAYMENT SECTION ===== */
.payment-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 179, 71, 0.3);
}

.payment-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.payment-option {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #ffb347;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    background: rgba(255, 179, 71, 0.1);
}

.payment-option input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.payment-option-content strong {
    color: white;
    display: block;
}

.payment-option-content small {
    color: #ccc;
    font-size: 0.75rem;
}

.momo-fields {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    border-left: 4px solid #ffb347;
}

.momo-number {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.momo-number-code {
    background: #8b0000;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: bold;
    font-family: monospace;
    color: #ffb347;
}

.copy-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
}

.copy-btn:hover {
    background: #1da851;
}

/* ===== TOTAL SECTION ===== */
.total-section {
    background: linear-gradient(135deg, #8b0000, #6b0f1a);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    margin: 1rem 0;
}

.total-section p {
    font-size: 1.5rem;
    font-weight: bold;
}

.total-section small {
    font-size: 0.8rem;
    color: #ffb347;
}

/* ===== DAILY LIMIT NOTICE ===== */
.limit-notice {
    background: rgba(255, 179, 71, 0.1);
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 179, 71, 0.3);
}

.limit-notice.warning {
    background: rgba(255, 100, 100, 0.2);
    border-color: #ff6b6b;
}

/* ===== SUBMIT BUTTON ===== */
.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #ffb347, #ff8c42);
    border: none;
    border-radius: 50px;
    color: #8b0000;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 179, 71, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ===== STATUS BADGES ===== */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.status-pending {
    background: #fff3e0;
    color: #e67e22;
}

.status-confirmed {
    background: #d4edda;
    color: #28a745;
}

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

.status-cancelled {
    background: #f8d7da;
    color: #dc3545;
}

/* ===== TOAST NOTIFICATION ===== */
.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    z-index: 10000;
    animation: slideIn 0.3s ease;
    font-weight: bold;
}

.toast-success {
    background: #2ecc71;
    color: white;
}

.toast-error {
    background: #e74c3c;
    color: white;
}

.toast-info {
    background: #3498db;
    color: white;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== LOADING SPINNER ===== */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: #ffb347;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== SUCCESS MESSAGE ===== */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 1rem 0;
}

.success-message h3 {
    color: #155724;
    margin-bottom: 0.5rem;
}

/* ===== ERROR MESSAGE ===== */
.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: center;
}

/* ===== FOOTER ===== */
footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem 5%;
    text-align: center;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffb347;
    margin-bottom: 0.5rem;
}

.footer-tag {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-contact {
    margin: 1rem 0;
}

.footer-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    margin: 0.5rem 0;
}

.footer-email a {
    color: #ffb347;
    text-decoration: none;
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
        margin-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .return-container {
        padding: 0 1rem;
    }
    
    .return-header h1 {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .payment-options {
        flex-direction: column;
    }
    
    .booking-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .return-header h1 {
        font-size: 1.5rem;
    }
    
    .momo-number {
        flex-direction: column;
        align-items: stretch;
    }
    
    .momo-number-code {
        text-align: center;
    }
}