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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.5;
            color: #ffffff;
            overflow-x: hidden;
            background: #0a0a0a;
        }

        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(circle at 20% 80%, #ff006e 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, #8338ec 0%, transparent 50%),
                        radial-gradient(circle at 40% 40%, #3a86ff 0%, transparent 50%),
                        linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 100%);
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { 
                background: radial-gradient(circle at 20% 80%, #ff006e 0%, transparent 50%),
                            radial-gradient(circle at 80% 20%, #8338ec 0%, transparent 50%),
                            radial-gradient(circle at 40% 40%, #3a86ff 0%, transparent 50%),
                            linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 100%);
            }
            33% { 
                background: radial-gradient(circle at 60% 30%, #ff006e 0%, transparent 50%),
                            radial-gradient(circle at 30% 70%, #8338ec 0%, transparent 50%),
                            radial-gradient(circle at 70% 60%, #3a86ff 0%, transparent 50%),
                            linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 100%);
            }
            66% { 
                background: radial-gradient(circle at 80% 60%, #ff006e 0%, transparent 50%),
                            radial-gradient(circle at 20% 40%, #8338ec 0%, transparent 50%),
                            radial-gradient(circle at 50% 80%, #3a86ff 0%, transparent 50%),
                            linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 100%);
            }
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 0.25rem 0;
            transition: all 0.3s ease;
        }

        .nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0.25rem 2rem;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
        }

        .logo {
            text-decoration: none;
            display: block;
            width: 180px;
            height: 180px;
            background-image: url('../Brand_Assets/Logo2.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            transition: all 0.3s ease;
            filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.5));
            grid-column: 2;
            justify-self: center;
            position: relative;
            z-index: 1001;
            margin-top: -50px;
            margin-bottom: -50px;
        }

        .logo:hover {
            transform: scale(1.05);
            filter: drop-shadow(0 0 25px rgba(255, 0, 110, 0.6));
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            grid-column: 3;
            justify-self: end;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

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

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #ff006e, #8338ec);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Main Split Screen */
        .split-container {
            height: 100vh;
            display: flex;
            position: relative;
        }

        .split-panel {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            position: relative;
            cursor: pointer;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            overflow: hidden;
        }

        .split-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0;
            transition: opacity 0.6s ease;
            z-index: 1;
        }

        .split-panel:hover::before {
            opacity: 1;
        }

        .split-panel:hover {
            flex: 1.15;
            transform: scale(1.02);
        }

        .split-panel:hover + .split-panel {
            flex: 0.85;
        }

        /* Ship Panel - Dark with neon accents */
        .ship-panel {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0f0f23 100%);
            position: relative;
        }

        .ship-panel::before {
            background: linear-gradient(135deg, #ff006e20 0%, #8338ec20 100%);
        }

        .ship-panel::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,0,110,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
            z-index: 0;
        }

        /* Drive Panel - Dark with gradient like ship panel */
        .drive-panel {
            background: linear-gradient(135deg, #0f0f23 0%, #1a0a1a 50%, #0a0a0a 100%);
            color: #ffffff;
            position: relative;
        }

        .drive-panel::before {
            background: linear-gradient(135deg, #8338ec20 0%, #3a86ff20 100%);
        }

        .drive-panel::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid2" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(131,56,236,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid2)"/></svg>');
            opacity: 0.3;
            z-index: 0;
        }

        .panel-content {
            position: relative;
            z-index: 2;
            max-width: 450px;
            transform: translateY(0);
            transition: transform 0.6s ease;
        }

        .split-panel:hover .panel-content {
            transform: translateY(-10px);
        }

        .panel-icon {
            font-size: 5rem;
            margin-bottom: 2rem;
            display: block;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .panel-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            background: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s ease-in-out infinite;
        }

        .drive-panel .panel-title {
            background: linear-gradient(135deg, #8338ec, #3a86ff, #00d4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @keyframes shimmer {
            0%, 100% { background-position: -200% center; }
            50% { background-position: 200% center; }
        }

        .panel-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 2.5rem;
            font-weight: 400;
        }

        .panel-cta {
            background: rgba(255, 255, 255, 0.1);
            color: inherit;
            border: 2px solid rgba(255, 255, 255, 0.2);
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .panel-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .panel-cta:hover::before {
            left: 100%;
        }

        .panel-cta:hover {
            background: rgba(255, 0, 110, 0.2);
            border-color: rgba(255, 0, 110, 0.4);
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 0, 110, 0.3);
        }

        .drive-panel .panel-cta {
            background: rgba(131, 56, 236, 0.1);
            border-color: rgba(131, 56, 236, 0.3);
            color: #ffffff;
        }

        .drive-panel .panel-cta:hover {
            background: rgba(131, 56, 236, 0.2);
            border-color: rgba(131, 56, 236, 0.4);
            box-shadow: 0 15px 35px rgba(131, 56, 236, 0.3);
        }

        /* Disabled panel for shipping */
        .disabled-panel {
            opacity: 0.6;
            pointer-events: none;
        }

        .disabled-panel:hover {
            flex: 1 !important;
            transform: none !important;
        }

        .phase-notice {
            margin: 1.5rem 0;
            padding: 1rem;
            background: rgba(255, 165, 0, 0.1);
            border: 1px solid rgba(255, 165, 0, 0.3);
            border-radius: 12px;
            text-align: center;
        }

        .phase-notice h3 {
            color: #ffa500;
            margin: 0 0 0.5rem 0;
            font-size: 1.1rem;
        }

        .phase-notice p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            margin: 0;
        }

        .panel-cta.disabled {
            background: rgba(128, 128, 128, 0.2) !important;
            color: rgba(255, 255, 255, 0.4) !important;
            border-color: rgba(128, 128, 128, 0.3) !important;
            cursor: not-allowed !important;
            opacity: 0.5;
        }

        .panel-cta.disabled:hover {
            transform: none !important;
            box-shadow: none !important;
            background: rgba(128, 128, 128, 0.2) !important;
        }

        /* Driver Options Styles */
        .driver-options {
            animation: slideIn 0.5s ease;
        }

        .driver-buttons {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .join-btn {
            background: rgba(0, 255, 136, 0.1) !important;
            border-color: rgba(0, 255, 136, 0.3) !important;
            color: #ffffff !important;
        }

        .join-btn:hover {
            background: rgba(0, 255, 136, 0.2) !important;
            border-color: rgba(0, 255, 136, 0.4) !important;
            box-shadow: 0 15px 35px rgba(0, 255, 136, 0.3) !important;
        }

        .login-btn {
            background: rgba(58, 134, 255, 0.1) !important;
            border-color: rgba(58, 134, 255, 0.3) !important;
            color: #ffffff !important;
        }

        .login-btn:hover {
            background: rgba(58, 134, 255, 0.2) !important;
            border-color: rgba(58, 134, 255, 0.4) !important;
            box-shadow: 0 15px 35px rgba(58, 134, 255, 0.3) !important;
        }

        .btn-icon {
            margin-right: 0.5rem;
            font-size: 1.2rem;
        }

        .back-btn-small {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            cursor: pointer;
            margin-top: 1.5rem;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .back-btn-small:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

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

        /* Driver Profile Page Styles */
        .profile-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .profile-header {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 2rem;
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 20px;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .profile-avatar-section {
            text-align: center;
        }

        .profile-avatar-large {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff006e, #8338ec);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            overflow: hidden;
        }

        .avatar-initials {
            font-size: 2rem;
            font-weight: bold;
            color: #ffffff;
        }

        .upload-avatar-btn {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.9rem;
        }

        .profile-info-header h2 {
            color: #ffffff;
            margin-bottom: 1rem;
            font-size: 2rem;
        }

        .profile-rating {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .stars {
            font-size: 1.2rem;
        }

        .rating-count {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .profile-stats {
            display: flex;
            gap: 2rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-item strong {
            display: block;
            font-size: 1.5rem;
            color: #ff006e;
            margin-bottom: 0.25rem;
        }

        .stat-item span {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        .profile-tabs {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .profile-tab {
            background: transparent;
            color: rgba(255, 255, 255, 0.7);
            border: none;
            padding: 1rem 1.5rem;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .profile-tab.active {
            color: #ff006e;
            border-bottom-color: #ff006e;
        }

        .profile-tab:hover {
            color: #ffffff;
        }

        .tab-pane {
            display: none;
        }

        .tab-pane.active {
            display: block;
        }

        .info-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .info-section h3 {
            color: #ffffff;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .save-profile-btn {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            color: #ffffff;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            margin-top: 2rem;
        }

        .photos-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        .vehicle-photo-slot {
            text-align: center;
        }

        .photo-preview, .photo-preview-large {
            width: 100%;
            height: 150px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            border: 2px dashed rgba(255, 255, 255, 0.3);
        }

        .photo-preview-large {
            height: 200px;
        }

        .reviews-overview {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .rating-summary {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 3rem;
            align-items: center;
        }

        .overall-rating {
            text-align: center;
        }

        .rating-number {
            font-size: 3rem;
            font-weight: bold;
            color: #ff006e;
            display: block;
        }

        .stars-large {
            font-size: 1.5rem;
            margin: 0.5rem 0;
        }

        .rating-breakdown {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .rating-bar {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .bar {
            flex: 1;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
        }

        .bar .fill {
            height: 100%;
            background: linear-gradient(135deg, #ff006e, #8338ec);
            transition: width 0.3s ease;
        }

        .settings-grid {
            display: grid;
            gap: 2rem;
        }

        .settings-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .settings-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .danger-zone {
            border-color: rgba(255, 68, 68, 0.3);
        }

        .logout-btn, .delete-account-btn {
            background: rgba(255, 68, 68, 0.1);
            color: #ff4444;
            border: 1px solid rgba(255, 68, 68, 0.3);
            padding: 0.75rem 1.5rem;
            border-radius: 10px;
            margin-right: 1rem;
            cursor: pointer;
        }

        /* Divider Line with glow */
        .divider {
            position: absolute;
            left: 50%;
            top: 10%;
            bottom: 10%;
            width: 2px;
            background: linear-gradient(180deg, transparent, #ff006e, #8338ec, #3a86ff, transparent);
            transform: translateX(-50%);
            z-index: 3;
            box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        /* Features Section */
        .features-section {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, #0a0a0a 0%, #1a0a1a 100%);
            position: relative;
        }

        .features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,0,110,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
            opacity: 0.5;
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .features-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            text-align: center;
        }

        .features-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 4rem;
            text-align: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            padding: 2.5rem;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(255, 0, 110, 0.3);
            box-shadow: 0 20px 60px rgba(255, 0, 110, 0.2);
        }

        .feature-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            display: block;
            filter: drop-shadow(0 0 15px rgba(255, 0, 110, 0.5));
            position: relative;
            z-index: 1;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #ffffff;
            position: relative;
            z-index: 1;
        }

        .feature-text {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        /* Pricing Highlight */
        .pricing-highlight {
            background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 0, 110, 0.2);
            padding: 3rem;
            border-radius: 28px;
            margin: 4rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .pricing-highlight::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(255, 0, 110, 0.1), transparent);
            animation: rotate 10s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .pricing-highlight h3 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
            background: linear-gradient(135deg, #ff006e, #8338ec);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pricing-highlight p {
            position: relative;
            z-index: 1;
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .price-comparison {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 2rem;
            position: relative;
            z-index: 1;
        }

        .price-item {
            text-align: center;
        }

        .price-item .label {
            font-size: 1rem;
            opacity: 0.7;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .price-item .price {
            font-size: 2.5rem;
            font-weight: 800;
        }

        .price-item.competitor .price {
            text-decoration: line-through;
            opacity: 0.5;
        }

        .price-item.tailwind .price {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 10px rgba(255, 0, 110, 0.3));
        }


        .accounts-list {
            max-height: 400px;
            overflow-y: auto;
        }

        .account-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .account-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .account-info h4 {
            color: #ffffff;
            margin: 0 0 0.25rem 0;
            font-size: 1.1rem;
        }

        .account-info p {
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
            font-size: 0.9rem;
        }

        .account-actions {
            display: flex;
            gap: 0.5rem;
        }

        .account-btn {
            padding: 0.5rem 1rem;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }

        .account-btn.edit {
            background: rgba(0, 255, 136, 0.2);
            color: #00ff88;
            border: 1px solid rgba(0, 255, 136, 0.3);
        }

        .account-btn.delete {
            background: rgba(255, 0, 100, 0.2);
            color: #ff6b9d;
            border: 1px solid rgba(255, 0, 100, 0.3);
        }

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

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

        .detail-item strong {
            color: #ffffff;
        }

        .settings-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .setting-item {
            background: rgba(255, 255, 255, 0.03);
            padding: 1rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .setting-item label {
            display: block;
            color: #ffffff;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .setting-item input[type="checkbox"] {
            transform: scale(1.2);
            margin-left: 0.5rem;
        }

        .setting-item input[type="number"] {
            width: 100%;
            padding: 0.5rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.05);
            color: #ffffff;
        }

        .no-accounts {
            color: rgba(255, 255, 255, 0.5);
            text-align: center;
            padding: 2rem;
            font-style: italic;
        }

        /* Footer */
        .footer {
            background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
            padding: 4rem 2rem 2rem;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .footer-links a:hover {
            color: #ff006e;
            transform: translateY(-2px);
        }

        .bug-report-btn {
            background: rgba(255, 0, 110, 0.1) !important;
            border: 1px solid rgba(255, 0, 110, 0.3) !important;
            border-radius: 20px !important;
            padding: 0.5rem 1rem !important;
            font-weight: 600 !important;
        }

        .bug-report-btn:hover {
            background: rgba(255, 0, 110, 0.2) !important;
            border-color: rgba(255, 0, 110, 0.5) !important;
        }

        /* Bug Report Modal */
        .modal {
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background: linear-gradient(135deg, #1a1a1a, #2a1a2a);
            margin: 5% auto;
            padding: 0;
            border: 1px solid rgba(255, 0, 110, 0.3);
            border-radius: 12px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 20px 60px rgba(255, 0, 110, 0.3);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .modal-header h3 {
            margin: 0;
            color: #fff;
            font-size: 1.2rem;
        }

        .close {
            color: #aaa;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close:hover {
            color: #ff006e;
        }

        .modal .form-group {
            margin: 1rem 0;
            padding: 0 1.5rem;
        }

        .modal label {
            display: block;
            margin-bottom: 0.5rem;
            color: #fff;
            font-weight: 500;
        }

        .modal input, 
        .modal textarea, 
        .modal select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            font-size: 0.9rem;
        }

        .modal input:focus, 
        .modal textarea:focus, 
        .modal select:focus {
            outline: none;
            border-color: #ff006e;
            box-shadow: 0 0 0 2px rgba(255, 0, 110, 0.2);
        }

        .form-actions {
            display: flex;
            justify-content: flex-end;
            gap: 1rem;
            padding: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cancel-btn, .submit-btn {
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cancel-btn {
            background: rgba(128, 128, 128, 0.2);
            color: #ccc;
        }

        .cancel-btn:hover {
            background: rgba(128, 128, 128, 0.3);
        }

        .submit-btn {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            color: white;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #e6005f, #7232d1);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 0, 110, 0.3);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* Particle system */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            background: rgba(255, 0, 110, 0.6);
            border-radius: 50%;
            animation: particleFloat 15s infinite linear;
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Form Sections */
        .form-section {
            min-height: 100vh;
            padding: 8rem 2rem 4rem;
            background: linear-gradient(180deg, #0a0a0a 0%, #1a0a1a 100%);
            position: relative;
        }

        .form-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .form-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .back-btn {
            position: absolute;
            top: 0;
            left: 0;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .back-btn:hover {
            background: rgba(255, 0, 110, 0.2);
            border-color: rgba(255, 0, 110, 0.3);
            transform: translateX(-5px);
        }

        .form-title {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .form-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Multi-Step Form */
        .shipping-form-wrapper {
            position: relative;
        }

        .form-step {
            display: none;
            animation: slideIn 0.6s ease;
        }

        .form-step.active {
            display: block;
        }

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

        .step-title {
            font-size: 2rem;
            margin-bottom: 2rem;
            text-align: center;
            color: #ffffff;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

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

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-group input, .form-group select, .form-group textarea {
            padding: 1rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none;
            border-color: #ff006e;
            background: rgba(255, 0, 110, 0.1);
            box-shadow: 0 0 20px rgba(255, 0, 110, 0.2);
        }

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

        .form-group input::placeholder, .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-group select option {
            background: #1a1a1a;
            color: #ffffff;
            padding: 0.5rem;
        }

        .form-group select option:hover {
            background: #2a2a2a;
        }

        .form-group select option:checked {
            background: #ff006e;
        }

        /* Password Input Container */
        .password-input-container {
            position: relative;
            display: flex;
            align-items: center;
        }

        .password-input-container input {
            flex: 1;
            padding-right: 3rem;
        }

        .password-toggle {
            position: absolute;
            right: 1rem;
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            padding: 0.5rem;
            font-size: 1.2rem;
            z-index: 2;
            transition: color 0.3s ease;
        }

        .password-toggle:hover {
            color: rgba(255, 255, 255, 0.9);
        }

        .password-toggle:focus {
            outline: none;
            color: #ff006e;
        }

        /* Location Autocomplete Styles */
        .location-suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-top: none;
            border-radius: 0 0 12px 12px;
            max-height: 200px;
            overflow-y: auto;
            z-index: 100;
            display: none;
        }

        .location-suggestion {
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            cursor: pointer;
            transition: background 0.2s ease;
            color: rgba(255, 255, 255, 0.9);
        }

        .location-suggestion:hover {
            background: rgba(255, 0, 110, 0.1);
        }

        .location-suggestion:last-child {
            border-bottom: none;
        }

        .suggestion-main {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

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

        .form-group {
            position: relative;
        }

        .distance-display {
            background: rgba(0, 255, 136, 0.1);
            border: 1px solid rgba(0, 255, 136, 0.2);
            border-radius: 12px;
            padding: 1rem;
            margin-top: 1rem;
            text-align: center;
            display: none;
        }

        .distance-display h4 {
            color: #00ff88;
            margin-bottom: 0.5rem;
        }

        .distance-display p {
            color: rgba(255, 255, 255, 0.8);
        }

        .step-btn {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            color: white;
            border: none;
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-width: 200px;
        }

        .step-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .step-btn:hover::before {
            left: 100%;
        }

        .step-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 0, 110, 0.4);
        }

        .step-btn.secondary {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .step-btn.final {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            font-size: 1.2rem;
            padding: 1.5rem 3rem;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 110, 0.3); }
            50% { box-shadow: 0 0 40px rgba(255, 0, 110, 0.6); }
        }

        .step-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        /* Progress Bar */
        .progress-bar {
            position: relative;
            margin-bottom: 3rem;
            background: rgba(255, 255, 255, 0.1);
            height: 4px;
            border-radius: 2px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(135deg, #ff006e, #8338ec);
            width: 33.33%;
            transition: width 0.6s ease;
            border-radius: 2px;
        }

        .progress-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 1rem;
        }

        .progress-step {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }

        .progress-step.active {
            color: #ff006e;
        }

        .progress-step.completed {
            color: #8338ec;
        }

        /* Pricing Summary */
        .pricing-summary {
            background: rgba(255, 0, 110, 0.1);
            border: 2px solid rgba(255, 0, 110, 0.2);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            margin: 2rem 0;
            backdrop-filter: blur(15px);
        }

        .pricing-summary h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #ff006e, #8338ec);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .savings-highlight {
            background: rgba(255, 0, 110, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            display: inline-block;
            margin-top: 1rem;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Payment Section Styles */
        .payment-section {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            margin: 2rem 0;
            backdrop-filter: blur(15px);
        }

        .payment-title {
            color: #ffffff;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .payment-tabs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .payment-tab {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #ffffff;
            padding: 1rem 0.5rem;
            border-radius: 12px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }

        .payment-tab:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .payment-tab.active {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            border-color: rgba(255, 0, 110, 0.3);
            box-shadow: 0 10px 25px rgba(255, 0, 110, 0.2);
        }

        .payment-method {
            display: none;
            margin-top: 1.5rem;
        }

        .payment-method.active {
            display: block;
        }

        .card-form {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        .card-types {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            gap: 0.5rem;
        }

        .card-type {
            opacity: 0.3;
            transition: opacity 0.3s ease;
        }

        .card-type.active {
            opacity: 1;
            transform: scale(1.1);
        }

        .form-group {
            position: relative;
        }

        .paypal-container, .digital-wallet {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 3rem 2rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .paypal-logo, .wallet-logo {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .paypal-btn, .apple-pay-btn, .google-pay-btn {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            color: #ffffff;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .paypal-btn:hover, .apple-pay-btn:hover, .google-pay-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(255, 0, 110, 0.3);
        }

        .payment-security {
            background: rgba(131, 56, 236, 0.1);
            border: 1px solid rgba(131, 56, 236, 0.2);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 2rem 0 1rem 0;
            text-align: center;
        }

        .security-badges {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .security-badge {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .security-text {
            color: #cccccc;
            font-size: 0.9rem;
            margin: 0;
        }

        .payment-terms {
            margin: 1.5rem 0;
        }

        .checkbox-container {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            cursor: pointer;
            font-size: 0.9rem;
            color: #cccccc;
        }

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

        .checkmark {
            width: 20px;
            height: 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 4px;
            position: relative;
            transition: all 0.3s ease;
        }

        .checkbox-container input:checked + .checkmark {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            border-color: #ff006e;
        }

        .checkbox-container input:checked + .checkmark::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #ffffff;
            font-weight: bold;
            font-size: 0.8rem;
        }

        .payment-terms a {
            color: #ff006e;
            text-decoration: none;
            font-weight: 500;
        }

        .payment-terms a:hover {
            text-decoration: underline;
        }

        /* Driver Form Specific */
        .driver-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }

        .benefit {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 16px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .benefit:hover {
            background: rgba(255, 0, 110, 0.1);
            border-color: rgba(255, 0, 110, 0.2);
            transform: translateY(-5px);
        }

        .benefit-icon {
            font-size: 2rem;
            display: block;
            margin-bottom: 0.5rem;
        }

        .driver-requirements {
            background: rgba(131, 56, 236, 0.1);
            border: 2px solid rgba(131, 56, 236, 0.2);
            border-radius: 20px;
            padding: 2rem;
            margin: 2rem 0;
        }

        .driver-requirements h3 {
            margin-bottom: 1rem;
            color: #8338ec;
            font-size: 1.3rem;
        }

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

        .requirement {
            padding: 0.8rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border-left: 3px solid #8338ec;
            font-size: 0.9rem;
        }

        /* Marketplace Dashboard Styles */
        .request-summary-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
        }

        .request-summary-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 0, 110, 0.05), rgba(131, 56, 236, 0.05));
            opacity: 0.8;
        }

        .request-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .pet-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .pet-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ff006e, #8338ec);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            filter: drop-shadow(0 5px 15px rgba(255, 0, 110, 0.3));
        }

        .pet-details h3 {
            font-size: 1.5rem;
            margin-bottom: 0.25rem;
            color: #ffffff;
        }

        .pet-details span {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .request-status {
            text-align: right;
        }

        .status-badge {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 0.5rem;
            animation: pulse 2s ease-in-out infinite;
        }

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

        .journey-info {
            position: relative;
            z-index: 1;
        }

        .route {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 1rem;
        }

        .location {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex: 1;
        }

        .location-icon {
            font-size: 1.2rem;
        }

        .location-label {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.25rem;
        }

        .location-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffffff;
        }

        .route-arrow {
            font-size: 1.5rem;
            color: #ff006e;
            font-weight: bold;
        }

        .journey-dates {
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        /* Bidding Section */
        .bidding-section {
            margin-bottom: 3rem;
        }

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

        .section-header h2 {
            font-size: 2rem;
            color: #ffffff;
            margin: 0;
        }

        .bid-count {
            background: rgba(255, 0, 110, 0.2);
            color: #ff006e;
            padding: 0.5rem 1rem;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .bids-container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .bid-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .bid-card.featured {
            border-color: rgba(255, 0, 110, 0.3);
            background: rgba(255, 0, 110, 0.05);
        }

        .bid-card.featured::before {
            content: '⭐ Recommended';
            position: absolute;
            top: 0;
            right: 0;
            background: linear-gradient(135deg, #ff006e, #8338ec);
            color: white;
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
            font-weight: 600;
            border-bottom-left-radius: 15px;
        }

        .bid-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 0, 110, 0.3);
            box-shadow: 0 15px 40px rgba(255, 0, 110, 0.2);
        }

        .driver-info {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .driver-avatar {
            position: relative;
            width: 60px;
            height: 60px;
        }

        .driver-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        .verification-badge {
            position: absolute;
            bottom: -2px;
            right: -2px;
            background: #00ff88;
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: bold;
            border: 2px solid #0a0a0a;
        }

        .driver-details h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #ffffff;
        }

        .driver-stats {
            display: flex;
            gap: 1rem;
            margin-bottom: 0.5rem;
            flex-wrap: wrap;
        }

        .driver-stats span {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .driver-location {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .bid-details {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
        }

        .bid-price {
            font-size: 2rem;
            font-weight: 800;
            color: #00ff88;
            margin-bottom: 0.5rem;
        }

        .bid-timeline {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .driver-message {
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 12px;
            font-style: italic;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }

        .bid-actions {
            display: flex;
            gap: 1rem;
        }

        .select-driver-btn {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            flex: 1;
        }

        .select-driver-btn.secondary {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .select-driver-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 0, 110, 0.4);
        }

        .message-driver-btn {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.2);
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .message-driver-btn:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        /* More Bids Notice */
        .more-bids-notice {
            background: rgba(58, 134, 255, 0.1);
            border: 1px solid rgba(58, 134, 255, 0.2);
            border-radius: 16px;
            padding: 1.5rem;
            margin-top: 2rem;
        }

        .notice-content {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .notice-icon {
            font-size: 2rem;
            animation: pulse 2s ease-in-out infinite;
        }

        .notice-content h4 {
            color: #3a86ff;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .notice-content p {
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            line-height: 1.4;
        }

        /* Dashboard Actions */
        .dashboard-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .action-btn {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.2);
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .action-btn.secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        .action-btn.danger {
            border-color: rgba(255, 100, 100, 0.3);
            color: #ff6464;
        }

        .action-btn.danger:hover {
            background: rgba(255, 100, 100, 0.1);
            border-color: rgba(255, 100, 100, 0.5);
        }

        /* Driver Profile Landing Page Styles */
        .driver-profile-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .profile-header {
            display: flex;
            gap: 2rem;
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 20px;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .profile-picture-section {
            text-align: center;
        }

        .profile-picture {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff006e, #8338ec);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            overflow: hidden;
            position: relative;
        }

        .profile-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
        }

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

        .change-photo-btn {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .change-photo-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .profile-info {
            flex: 1;
        }

        .driver-name {
            color: #ffffff;
            margin-bottom: 0.5rem;
            font-size: 2rem;
        }

        .driver-rating {
            margin-bottom: 1rem;
        }

        .rating-text {
            color: #ff006e;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .rating-stars {
            color: #ffd700;
            font-size: 1.2rem;
            margin-right: 0.5rem;
        }

        .verification-badge .badge {
            background: rgba(0, 255, 136, 0.2);
            color: #00ff88;
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.9rem;
            border: 1px solid rgba(0, 255, 136, 0.3);
        }

        .profile-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .profile-section h3 {
            color: #ffffff;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
        }

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

        .info-item label {
            display: block;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .info-value {
            color: #ffffff;
            font-size: 1rem;
            font-weight: 500;
        }

        .editable-field {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .edit-btn {
            background: rgba(255, 0, 110, 0.2);
            color: #ff006e;
            border: 1px solid rgba(255, 0, 110, 0.3);
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            cursor: pointer;
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }

        .edit-btn:hover {
            background: rgba(255, 0, 110, 0.3);
        }

        .edit-form input {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #ffffff;
            padding: 0.75rem;
            border-radius: 8px;
            width: 100%;
            margin-bottom: 1rem;
        }

        .edit-actions {
            display: flex;
            gap: 0.5rem;
        }

        .save-btn, .cancel-btn {
            padding: 0.5rem 1rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .save-btn {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            color: #ffffff;
            border: none;
        }

        .cancel-btn {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .story-section {
            max-width: 100%;
        }

        .story-content {
            margin-bottom: 1.5rem;
        }

        .story-placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-style: italic;
            line-height: 1.6;
        }

        .story-text {
            color: #ffffff;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        .edit-story-btn {
            background: rgba(255, 0, 110, 0.2);
            color: #ff006e;
            border: 1px solid rgba(255, 0, 110, 0.3);
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .edit-story-btn:hover {
            background: rgba(255, 0, 110, 0.3);
        }

        .story-edit-form textarea {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #ffffff;
            padding: 1rem;
            border-radius: 8px;
            width: 100%;
            margin-bottom: 1rem;
            resize: vertical;
            line-height: 1.6;
        }

        .photo-gallery {
            width: 100%;
        }

        .photo-categories {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .category-tab {
            background: transparent;
            color: rgba(255, 255, 255, 0.7);
            border: none;
            padding: 1rem 1.5rem;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .category-tab.active {
            color: #ff006e;
            border-bottom-color: #ff006e;
        }

        .category-tab:hover {
            color: #ffffff;
        }

        .photos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .photo-upload-slot {
            aspect-ratio: 1;
            background: rgba(255, 255, 255, 0.05);
            border: 2px dashed rgba(255, 255, 255, 0.3);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .photo-upload-slot:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 0, 110, 0.5);
        }

        .upload-placeholder {
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }

        .upload-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            display: block;
        }

        .photo-item {
            position: relative;
            aspect-ratio: 1;
            border-radius: 15px;
            overflow: hidden;
        }

        .remove-photo-btn {
            position: absolute;
            top: 5px;
            right: 5px;
            background: rgba(255, 0, 0, 0.8);
            color: white;
            border: none;
            border-radius: 50%;
            width: 25px;
            height: 25px;
            cursor: pointer;
            font-size: 16px;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #ff006e;
            margin-bottom: 0.5rem;
        }

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

        @media (max-width: 768px) {
            .profile-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .info-grid {
                grid-template-columns: 1fr;
            }

            .photos-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Driver Dashboard Styles */
        .driver-profile-summary {
            display: flex;
            gap: 2rem;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
        }

        .driver-profile-summary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(131, 56, 236, 0.05), rgba(58, 134, 255, 0.05));
            opacity: 0.8;
        }

        .profile-avatar {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            position: relative;
            z-index: 1;
        }

        .avatar-placeholder {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #8338ec, #3a86ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            border: 3px solid rgba(255, 255, 255, 0.2);
        }

        .upload-photo-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }

        .upload-photo-btn:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        .profile-info {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .profile-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .driver-stats-summary {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .driver-stats-summary .stat {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 15px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .complete-profile-btn {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .complete-profile-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 0, 110, 0.4);
        }

        /* Available Shipments Styles */
        .available-shipments {
            margin-bottom: 3rem;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .section-header h2 {
            font-size: 2rem;
            color: #ffffff;
            margin: 0;
        }

        .filters {
            display: flex;
            gap: 1rem;
        }

        .filters select {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 15px;
            cursor: pointer;
        }

        .filters select option {
            background: #1a1a1a;
            color: white;
        }

        .shipments-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .shipment-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .shipment-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 0, 110, 0.3);
            box-shadow: 0 15px 40px rgba(255, 0, 110, 0.2);
        }

        .shipment-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 2rem;
        }

        .pet-info-card {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .pet-photo-placeholder {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ff006e, #8338ec);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            filter: drop-shadow(0 5px 15px rgba(255, 0, 110, 0.3));
        }

        .pet-details h3 {
            font-size: 1.3rem;
            margin-bottom: 0.25rem;
            color: #ffffff;
        }

        .pet-details span {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .shipment-status {
            text-align: right;
        }

        .status-badge {
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        .status-badge.open {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            color: white;
        }

        .status-badge.urgent {
            background: linear-gradient(135deg, #ff4500, #ff6b35);
            color: white;
            animation: pulse 2s ease-in-out infinite;
        }

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

        .route-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }

        .route-info {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 1rem;
        }

        .route-point {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex: 1;
        }

        .route-icon {
            font-size: 1.2rem;
        }

        .location-label {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.25rem;
        }

        .location-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.25rem;
        }

        .location-date {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .route-arrow {
            font-size: 1.5rem;
            color: #ff006e;
            font-weight: bold;
        }

        .distance-info {
            text-align: center;
            color: #00ff88;
            font-weight: 600;
        }

        .shipment-details {
            margin-bottom: 2rem;
        }

        .shipment-details p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .shipment-meta {
            display: flex;
            gap: 2rem;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .current-bids, .highest-bid, .urgency {
            background: rgba(255, 255, 255, 0.05);
            padding: 0.5rem 1rem;
            border-radius: 12px;
        }

        .bid-section {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
        }

        .bid-input-group {
            margin-bottom: 1.5rem;
        }

        .bid-inputs {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .bid-amount, .bid-timeline {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.8rem 1rem;
            border-radius: 12px;
            flex: 1;
        }

        .bid-message {
            width: 100%;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.8rem 1rem;
            border-radius: 12px;
            resize: vertical;
        }

        .bid-actions {
            display: flex;
            gap: 1rem;
        }

        .bid-btn {
            background: linear-gradient(135deg, #00ff88, #00cc66);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            flex: 1;
        }

        .bid-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
        }

        .message-btn {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.2);
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .message-btn:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }


        .bid-info h4 {
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

        .bid-info p {
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
        }

        .status.pending {
            color: #ffa500;
        }

        .bid-actions-small {
            display: flex;
            gap: 0.5rem;
        }

        .btn-small {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 15px;
            cursor: pointer;
            font-size: 0.8rem;
        }

        .btn-small.danger {
            border-color: rgba(255, 100, 100, 0.3);
            color: #ff6464;
        }

        .empty-state {
            text-align: center;
            padding: 3rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .empty-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        /* Responsive Marketplace Styles */
        @media (max-width: 768px) {
            .request-header {
                flex-direction: column;
                gap: 1rem;
            }

            .request-status {
                text-align: left;
            }

            .route {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .route-arrow {
                transform: rotate(90deg);
                align-self: center;
            }

            .driver-info {
                flex-direction: column;
                gap: 1rem;
            }

            .driver-stats {
                flex-direction: column;
                gap: 0.5rem;
            }

            .bid-actions {
                flex-direction: column;
            }

            .dashboard-actions {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 768px) {
            .split-container {
                flex-direction: column;
                height: auto;
                min-height: 100vh;
            }

            .split-panel {
                min-height: 50vh;
                flex: 1 !important;
            }

            .split-panel:hover {
                flex: 1 !important;
                transform: scale(1);
            }

            .split-panel:hover + .split-panel {
                flex: 1 !important;
            }

            .divider {
                left: 10%;
                right: 10%;
                top: 50%;
                bottom: auto;
                width: auto;
            }

            .panel-title {
                font-size: 2.2rem;
            }

            .panel-icon {
                font-size: 3.5rem;
                margin-top: 1rem;
                margin-bottom: 1.5rem;
            }

            .panel-content {
                padding-top: 2rem;
                padding-bottom: 2rem;
            }

            .nav-links {
                display: none;
            }

            .price-comparison {
                flex-direction: column;
                gap: 1.5rem;
            }

            .features-title {
                font-size: 2.5rem;
            }
        }

        /* Glow effects */
        .glow {
            position: relative;
        }

        .glow::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: inherit;
            padding: 2px;
            background: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .glow:hover::after {
            opacity: 1;
        }

        /* Loading animation */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a0a0a, #1a0a1a);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 1;
            transition: opacity 1s ease;
        }

        .loading-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loading-content {
            text-align: center;
        }

        .loading-spinner {
            width: 60px;
            height: 60px;
            border: 3px solid rgba(255, 0, 110, 0.3);
            border-top: 3px solid #ff006e;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 1rem;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Messaging System Styles */
        .messaging-container {
            display: grid;
            grid-template-columns: 200px 1fr 180px;
            gap: 1rem;
            height: 85vh;
            max-height: 800px;
            width: 100%;
            max-width: 98vw;
            margin: 0 auto;
            padding: 0 1rem;
            box-sizing: border-box;
        }

        /* Conversations Panel */
        .conversations-panel {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 1.25rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            min-height: 0;
            max-width: 200px;
        }

        .conversations-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .conversations-header h3 {
            color: #ffffff;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .new-message-btn {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            color: #ffffff;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 12px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .new-message-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 0, 110, 0.3);
        }

        .conversations-list {
            flex: 1;
            overflow-y: auto;
            margin-right: -0.5rem;
            padding-right: 0.5rem;
        }

        .conversation-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            border-radius: 15px;
            margin-bottom: 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            position: relative;
        }

        .conversation-item:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 0, 110, 0.2);
        }

        .conversation-item.active {
            background: rgba(255, 0, 110, 0.1);
            border-color: rgba(255, 0, 110, 0.3);
        }

        .conversation-avatar {
            position: relative;
        }

        .avatar-circle {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #ff006e, #8338ec);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #ffffff;
        }

        .status-indicator {
            position: absolute;
            bottom: 2px;
            right: 2px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(10, 10, 10, 0.8);
        }

        .status-indicator.online {
            background: #00ff88;
            box-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
        }

        .status-indicator.offline {
            background: rgba(255, 255, 255, 0.3);
        }

        .conversation-info {
            flex: 1;
            min-width: 0;
        }

        .conversation-name {
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .last-message {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .message-time {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.8rem;
            margin-top: 0.25rem;
        }

        .unread-badge {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            color: #ffffff;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            min-width: 20px;
            text-align: center;
        }

        /* Chat Panel */
        .chat-panel {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            min-height: 0;
            flex: 1;
        }

        .chat-header {
            padding: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-user-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .chat-avatar {
            position: relative;
        }

        .chat-user-details h4 {
            color: #ffffff;
            margin-bottom: 0.25rem;
            font-size: 1.1rem;
        }

        .user-status {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .chat-actions {
            display: flex;
            gap: 0.5rem;
        }

        .chat-action-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.8);
            padding: 0.5rem;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .chat-action-btn:hover {
            background: rgba(255, 0, 110, 0.2);
            border-color: rgba(255, 0, 110, 0.3);
            color: #ffffff;
        }

        .messages-container {
            flex: 1;
            padding: 1.5rem;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .message {
            display: flex;
            gap: 1rem;
            max-width: 80%;
        }

        .message.received {
            align-self: flex-start;
        }

        .message.sent {
            align-self: flex-end;
            flex-direction: row-reverse;
        }

        .message-avatar {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #8338ec, #3a86ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: #ffffff;
            flex-shrink: 0;
        }

        .message.sent .message-avatar {
            background: linear-gradient(135deg, #ff006e, #8338ec);
        }

        .message-content {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 18px;
            position: relative;
        }

        .message.sent .message-content {
            background: linear-gradient(135deg, rgba(255, 0, 110, 0.2), rgba(131, 56, 236, 0.2));
            border: 1px solid rgba(255, 0, 110, 0.3);
        }

        .message-text {
            color: #ffffff;
            line-height: 1.4;
            margin-bottom: 0.5rem;
        }

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

        .message-status {
            align-self: center;
            margin: 1rem 0;
        }

        .typing-indicator {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .typing-dots {
            display: flex;
            gap: 0.2rem;
        }

        .typing-dots span {
            width: 6px;
            height: 6px;
            background: rgba(255, 0, 110, 0.6);
            border-radius: 50%;
            animation: typingAnimation 1.4s infinite;
        }

        .typing-dots span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .typing-dots span:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes typingAnimation {
            0%, 60% { opacity: 0.3; transform: scale(0.8); }
            30% { opacity: 1; transform: scale(1); }
        }

        .message-input-area {
            padding: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .message-attachments {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .attachment-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.7);
            padding: 0.5rem;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .attachment-btn:hover {
            background: rgba(255, 0, 110, 0.2);
            border-color: rgba(255, 0, 110, 0.3);
            color: #ffffff;
        }

        .message-input-container {
            display: flex;
            gap: 0.5rem;
            align-items: flex-end;
        }

        #messageInput {
            flex: 1;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #ffffff;
            padding: 1rem;
            border-radius: 15px;
            resize: none;
            min-height: 50px;
            max-height: 120px;
            font-family: inherit;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        #messageInput:focus {
            outline: none;
            border-color: rgba(255, 0, 110, 0.4);
            box-shadow: 0 0 0 3px rgba(255, 0, 110, 0.1);
        }

        #messageInput::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .send-btn {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            border: none;
            color: #ffffff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .send-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 0, 110, 0.3);
        }

        .send-btn:active {
            transform: scale(0.95);
        }

        .send-icon {
            font-size: 1.2rem;
            font-weight: bold;
        }

        .message-counter {
            text-align: right;
            margin-top: 0.5rem;
        }

        #messageCounter {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.8rem;
        }

        /* Quick Actions Panel */
        .quick-actions-panel {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 1.25rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow-y: auto;
            min-height: 0;
            max-width: 220px;
        }

        .quick-actions-panel h4 {
            color: #ffffff;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .quick-action-section {
            margin-bottom: 2rem;
        }

        .quick-action-section h5 {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .quick-action-btn {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            width: 100%;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #ffffff;
            padding: 0.75rem;
            border-radius: 12px;
            margin-bottom: 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            text-align: left;
        }

        .quick-action-btn:hover {
            background: rgba(255, 0, 110, 0.15);
            border-color: rgba(255, 0, 110, 0.3);
            transform: translateY(-1px);
        }

        .action-icon {
            font-size: 1.1rem;
        }

        .shipment-summary {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .shipment-summary h5 {
            color: #ffffff;
            margin-bottom: 1rem;
            font-size: 1rem;
            font-weight: 600;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
        }

        .summary-label {
            color: rgba(255, 255, 255, 0.6);
        }

        .summary-value {
            color: #ffffff;
            font-weight: 500;
        }

        .status-confirmed {
            color: #00ff88 !important;
            font-weight: 600;
        }

        /* Messaging Responsive */
        @media (max-width: 1200px) {
            .messaging-container {
                grid-template-columns: 180px 1fr 160px;
                gap: 0.75rem;
            }
        }

        @media (max-width: 768px) {
            .messaging-container {
                grid-template-columns: 1fr;
                gap: 1rem;
                height: auto;
            }
            
            .conversations-panel {
                order: 2;
                max-height: 300px;
            }
            
            .chat-panel {
                order: 1;
                min-height: 500px;
            }
            
            .quick-actions-panel {
                order: 3;
                max-height: 400px;
            }
            
            .message {
                max-width: 90%;
            }
        }

        /* Driver Profile Creation and Verification System Styles */
        .profile-setup-container {
            max-width: 800px;
            margin: 0 auto;
        }

        /* Progress Indicator */
        .setup-progress {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .setup-progress::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 25%;
            right: 25%;
            height: 2px;
            background: rgba(255, 255, 255, 0.2);
            z-index: 1;
        }

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

        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .progress-step.active .step-number {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            border-color: #ff006e;
            color: #ffffff;
        }

        .progress-step.completed .step-number {
            background: #00ff88;
            border-color: #00ff88;
            color: #000000;
        }

        .step-title {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
        }

        .progress-step.active .step-title {
            color: #ffffff;
        }

        /* Setup Steps */
        .setup-step {
            display: none;
            animation: fadeInUp 0.5s ease;
        }

        .setup-step.active {
            display: block;
        }

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

        .step-content {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 2rem;
        }

        .step-content h2 {
            color: #ffffff;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .step-content > p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
        }

        /* Photo Upload Sections */
        .profile-photo-section {
            margin: 2rem 0;
            text-align: center;
        }

        .photo-upload-area {
            display: inline-block;
        }

        .photo-preview {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 2px dashed rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .photo-preview:hover {
            border-color: rgba(255, 0, 110, 0.5);
        }

        .photo-placeholder {
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
        }

        .photo-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .photo-upload-btn {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            color: #ffffff;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 12px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .photo-upload-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 0, 110, 0.3);
        }

        /* Vehicle Photo Grid */
        .vehicle-photo-section {
            margin: 2rem 0;
        }

        .vehicle-photos-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            max-width: 400px;
            margin: 0 auto;
        }

        .vehicle-photo-upload {
            text-align: center;
        }

        .vehicle-photo-upload .photo-preview {
            width: 160px;
            height: 120px;
            border-radius: 15px;
            margin: 0 auto 1rem;
        }

        /* Form Styles */
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

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

        .form-group label {
            display: block;
            color: #ffffff;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: #ffffff;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: rgba(255, 0, 110, 0.4);
            box-shadow: 0 0 0 3px rgba(255, 0, 110, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-group select option {
            background: #1a1a1a;
            color: #ffffff;
        }

        /* Safety Features Checkboxes */
        .safety-features {
            margin: 2rem 0;
        }

        .safety-features > label {
            display: block;
            color: #ffffff;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .checkbox-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .checkbox-item:hover {
            background: rgba(255, 255, 255, 0.05);
        }

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

        .checkmark {
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 4px;
            position: relative;
            transition: all 0.3s ease;
        }

        .checkbox-item input[type="checkbox"]:checked + .checkmark {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            border-color: #ff006e;
        }

        .checkbox-item input[type="checkbox"]:checked + .checkmark::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #ffffff;
            font-size: 0.8rem;
            font-weight: bold;
        }

        /* Document Upload */
        .document-uploads {
            margin: 2rem 0;
        }

        .document-upload-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .document-upload-item:hover {
            border-color: rgba(255, 0, 110, 0.3);
        }

        .document-upload-item.optional {
            opacity: 0.8;
        }

        .document-icon {
            font-size: 2.5rem;
            width: 60px;
            text-align: center;
        }

        .document-info {
            flex: 1;
        }

        .document-info h4 {
            color: #ffffff;
            margin-bottom: 0.25rem;
        }

        .document-info p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .upload-status {
            margin-top: 0.5rem;
        }

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

        .status-uploaded {
            color: #00ff88;
            font-size: 0.8rem;
        }

        .status-optional {
            color: rgba(255, 0, 110, 0.7);
            font-size: 0.8rem;
        }

        .upload-btn {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            color: #ffffff;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .upload-btn.secondary {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .upload-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 0, 110, 0.3);
        }

        /* Verification Note */
        .verification-note {
            display: flex;
            gap: 1rem;
            background: rgba(58, 134, 255, 0.1);
            border: 1px solid rgba(58, 134, 255, 0.2);
            border-radius: 15px;
            padding: 1.5rem;
            margin: 2rem 0;
        }

        .note-icon {
            font-size: 1.5rem;
            color: #3a86ff;
        }

        .note-content h4 {
            color: #3a86ff;
            margin-bottom: 0.5rem;
        }

        .note-content p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        /* Verification Checklist */
        .verification-checklist {
            margin: 2rem 0;
        }

        .checklist-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .checklist-item.completed {
            border-color: rgba(0, 255, 136, 0.3);
            background: rgba(0, 255, 136, 0.1);
        }

        .checklist-item.pending {
            border-color: rgba(255, 193, 7, 0.3);
            background: rgba(255, 193, 7, 0.1);
        }

        .check-icon {
            font-size: 1.5rem;
        }

        .check-content h4 {
            color: #ffffff;
            margin-bottom: 0.25rem;
        }

        .check-content p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* Verification Actions */
        .verification-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .action-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .action-card:hover {
            border-color: rgba(255, 0, 110, 0.3);
        }

        .action-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .action-content h4 {
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

        .action-content p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .verify-btn {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            color: #ffffff;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 10px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .verify-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 0, 110, 0.3);
        }

        /* Completion Summary */
        .completion-summary {
            margin: 2rem 0;
        }

        .completion-summary h3 {
            color: #ffffff;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .timeline {
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 20px;
            bottom: 20px;
            width: 2px;
            background: rgba(255, 0, 110, 0.3);
        }

        .timeline-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .timeline-dot {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff006e, #8338ec);
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .timeline-content h4 {
            color: #ffffff;
            margin-bottom: 0.25rem;
        }

        .timeline-content p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* Step Actions */
        .step-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }

        .step-btn {
            padding: 0.75rem 2rem;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .step-btn.next,
        .step-btn.complete {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            color: #ffffff;
        }

        .step-btn.prev {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .step-btn:hover {
            transform: translateY(-2px);
        }

        .step-btn.next:hover,
        .step-btn.complete:hover {
            box-shadow: 0 8px 25px rgba(255, 0, 110, 0.3);
        }

        .step-btn.prev:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .checkbox-grid {
                grid-template-columns: 1fr;
            }

            .vehicle-photos-grid {
                grid-template-columns: 1fr;
            }

            .verification-actions {
                grid-template-columns: 1fr;
            }

            .setup-progress {
                flex-wrap: wrap;
                gap: 1rem;
            }

            .setup-progress::before {
                display: none;
            }

            .step-actions {
                flex-direction: column;
            }

            .step-btn {
                width: 100%;
            }
        }

        /* Photo Upload System Styles */
        .pet-photos-section {
            margin: 2rem 0;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .section-title {
            color: #ffffff;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .section-description {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }

        .photo-upload-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
            max-width: 400px;
        }

        .photo-upload-slot {
            background: rgba(255, 255, 255, 0.05);
            border: 2px dashed rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 0.8rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            height: 100px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .photo-upload-slot:hover {
            border-color: rgba(255, 0, 110, 0.4);
            background: rgba(255, 0, 110, 0.05);
        }

        .photo-upload-slot.optional {
            opacity: 0.7;
            border-style: dotted;
        }

        .photo-upload-slot.uploaded {
            border-color: rgba(0, 255, 136, 0.5);
            background: rgba(0, 255, 136, 0.1);
        }

        .photo-placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .upload-icon {
            font-size: 1.5rem;
            margin-bottom: 0.3rem;
            display: block;
        }

        .photo-upload-slot p {
            font-weight: 500;
            margin-bottom: 0.15rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.85rem;
        }

        .photo-upload-slot small {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.5);
            display: block;
            margin-bottom: 0.5rem;
        }

        .photo-upload-btn {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            color: #ffffff;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            max-width: 120px;
        }

        .photo-upload-btn.secondary {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .photo-upload-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 0, 110, 0.3);
        }

        .photo-upload-btn.secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
        }

        .photo-upload-btn.uploaded {
            background: linear-gradient(135deg, #28a745, #20c997);
        }

        .photo-upload-btn.uploaded:hover {
            background: linear-gradient(135deg, #218838, #1ba085);
        }

        .photo-preview {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 13px;
            overflow: hidden;
        }

        .photo-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .photo-preview .preview-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .photo-preview:hover .preview-overlay {
            opacity: 1;
        }

        .photo-preview .preview-actions {
            display: flex;
            gap: 0.5rem;
        }

        .photo-preview .preview-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: #ffffff;
            padding: 0.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }

        .photo-preview .preview-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .photo-upload-tips {
            display: flex;
            gap: 1rem;
            background: rgba(58, 134, 255, 0.1);
            border: 1px solid rgba(58, 134, 255, 0.2);
            border-radius: 12px;
            padding: 1.5rem;
            margin-top: 1.5rem;
        }

        .tips-icon {
            font-size: 1.5rem;
            color: #3a86ff;
            flex-shrink: 0;
        }

        .tips-content h4 {
            color: #3a86ff;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .tips-content ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .tips-content li {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            margin-bottom: 0.25rem;
            padding-left: 1rem;
            position: relative;
        }

        .tips-content li::before {
            content: '•';
            color: #3a86ff;
            position: absolute;
            left: 0;
        }

        /* Photo Gallery in Dashboard */
        .pet-photo-gallery {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .gallery-photo {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .gallery-photo:hover {
            transform: scale(1.1);
            border-color: rgba(255, 0, 110, 0.5);
        }

        .gallery-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-photo.placeholder {
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 1.2rem;
        }

        /* Photo Modal */
        .photo-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

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

        .photo-modal-content {
            max-width: 90vw;
            max-height: 90vh;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
        }

        .photo-modal img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .photo-modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(0, 0, 0, 0.5);
            border: none;
            color: #ffffff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .photo-modal-close:hover {
            background: rgba(255, 0, 110, 0.8);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .photo-upload-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .photo-upload-slot {
                padding: 1rem;
            }
            
            .upload-icon {
                font-size: 2rem;
            }
            
            .photo-upload-tips {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

        @media (max-width: 480px) {
            .photo-upload-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Real-time Tracking System Styles */
        .tracking-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            gap: 2rem;
        }

        /* Trip Overview */
        .trip-overview {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .trip-status {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .status-indicator {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .status-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #00ff88;
            animation: pulse 2s infinite;
        }

        .status-indicator.active .status-dot {
            background: #00ff88;
        }

        .status-indicator.warning .status-dot {
            background: #ffa500;
        }

        .status-indicator.stopped .status-dot {
            background: #ff4444;
        }

        .status-text {
            color: #ffffff;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .estimated-arrival {
            text-align: right;
        }

        .arrival-label {
            color: rgba(255, 255, 255, 0.6);
            display: block;
            font-size: 0.9rem;
        }

        .arrival-time {
            color: #00ff88;
            font-size: 1.2rem;
            font-weight: 600;
        }

        /* Trip Progress */
        .trip-progress {
            position: relative;
        }

        .progress-bar-container {
            position: relative;
            margin-bottom: 1rem;
        }

        .progress-bar {
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            position: relative;
            margin: 2rem 0;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #ff006e, #00ff88);
            border-radius: 3px;
            transition: width 0.3s ease;
        }

        .progress-marker {
            position: absolute;
            top: -1rem;
            transform: translateX(-50%);
        }

        .progress-marker.pickup {
            left: 0%;
        }

        .progress-marker.current {
            left: 45%;
        }

        .progress-marker.delivery {
            left: 100%;
        }

        .marker-dot {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #ffffff;
            border: 3px solid #ff006e;
            margin: 0 auto 0.5rem;
        }

        .progress-marker.current .marker-dot {
            background: #00ff88;
            border-color: #00ff88;
            animation: pulse 2s infinite;
        }

        .marker-label {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.8);
            white-space: nowrap;
        }

        .distance-info {
            display: flex;
            justify-content: space-between;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* Live Map */
        .live-map-container {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .map-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .map-header h3 {
            color: #ffffff;
            margin: 0;
        }

        .map-actions {
            display: flex;
            gap: 0.5rem;
        }

        .map-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.8);
            padding: 0.5rem 1rem;
            border-radius: 10px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .map-btn:hover {
            background: rgba(255, 0, 110, 0.2);
            border-color: rgba(255, 0, 110, 0.3);
            color: #ffffff;
        }

        .map-display {
            height: 300px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            margin-bottom: 1rem;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
            position: relative;
        }

        .map-route {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .route-line {
            position: absolute;
            top: 50%;
            left: 10%;
            right: 20%;
            height: 4px;
            background: linear-gradient(90deg, #ff006e, #8338ec, #3a86ff);
            border-radius: 2px;
            transform: translateY(-50%);
        }

        .route-line::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 45%;
            width: 8px;
            height: 8px;
            background: #00ff88;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: pulse 2s infinite;
        }

        .location-marker {
            position: absolute;
            transform: translate(-50%, -50%);
            cursor: pointer;
        }

        .marker-icon {
            font-size: 1.5rem;
            background: rgba(0, 0, 0, 0.7);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #ffffff;
            transition: all 0.3s ease;
        }

        .current-marker .marker-icon {
            border-color: #00ff88;
            background: rgba(0, 255, 136, 0.2);
        }

        .marker-popup {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.9);
            color: #ffffff;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.8rem;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .location-marker:hover .marker-popup {
            opacity: 1;
        }

        .location-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .current-location {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .location-icon {
            font-size: 1.2rem;
        }

        .location-name {
            color: #ffffff;
            font-weight: 600;
        }

        .location-time {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .speed-info {
            text-align: right;
        }

        .speed {
            color: #00ff88;
            font-size: 1.2rem;
            font-weight: 600;
            display: block;
        }

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

        /* Tracking Info Grid */
        .tracking-info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .pet-status-card,
        .driver-info-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .card-header h3 {
            color: #ffffff;
            margin: 0;
        }

        .status-badge {
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .status-badge.good {
            background: rgba(0, 255, 136, 0.2);
            color: #00ff88;
            border: 1px solid rgba(0, 255, 136, 0.3);
        }

        .status-badge.warning {
            background: rgba(255, 165, 0, 0.2);
            color: #ffa500;
            border: 1px solid rgba(255, 165, 0, 0.3);
        }

        .status-items {
            margin-bottom: 1.5rem;
        }

        .status-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        .status-icon {
            font-size: 1.1rem;
        }

        .status-text {
            flex: 1;
            color: rgba(255, 255, 255, 0.9);
        }

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

        .status-action-btn {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            color: #ffffff;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .status-action-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 0, 110, 0.3);
        }

        /* Driver Info Card */
        .driver-profile {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .driver-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #8338ec, #3a86ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .driver-details h3 {
            margin: 0 0 0.25rem 0;
        }

        .driver-rating {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .driver-status {
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .driver-status.online {
            background: rgba(0, 255, 136, 0.2);
            color: #00ff88;
            border: 1px solid rgba(0, 255, 136, 0.3);
        }

        .contact-options {
            display: flex;
            gap: 1rem;
            margin: 1.5rem 0;
        }

        .contact-btn {
            flex: 1;
            padding: 0.75rem;
            border-radius: 12px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .contact-btn.primary {
            background: linear-gradient(135deg, #ff006e, #8338ec);
            color: #ffffff;
        }

        .contact-btn.secondary {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-btn:hover {
            transform: translateY(-2px);
        }

        .contact-btn.primary:hover {
            box-shadow: 0 8px 25px rgba(255, 0, 110, 0.3);
        }

        .contact-btn.secondary:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .vehicle-info {
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .vehicle-details {
            color: rgba(255, 255, 255, 0.8);
            display: block;
            margin-bottom: 0.25rem;
        }

        .license-plate {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* Journey Timeline */
        .journey-timeline {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .timeline-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .timeline-header h3 {
            color: #ffffff;
            margin: 0;
        }

        .timeline-toggle {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.8);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .timeline-toggle:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .timeline-container {
            position: relative;
        }

        .timeline-container::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: rgba(255, 255, 255, 0.2);
        }

        .timeline-item {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            position: relative;
        }

        .timeline-marker {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
            z-index: 1;
        }

        .timeline-item.completed .timeline-marker {
            background: rgba(0, 255, 136, 0.2);
            border-color: #00ff88;
            color: #00ff88;
        }

        .timeline-item.active .timeline-marker {
            background: rgba(255, 0, 110, 0.2);
            border-color: #ff006e;
            color: #ff006e;
        }

        .timeline-item.pending .timeline-marker {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.5);
        }

        .timeline-content {
            flex: 1;
            padding-top: 0.5rem;
        }

        .timeline-title {
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .timeline-detail {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin-bottom: 0.25rem;
        }

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

        /* Emergency Actions */
        .emergency-actions {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .emergency-header h3 {
            color: #ffffff;
            margin: 0 0 1.5rem 0;
        }

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

        .emergency-btn,
        .action-btn {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem;
            border-radius: 15px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: left;
        }

        .emergency-btn {
            background: linear-gradient(135deg, #ff4444, #cc1100);
            color: #ffffff;
        }

        .action-btn {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .emergency-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 68, 68, 0.4);
        }

        .action-btn:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        .btn-icon {
            font-size: 1.2rem;
        }

        .btn-text {
            font-weight: 500;
        }

        /* Live Notifications */
        .live-notifications {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .notification-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .notification-header h4 {
            color: #ffffff;
            margin: 0;
        }

        .clear-notifications {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.6);
            padding: 0.25rem 0.75rem;
            border-radius: 6px;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .clear-notifications:hover {
            background: rgba(255, 255, 255, 0.15);
        }

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

        .notification {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            border-radius: 12px;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }

        .notification.new {
            background: rgba(0, 255, 136, 0.1);
            border: 1px solid rgba(0, 255, 136, 0.2);
        }

        .notification:not(.new) {
            background: rgba(255, 255, 255, 0.03);
        }

        .notification-icon {
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .notification-content {
            flex: 1;
        }

        .notification-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            line-height: 1.4;
            margin-bottom: 0.25rem;
        }

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

        /* Animations */
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.7;
                transform: scale(1.1);
            }
        }

        .animate-pulse {
            animation: pulse 2s infinite;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .tracking-info-grid {
                grid-template-columns: 1fr;
            }
            
            .trip-status {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            
            .map-header {
                flex-direction: column;
                gap: 1rem;
            }
            
            .map-actions {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .location-details {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            
            .contact-options {
                flex-direction: column;
            }
            
            .action-buttons {
                grid-template-columns: 1fr;
            }
            
            .distance-info {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }
        }

        /* Document Upload Styles */
        .document-upload-section {
            margin: 2rem 0;
            padding: 1.5rem;
            border: 2px dashed #e0e0e0;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
        }

        .section-title {
            color: white;
            margin: 0 0 0.5rem 0;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
            margin: 0 0 1.5rem 0;
            font-size: 0.9rem;
        }

        .file-upload-container {
            margin-top: 0.5rem;
        }

        .file-upload-area {
            border: 2px dashed #8338ec;
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(131, 56, 236, 0.1);
        }

        .file-upload-area:hover {
            border-color: #ff006e;
            background: rgba(255, 0, 110, 0.1);
            transform: translateY(-2px);
        }

        .upload-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .file-upload-area p {
            color: white;
            margin: 0.5rem 0;
            font-weight: 500;
        }

        .file-upload-area small {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
        }

        .file-preview {
            margin-top: 1rem;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 8px;
            display: none;
        }

        .file-preview.show {
            display: block;
        }

        .file-preview-content {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .file-preview img {
            max-width: 100px;
            max-height: 60px;
            border-radius: 4px;
            object-fit: cover;
        }

        .file-info {
            flex: 1;
            color: white;
        }

        .file-name {
            font-weight: 500;
            margin-bottom: 0.25rem;
        }

        .file-size {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .remove-file {
            background: #ff4444;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.8rem;
        }

        .remove-file:hover {
            background: #cc3333;
        }
