/* ===== Pickup Page Styles ===== */
/* DopGO Ride Request Page */

@import 'common.css';

:root {
    --pickup-primary: #594545;
    --pickup-primary-dark: #2b2525;
    --pickup-success: #00e676;
    --pickup-warning: #ffa500;
    --pickup-danger: #b00020;
    --pickup-info: #2196f3;
}

/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--bg-secondary);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Pickup Content */
.pickup-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 100px;
    min-height: 150vh;
}

/* Pickup Header */
.pickup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
    background: linear-gradient(135deg, #382c42 0%, #18141c 100%);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(56, 44, 66, 0.3);
}

.pickup-header h1 {
    font-size: 28px;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pickup-header h1 i {
    margin-right: 10px;
    color: #ff9500;
}

.pickup-header p {
    color: #e0e0e0;
    margin: 4px 0 0 0;
    font-size: 14px;
}

/* Driver Field Button */
.driver-field-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #05ebb1;
    color: #18141c;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(5, 235, 177, 0.3);
}

.driver-field-btn:hover {
    background: #00d198;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 235, 177, 0.4);
}

/* Map Container */
.map-container {
    position: relative;
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 75vh;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

/* Map Controls */
.map-controls {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.map-control-btn {
    background: #ffffff;
    color: #333333;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-control-btn:hover {
    background: var(--pickup-primary);
    color: #181818;
    transform: scale(1.1);
}

/* Current Location Marker */
.current-location-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 5;
}

.current-location-dot {
    width: 16px;
    height: 16px;
    background: #2196f3;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.current-location-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(33, 150, 243, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Driver Info Overlay */
.driver-info-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    overflow: hidden;
    z-index: 20;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.driver-info-content {
    padding: 16px;
}

.driver-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.driver-avatar-small {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--pickup-primary);
}

.driver-info-text {
    flex: 1;
}

.driver-name-text {
    font-weight: 600;
    color: #1f2937;
    font-size: 16px;
    display: block;
}

.driver-vehicle-text {
    font-size: 13px;
    color: #6b7280;
}

.driver-overlay-close {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.driver-overlay-close:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.driver-info-stats {
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 12px;
}

.driver-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.driver-stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--pickup-primary);
}

.driver-stat-label {
    font-size: 11px;
    color: #6b7280;
}

.driver-info-actions {
    display: flex;
    gap: 10px;
}

.driver-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.driver-action-btn {
    background: var(--pickup-primary);
    color: #181818;
}

.driver-action-btn:hover {
    background: var(--pickup-primary-dark);
}

.driver-action-btn.message-btn {
    background: #e5e7eb;
    color: #1f2937;
}

.driver-action-btn.message-btn:hover {
    background: #d1d5db;
}

/* Ride Status Overlay */
.ride-status-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 16px;
    z-index: 20;
    min-width: 200px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ride-status-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ride-status-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ride-status-icon {
    width: 32px;
    height: 32px;
    background: var(--pickup-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #181818;
    font-size: 14px;
}

.ride-status-text {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.ride-route-preview {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.route-preview-point {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #ffffff;
}

.route-preview-point.pickup span {
    color: #05ebb1;
}

.route-preview-point.destination span {
    color: #f44336;
}

.route-preview-line {
    color: #9ca3af;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.route-preview-line i {
    margin: 0 2px;
}

.ride-fare-preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.ride-fare-preview span {
    font-size: 12px;
    color: #9ca3af;
}

.fare-amount {
    font-size: 16px;
    font-weight: 700;
    color: var(--pickup-primary);
}

/* Car Marker */
.car-marker {
    transition: transform 0.3s ease;
}

/* Route Line Layer */
.route-line {
    position: absolute;
    z-index: 1;
}

/* Featured Places as Map Markers */
.featured-marker {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.featured-marker:hover {
    transform: scale(1.1);
}

/* Mapbox Popup Styles */
.mapboxgl-popup-content {
    background: #1f2937 !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 16px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
}

.mapboxgl-popup-tip {
    border-top-color: #1f2937 !important;
}

.mapboxgl-popup-close-button {
    color: #ffffff !important;
    font-size: 20px !important;
}

/* Responsive Map */
@media (max-width: 768px) {
    #map {
        height: 280px;
    }
    
    .map-controls {
        top: 8px;
        right: 8px;
    }
    
    .map-control-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .driver-info-overlay {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
    
    .driver-info-stats {
        padding: 10px 0;
    }
    
    .driver-stat-value {
        font-size: 16px;
    }
    
    .ride-status-overlay {
        top: 12px;
        left: 12px;
        right: 12px;
        min-width: auto;
    }
    
    .ride-fare-preview {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .fare-amount {
        font-size: 18px;
    }
}
------- REPLACE


/* Location Inputs Section */
.location-inputs-section {
    background: var(--pickup-card-bg);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.location-inputs-section .form-group {
    margin-bottom: 16px;
}

.location-inputs-section .form-group:last-child {
    margin-bottom: 0;
}

.location-inputs-section .form-group label {
    font-size: 14px;
    color: var(--pickup-text);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.location-inputs-section .form-group label i {
    color: var(--pickup-primary);
}

.location-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-input-group .form-input {
    width: 100%;
}

.location-quick-btns {
    display: flex;
    gap: 10px;
}

.quick-loc-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: #e5e7eb;
    border: 1px solid #d1d5db;
    color: #1f2937;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-loc-btn:hover {
    background: var(--pickup-primary);
    color: #181818;
    border-color: var(--pickup-primary);
}

.quick-loc-btn i {
    font-size: 14px;
}

.quick-loc-btn .fa-home {
    color: #ff9500;
}

.quick-loc-btn .fa-crosshairs {
    color: #1e3a5f;
}

.location-inputs-section .form-input {
    background: #e5e7eb;
    border: 1px solid #d1d5db;
    color: #1f2937;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.location-inputs-section .form-input:focus {
    border-color: var(--pickup-primary);
}

.location-inputs-section .form-input::placeholder {
    color: var(--pickup-text-secondary);
}

/* Schedule for Later Section */
.schedule-for-later-section {
    background: var(--pickup-card-bg);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.schedule-toggle-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.schedule-toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.schedule-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.schedule-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #444;
    border-radius: 26px;
    transition: all 0.3s ease;
}

.schedule-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.schedule-toggle-switch input:checked + .schedule-toggle-slider {
    background: var(--pickup-primary);
}

.schedule-toggle-switch input:checked + .schedule-toggle-slider:before {
    transform: translateX(24px);
}

.schedule-toggle-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--pickup-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.schedule-toggle-label i {
    color: var(--pickup-primary);
    font-size: 18px;
}

.schedule-fields-row {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--pickup-border);
}

.schedule-date-picker,
.schedule-time-picker {
    flex: 1;
}

.schedule-date-picker label,
.schedule-time-picker label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--pickup-text-secondary);
    margin-bottom: 8px;
}

.schedule-date-picker label i,
.schedule-time-picker label i {
    color: var(--pickup-primary);
}

.schedule-fields-row .form-input {
    background: #3a3a3a;
    border: 1px solid #555;
    color: var(--pickup-text);
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.schedule-fields-row .form-input:focus {
    outline: none;
    border-color: var(--pickup-primary);
}

/* Ride Type Toggle Section */
.ride-type-toggle-section {
    margin-bottom: 16px;
}

.ride-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

@media (max-width: 500px) {
    .ride-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ride-type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 6px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #000000;
}

.ride-type-btn:hover {
    border-color: var(--pickup-primary);
    background: rgba(5, 235, 177, 0.1);
}

.ride-type-btn.selected {
    border-color: var(--pickup-primary);
    background: var(--pickup-primary);
    color: #ffffff;
}

.ride-type-btn i {
    font-size: 16px;
    background: linear-gradient(135deg, #088ccf 50%, #c1cdd4 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ride-type-btn.selected i {
    background: linear-gradient(135deg, #088ccf 50%, #c1cdd4 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ride-type-btn span {
    font-size: 8px;
    font-weight: 500;
    text-align: center;
    line-height: 1.1;
}

/* Confirm Pickup Button */
.confirm-pickup-section {
    margin-bottom: 16px;
}

.confirm-pickup-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: #05ebb1;
    color: #181818;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(5, 235, 177, 0.3);
}

.confirm-pickup-btn:hover {
    background: #00d198;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(5, 235, 177, 0.4);
}

.confirm-pickup-btn:active {
    transform: translateY(0);
}

.confirm-pickup-btn i {
    font-size: 20px;
}

/* Quick Actions */
.quick-actions {
    margin-bottom: 24px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn.primary {
    background: var(--pickup-primary);
    color: #181818;
}

.action-btn.primary:hover {
    background: var(--pickup-primary-dark);
    transform: translateY(-2px);
}

/* Sections */
.section {
    margin-bottom: 32px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 20px;
    color: var(--pickup-text);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header h2 i {
    color: var(--pickup-primary);
}

.section-subtitle {
    font-size: 13px;
    color: var(--pickup-text-secondary);
}

/* Badge */
.badge {
    background: #ffffff;
    color: #181818;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Pickup Dates Container */
.pickup-dates-container {
    position: relative;
    display: flex;
    flex-direction: column;
}

.scroll-btn {
    display: none;
}

.pickup-dates-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
    padding: 8px;
}

/* Pickup Date Card */
.pickup-date-card {
    background: var(--pickup-card-bg);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: all 0.2s ease;
}

.pickup-date-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.pickup-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

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

.ticket-info i {
    color: var(--pickup-primary);
}

.ticket-no {
    font-weight: 600;
    color: var(--pickup-primary);
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #181818;
}

.status-badge i {
    margin-right: 4px;
}

.pickup-card-body {
    font-size: 14px;
}

.date-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--pickup-text-secondary);
    margin-bottom: 8px;
}

.schedule-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--pickup-primary);
    font-size: 13px;
    margin-bottom: 8px;
}

.preferences-display {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.preference-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

.preference-badge.music,
.preference-badge.conversation {
    background: #222;
    color: var(--pickup-text);
}

.preference-badge.special {
    background: var(--pickup-primary);
    color: #181818;
}

.vehicle-info {
    margin-top: 8px;
}

.vehicle-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #222;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--pickup-text);
}

.vehicle-type-badge i {
    color: var(--pickup-primary);
}

.pickup-card-driver {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--pickup-border);
}

.driver-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--pickup-primary);
}

.driver-info {
    flex: 1;
}

.driver-label {
    font-size: 12px;
    color: var(--pickup-text-secondary);
}

.driver-name {
    font-weight: 600;
    color: var(--pickup-text);
    display: block;
}

.driver-phone {
    font-size: 13px;
    color: var(--pickup-primary);
}

/* ===== Pickup Card Action Buttons ===== */
.pickup-card-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--pickup-border);
}

.pickup-card-actions .action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pickup-card-actions .cancel-btn {
    background: #f44336;
    color: #ffffff;
    border: 2px solid #f44336;
}

.pickup-card-actions .cancel-btn:hover {
    background: #d32f2f;
    border-color: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

.pickup-card-actions .confirm-btn {
    background: #00e676;
    color: #181818;
    border: 2px solid #00e676;
}

.pickup-card-actions .confirm-btn:hover {
    background: #00c853;
    border-color: #00c853;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 230, 118, 0.3);
}

.pickup-card-actions .action-btn i {
    font-size: 14px;
}

/* Offer Info Display */
.offer-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(5, 235, 177, 0.1);
    border-radius: 8px;
}

.offer-info i {
    color: var(--pickup-primary);
    font-size: 16px;
}

.offer-amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--pickup-primary);
}

/* User Info Display */
.user-info-display {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.user-info-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--pickup-text);
    padding: 6px 10px;
    background: #222;
    border-radius: 6px;
}

.user-info-row i {
    color: var(--pickup-primary);
    font-size: 12px;
}

/* Trip Details Display */
.trip-details-display {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 10px 0;
    padding: 10px 12px;
    background: #222;
    border-radius: 8px;
}

.trip-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--pickup-text);
}

.trip-detail i {
    width: 16px;
    text-align: center;
    font-size: 12px;
}

/* ===== Driver Distance & ETA Display ===== */
.driver-distance-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
    padding: 12px;
    background: rgba(255, 179, 0, 0.15);
    border: 1px solid rgba(255, 179, 0, 0.3);
    border-radius: 10px;
}

.driver-distance-info .distance-item,
.driver-distance-info .eta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #fff;
}

.driver-distance-info i {
    color: #ffb300;
    font-size: 16px;
}

.driver-distance-info strong {
    color: #ffb300;
}

.driver-eta-display {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(5, 235, 177, 0.1) 0%, rgba(0, 230, 118, 0.05) 100%);
    border: 1px solid rgba(5, 235, 177, 0.3);
    border-radius: 12px;
}

.driver-eta-display .eta-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.driver-eta-display .eta-box i {
    font-size: 24px;
    color: #05ebb1;
}

.driver-eta-display .eta-value {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.driver-eta-display .eta-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trip Summary Section */
.trip-summary-display {
    margin-bottom: 16px;
}

.summary-display-card {
    background: var(--pickup-card-bg);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.summary-display-route {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--pickup-border);
}

.route-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.route-point i:first-child {
    width: 20px;
    text-align: center;
}

.route-connector {
    margin-left: 9px;
    color: var(--pickup-text-secondary);
}

.summary-display-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.detail-row span:first-child {
    color: var(--pickup-text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-row span:last-child {
    font-weight: 500;
}

.total-row {
    padding-top: 12px;
    border-top: 1px solid var(--pickup-border);
    margin-top: 4px;
}

.total-row span:first-child {
    font-weight: 600;
    color: var(--pickup-text);
}

.total-amount {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--pickup-primary) !important;
}

/* Featured Places Section */
.featured-places-inline {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.inline-featured-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inline-featured-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--pickup-card-bg);
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.inline-featured-card:hover {
    background: #1f1f1f;
    transform: translateX(4px);
}

.inline-featured-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pickup-primary);
    color: #181818;
    border-radius: 50%;
    font-size: 18px;
}

.inline-featured-info {
    flex: 1;
}

.inline-featured-info h4 {
    margin: 0;
    font-size: 15px;
    color: var(--pickup-text);
}

.inline-featured-info p {
    margin: 4px 0 0 0;
    font-size: 13px;
    color: var(--pickup-text-secondary);
}

.inline-featured-type {
    font-size: 11px;
    color: var(--pickup-primary);
    margin-top: 4px;
    display: block;
}

.inline-featured-action {
    color: var(--pickup-primary);
    font-size: 20px;
}

/* Ride History Section */
.history-filter select {
    background: var(--pickup-card-bg);
    color: var(--pickup-text);
    border: 1px solid var(--pickup-border);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    outline: none;
    cursor: pointer;
}

.ride-history-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ride-history-card {
    background: var(--pickup-card-bg);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.history-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.history-ticket-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.history-ticket-no {
    font-weight: 600;
    color: var(--pickup-primary);
}

.history-ride-type {
    font-size: 13px;
    color: var(--pickup-text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.history-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.history-status.completed {
    background: var(--pickup-success);
    color: #181818;
}

.history-status.cancelled {
    background: var(--pickup-danger);
    color: #fff;
}

.history-card-body {
    margin-bottom: 12px;
}

.history-route {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.history-route .route-point {
    font-size: 14px;
}

.history-route .route-point i {
    width: 16px;
    text-align: center;
}

.history-route .route-point.pickup i:first-child {
    color: var(--pickup-success);
}

.history-route .route-point.destination i:first-child {
    color: var(--pickup-danger);
}

.history-route .route-line {
    margin-left: 7px;
    color: var(--pickup-text-secondary);
    font-size: 12px;
}

.history-card-footer {
    padding-top: 12px;
    border-top: 1px solid var(--pickup-border);
}

.history-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--pickup-text-secondary);
    margin-bottom: 8px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item.price {
    color: var(--pickup-primary);
    font-weight: 600;
}

.history-driver {
    font-size: 13px;
    color: var(--pickup-text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.history-driver i {
    color: var(--pickup-primary);
}

/* History Stats */
.history-stats {
    display: flex;
    justify-content: space-around;
    background: var(--pickup-card-bg);
    border-radius: 12px;
    padding: 20px;
    margin-top: 16px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-item i {
    font-size: 24px;
    color: var(--pickup-primary);
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--pickup-text);
}

.stat-label {
    font-size: 12px;
    color: var(--pickup-text-secondary);
}

/* Empty & Loading States */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.empty-state i {
    font-size: 48px;
    color: #444;
    margin-bottom: 16px;
}

.empty-state p {
    color: #888;
}

.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #888;
}

.loading-state i {
    font-size: 32px;
    margin-bottom: 12px;
    animation: spin 1s linear infinite;
}

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

.error-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    color: var(--pickup-danger);
}

.error-state i {
    font-size: 32px;
    margin-bottom: 12px;
}

/* ===== Modal Styles ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.pickup-modal {
    background: #ffffff;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    scrollbar-width: thin;
    scrollbar-color: #594545 #f0f0f0;
}

/* Scrollbar styling for Webkit browsers */
.pickup-modal::-webkit-scrollbar {
    width: 8px;
}

.pickup-modal::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.pickup-modal::-webkit-scrollbar-thumb {
    background: #594545;
    border-radius: 4px;
}

.pickup-modal::-webkit-scrollbar-thumb:hover {
    background: #4a3a3a;
}

.pickup-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--pickup-border);
}

.pickup-modal-header h2 {
    margin: 0;
    font-size: 20px;
    color: var(--pickup-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pickup-modal-header h2 i {
    color: var(--pickup-primary);
}

.modal-close {
    background: none;
    border: none;
    color: var(--pickup-text);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--pickup-border);
    color: var(--pickup-primary);
}

.pickup-modal-body {
    padding: 20px;
}

/* Profile Status */
.profile-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: #222;
    border-radius: 10px;
}

.status-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #888;
}

.status-light.active {
    background: var(--pickup-success);
    box-shadow: 0 0 8px var(--pickup-success);
}

#profileStatusText {
    font-size: 14px;
    color: #ffffff;
}

/* Form Grid */
.pickup-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .pickup-form-grid {
        grid-template-columns: 1fr;
    }
}

.form-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    color: #000000;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: #423241;
}

.form-input,
.form-select {
    background: #ffffff;
    border: 2px solid #423241;
    color: #000000;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease;
    box-shadow: none;
}

.form-input:focus,
.form-select:focus {
    border-color: #423241;
}

.input-with-prefix {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-prefix .prefix {
    position: absolute;
    left: 16px;
    color: var(--pickup-text-secondary);
    font-weight: 500;
}

.input-with-prefix .form-input {
    padding-left: 32px;
    width: 100%;
}

/* Location Buttons */
.location-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.location-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: #222;
    border: 1px solid var(--pickup-border);
    color: var(--pickup-text);
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.location-btn:hover {
    background: var(--pickup-primary);
    color: #181818;
    border-color: var(--pickup-primary);
}

/* Toggle Button */
.toggle-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    background: #222;
    border: 1px solid var(--pickup-border);
    color: var(--pickup-text);
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.toggle-btn:hover {
    border-color: var(--pickup-primary);
}

.toggle-btn.active {
    background: var(--pickup-primary);
    color: #181818;
}

.toggle-btn i:last-child {
    transition: transform 0.2s ease;
}

.toggle-btn.active i:last-child {
    transform: rotate(180deg);
}

/* Section Divider */
.pickup-section-divider {
    margin: 24px 0 16px 0;
    padding-top: 16px;
    border-top: 1px solid var(--pickup-border);
}

.pickup-section-divider h3 {
    margin: 0;
    font-size: 16px;
    color: var(--pickup-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pickup-section-divider h3 i {
    color: var(--pickup-primary);
}

/* Ride Preferences */
.ride-preferences-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 600px) {
    .ride-preferences-grid {
        grid-template-columns: 1fr;
    }
}

.preference-card {
    background: #ffffff;
    border: 2px solid #423241;
    border-radius: 12px;
    padding: 16px;
}

.preference-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.preference-card-header i {
    color: var(--pickup-primary);
    font-size: 18px;
}

.preference-card-header label {
    font-weight: 600;
    color: var(--pickup-text);
}

.preference-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.preference-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.preference-option:hover {
    background: rgba(255,255,255,0.05);
}

.preference-option input[type="radio"] {
    accent-color: var(--pickup-primary);
}

.option-label {
    font-size: 13px;
    color: var(--pickup-text);
}

/* Special Options */
.special-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 600px) {
    .special-options-grid {
        grid-template-columns: 1fr;
    }
}

.option-card {
    background: #ffffff;
    border: 2px solid #423241;
    border-radius: 10px;
    padding: 12px;
}

.checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-option input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid var(--pickup-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--pickup-primary);
    border-color: var(--pickup-primary);
}

.checkbox-custom i {
    font-size: 12px;
    color: #181818;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom i {
    opacity: 1;
}

.option-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.option-content i {
    color: var(--pickup-primary);
    font-size: 18px;
    margin-bottom: 4px;
}

.option-content span {
    font-size: 14px;
    font-weight: 500;
    color: var(--pickup-text);
}

.option-content small {
    font-size: 12px;
    color: var(--pickup-text-secondary);
}

/* Schedule Pickup */
.scheduled-pickup-section {
    background: #222;
    border-radius: 12px;
    padding: 16px;
}

.schedule-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toggle-switch {
    position: relative;
    width: 48px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #444;
    border-radius: 26px;
    transition: all 0.3s ease;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--pickup-primary);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(22px);
}

.toggle-label {
    font-size: 14px;
    color: var(--pickup-text);
}

.schedule-fields {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: rgba(5,235,161,0.1);
    border-radius: 8px;
    margin-top: 12px;
}

.schedule-info i {
    color: var(--pickup-primary);
    font-size: 16px;
}

.schedule-info span {
    font-size: 13px;
    color: var(--pickup-text-secondary);
}

/* Coupon Section */
.coupon-section {
    margin-top: 8px;
}

.coupon-input-group {
    display: flex;
    gap: 10px;
}

.coupon-input-group .form-input {
    flex: 1;
}

.apply-coupon-btn {
    padding: 12px 20px;
    background: var(--pickup-primary);
    color: #181818;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.apply-coupon-btn:hover {
    background: var(--pickup-primary-dark);
}

.applied-coupon {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(5,235,161,0.1);
    border: 1px solid var(--pickup-primary);
    border-radius: 10px;
    margin-top: 12px;
}

.applied-coupon i {
    color: var(--pickup-success);
    font-size: 18px;
}

.applied-coupon span {
    flex: 1;
    font-size: 14px;
    color: var(--pickup-text);
}

.remove-coupon-btn {
    background: none;
    border: none;
    color: var(--pickup-text-secondary);
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease;
}

.remove-coupon-btn:hover {
    color: var(--pickup-danger);
}

/* Vehicle Selection */
.vehicle-selection-section {
    margin-top: 8px;
}

.vehicle-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vehicle-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #222;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vehicle-option:hover {
    border-color: var(--pickup-border);
}

.vehicle-option.selected {
    border-color: var(--pickup-primary);
    background: rgba(5,235,161,0.05);
}

.vehicle-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pickup-primary);
    color: #181818;
    border-radius: 10px;
    font-size: 20px;
}

.vehicle-info {
    flex: 1;
}

.vehicle-name {
    font-weight: 600;
    color: var(--pickup-text);
    display: block;
}

.vehicle-desc {
    font-size: 12px;
    color: var(--pickup-text-secondary);
}

.vehicle-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--pickup-primary);
}

/* Payment Method */
.payment-method-section {
    margin-top: 8px;
}

.payment-options {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.payment-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: #222;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-option:hover {
    border-color: var(--pickup-border);
}

.payment-option.selected {
    border-color: var(--pickup-primary);
    background: rgba(5,235,161,0.05);
}

.payment-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pickup-primary);
    color: #181818;
    border-radius: 50%;
    font-size: 16px;
}

.payment-option span {
    font-size: 13px;
    font-weight: 500;
    color: var(--pickup-text);
}

.card-details {
    background: #222;
    border-radius: 12px;
    padding: 16px;
    margin-top: 12px;
}

.form-row-inline {
    display: flex;
    gap: 12px;
}

.form-row-inline .form-group {
    flex: 1;
}

/* Driver Rating Info */
.driver-rating-section {
    margin-top: 8px;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #222;
    border-radius: 10px;
}

.rating-info i {
    color: var(--pickup-primary);
    font-size: 18px;
}

.rating-info span {
    font-size: 13px;
    color: var(--pickup-text-secondary);
}

/* ETA Section */
.eta-section {
    margin-top: 8px;
}

.eta-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    background: #222;
    border-radius: 12px;
}

.eta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eta-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--pickup-primary);
    line-height: 1;
}

.eta-label {
    font-size: 12px;
    color: var(--pickup-text-secondary);
    margin-top: 4px;
}

.eta-divider {
    font-size: 24px;
    color: var(--pickup-text-secondary);
}

.eta-info {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: var(--pickup-text-secondary);
}

/* SOS Section */
.sos-section {
    margin-top: 24px;
    text-align: center;
}

.sos-emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--pickup-danger);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sos-emergency-btn:hover {
    background: #900018;
    transform: scale(1.05);
}

.sos-emergency-btn i {
    font-size: 18px;
}

/* Modal Footer */
.pickup-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px;
    border-top: 1px solid var(--pickup-border);
}

.btn-secondary,
.btn-primary {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary {
    background: #ffffff;
    color: #181818;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #f0f0f0;
}

.btn-primary {
    background: #b00020;
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    background: #900018;
}

/* Success Alert */
.success-alert {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.success-alert.show {
    display: flex;
}

.success-content {
    background: #000000;
    border: 2px solid var(--pickup-primary);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 8px 40px rgba(5, 235, 177, 0.3);
}

.success-content i {
    font-size: 56px;
    color: var(--pickup-success);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 230, 118, 0.5));
}

.success-content h3 {
    margin: 0 0 16px 0;
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
}

.success-content p {
    margin: 0 0 28px 0;
    color: #cccccc;
    line-height: 1.7;
    font-size: 15px;
}

.success-content .ticket-number {
    display: inline-block;
    background: var(--pickup-primary);
    color: #000000;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    margin: 12px 0;
    letter-spacing: 2px;
}

.success-content .notification-note {
    background: rgba(5, 235, 177, 0.1);
    border: 1px solid var(--pickup-primary);
    border-radius: 10px;
    padding: 12px 16px;
    margin-top: 16px;
    font-size: 13px;
    color: #05ebb1;
}

.success-content .notification-note i {
    font-size: 14px;
    margin: 0 6px 0 0;
    filter: none;
    color: #05ebb1;
}

.success-content button {
    padding: 14px 40px;
    background: linear-gradient(135deg, #05ebb1 0%, #00d198 100%);
    color: #000000;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(5, 235, 177, 0.4);
    margin-top: 20px;
}

.success-content button:hover {
    background: linear-gradient(135deg, #00d198 0%, #05ebb1 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 235, 177, 0.5);
}

/* Notifications Dropdown */
.notifications-dropdown {
    position: fixed;
    top: 70px;
    right: 32px;
    background: #181818;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    padding: 18px 0;
    min-width: 320px;
    z-index: 4000;
    max-height: 400px;
    overflow-y: auto;
}

.notif-header {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0 18px 10px 18px;
    border-bottom: 1px solid #222;
    margin-bottom: 8px;
}

.notif-empty {
    padding: 12px 18px;
    color: #aaa;
    text-align: center;
}

.notif-item {
    padding: 10px 18px;
    border-bottom: 1px solid #222;
}

.notif-item:last-child {
    border-bottom: none;
}

.notif-item b {
    display: block;
    margin-bottom: 4px;
}

.notif-item p {
    margin: 0 0 6px 0;
    font-size: 0.97em;
}

.notif-item small {
    font-size: 0.85em;
    color: var(--pickup-primary);
}

/* Favorite Locations Modal */
.favorite-modal-container {
    background: #000000;
    border: 2px solid #333;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.favorite-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    background: #000000;
    z-index: 10;
}

.favorite-modal-header .modal-close {
    color: #ff9500;
    background: rgba(255, 149, 0, 0.1);
}

.favorite-modal-header .modal-close:hover {
    background: #ff9500;
    color: #000000;
}

.favorite-modal-header h2 {
    margin: 0;
    font-size: 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.favorite-modal-header h2 i {
    color: #ff9500;
}

.favorite-modal-body {
    padding: 20px;
}

/* Featured Places Section in Modal */
.featured-places-section {
    margin-bottom: 24px;
}

.featured-places-section h3 {
    margin: 0 0 12px 0;
    font-size: 16px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-places-section h3 i {
    color: #ff9500;
}

.featured-places-scroll {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.featured-place-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 14px;
    border: 1px solid #333;
}

.featured-place-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff9500;
    color: #000000;
    border-radius: 50%;
    font-size: 16px;
}

.featured-place-info {
    flex: 1;
}

.featured-place-info h4 {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
}

.featured-place-info p {
    margin: 4px 0 0 0;
    font-size: 12px;
    color: #999999;
}

.add-to-favorites-btn {
    padding: 8px 12px;
    background: transparent;
    border: 1px solid #ff9500;
    color: #ff9500;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.add-to-favorites-btn:hover {
    background: #ff9500;
    color: #000000;
}

/* My Saved Locations Section */
.my-locations-section {
    margin-top: 8px;
}

.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.section-header-inline h3 {
    margin: 0;
    font-size: 16px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header-inline h3 i {
    color: #ff9500;
}

.add-location-inline-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #ff9500;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-location-inline-btn:hover {
    background: #e68600;
}

/* Add Location Form */
.add-location-form {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.form-row-inline {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.form-row-inline .form-input,
.form-row-inline .form-select {
    flex: 1;
}

.add-location-form .form-input {
    margin-bottom: 12px;
}

.form-actions-inline {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.locations-list-container {
    max-height: 300px;
    overflow-y: auto;
}

.modal-locations-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-location-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 14px;
    transition: all 0.2s ease;
}

.modal-location-card:hover {
    background: #2a2a2a;
}

.modal-location-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff9500;
    color: #000000;
    border-radius: 50%;
    font-size: 16px;
}

.modal-location-info {
    flex: 1;
}

.modal-location-info h4 {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
}

.modal-location-info p {
    margin: 4px 0 0 0;
    font-size: 12px;
    color: #999999;
}

.location-type-badge {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(255, 149, 0, 0.15);
    border-radius: 12px;
    font-size: 10px;
    color: #ff9500;
    margin-top: 6px;
}

.modal-location-actions {
    display: flex;
    gap: 8px;
}

.use-btn,
.delete-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.use-btn {
    background: #ff9500;
    color: #000000;
    border: none;
}

.use-btn:hover {
    background: #e68600;
}

.delete-btn {
    background: transparent;
    color: #999999;
    border: 1px solid #444;
}

.delete-btn:hover {
    background: #cc0000;
    color: #ffffff;
    border-color: #cc0000;
}

/* Car Marker */
.car-marker {
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pickup-content {
        padding: 16px;
        padding-bottom: 80px;
    }
    
    .pickup-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .driver-field-btn {
        width: 100%;
        justify-content: center;
    }
    
    #map {
        height: 200px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .pickup-dates-list {
        max-height: 300px;
    }
    
    .payment-options {
        flex-direction: column;
    }
    
    .payment-option {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .eta-display {
        padding: 16px;
    }
    
    .eta-value {
        font-size: 28px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease;
}

.animate-slide-up {
    animation: slideUp 0.3s ease;
}

/* ===== Bottom Navigation ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 4px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    min-width: 64px;
}

.nav-item i {
    font-size: 20px;
    transition: var(--transition);
}

.nav-item:hover {
    color: var(--primary-color);
}

.nav-item:hover i {
    color: var(--primary-color);
}

.nav-item.active {
    color: var(--primary-color);
}

.nav-item.active i {
    color: var(--primary-color);
}

/* DopGO Special Nav Item - matches index.tsx style */
.nav-item.dopgo {
    color: var(--text-primary);
    background: transparent;
    border-radius: 0;
    width: auto;
    height: auto;
    margin-top: 0;
    box-shadow: none;
}

.nav-item.dopgo:hover {
    color: var(--primary-color);
}

.nav-item.dopgo.active {
    color: var(--primary-color);
}

.nav-item.dopgo.active i {
    color: var(--primary-color);
}

.nav-item.dopgo i {
    font-size: 24px;
}

/* DopGO Icons Container - matches index.tsx style (add-circle + directions-car) */
.nav-item.dopgo .dopgo-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    background: transparent !important;
    width: auto !important;
    height: auto !important;
}

.nav-item.dopgo .dopgo-icons i {
    font-size: 24px;
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    display: inline-block !important;
    line-height: 1 !important;
    color: var(--text-primary) !important;
}

.nav-item.dopgo:hover .dopgo-icons i,
.nav-item.dopgo.active .dopgo-icons i {
    color: var(--primary-color) !important;
}

.nav-item.dopgo .dopgo-icons i::before {
    display: inline-block !important;
}

.nav-item.dopgo .dopgo-icons i.fa-plus-circle {
    position: relative;
    top: auto;
    right: auto;
    font-size: 24px;
    z-index: 1;
}

.nav-item.dopgo .dopgo-icons i.fa-car {
    margin-left: -8px;
    margin-right: 2px;
    font-size: 20px;
}

/* Notification Bell */
.notification-bell {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.notification-bell i {
    font-size: 18px;
    color: var(--primary-color);
    transition: color 0.2s;
}

.notification-bell i.active {
    color: #ffb300;
}

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--error-color);
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Header Styles */
.header {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-left {
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
}

.logo i {
    color: var(--primary-color);
}

.header-right-mobile {
    margin-left: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-action-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.header-action-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* ===== Header SOS Button ===== */
.header-sos-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pickup-danger);
    color: white;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    animation: pulse-sos 2s infinite;
}

.header-sos-btn:hover {
    background: #900018;
    transform: scale(1.15);
}

.header-sos-btn i {
    font-size: 18px;
}

@keyframes pulse-sos {
    0% {
        box-shadow: 0 0 0 0 rgba(176, 0, 32, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(176, 0, 32, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(176, 0, 32, 0);
    }
}

/* ===== Header SOS Modal Styles ===== */
.sos-modal {
    max-width: 500px;
    background: #000000;
}

.sos-modal .pickup-modal-header {
    background: #b00020;
    border-bottom: none;
}

.sos-modal .pickup-modal-header h2 {
    color: #ffffff;
}

.sos-modal .pickup-modal-header h2 i {
    color: #ffffff;
}

.sos-modal .modal-close {
    color: #ffffff;
    background: rgba(255,255,255,0.2);
}

.sos-modal .modal-close:hover {
    background: rgba(255,255,255,0.3);
    color: #ffffff;
}

.sos-header-red {
    background: #b00020 !important;
}

.sos-content {
    padding: 8px 0;
    background: #000000;
}

.sos-icon {
    text-align: center;
    margin-bottom: 16px;
}

.sos-icon i {
    font-size: 48px;
    color: #b00020;
}

.sos-content h3 {
    text-align: center;
    margin: 0 0 8px 0;
    font-size: 22px;
    color: #ffffff;
}

.sos-content > p {
    text-align: center;
    margin: 0 0 20px 0;
    color: #cccccc;
    font-size: 14px;
}

.sos-actions {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sos-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sos-btn.emergency {
    background: var(--pickup-danger);
    color: white;
}

.sos-btn.emergency:hover {
    background: #900018;
    transform: translateY(-2px);
}

.sos-btn.dopetz {
    background: var(--pickup-primary);
    color: #181818;
}

.sos-btn.dopetz:hover {
    background: var(--pickup-primary-dark);
    transform: translateY(-2px);
}

.sos-share {
    background: #000000;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.sos-share h4 {
    margin: 0 0 8px 0;
    font-size: 15px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sos-share h4 i {
    color: #b00020;
}

.sos-share p {
    margin: 0 0 12px 0;
    font-size: 13px;
    color: #cccccc;
}

.sos-share-btn {
    width: 100%;
    padding: 12px;
    background: var(--pickup-primary);
    color: #181818;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.sos-share-btn:hover {
    background: var(--pickup-primary-dark);
}

.sos-contacts-list {
    background: #000000;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 16px;
}

.sos-contacts-list h4 {
    margin: 0 0 12px 0;
    font-size: 15px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sos-contacts-list h4 i {
    color: #b00020;
}

.no-contacts {
    color: #cccccc;
    font-size: 13px;
    text-align: center;
    padding: 10px;
}

.sos-contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.sos-contact-item:last-child {
    border-bottom: none;
}

.contact-name {
    font-size: 14px;
    color: #ffffff;
}

.contact-call-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b00020;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-call-btn:hover {
    background: #900018;
    transform: scale(1.1);
}

/* ===== Header SOS Modal Enhanced Styles ===== */
.header-sos-content {
    padding: 0;
}

.sos-location-info {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.sos-location-info h4 {
    margin: 0 0 12px 0;
    font-size: 15px;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sos-location-info h4 i {
    color: #b00020;
}

.location-display {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
}

.location-address {
    font-size: 14px;
    color: #000000;
    margin: 0 0 6px 0;
    word-break: break-word;
    font-weight: 500;
}

.location-coords {
    font-size: 12px;
    color: #000000;
    margin: 0;
    font-family: monospace;
    opacity: 0.7;
}

.refresh-location-btn {
    width: 100%;
    padding: 10px;
    background: #b00020;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.refresh-location-btn:hover {
    background: #900018;
}

.refresh-location-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.sos-user-info {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.sos-user-info h4 {
    margin: 0 0 12px 0;
    font-size: 15px;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sos-user-info h4 i {
    color: #b00020;
}

.user-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.detail-label {
    font-size: 13px;
    color: #666666;
}

.detail-value {
    font-size: 13px;
    color: #000000;
    font-weight: 600;
    text-align: right;
    max-width: 60%;
    word-break: break-word;
}

.sos-driver-info {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.sos-driver-info h4 {
    margin: 0 0 12px 0;
    font-size: 15px;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sos-driver-info h4 i {
    color: #b00020;
}

.sos-driver-info.no-driver {
    border: 2px dashed #000000;
}

.sos-driver-info.no-driver p {
    margin: 4px 0;
    font-size: 13px;
    color: #666666;
}

.driver-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.driver-detail-row .detail-label {
    font-size: 12px;
    color: #666666;
}

.driver-detail-row .detail-value {
    font-size: 12px;
    color: #000000;
    font-weight: 600;
}

.sos-emergency-type {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.sos-emergency-type h4 {
    margin: 0 0 12px 0;
    font-size: 15px;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sos-emergency-type h4 i {
    color: #b00020;
}

.emergency-type-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.emergency-type-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid #000000;
}

.emergency-type-option:hover {
    border-color: #b00020;
}

.emergency-type-option input[type="radio"] {
    accent-color: #b00020;
}

.emergency-type-option input[type="radio"]:checked + .type-label {
    color: #b00020;
    font-weight: 700;
}

.emergency-type-option:has(input:checked) {
    border-color: #b00020;
    background: rgba(176, 0, 32, 0.1);
}

.type-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #000000;
    transition: color 0.2s ease;
}

.type-label i {
    font-size: 16px;
    color: #b00020;
}

.sos-description {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.sos-description h4 {
    margin: 0 0 12px 0;
    font-size: 15px;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sos-description h4 i {
    color: #b00020;
}

.sos-description textarea {
    background: #ffffff;
    border: 2px solid #000000;
    color: #000000;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.sos-description textarea:focus {
    outline: none;
    border-color: #b00020;
}

.sos-send-alert {
    margin-bottom: 16px;
}

.sos-send-btn {
    width: 100%;
    padding: 14px 20px;
    background: var(--pickup-danger);
    color: #ffffff !important;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.sos-send-btn:hover {
    background: #900018;
    transform: translateY(-2px);
}

.header-sos-actions {
    margin-bottom: 16px;
}

/* ===== SOS Success Overlay ===== */
.sos-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    z-index: 6000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sos-success-overlay.show {
    display: flex;
}

.sos-success-overlay-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: sosSuccessSlideUp 0.4s ease;
}

@keyframes sosSuccessSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.sos-success-icon {
    width: 80px;
    height: 80px;
    background: #091027;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: sosSuccessPulse 2s infinite;
}

@keyframes sosSuccessPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(0, 230, 118, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
    }
}

.sos-success-icon i {
    font-size: 40px;
    color: #ffffff;
}

.sos-success-overlay-content h2 {
    margin: 0 0 16px 0;
    font-size: 24px;
    color: #000000;
    font-weight: 700;
}

.sos-success-overlay-content p {
    margin: 0 0 12px 0;
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
}

.sos-success-message {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin-bottom: 24px !important;
    letter-spacing: 0.5px;
}

.sos-success-btn {
    width: 100%;
    padding: 16px 24px;
    background: #594545;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sos-success-btn:hover {
    background: #2b2525;
    transform: translateY(-2px);
}

/* Mobile responsive for SOS success overlay */
@media (max-width: 480px) {
    .sos-success-overlay-content {
        padding: 30px 20px;
        margin: 16px;
    }
    
    .sos-success-icon {
        width: 70px;
        height: 70px;
    }
    
    .sos-success-icon i {
        font-size: 32px;
    }
    
    .sos-success-overlay-content h2 {
        font-size: 20px;
    }
    
    .sos-success-overlay-content p {
        font-size: 14px;
    }
    
    .sos-success-message {
        font-size: 16px !important;
    }
}

.sos-alert-status {
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
}

.sos-alert-status .alert-sending {
    color: var(--pickup-warning);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sos-alert-status .alert-success {
    color: var(--pickup-success);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sos-alert-status .alert-error {
    color: var(--pickup-danger);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Payment Method Options */
.payment-method-options {
    display: flex;
    gap: 10px;
}

.payment-method-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 8px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #181818;
}

.payment-method-btn:hover {
    border-color: #088ccf;
    background: rgba(8, 140, 207, 0.05);
}

.payment-method-btn.selected {
    border-color: #088ccf;
    background: rgba(8, 140, 207, 0.1);
}

.payment-method-btn i {
    font-size: 20px;
    background: linear-gradient(135deg, #088ccf 50%, #c1cdd4 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payment-method-btn.selected i {
    background: linear-gradient(135deg, #088ccf 50%, #c1cdd4 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payment-method-btn span {
    font-size: 11px;
    font-weight: 600;
    color: #181818;
}

/* Card Payment Details */
.card-payment-details {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
    margin-top: 12px;
}

.card-payment-details .form-group {
    margin-bottom: 12px;
}

.card-payment-details .form-group:last-child {
    margin-bottom: 0;
}

.card-expiry-cvv {
    display: flex;
    gap: 12px;
}

.card-expiry-cvv .form-group {
    flex: 1;
}

/* Mobile Responsive Navigation */
@media (max-width: 768px) {
    .bottom-nav {
        padding: 6px 2px;
    }
    
    .nav-item {
        padding: 6px 8px;
        min-width: 56px;
        font-size: 9px;
    }
    
    .nav-item i {
        font-size: 18px;
    }
    
    .nav-item.dopgo {
        width: 48px;
        height: 48px;
        margin-top: -16px;
    }
    
    .nav-item.dopgo i {
        font-size: 20px;
    }
}

/* ===== WALLET BALANCE DISPLAY STYLES ===== */

/* Offer Fee with Wallet Inline */
.offer-fee-with-wallet {
    display: flex;
    gap: 10px;
    align-items: center;
}

.offer-fee-with-wallet .form-input {
    flex: 1;
    min-width: 0;
}

/* Wallet Balance Inline Display */
.wallet-balance-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #00e676 0%, #00a856 100%);
    border-radius: 10px;
    color: #181818;
    white-space: nowrap;
    flex-shrink: 0;
}

.wallet-balance-inline i {
    font-size: 16px;
    color: #181818;
}

.wallet-balance-amount-inline {
    font-size: 14px;
    font-weight: 700;
    color: #181818;
}

/* Wallet Balance Status Inline */
.wallet-balance-status-inline {
    font-size: 12px;
    margin-top: 6px;
    padding: 6px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wallet-balance-status-inline.sufficient {
    background: rgba(0, 230, 118, 0.15);
    color: #00e676;
}

.wallet-balance-status-inline.insufficient {
    background: rgba(244, 67, 54, 0.15);
    color: #f44336;
}

.wallet-balance-status-inline.empty {
    background: rgba(156, 163, 175, 0.15);
    color: #9ca3af;
}

/* Wallet Balance Badge on Button */
.wallet-balance-badge {
    display: inline-block;
    padding: 2px 8px;
    background: #181818;
    color: #00e676;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 4px;
}

/* Wallet Payment Details */
.wallet-payment-details {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.1) 0%, rgba(0, 168, 86, 0.1) 100%);
    border: 2px solid #00e676;
    border-radius: 12px;
    padding: 16px;
    margin-top: 12px;
}

.wallet-balance-display {
    text-align: center;
}

.wallet-balance-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666666;
}

.wallet-balance-header i {
    color: #00e676;
    font-size: 18px;
}

.wallet-balance-amount {
    font-size: 32px;
    font-weight: 700;
    color: #00e676;
    margin-bottom: 12px;
}

.wallet-balance-status {
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wallet-balance-status.sufficient {
    background: rgba(0, 230, 118, 0.2);
    color: #00e676;
}

.wallet-balance-status.insufficient {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.wallet-balance-status.empty {
    background: rgba(156, 163, 175, 0.2);
    color: #9ca3af;
}

/* Wallet Button States */
.payment-method-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
    filter: grayscale(50%);
}

.payment-method-btn:disabled:hover {
    border-color: #e0e0e0 !important;
    background: #ffffff !important;
}

/* Responsive Wallet Display */
@media (max-width: 480px) {
    .offer-fee-with-wallet {
        flex-direction: column;
    }
    
    .offer-fee-with-wallet .form-input {
        width: 100%;
    }
    
    .wallet-balance-inline {
        width: 100%;
        justify-content: center;
        padding: 10px;
    }
    
    .wallet-balance-amount {
        font-size: 28px;
    }
}

/* ===== STRIPE PAYMENT STYLES ===== */

/* Stripe Card Element Container */
.stripe-card-element {
    background: #ffffff;
    border: 2px solid #423241;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 16px;
    color: #000000;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.stripe-card-element:hover {
    border-color: #594545;
}

.stripe-card-element.StripeElement--focus {
    border-color: #088ccf;
    box-shadow: 0 0 0 3px rgba(8, 140, 207, 0.15);
    outline: none;
}

.stripe-card-element.StripeElement--invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

/* Stripe Card Errors */
.stripe-card-errors {
    color: #ef4444;
    font-size: 13px;
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
    display: none;
}

.stripe-card-errors.show {
    display: block;
}

/* Stripe Payment Form Container */
.stripe-payment-form {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
}

.stripe-payment-form .form-group {
    margin-bottom: 16px;
}

.stripe-payment-form .form-group:last-child {
    margin-bottom: 0;
}

.stripe-payment-form .form-group label {
    color: #000000;
    font-weight: 600;
}

.stripe-payment-form .form-group label i {
    color: #423241;
}

.stripe-payment-form .form-input {
    background: #ffffff;
    border: 2px solid #423241;
    color: #000000;
}

.stripe-payment-form .form-input:focus {
    border-color: #088ccf;
    outline: none;
}

/* Stripe Secure Badge */
.stripe-secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px;
    background: rgba(0, 230, 118, 0.1);
    border-radius: 8px;
    font-size: 12px;
    color: #666666;
}

.stripe-secure-badge i {
    color: #00e676;
    font-size: 14px;
}

.stripe-secure-badge .stripe-icon {
    width: 40px;
    height: auto;
    filter: brightness(0) invert(0.3);
}

/* Stripe Payment Processing State */
.stripe-processing {
    position: relative;
    pointer-events: none;
}

.stripe-processing::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: stripe-spin 0.6s linear infinite;
}

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

/* Stripe Success State */
.stripe-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
}

.stripe-success i {
    font-size: 48px;
    color: #00e676;
    margin-bottom: 16px;
}

.stripe-success-message {
    font-size: 16px;
    color: #000000;
    font-weight: 600;
}

/* Stripe Inline Validation */
.stripe-inline-validation {
    position: relative;
}

.stripe-inline-validation.valid::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #00e676;
    font-size: 14px;
}

.stripe-inline-validation.invalid::after {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #ef4444;
    font-size: 14px;
}

/* Mobile Responsive Stripe Styles */
@media (max-width: 480px) {
    .stripe-card-element {
        padding: 12px 14px;
        font-size: 14px;
        min-height: 44px;
    }
    
    .stripe-payment-form {
        padding: 12px;
    }
    
    .stripe-secure-badge {
        flex-direction: column;
        gap: 6px;
    }
    
    .stripe-secure-badge .stripe-icon {
        width: 50px;
    }
}
