
	/* Service Content Styling */
.service-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-inline-icon {
    color: #22c55e;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-inline-text {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.1rem;
}

.service-description {
    color: #6b7280;
    font-size: 0.9rem;
    font-style: italic;
    margin-right: 2.25rem;
}

.service-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    background: rgba(34, 197, 94, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 2px solid rgba(34, 197, 94, 0.2);
}

.service-inline-price {
    color: #059669;
    font-weight: 800;
    font-size: 1.2rem;
}

.service-price-label {
    color: #059669;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Baby Type Selection */
.baby-type-enhanced {
    background: rgba(34, 197, 94, 0.05);
    border: 2px solid rgba(34, 197, 94, 0.2);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
}

.baby-type-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #059669;
}

.baby-type-header i {
    color: #22c55e;
}

.baby-type-select-enhanced {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.baby-type-select-enhanced:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    outline: none;
}

/* Enhanced Checkbox */
.service-inline-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    flex: 1;
}

.service-inline-checkmark {
    width: 24px;
    height: 24px;
    border: 3px solid #d1d5db;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 0.25rem;
    background: white;
}

.service-inline-checkbox:hover .service-inline-checkmark {
    border-color: #22c55e;
    transform: scale(1.05);
}

.service-inline-checkbox input[type="checkbox"]:checked + .service-inline-checkmark {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-color: #22c55e;
}

.service-inline-checkbox input[type="checkbox"]:checked + .service-inline-checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-main-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .service-price-wrapper {
        align-self: flex-end;
    }
    
    .service-inline-item {
        padding: 1rem;
    }
}
	
	
    /* Enhanced Modern Styling */
    .taxi-booking-container {
        max-width: 100%;
        margin: 0 auto;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2rem; 
        direction: rtl;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        min-height: 100vh;
        padding: 0;
    }



    /* Main Container */
    .main-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        min-height: 100vh;
        background: white;
        box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
    }

    /* Map Section */
    .map-section {
        background: #f8fafc;
        position: relative;
        border-left: 1px solid #e2e8f0;
    }

    

    .map-container {
        height: calc(100vh - 300px);
        min-height: 400px;
        border-radius: 0;
    }

    #map {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    /* Form Section */
    .form-section {
        background: white;
        overflow-y: auto;
        max-height: calc(100vh - 200px);
    }

    /* Time Display */
    .time-display {
        background: linear-gradient(135deg, #1e293b, #334155);
        color: white;
        padding: 1rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 3px solid #3b82f6;
    }

    .current-time {
        display: flex;
        align-items: center;
        font-weight: 600;
    }

    .current-time i {
        margin-left: 0.5rem;
        color: #fbbf24;
    }

    .countdown {
        display: flex;
        align-items: center;
        color: #fbbf24;
        font-size: 0.9rem;
    }

    .countdown i {
        margin-left: 0.5rem;
        animation: pulse 2s infinite;
    }

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

    /* Booking Form */
    .booking-form {
        padding: 2rem 2rem 0 2rem;
    }

    /* Service Type Section */
    .service-type-section {
        background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
        border: 2px solid #0ea5e9;
        border-radius: 20px;
        padding: 2rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .toggle-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        margin-top: 1.5rem;
    }

    .service-option {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem;
        border-radius: 15px;
        background: rgba(255,255,255,0.8);
        transition: all 0.3s ease;
        min-width: 120px;
    }

    .service-option i {
        font-size: 2rem;
        color: #0ea5e9;
    }

    .service-option[data-service="dfad"] {
        color: #7c3aed;
    }

    .service-option[data-service="dfad"] i {
        color: #7c3aed;
    }

    /* Section Headers */
    .section-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid #e2e8f0;
    }

    .section-header h4 {
    font-size: 2.6rem; 
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
}

    .section-header h4 i {
        margin-left: 0.75rem;
        color: #3b82f6;
        font-size: 1.5rem;
    }

    .optional-badge {
        background: #f3f4f6;
        color: #6b7280;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 500;
    }

    /* Form Section Wrapper */
    .form-section-wrapper {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 15px;
        padding: 2rem;
        margin-bottom: 2rem;
        transition: all 0.3s ease;
    }

    .form-section-wrapper:last-child {
        margin-bottom: 0;
    }

    .form-section-wrapper:hover {
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        border-color: #3b82f6;
    }

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

    /* Input Groups */
    .input-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .input-group label {
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    font-size: 2rem; 
}

.form-input, .form-select, .form-textarea {
    padding: 1rem;
    border: 2px solid #d1d5db;
    border-radius: 10px;
    font-size: 2rem; 
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

    /* Form Inputs */
    .form-input, .form-select, .form-textarea {
        padding: 1rem;
        border: 2px solid #d1d5db;
        border-radius: 10px;
        font-size: 1rem;
        font-family: inherit;
        transition: all 0.3s ease;
        background: white;
    }

    .form-input:focus, .form-select:focus, .form-textarea:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        transform: translateY(-1px);
    }

    .form-input:hover, .form-select:hover, .form-textarea:hover {
        border-color: #9ca3af;
    }

    /* Route Input Groups */
    .route-input-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .route-label {
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    font-size: 2.2rem; 
}

    .origin-marker {
        color: #10b981 !important;
        font-size: 1.3rem;
        margin-left: 0.5rem;
    }

    .destination-marker {
        color: #ef4444 !important;
        font-size: 1.3rem;
        margin-left: 0.5rem;
    }

    .route-input-container {
        display: flex;
        gap: 0.5rem;
        align-items: stretch;
    }

    .airport-select {
        flex: 0 0 200px;
        padding: 1rem;
        border: 2px solid #d1d5db;
        border-radius: 10px;
        background: white;
        font-size: 1rem;
    }

    .route-input {
        flex: 1;
    }

    .location-btn {
        flex: 0 0 50px;
        background: #10b981;
        color: white;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .location-btn:hover {
        background: #059669;
        transform: scale(1.05);
    }

    /* Switch Button */
    .route-switch-container {
        display: flex;
        justify-content: center;
        margin: 1rem 0;
    }

    .switch-btn {
        background: linear-gradient(135deg, #f59e0b, #d97706);
        color: white;
        border: none;
        padding: 0.8rem 2rem;
        border-radius: 25px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .switch-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
    }

    /* Waypoints */
    .waypoints-container {
        margin: 1.5rem 0;
    }

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

    .waypoints-header label {
        font-weight: 600;
        color: #374151;
        display: flex;
        align-items: center;
    }

    .waypoints-header label i {
        margin-left: 0.5rem;
        color: #8b5cf6;
    }

    .add-waypoint-btn {
        background: #8b5cf6;
        color: white;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
    }

    .add-waypoint-btn:hover {
        background: #7c3aed;
        transform: scale(1.05);
    }

    .waypoint-inputs {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .waypoint-input {
        display: flex;
        gap: 0.5rem;
        align-items: stretch;
    }

    .waypoint-input input {
        flex: 1;
        padding: 1rem;
        border: 2px solid #d1d5db;
        border-radius: 10px;
        background: white;
    }

    .waypoint-input button {
        flex: 0 0 80px;
        background: #ef4444;
        color: white;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .waypoint-input button:hover {
        background: #dc2626;
        transform: scale(1.05);
    }

    /* Trip Type Options */
    .trip-type-section {
        margin-top: 1.5rem;
    }

    .trip-type-options {
        display: flex;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .trip-option {
        flex: 1;
        cursor: pointer;
    }

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

    .trip-option-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem;
        border: 2px solid #d1d5db;
        border-radius: 10px;
        background: white;
        transition: all 0.3s ease;
        font-weight: 600;
    }

    .trip-option input[type="radio"]:checked + .trip-option-content {
        border-color: #3b82f6;
        background: #eff6ff;
        color: #3b82f6;
    }

    .trip-option-content:hover {
        border-color: #9ca3af;
    }

    /* Warning Box */
    .warning-box {
        background: linear-gradient(135deg, #fef3c7, #fde68a);
        border: 2px solid #f59e0b;
        border-radius: 15px;
        padding: 1.5rem;
        margin-top: 1rem;
    }

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

    .warning-content i {
        color: #d97706;
        font-size: 1.5rem;
    }

    .warning-text {
        flex: 1;
    }

    .phone-link {
        color: #1d4ed8;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.1rem;
        padding: 0.2rem 0.5rem;
        background: rgba(29, 78, 216, 0.1);
        border-radius: 5px;
        margin: 0 0.5rem;
    }

    .phone-link:hover {
        background: rgba(29, 78, 216, 0.2);
        text-decoration: underline;
    }

    .warning-social-buttons {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .social-btn {
        padding: 0.5rem 1rem;
        border: none;
        border-radius: 20px;
        color: white;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
    }

    .whatsapp-btn {
        background: #25d366;
    }

    .whatsapp-btn:hover {
        background: #128c7e;
    }

    .telegram-btn {
        background: #0088cc;
    }

    .telegram-btn:hover {
        background: #006ca8;
    }

    .email-btn {
        background: #6366f1;
    }

    .email-btn:hover {
        background: #4f46e5;
    }

    /* Additional Services */
.additional-services {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid #22c55e;
    display: none; /* Hidden by default */
}

.additional-services.show {
    display: block;
}

.services-inline-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-inline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.service-inline-item:hover {
    border-color: #22c55e;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.1);
    transform: translateY(-2px);
}

.service-inline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 12px 12px 0 0;
}

.service-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.service-details-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

    .service-inline-checkbox {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        cursor: pointer;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

    .service-inline-checkbox:hover {
        background: #f3f4f6;
        border-color: #22c55e;
    }

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

    .service-inline-checkmark {
        width: 20px;
        height: 20px;
        border: 2px solid #d1d5db;
        border-radius: 4px;
        position: relative;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .service-inline-checkbox input[type="checkbox"]:checked + .service-inline-checkmark {
        background: #22c55e;
        border-color: #22c55e;
    }

    .service-inline-checkbox input[type="checkbox"]:checked + .service-inline-checkmark::after {
        content: '✓';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-weight: bold;
        font-size: 12px;
    }

    .service-inline-icon {
        color: #22c55e;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .service-inline-text {
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
    font-size: 2rem; /* Add this line */
}

    .service-inline-price {
        color: #059669;
        font-weight: 700;
        font-size: 1rem;
        background: rgba(34, 197, 94, 0.1);
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
    }

    .baby-type-inline {
        margin-right: 1rem;
    }

    .baby-type-select-inline {
        padding: 0.4rem 0.6rem;
        border: 1px solid #d1d5db;
        border-radius: 6px;
        background: white;
        font-size: 0.85rem;
        min-width: 120px;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .services-inline-container {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        
        .service-inline-item {
            width: 100%;
            justify-content: space-between;
        }
        
        .service-inline-text {
            white-space: normal;
        }
    }

    .service-checkbox {
        display: flex;
        align-items: center;
        gap: 1rem;
        cursor: pointer;
        margin-bottom: 1rem;
    }

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

    .service-checkmark {
        width: 24px;
        height: 24px;
        border: 2px solid #d1d5db;
        border-radius: 6px;
        position: relative;
        transition: all 0.3s ease;
    }

    .service-checkbox input[type="checkbox"]:checked + .service-checkmark {
        background: #22c55e;
        border-color: #22c55e;
    }

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

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

    .service-content i {
        color: #22c55e;
        font-size: 1.5rem;
    }

    .service-text {
        flex: 1;
    }

    .service-price {
        color: #059669;
        font-weight: 700;
        font-size: 1.1rem;
    }

    .baby-type-container {
        background: #f9fafb;
        padding: 1rem;
        border-radius: 8px;
        border: 1px solid #e5e7eb;
    }

    .baby-type-select {
        margin-top: 0.5rem;
    }

    /* Comment Container */
    .comment-container textarea {
        width: 100%;
        min-height: 120px;
        resize: vertical;
    }

    /* Action Buttons */
    .action-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        margin-bottom: 0;
        padding-top: 2rem;
        padding-bottom: 0;
        border-top: 2px solid #e2e8f0;
    }

    .primary-btn {
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-size: 2.2rem; /* Changed from 1.1rem */
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .primary-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    }

    .primary-btn:disabled {
        background: #9ca3af;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

    .secondary-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .secondary-btn {
        background: #6b7280;
        color: white;
        border: none;
        padding: 0.8rem 1.5rem;
        border-radius: 10px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .secondary-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .secondary-btn:disabled {
        background: #d1d5db;
        color: #9ca3af;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

    .erase-btn {
        background: #ef4444;
    }

    .erase-btn:hover {
        background: #dc2626;
    }

    .share-btn {
        background: #3b82f6;
    }

    .share-btn:hover {
        background: #2563eb;
    }

    .screenshot-btn {
        background: #8b5cf6;
    }

    .screenshot-btn:hover {
        background: #7c3aed;
    }

    /* Results Container */
    .results-container {
        margin-top: 2rem;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .main-container {
            grid-template-columns: 1fr;
        }
        
        .map-section {
            border-left: none;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .map-container {
            height: 400px;
        }
    }

    @media (max-width: 768px) {
        .booking-form {
            padding: 1rem;
        }
        
        .hero-features {
            flex-direction: column;
            gap: 1rem;
        }
        
        .booking-form {
            padding: 1rem;
        }
        
        .form-grid {
            grid-template-columns: 1fr;
        }
        
        .toggle-container {
            flex-direction: column;
            gap: 1rem;
        }
        
        .trip-type-options {
            flex-direction: column;
        }
        
        .secondary-buttons {
            flex-direction: column;
        }
        
        .route-input-container {
            flex-direction: column;
        }
        
        .airport-select {
            flex: 1;
        }
    }

    @media (max-width: 480px) {
        .form-section-wrapper {
            padding: 1rem;
        }
        
        .service-type-section {
            padding: 1rem;
        }
        
        .warning-content {
            flex-direction: column;
            text-align: center;
        }
        
        .warning-social-buttons {
            justify-content: center;
        }
    }

    /* Animations */
    @keyframes slideInFromRight {
        from {
            transform: translateX(100%);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

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

    .form-section-wrapper {
        animation: slideInFromRight 0.6s ease-out;
    }

    .form-section-wrapper:nth-child(even) {
        animation: slideInFromLeft 0.6s ease-out;
    }

    /* Loading States */
    .loading {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        padding: 2rem;
        background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
        border-radius: 15px;
        color: #0369a1;
        font-weight: 600;
    }

    .loading::before {
        content: '';
        width: 20px;
        height: 20px;
        border: 2px solid #0369a1;
        border-top-color: transparent;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

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

    /* Error States */
    .error {
        background: linear-gradient(135deg, #fef2f2, #fee2e2);
        border: 2px solid #f87171;
        color: #991b1b;
        padding: 1.5rem;
        border-radius: 15px;
        display: flex;
        align-items: center;
        gap: 1rem;
        margin: 1rem 0;
    }

    .error::before {
        content: '⚠️';
        font-size: 1.5rem;
    }
	
	
	#result {
    min-height: 60px;
}

#result .success {
    display: flex !important;
    align-items: center !important;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7) !important;
    border: 2px solid #4ade80 !important;
    color: #166534 !important;
    padding: 1.5rem !important;
    border-radius: 15px !important;
    gap: 1rem !important;
    margin: 1rem 0 !important;
    font-size: 1.1rem !important;
}

    /* Success States */
    .success {
        background: linear-gradient(135deg, #f0fdf4, #dcfce7);
        border: 2px solid #4ade80;
        color: #166534;
        padding: 1.5rem;
        border-radius: 15px;
        display: flex;
        align-items: center;
        gap: 1rem;
        margin: 1rem 0;
    }

    .success::before {
        content: '✅';
        font-size: 1.5rem;
    }
	
	
	/* Auto Notification */
.auto-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
}

.auto-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.auto-notification i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .auto-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        width: auto;
    }
}
	

/* Enhanced Flight Section Styles */
    .enhanced-flight-container {
        background: linear-gradient(135deg, #eff6ff, #dbeafe);
        border: 2px solid #3b82f6;
        border-radius: 15px;
        padding: 1.5rem;
        margin: 1rem 0;
    }

    .flight-search-row {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 1rem;
        align-items: start;
        margin-bottom: 1.5rem;
    }

    .flight-search-main {
        position: relative;
    }

    .flight-search-group {
        margin-bottom: 0;
    }

    .flight-search-label {
        font-weight: 700;
        color: #1e40af;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        margin-bottom: 0.5rem;
    }

    .flight-search-label i {
        margin-left: 0.5rem;
        color: #3b82f6;
    }

    .flight-input-wrapper {
        position: relative;
        display: flex;
        align-items: center;
    }

    .flight-search-input {
        padding-right: 3rem;
        border: 2px solid #3b82f6;
        border-radius: 10px;
        font-size: 1rem;
        min-width: 300px;
    }

    .flight-search-input:focus {
        border-color: #1d4ed8;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .flight-icon {
        position: absolute;
        right: 1rem;
        color: #3b82f6;
        font-size: 1.2rem;
        pointer-events: none;
    }

    .flight-help-section {
        display: flex;
        align-items: center;
    }

    .enhanced-help-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 0.8rem 1rem;
        background: rgba(59, 130, 246, 0.1);
        border: 1px solid #3b82f6;
        border-radius: 10px;
        text-decoration: none;
        color: #1e40af;
        font-weight: 600;
        transition: all 0.3s ease;
        min-width: 100px;
        text-align: center;
    }

    .enhanced-help-link:hover {
        background: rgba(59, 130, 246, 0.2);
        transform: translateY(-2px);
    }

    .enhanced-help-link i {
        font-size: 1.5rem;
        color: #3b82f6;
    }

    .enhanced-help-link span {
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .flight-details-grid-inline {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        padding: 1rem;
    }

    .flight-input-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .flight-input-group label {
        font-weight: 600;
        color: #374151;
        display: flex;
        align-items: center;
        font-size: 0.9rem;
        margin: 0;
        width: auto;
    }

    .flight-input-group label i {
        margin-left: 0.5rem;
        color: #3b82f6;
        width: 16px;
        text-align: center;
    }

    .flight-readonly-input {
        background: #f9fafb !important;
        border-color: #d1d5db;
        text-align: center;
        font-size: 0.85rem;
        font-weight: 500;
        color: #1f2937;
    }

    .flight-status-input {
        background: linear-gradient(135deg, #ecfdf5, #d1fae5) !important;
        border-color: #10b981 !important;
        color: #065f46 !important;
        font-weight: 600 !important;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .flight-details-grid-inline {
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }
    }

    @media (max-width: 480px) {
        .flight-details-grid-inline {
            grid-template-columns: 1fr;
        }
    }

    .flight-detail-inline label i {
        color: #3b82f6;
        font-size: 0.8rem;
    }

    .flight-inline-input {
        padding: 0.4rem 0.6rem;
        border: 1px solid #d1d5db;
        border-radius: 6px;
        background: #f9fafb;
        font-size: 0.85rem;
        text-align: center;
        color: #1f2937;
        font-weight: 500;
        min-width: 80px;
        width: auto;
    }

    .flight-status-inline {
        background: linear-gradient(135deg, #ecfdf5, #d1fae5);
        border-color: #10b981;
        color: #065f46;
        font-weight: 600;
        min-width: 100px;
    }

    .flight-detail-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    }

    .flight-detail-card:hover {
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
        transform: translateY(-2px);
    }

    .status-card {
        grid-column: 1 / -1;
    }

    .status-card::before {
        background: linear-gradient(90deg, #10b981, #059669);
    }

    .flight-detail-header {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: #374151;
        font-size: 0.9rem;
    }

    .flight-detail-header i {
        color: #3b82f6;
        font-size: 1rem;
        width: 16px;
        text-align: center;
    }

    .status-card .flight-detail-header i {
        color: #10b981;
    }

    .flight-detail-value {
        width: 100%;
        padding: 0.5rem;
        border: 1px solid #d1d5db;
        border-radius: 6px;
        background: #f9fafb;
        font-size: 0.9rem;
        text-align: center;
        color: #1f2937;
        font-weight: 500;
    }

    .flight-status-value {
        background: linear-gradient(135deg, #ecfdf5, #d1fae5);
        border-color: #10b981;
        color: #065f46;
        font-weight: 600;
    }

    .enhanced-dropdown {
        top: calc(100% + 5px);
        border: 2px solid #3b82f6;
        border-radius: 10px;
        box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .flight-search-row {
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        
        .flight-search-input {
            min-width: 100%;
        }
        
        .enhanced-help-link {
            align-self: center;
            justify-self: center;
        }
        
        .flight-details-grid {
            grid-template-columns: 1fr;
        }
        
        .status-card {
            grid-column: 1;
        }
    }

    /* Print Styles */
    @media print {
        .hero-section,
        .map-controls,
        .action-buttons {
            display: none;
        }
        
        .main-container {
            grid-template-columns: 1fr;
        }
        
        .taxi-booking-container {
            background: white;
        }
        
        .form-section-wrapper {
            border: 1px solid #000;
            margin-bottom: 1rem;
            page-break-inside: avoid;
        }
    }
    