/* Pabili Services Specific Styles - Enhanced Design */

/* Body and Page Background */
body {
    background: var(--dark-900);
    color: var(--white);
    font-family: var(--font-primary);
}

/* Hero Section - Enhanced */
.pabili-hero {
    background: var(--gradient-primary);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
}

.pabili-hero::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="pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.15)"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
    opacity: 0.8;
}

.pabili-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.pabili-hero .container {
    position: relative;
    z-index: 3;
}

.pabili-hero .hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

.pabili-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.25);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 32px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pabili-hero .hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pabili-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.pabili-hero .title-line {
    display: block;
}

.pabili-hero .highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pabili-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.pabili-hero .hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 70px;
    flex-wrap: wrap;
}

.pabili-hero .btn-primary,
.pabili-hero .btn-secondary {
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    min-width: 220px;
    justify-content: center;
}

.pabili-hero .btn-primary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.pabili-hero .btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
}

.pabili-hero .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pabili-hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.pabili-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.pabili-hero .stat-item {
    text-align: center;
}

.pabili-hero .stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 24px;
    backdrop-filter: blur(10px);
}

.pabili-hero .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.pabili-hero .stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Services Grid */
.pabili-services {
    padding: 100px 0;
    background: var(--dark-800);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 36px;
    margin-top: 64px;
}

.service-card {
    background: var(--dark-700);
    padding: 48px 40px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--dark-600);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 24px 24px 0 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    border-radius: 50%;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    width: 300px;
    height: 300px;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.25);
    background: var(--dark-600);
    border-color: var(--accent-color);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 12px 35px rgba(6, 182, 212, 0.4);
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--white);
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--accent-color);
}

.service-card p {
    color: var(--dark-300);
    line-height: 1.7;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: var(--dark-600);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.service-card p {
    color: var(--dark-300);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.feature-tag {
    background: var(--dark-600);
    color: var(--dark-200);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--dark-500);
}

.service-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

/* Steps Container */
.how-it-works {
    padding: 100px 0;
    background: var(--dark-900);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--dark-800);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid var(--dark-700);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--dark-700);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    margin: 20px auto 24px;
    border: 1px solid var(--dark-600);
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.step-card p {
    color: var(--dark-300);
    line-height: 1.6;
}

/* Rider Map Section */
.rider-map-section {
    padding: 100px 0;
    background: var(--dark-800);
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 32px;
    margin-top: 60px;
    height: 500px;
}

.rider-map {
    background: var(--dark-700);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--dark-600);
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--dark-400);
    font-size: 3rem;
}

.map-placeholder p {
    font-size: 1.2rem;
    margin-top: 16px;
    color: var(--dark-300);
}

.map-placeholder small {
    font-size: 0.9rem;
    opacity: 0.7;
    color: var(--dark-400);
}

/* Interactive Map Styles */
.sample-map {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #e6f3ff 0%, #b3d9ff 100%);
    overflow: hidden;
}

.map-background {
    width: 100%;
    height: 100%;
    position: relative;
    background: 
        radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #f0f9ff 0%, #dbeafe 50%, #bfdbfe 100%);
}

.map-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.street {
    position: absolute;
    background: linear-gradient(45deg, #ffffff 0%, #f3f4f6 100%);
    border: 1px solid rgba(156, 163, 175, 0.3);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.street.horizontal {
    height: 8px;
    border-radius: 4px;
}

.street.vertical {
    width: 8px;
    border-radius: 4px;
}

.map-marker {
    position: absolute;
    cursor: pointer;
    z-index: 10;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-marker:hover {
    transform: translate(-50%, -50%) scale(1.2);
    z-index: 20;
}

.marker-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    position: relative;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
}

.marker-label {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.map-marker:hover .marker-label {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

/* User Location */
.user-location .marker-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    animation: pulse-user 2s infinite;
}

.location-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 2px solid #ef4444;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s infinite;
    opacity: 0.6;
}

@keyframes pulse-user {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* Rider Markers */
.rider-marker.available .marker-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    animation: bounce-rider 3s infinite;
}

.rider-marker.busy .marker-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

@keyframes bounce-rider {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* Store Markers */
.store-marker .marker-icon {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border-radius: 12px;
    width: 35px;
    height: 35px;
}

/* Area Labels */
.area-label {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    border: 1px solid rgba(156, 163, 175, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

/* Map Controls */
.map-controls {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 15;
}

.map-control-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-control-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Map Info Popup */
.map-info-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 30;
    max-width: 300px;
    width: 90%;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.popup-content {
    position: relative;
    padding: 20px;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #6b7280;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.popup-rider-info h4,
.popup-store-info h4 {
    margin: 0 0 15px 0;
    color: #111827;
    font-size: 18px;
    font-weight: 700;
}

.popup-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.popup-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.popup-detail i {
    width: 20px;
    color: var(--primary-color);
}

.popup-detail span {
    color: #374151;
    font-weight: 500;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.available {
    background: #d1fae5;
    color: #065f46;
}

.status-badge.busy {
    background: #fed7aa;
    color: #9a3412;
}

.map-sidebar {
    background: var(--dark-700);
    border: 1px solid var(--dark-600);
    border-radius: 20px;
    padding: 24px;
    overflow-y: auto;
}

.active-riders h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.rider-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rider-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--dark-600);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--dark-500);
}

.rider-item:hover {
    background: var(--dark-500);
    transform: translateX(4px);
}

.rider-avatar {
    position: relative;
    width: 50px;
    height: 50px;
}

.rider-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--dark-700);
}

.status-dot.available {
    background: var(--success-color);
}

.status-dot.busy {
    background: var(--warning-color);
}

.rider-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rider-name {
    font-weight: 600;
    color: var(--white);
    font-size: 14px;
}

.rider-location {
    font-size: 12px;
    color: var(--dark-300);
}

.rider-rating {
    font-size: 12px;
    color: var(--secondary-color);
}

.rider-distance {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

.map-legend {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--dark-600);
}

.map-legend h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--dark-300);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.available {
    background: var(--success-color);
}

.legend-dot.busy {
    background: var(--warning-color);
}

.legend-dot.store {
    background: var(--primary-color);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--dark-900);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--dark-800);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--dark-700);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price-desc {
    font-size: 14px;
    color: var(--dark-300);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--dark-600);
    color: var(--dark-200);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--success-color);
    font-size: 14px;
}

.additional-fees {
    margin-top: 60px;
    background: var(--dark-800);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--dark-700);
}

.additional-fees h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
    text-align: center;
}

.fees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--dark-700);
    border-radius: 12px;
    border: 1px solid var(--dark-600);
}

.fee-label {
    font-size: 14px;
    color: var(--dark-200);
}

.fee-amount {
    font-weight: 700;
    color: var(--primary-color);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--dark-800);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
    border: 1px solid var(--dark-600);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid var(--dark-600);
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.close {
    color: var(--dark-400);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--white);
}

.booking-form {
    padding: 32px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-200);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--dark-600);
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: var(--dark-700);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--dark-400);
}

.form-group small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--dark-300);
}

.form-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 32px;
}

.btn-next,
.btn-back,
.btn-submit {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-next,
.btn-submit {
    background: var(--gradient-primary);
    color: white;
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-back {
    background: var(--dark-600);
    color: var(--dark-200);
    border: 1px solid var(--dark-500);
}

.btn-back:hover {
    background: var(--dark-500);
}

.order-summary {
    background: var(--dark-700);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 24px;
    border: 1px solid var(--dark-600);
}

.order-summary h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--dark-600);
    color: var(--dark-200);
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0 8px;
    border-top: 2px solid var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}

.summary-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 12px;
    background: var(--warning-color);
    color: white;
    border-radius: 8px;
    font-size: 14px;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid var(--dark-600);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--dark-700);
    color: var(--white);
}

.payment-option:hover {
    border-color: var(--primary-color);
}

.payment-option input[type="radio"] {
    width: auto;
    margin: 0;
}

.payment-icon {
    font-size: 20px;
    color: var(--primary-color);
}

.terms-agreement {
    margin-bottom: 24px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--dark-200);
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-container a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-container a:hover {
    text-decoration: underline;
}

.track-form {
    padding: 32px;
}

/* Sample Orders Styles */
.sample-orders {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--dark-600);
}

.sample-label {
    font-size: 14px;
    color: var(--dark-300);
    margin-bottom: 16px;
    font-weight: 500;
}

.sample-order-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sample-order-item {
    background: var(--dark-700);
    border: 1px solid var(--dark-600);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sample-order-item:hover {
    background: var(--dark-600);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.sample-order-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.sample-order-id {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: var(--white);
    font-size: 14px;
}

.sample-order-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.sample-order-status.completed {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid #10b981;
}

.sample-order-status.shopping {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid #f59e0b;
}

.sample-order-status.assigned {
    background: rgba(99, 102, 241, 0.2);
    color: #6366f1;
    border: 1px solid #6366f1;
}

.sample-order-desc {
    font-size: 13px;
    color: var(--dark-300);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .map-container {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .rider-map {
        height: 400px;
    }
    
    .map-sidebar {
        height: auto;
    }
}

@media (max-width: 768px) {
    .pabili-hero {
        padding: 100px 0 60px;
    }
    
    .pabili-hero .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .pabili-hero .btn-primary,
    .pabili-hero .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .pabili-hero .hero-stats {
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .fees-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 2% auto;
    }
    
    .booking-form {
        padding: 24px;
    }
    
    /* Mobile Map Styles */
    .map-container {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .rider-map {
        height: 300px;
    }
    
    .map-sidebar {
        width: 100%;
        margin-top: 24px;
    }
    
    .map-controls {
        top: 10px;
        right: 10px;
        gap: 6px;
    }
    
    .map-control-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .marker-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .store-marker .marker-icon {
        width: 30px;
        height: 30px;
    }
    
    .area-label {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .map-info-popup {
        max-width: 280px;
        width: 95%;
    }
    
    .popup-content {
        padding: 15px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-next,
    .btn-back,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 24px;
    }
    
    .step-card {
        padding: 24px 16px;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .additional-fees {
        padding: 24px;
    }
    
    .modal-header {
        padding: 20px 24px;
    }
    
    .booking-form {
        padding: 20px;
    }
}
